A Medley of Potpourri

A Medley of Potpourri is just what it says; various thoughts, opinions, ruminations, and contemplations on a variety of subjects.

Search This Blog

Thursday, July 7, 2022

Turing machine

From Wikipedia, the free encyclopedia
https://en.wikipedia.org/wiki/Turing_machine 

Turing machines
Machine
  • Turing machine equivalents
  • Turing machine examples
  • Turing machine gallery
Variants
  • Alternating Turing machine
  • Neural Turing machine
  • Nondeterministic Turing machine
  • Quantum Turing machine
  • Post–Turing machine
  • Probabilistic Turing machine
  • Multitape Turing machine
  • Multi-track Turing machine
  • Symmetric Turing machine
  • Total Turing machine
  • Unambiguous Turing machine
  • Universal Turing machine
  • Zeno machine
Science
  • Alan Turing
  • Category:Turing machine
A physical Turing machine constructed by Mike Davey
A physical Turing machine model. A true Turing machine would have unlimited tape on both sides, however, physical models can only have a finite amount of tape.
Combinational logicFinite-state machinePushdown automatonTuring machineAutomata theory
About this image

A Turing machine is a mathematical model of computation describing an abstract machine that manipulates symbols on a strip of tape according to a table of rules. Despite the model's simplicity, it is capable of implementing any computer algorithm.

The machine operates on an infinite memory tape divided into discrete cells, each of which can hold a single symbol drawn from a finite set of symbols called the alphabet of the machine. It has a "head" that, at any point in the machine's operation, is positioned over one of these cells, and a "state" selected from a finite set of states. At each step of its operation, the head reads the symbol in its cell. Then, based on the symbol and the machine's own present state, the machine writes a symbol into the same cell, and moves the head one step to the left or the right, or halts the computation. The choice of which replacement symbol to write and which direction to move is based on a finite table that specifies what to do for each combination of the current state and the symbol that is read.

The Turing machine was invented in 1936 by Alan Turing, who called it an "a-machine" (automatic machine). It was Turing's Doctoral advisor, Alonzo Church, who later coined the term "Turing machine" in a review. With this model, Turing was able to answer two questions in the negative:

  • Does a machine exist that can determine whether any arbitrary machine on its tape is "circular" (e.g., freezes, or fails to continue its computational task)?
  • Does a machine exist that can determine whether any arbitrary machine on its tape ever prints a given symbol?

Thus by providing a mathematical description of a very simple device capable of arbitrary computations, he was able to prove properties of computation in general—and in particular, the uncomputability of the Entscheidungsproblem ('decision problem').

Turing machines proved the existence of fundamental limitations on the power of mechanical computation. While they can express arbitrary computations, their minimalist design makes them unsuitable for computation in practice: real-world computers are based on different designs that, unlike Turing machines, use random-access memory.

Turing completeness is the ability for a system of instructions to simulate a Turing machine. A programming language that is Turing complete is theoretically capable of expressing all tasks accomplishable by computers; nearly all programming languages are Turing complete if the limitations of finite memory are ignored.

Overview

A Turing machine is a general example of a central processing unit (CPU) that controls all data manipulation done by a computer, with the canonical machine using sequential memory to store data. More specifically, it is a machine (automaton) capable of enumerating some arbitrary subset of valid strings of an alphabet; these strings are part of a recursively enumerable set. A Turing machine has a tape of infinite length on which it can perform read and write operations.

Assuming a black box, the Turing machine cannot know whether it will eventually enumerate any one specific string of the subset with a given program. This is due to the fact that the halting problem is unsolvable, which has major implications for the theoretical limits of computing.

The Turing machine is capable of processing an unrestricted grammar, which further implies that it is capable of robustly evaluating first-order logic in an infinite number of ways. This is famously demonstrated through lambda calculus.

A Turing machine that is able to simulate any other Turing machine is called a universal Turing machine (UTM, or simply a universal machine). A more mathematically oriented definition with a similar "universal" nature was introduced by Alonzo Church, whose work on lambda calculus intertwined with Turing's in a formal theory of computation known as the Church–Turing thesis. The thesis states that Turing machines indeed capture the informal notion of effective methods in logic and mathematics, and provide a precise definition of an algorithm or "mechanical procedure". Studying their abstract properties yields many insights into computer science and complexity theory.

Physical description

In his 1948 essay, "Intelligent Machinery", Turing wrote that his machine consisted of:

...an unlimited memory capacity obtained in the form of an infinite tape marked out into squares, on each of which a symbol could be printed. At any moment there is one symbol in the machine; it is called the scanned symbol. The machine can alter the scanned symbol, and its behavior is in part determined by that symbol, but the symbols on the tape elsewhere do not affect the behavior of the machine. However, the tape can be moved back and forth through the machine, this being one of the elementary operations of the machine. Any symbol on the tape may therefore eventually have an innings.

— Turing 1948, p. 3

Description

For visualizations of Turing machines, see Turing machine gallery.

The Turing machine mathematically models a machine that mechanically operates on a tape. On this tape are symbols, which the machine can read and write, one at a time, using a tape head. Operation is fully determined by a finite set of elementary instructions such as "in state 42, if the symbol seen is 0, write a 1; if the symbol seen is 1, change into state 17; in state 17, if the symbol seen is 0, write a 1 and change to state 6;" etc. In the original article ("On Computable Numbers, with an Application to the Entscheidungsproblem", see also references below), Turing imagines not a mechanism, but a person whom he calls the "computer", who executes these deterministic mechanical rules slavishly (or as Turing puts it, "in a desultory manner").

The head is always over a particular square of the tape; only a finite stretch of squares is shown. The instruction to be performed (q4) is shown over the scanned square. (Drawing after Kleene (1952) p. 375.)
 
Here, the internal state (q1) is shown inside the head, and the illustration describes the tape as being infinite and pre-filled with "0", the symbol serving as blank. The system's full state (its "complete configuration") consists of the internal state, any non-blank symbols on the tape (in this illustration "11B"), and the position of the head relative to those symbols including blanks, i.e. "011B". (Drawing after Minsky (1967) p. 121.)

More explicitly, a Turing machine consists of:

  • A tape divided into cells, one next to the other. Each cell contains a symbol from some finite alphabet. The alphabet contains a special blank symbol (here written as '0') and one or more other symbols. The tape is assumed to be arbitrarily extendable to the left and to the right, so that the Turing machine is always supplied with as much tape as it needs for its computation. Cells that have not been written before are assumed to be filled with the blank symbol. In some models the tape has a left end marked with a special symbol; the tape extends or is indefinitely extensible to the right.
  • A head that can read and write symbols on the tape and move the tape left and right one (and only one) cell at a time. In some models the head moves and the tape is stationary.
  • A state register that stores the state of the Turing machine, one of finitely many. Among these is the special start state with which the state register is initialized. These states, writes Turing, replace the "state of mind" a person performing computations would ordinarily be in.
  • A finite table of instructions that, given the state(qi) the machine is currently in and the symbol(aj) it is reading on the tape (symbol currently under the head), tells the machine to do the following in sequence (for the 5-tuple models):
  1. Either erase or write a symbol (replacing aj with aj1).
  2. Move the head (which is described by dk and can have values: 'L' for one step left or 'R' for one step right or 'N' for staying in the same place).
  3. Assume the same or a new state as prescribed (go to state qi1).

In the 4-tuple models, erasing or writing a symbol (aj1) and moving the head left or right (dk) are specified as separate instructions. The table tells the machine to (ia) erase or write a symbol or (ib) move the head left or right, and then (ii) assume the same or a new state as prescribed, but not both actions (ia) and (ib) in the same instruction. In some models, if there is no entry in the table for the current combination of symbol and state, then the machine will halt; other models require all entries to be filled.

Every part of the machine (i.e. its state, symbol-collections, and used tape at any given time) and its actions (such as printing, erasing and tape motion) is finite, discrete and distinguishable; it is the unlimited amount of tape and runtime that gives it an unbounded amount of storage space.

Formal definition

Following Hopcroft & Ullman (1979, p. 148), a (one-tape) Turing machine can be formally defined as a 7-tuple M = ⟨ Q , Γ , b , Σ , δ , q 0 , F ⟩ {\displaystyle M=\langle Q,\Gamma ,b,\Sigma ,\delta ,q_{0},F\rangle } M=\langle Q,\Gamma ,b,\Sigma ,\delta ,q_{0},F\rangle where

  • Γ {\displaystyle \Gamma } \Gamma is a finite, non-empty set of tape alphabet symbols;
  • b ∈ Γ {\displaystyle b\in \Gamma } b\in \Gamma is the blank symbol (the only symbol allowed to occur on the tape infinitely often at any step during the computation);
  • Σ ⊆ Γ ∖ { b } {\displaystyle \Sigma \subseteq \Gamma \setminus \{b\}} \Sigma \subseteq \Gamma \setminus \{b\} is the set of input symbols, that is, the set of symbols allowed to appear in the initial tape contents;
  • Q {\displaystyle Q} Q is a finite, non-empty set of states;
  • q 0 ∈ Q {\displaystyle q_{0}\in Q} q_{0}\in Q is the initial state;
  • F ⊆ Q {\displaystyle F\subseteq Q} F\subseteq Q is the set of final states or accepting states. The initial tape contents is said to be accepted by M {\displaystyle M} M if it eventually halts in a state from F {\displaystyle F} F.
  • δ : ( Q ∖ F ) × Γ ↛ Q × Γ × { L , R } {\displaystyle \delta :(Q\setminus F)\times \Gamma \not \to Q\times \Gamma \times \{L,R\}} {\displaystyle \delta :(Q\setminus F)\times \Gamma \not \to Q\times \Gamma \times \{L,R\}} is a partial function called the transition function, where L is left shift, R is right shift. If δ {\displaystyle \delta } \delta is not defined on the current state and the current tape symbol, then the machine halts; intuitively, the transition function specifies the next state transited from the current state, which symbol to overwrite the current symbol pointed by the head, and the next head movement.
3-state Busy Beaver. Black icons represent location and state of head; square colors represent 1s (orange) and 0s (white); time progresses vertically from the top until the HALT state at the bottom.

In addition, the Turing machine can also have a reject state to make rejection more explicit. In that case there are three possibilities: accepting, rejecting, and running forever. Another possibility is to regard the final values on the tape as the output. However, if the only output is the final state the machine ends up in (or never halting), the machine can still effectively output a longer string by taking in an integer that tells it which bit of the string to output.

A relatively uncommon variant allows "no shift", say N, as a third element of the set of directions { L , R } {\displaystyle \{L,R\}} \{L,R\}.

The 7-tuple for the 3-state busy beaver looks like this (see more about this busy beaver at Turing machine examples):

  • Q = { A , B , C , HALT } {\displaystyle Q=\{{\mbox{A}},{\mbox{B}},{\mbox{C}},{\mbox{HALT}}\}} Q=\{{\mbox{A}},{\mbox{B}},{\mbox{C}},{\mbox{HALT}}\} (states);
  • Γ = { 0 , 1 } {\displaystyle \Gamma =\{0,1\}} \Gamma =\{0,1\} (tape alphabet symbols);
  • b = 0 {\displaystyle b=0} b=0 (blank symbol);
  • Σ = { 1 } {\displaystyle \Sigma =\{1\}} \Sigma =\{1\} (input symbols);
  • q 0 = A {\displaystyle q_{0}={\mbox{A}}} q_{0}={\mbox{A}} (initial state);
  • F = { HALT } {\displaystyle F=\{{\mbox{HALT}}\}} F=\{{\mbox{HALT}}\} (final states);
  • δ = {\displaystyle \delta =} \delta = see state-table below (transition function).

Initially all tape cells are marked with 0 {\displaystyle 0} {\displaystyle 0}.

State table for 3-state, 2-symbol busy beaver
Tape symbol Current state A Current state B Current state C
Write symbol Move tape Next state Write symbol Move tape Next state Write symbol Move tape Next state
0 1 R B 1 L A 1 L B
1 1 L C 1 R B 1 R HALT

Additional details required to visualize or implement Turing machines

In the words of van Emde Boas (1990), p. 6: "The set-theoretical object [his formal seven-tuple description similar to the above] provides only partial information on how the machine will behave and what its computations will look like."

For instance,

  • There will need to be many decisions on what the symbols actually look like, and a failproof way of reading and writing symbols indefinitely.
  • The shift left and shift right operations may shift the tape head across the tape, but when actually building a Turing machine it is more practical to make the tape slide back and forth under the head instead.
  • The tape can be finite, and automatically extended with blanks as needed (which is closest to the mathematical definition), but it is more common to think of it as stretching infinitely at one or both ends and being pre-filled with blanks except on the explicitly given finite fragment the tape head is on. (This is, of course, not implementable in practice.) The tape cannot be fixed in length, since that would not correspond to the given definition and would seriously limit the range of computations the machine can perform to those of a linear bounded automaton if the tape was proportional to the input size, or finite-state machine if it was strictly fixed-length.

Alternative definitions

Definitions in literature sometimes differ slightly, to make arguments or proofs easier or clearer, but this is always done in such a way that the resulting machine has the same computational power. For example, the set could be changed from { L , R } {\displaystyle \{L,R\}} \{L,R\} to { L , R , N } {\displaystyle \{L,R,N\}} \{L,R,N\}, where N ("None" or "No-operation") would allow the machine to stay on the same tape cell instead of moving left or right. This would not increase the machine's computational power.

The most common convention represents each "Turing instruction" in a "Turing table" by one of nine 5-tuples, per the convention of Turing/Davis (Turing (1936) in The Undecidable, p. 126-127 and Davis (2000) p. 152):

(definition 1): (qi, Sj, Sk/E/N, L/R/N, qm)
( current state qi , symbol scanned Sj , print symbol Sk/erase E/none N , move_tape_one_square left L/right R/none N , new state qm )

Other authors (Minsky (1967) p. 119, Hopcroft and Ullman (1979) p. 158, Stone (1972) p. 9) adopt a different convention, with new state qm listed immediately after the scanned symbol Sj:

(definition 2): (qi, Sj, qm, Sk/E/N, L/R/N)
( current state qi , symbol scanned Sj , new state qm , print symbol Sk/erase E/none N , move_tape_one_square left L/right R/none N )

For the remainder of this article "definition 1" (the Turing/Davis convention) will be used.

Example: state table for the 3-state 2-symbol busy beaver reduced to 5-tuples
Current state Scanned symbol
Print symbol Move tape Final (i.e. next) state 5-tuples
A 0
1 R B (A, 0, 1, R, B)
A 1
1 L C (A, 1, 1, L, C)
B 0
1 L A (B, 0, 1, L, A)
B 1
1 R B (B, 1, 1, R, B)
C 0
1 L B (C, 0, 1, L, B)
C 1
1 N H (C, 1, 1, N, H)

In the following table, Turing's original model allowed only the first three lines that he called N1, N2, N3 (cf. Turing in The Undecidable, p. 126). He allowed for erasure of the "scanned square" by naming a 0th symbol S0 = "erase" or "blank", etc. However, he did not allow for non-printing, so every instruction-line includes "print symbol Sk" or "erase" (cf. footnote 12 in Post (1947), The Undecidable, p. 300). The abbreviations are Turing's (The Undecidable, p. 119). Subsequent to Turing's original paper in 1936–1937, machine-models have allowed all nine possible types of five-tuples:


Current m-configuration
(Turing state)
Tape symbol Print-operation Tape-motion Final m-configuration
(Turing state)
5-tuple 5-tuple comments 4-tuple
N1 qi Sj Print(Sk) Left L qm (qi, Sj, Sk, L, qm) "blank" = S0, 1=S1, etc.
N2 qi Sj Print(Sk) Right R qm (qi, Sj, Sk, R, qm) "blank" = S0, 1=S1, etc.
N3 qi Sj Print(Sk) None N qm (qi, Sj, Sk, N, qm) "blank" = S0, 1=S1, etc. (qi, Sj, Sk, qm)
4 qi Sj None N Left L qm (qi, Sj, N, L, qm)
(qi, Sj, L, qm)
5 qi Sj None N Right R qm (qi, Sj, N, R, qm)
(qi, Sj, R, qm)
6 qi Sj None N None N qm (qi, Sj, N, N, qm) Direct "jump" (qi, Sj, N, qm)
7 qi Sj Erase Left L qm (qi, Sj, E, L, qm)

8 qi Sj Erase Right R qm (qi, Sj, E, R, qm)

9 qi Sj Erase None N qm (qi, Sj, E, N, qm)
(qi, Sj, E, qm)

Any Turing table (list of instructions) can be constructed from the above nine 5-tuples. For technical reasons, the three non-printing or "N" instructions (4, 5, 6) can usually be dispensed with. For examples see Turing machine examples.

Less frequently the use of 4-tuples are encountered: these represent a further atomization of the Turing instructions (cf. Post (1947), Boolos & Jeffrey (1974, 1999), Davis-Sigal-Weyuker (1994)); also see more at Post–Turing machine.

The "state"

The word "state" used in context of Turing machines can be a source of confusion, as it can mean two things. Most commentators after Turing have used "state" to mean the name/designator of the current instruction to be performed—i.e. the contents of the state register. But Turing (1936) made a strong distinction between a record of what he called the machine's "m-configuration", and the machine's (or person's) "state of progress" through the computation—the current state of the total system. What Turing called "the state formula" includes both the current instruction and all the symbols on the tape:

Thus the state of progress of the computation at any stage is completely determined by the note of instructions and the symbols on the tape. That is, the state of the system may be described by a single expression (sequence of symbols) consisting of the symbols on the tape followed by Δ (which is supposed to not to appear elsewhere) and then by the note of instructions. This expression is called the "state formula".

— The Undecidable, pp. 139–140, emphasis added

Earlier in his paper Turing carried this even further: he gives an example where he placed a symbol of the current "m-configuration"—the instruction's label—beneath the scanned square, together with all the symbols on the tape (The Undecidable, p. 121); this he calls "the complete configuration" (The Undecidable, p. 118). To print the "complete configuration" on one line, he places the state-label/m-configuration to the left of the scanned symbol.

A variant of this is seen in Kleene (1952) where Kleene shows how to write the Gödel number of a machine's "situation": he places the "m-configuration" symbol q4 over the scanned square in roughly the center of the 6 non-blank squares on the tape (see the Turing-tape figure in this article) and puts it to the right of the scanned square. But Kleene refers to "q4" itself as "the machine state" (Kleene, p. 374-375). Hopcroft and Ullman call this composite the "instantaneous description" and follow the Turing convention of putting the "current state" (instruction-label, m-configuration) to the left of the scanned symbol (p. 149), that is, the instantaneous description is the composite of non-blank symbols to the left, state of the machine, the current symbol scanned by the head, and the non-blank symbols to the right.

Example: total state of 3-state 2-symbol busy beaver after 3 "moves" (taken from example "run" in the figure below):

1A1

This means: after three moves the tape has ... 000110000 ... on it, the head is scanning the right-most 1, and the state is A. Blanks (in this case represented by "0"s) can be part of the total state as shown here: B01; the tape has a single 1 on it, but the head is scanning the 0 ("blank") to its left and the state is B.

"State" in the context of Turing machines should be clarified as to which is being described: the current instruction, or the list of symbols on the tape together with the current instruction, or the list of symbols on the tape together with the current instruction placed to the left of the scanned symbol or to the right of the scanned symbol.

Turing's biographer Andrew Hodges (1983: 107) has noted and discussed this confusion.

"State" diagrams

The table for the 3-state busy beaver ("P" = print/write a "1")
Tape symbol Current state A Current state B Current state C

Write symbol Move tape Next state Write symbol Move tape Next state Write symbol Move tape Next state
0 P R B P L A P L B
1 P L C P R B P R HALT

The "3-state busy beaver" Turing machine in a finite-state representation. Each circle represents a "state" of the table—an "m-configuration" or "instruction". "Direction" of a state transition is shown by an arrow. The label (e.g. 0/P,R) near the outgoing state (at the "tail" of the arrow) specifies the scanned symbol that causes a particular transition (e.g. 0) followed by a slash /, followed by the subsequent "behaviors" of the machine, e.g. "P print" then move tape "R right". No general accepted format exists. The convention shown is after McClusky (1965), Booth (1967), Hill, and Peterson (1974).

To the right: the above table as expressed as a "state transition" diagram.

Usually large tables are better left as tables (Booth, p. 74). They are more readily simulated by computer in tabular form (Booth, p. 74). However, certain concepts—e.g. machines with "reset" states and machines with repeating patterns (cf. Hill and Peterson p. 244ff)—can be more readily seen when viewed as a drawing.

Whether a drawing represents an improvement on its table must be decided by the reader for the particular context.

The evolution of the busy beaver's computation starts at the top and proceeds to the bottom.

The reader should again be cautioned that such diagrams represent a snapshot of their table frozen in time, not the course ("trajectory") of a computation through time and space. While every time the busy beaver machine "runs" it will always follow the same state-trajectory, this is not true for the "copy" machine that can be provided with variable input "parameters".

The diagram "progress of the computation" shows the three-state busy beaver's "state" (instruction) progress through its computation from start to finish. On the far right is the Turing "complete configuration" (Kleene "situation", Hopcroft–Ullman "instantaneous description") at each step. If the machine were to be stopped and cleared to blank both the "state register" and entire tape, these "configurations" could be used to rekindle a computation anywhere in its progress (cf. Turing (1936) The Undecidable, pp. 139–140).

Equivalent models

See also: Turing machine equivalents, Register machine, and Post–Turing machine

Many machines that might be thought to have more computational capability than a simple universal Turing machine can be shown to have no more power (Hopcroft and Ullman p. 159, cf. Minsky (1967)). They might compute faster, perhaps, or use less memory, or their instruction set might be smaller, but they cannot compute more powerfully (i.e. more mathematical functions). (The Church–Turing thesis hypothesizes this to be true for any kind of machine: that anything that can be "computed" can be computed by some Turing machine.)

A Turing machine is equivalent to a single-stack pushdown automaton (PDA) that has been made more flexible and concise by relaxing the last-in-first-out (LIFO) requirement of its stack. In addition, a Turing machine is also equivalent to a two-stack PDA with standard LIFO semantics, by using one stack to model the tape left of the head and the other stack for the tape to the right.

At the other extreme, some very simple models turn out to be Turing-equivalent, i.e. to have the same computational power as the Turing machine model.

Common equivalent models are the multi-tape Turing machine, multi-track Turing machine, machines with input and output, and the non-deterministic Turing machine (NDTM) as opposed to the deterministic Turing machine (DTM) for which the action table has at most one entry for each combination of symbol and state.

Read-only, right-moving Turing machines are equivalent to DFAs (as well as NFAs by conversion using the NDFA to DFA conversion algorithm).

For practical and didactical intentions the equivalent register machine can be used as a usual assembly programming language.

A relevant question is whether or not the computation model represented by concrete programming languages is Turing equivalent. While the computation of a real computer is based on finite states and thus not capable to simulate a Turing machine, programming languages themselves do not necessarily have this limitation. Kirner et al., 2009 have shown that among the general-purpose programming languages some are Turing complete while others are not. For example, ANSI C is not Turing-equivalent, as all instantiations of ANSI C (different instantiations are possible as the standard deliberately leaves certain behaviour undefined for legacy reasons) imply a finite-space memory. This is because the size of memory reference data types, called pointers, is accessible inside the language. However, other programming languages like Pascal do not have this feature, which allows them to be Turing complete in principle. It is just Turing complete in principle, as memory allocation in a programming language is allowed to fail, which means the programming language can be Turing complete when ignoring failed memory allocations, but the compiled programs executable on a real computer cannot.

Choice c-machines, oracle o-machines

Early in his paper (1936) Turing makes a distinction between an "automatic machine"—its "motion ... completely determined by the configuration" and a "choice machine":

...whose motion is only partially determined by the configuration ... When such a machine reaches one of these ambiguous configurations, it cannot go on until some arbitrary choice has been made by an external operator. This would be the case if we were using machines to deal with axiomatic systems.

— The Undecidable, p. 118

Turing (1936) does not elaborate further except in a footnote in which he describes how to use an a-machine to "find all the provable formulae of the [Hilbert] calculus" rather than use a choice machine. He "suppose[s] that the choices are always between two possibilities 0 and 1. Each proof will then be determined by a sequence of choices i1, i2, ..., in (i1 = 0 or 1, i2 = 0 or 1, ..., in = 0 or 1), and hence the number 2n + i12n-1 + i22n-2 + ... +in completely determines the proof. The automatic machine carries out successively proof 1, proof 2, proof 3, ..." (Footnote ‡, The Undecidable, p. 138)

This is indeed the technique by which a deterministic (i.e., a-) Turing machine can be used to mimic the action of a nondeterministic Turing machine; Turing solved the matter in a footnote and appears to dismiss it from further consideration.

An oracle machine or o-machine is a Turing a-machine that pauses its computation at state "o" while, to complete its calculation, it "awaits the decision" of "the oracle"—an unspecified entity "apart from saying that it cannot be a machine" (Turing (1939), The Undecidable, p. 166–168).

Universal Turing machines

Main article: Universal Turing machine
 
An implementation of a Turing machine

As Turing wrote in The Undecidable, p. 128 (italics added):

It is possible to invent a single machine which can be used to compute any computable sequence. If this machine U is supplied with the tape on the beginning of which is written the string of quintuples separated by semicolons of some computing machine M, then U will compute the same sequence as M.

This finding is now taken for granted, but at the time (1936) it was considered astonishing.[citation needed] The model of computation that Turing called his "universal machine"—"U" for short—is considered by some (cf. Davis (2000)) to have been the fundamental theoretical breakthrough that led to the notion of the stored-program computer.

Turing's paper ... contains, in essence, the invention of the modern computer and some of the programming techniques that accompanied it.

— Minsky (1967), p. 104

In terms of computational complexity, a multi-tape universal Turing machine need only be slower by logarithmic factor compared to the machines it simulates. This result was obtained in 1966 by F. C. Hennie and R. E. Stearns. (Arora and Barak, 2009, theorem 1.9)

Comparison with real machines

A Turing machine realization using Lego pieces

It is often believed that Turing machines, unlike simpler automata, are as powerful as real machines, and are able to execute any operation that a real program can. What is neglected in this statement is that, because a real machine can only have a finite number of configurations, it is nothing but a finite-state machine, whereas a Turing machine has an unlimited amount of storage space available for its computations.

There are a number of ways to explain why Turing machines are useful models of real computers:

  • Anything a real computer can compute, a Turing machine can also compute. For example: "A Turing machine can simulate any type of subroutine found in programming languages, including recursive procedures and any of the known parameter-passing mechanisms" (Hopcroft and Ullman p. 157). A large enough FSA can also model any real computer, disregarding IO. Thus, a statement about the limitations of Turing machines will also apply to real computers.
  • The difference lies only with the ability of a Turing machine to manipulate an unbounded amount of data. However, given a finite amount of time, a Turing machine (like a real machine) can only manipulate a finite amount of data.
  • Like a Turing machine, a real machine can have its storage space enlarged as needed, by acquiring more disks or other storage media.
  • Descriptions of real machine programs using simpler abstract models are often much more complex than descriptions using Turing machines. For example, a Turing machine describing an algorithm may have a few hundred states, while the equivalent deterministic finite automaton (DFA) on a given real machine has quadrillions. This makes the DFA representation infeasible to analyze.
  • Turing machines describe algorithms independent of how much memory they use. There is a limit to the memory possessed by any current machine, but this limit can rise arbitrarily in time. Turing machines allow us to make statements about algorithms which will (theoretically) hold forever, regardless of advances in conventional computing machine architecture.
  • Turing machines simplify the statement of algorithms. Algorithms running on Turing-equivalent abstract machines are usually more general than their counterparts running on real machines, because they have arbitrary-precision data types available and never have to deal with unexpected conditions (including, but not limited to, running out of memory).
Another Turing machine realization

Limitations

Computational complexity theory

Further information: Computational complexity theory

A limitation of Turing machines is that they do not model the strengths of a particular arrangement well. For instance, modern stored-program computers are actually instances of a more specific form of abstract machine known as the random-access stored-program machine or RASP machine model. Like the universal Turing machine, the RASP stores its "program" in "memory" external to its finite-state machine's "instructions". Unlike the universal Turing machine, the RASP has an infinite number of distinguishable, numbered but unbounded "registers"—memory "cells" that can contain any integer (cf. Elgot and Robinson (1964), Hartmanis (1971), and in particular Cook-Rechow (1973); references at random-access machine). The RASP's finite-state machine is equipped with the capability for indirect addressing (e.g., the contents of one register can be used as an address to specify another register); thus the RASP's "program" can address any register in the register-sequence. The upshot of this distinction is that there are computational optimizations that can be performed based on the memory indices, which are not possible in a general Turing machine; thus when Turing machines are used as the basis for bounding running times, a "false lower bound" can be proven on certain algorithms' running times (due to the false simplifying assumption of a Turing machine). An example of this is binary search, an algorithm that can be shown to perform more quickly when using the RASP model of computation rather than the Turing machine model.

Concurrency

Another limitation of Turing machines is that they do not model concurrency well. For example, there is a bound on the size of integer that can be computed by an always-halting nondeterministic Turing machine starting on a blank tape. (See article on unbounded nondeterminism.) By contrast, there are always-halting concurrent systems with no inputs that can compute an integer of unbounded size. (A process can be created with local storage that is initialized with a count of 0 that concurrently sends itself both a stop and a go message. When it receives a go message, it increments its count by 1 and sends itself a go message. When it receives a stop message, it stops with an unbounded number in its local storage.)

Interaction

In the early days of computing, computer use was typically limited to batch processing, i.e., non-interactive tasks, each producing output data from given input data. Computability theory, which studies computability of functions from inputs to outputs, and for which Turing machines were invented, reflects this practice.

Since the 1970s, interactive use of computers became much more common. In principle, it is possible to model this by having an external agent read from the tape and write to it at the same time as a Turing machine, but this rarely matches how interaction actually happens; therefore, when describing interactivity, alternatives such as I/O automata are usually preferred.

History

See also: Algorithm and Church–Turing thesis

They were described in 1936 by Alan Turing.

Historical background: computational machinery

Robin Gandy (1919–1995)—a student of Alan Turing (1912–1954), and his lifelong friend—traces the lineage of the notion of "calculating machine" back to Charles Babbage (circa 1834) and actually proposes "Babbage's Thesis":

That the whole of development and operations of analysis are now capable of being executed by machinery.

— (italics in Babbage as cited by Gandy, p. 54)

Gandy's analysis of Babbage's analytical engine describes the following five operations (cf. p. 52–53):

  • The arithmetic functions +, −, ×, where − indicates "proper" subtraction x − y = 0 if y ≥ x.
  • Any sequence of operations is an operation.
  • Iteration of an operation (repeating n times an operation P).
  • Conditional iteration (repeating n times an operation P conditional on the "success" of test T).
  • Conditional transfer (i.e., conditional "goto").

Gandy states that "the functions which can be calculated by (1), (2), and (4) are precisely those which are Turing computable." (p. 53). He cites other proposals for "universal calculating machines" including those of Percy Ludgate (1909), Leonardo Torres y Quevedo (1914), Maurice d'Ocagne (1922), Louis Couffignal (1933), Vannevar Bush (1936), Howard Aiken (1937). However:

… the emphasis is on programming a fixed iterable sequence of arithmetical operations. The fundamental importance of conditional iteration and conditional transfer for a general theory of calculating machines is not recognized…

— Gandy p. 55

The Entscheidungsproblem (the "decision problem"): Hilbert's tenth question of 1900

With regard to Hilbert's problems posed by the famous mathematician David Hilbert in 1900, an aspect of problem #10 had been floating about for almost 30 years before it was framed precisely. Hilbert's original expression for No. 10 is as follows:

10. Determination of the solvability of a Diophantine equation. Given a Diophantine equation with any number of unknown quantities and with rational integral coefficients: To devise a process according to which it can be determined in a finite number of operations whether the equation is solvable in rational integers. The Entscheidungsproblem [decision problem for first-order logic] is solved when we know a procedure that allows for any given logical expression to decide by finitely many operations its validity or satisfiability ... The Entscheidungsproblem must be considered the main problem of mathematical logic.

— quoted, with this translation and the original German, in Dershowitz and Gurevich, 2008

By 1922, this notion of "Entscheidungsproblem" had developed a bit, and H. Behmann stated that

... most general form of the Entscheidungsproblem [is] as follows:

A quite definite generally applicable prescription is required which will allow one to decide in a finite number of steps the truth or falsity of a given purely logical assertion ...

— Gandy p. 57, quoting Behmann

Behmann remarks that ... the general problem is equivalent to the problem of deciding which mathematical propositions are true.

— ibid.

If one were able to solve the Entscheidungsproblem then one would have a "procedure for solving many (or even all) mathematical problems".

— ibid., p. 92

By the 1928 international congress of mathematicians, Hilbert "made his questions quite precise. First, was mathematics complete ... Second, was mathematics consistent ... And thirdly, was mathematics decidable?" (Hodges p. 91, Hawking p. 1121). The first two questions were answered in 1930 by Kurt Gödel at the very same meeting where Hilbert delivered his retirement speech (much to the chagrin of Hilbert); the third—the Entscheidungsproblem—had to wait until the mid-1930s.

The problem was that an answer first required a precise definition of "definite general applicable prescription", which Princeton professor Alonzo Church would come to call "effective calculability", and in 1928 no such definition existed. But over the next 6–7 years Emil Post developed his definition of a worker moving from room to room writing and erasing marks per a list of instructions (Post 1936), as did Church and his two students Stephen Kleene and J. B. Rosser by use of Church's lambda-calculus and Gödel's recursion theory (1934). Church's paper (published 15 April 1936) showed that the Entscheidungsproblem was indeed "undecidable" and beat Turing to the punch by almost a year (Turing's paper submitted 28 May 1936, published January 1937). In the meantime, Emil Post submitted a brief paper in the fall of 1936, so Turing at least had priority over Post. While Church refereed Turing's paper, Turing had time to study Church's paper and add an Appendix where he sketched a proof that Church's lambda-calculus and his machines would compute the same functions.

But what Church had done was something rather different, and in a certain sense weaker. ... the Turing construction was more direct, and provided an argument from first principles, closing the gap in Church's demonstration.

— Hodges p. 112

And Post had only proposed a definition of calculability and criticized Church's "definition", but had proved nothing.

Alan Turing's a-machine

In the spring of 1935, Turing as a young Master's student at King's College, Cambridge, took on the challenge; he had been stimulated by the lectures of the logician M. H. A. Newman "and learned from them of Gödel's work and the Entscheidungsproblem ... Newman used the word 'mechanical' ... In his obituary of Turing 1955 Newman writes:

To the question 'what is a "mechanical" process?' Turing returned the characteristic answer 'Something that can be done by a machine' and he embarked on the highly congenial task of analysing the general notion of a computing machine.

— Gandy, p. 74

Gandy states that:

I suppose, but do not know, that Turing, right from the start of his work, had as his goal a proof of the undecidability of the Entscheidungsproblem. He told me that the 'main idea' of the paper came to him when he was lying in Grantchester meadows in the summer of 1935. The 'main idea' might have either been his analysis of computation or his realization that there was a universal machine, and so a diagonal argument to prove unsolvability.

— ibid., p. 76

While Gandy believed that Newman's statement above is "misleading", this opinion is not shared by all. Turing had a lifelong interest in machines: "Alan had dreamt of inventing typewriters as a boy; [his mother] Mrs. Turing had a typewriter; and he could well have begun by asking himself what was meant by calling a typewriter 'mechanical'" (Hodges p. 96). While at Princeton pursuing his PhD, Turing built a Boolean-logic multiplier (see below). His PhD thesis, titled "Systems of Logic Based on Ordinals", contains the following definition of "a computable function":

It was stated above that 'a function is effectively calculable if its values can be found by some purely mechanical process'. We may take this statement literally, understanding by a purely mechanical process one which could be carried out by a machine. It is possible to give a mathematical description, in a certain normal form, of the structures of these machines. The development of these ideas leads to the author's definition of a computable function, and to an identification of computability with effective calculability. It is not difficult, though somewhat laborious, to prove that these three definitions [the 3rd is the λ-calculus] are equivalent.

— Turing (1939) in The Undecidable, p. 160

When Turing returned to the UK he ultimately became jointly responsible for breaking the German secret codes created by encryption machines called "The Enigma"; he also became involved in the design of the ACE (Automatic Computing Engine), "[Turing's] ACE proposal was effectively self-contained, and its roots lay not in the EDVAC [the USA's initiative], but in his own universal machine" (Hodges p. 318). Arguments still continue concerning the origin and nature of what has been named by Kleene (1952) Turing's Thesis. But what Turing did prove with his computational-machine model appears in his paper "On Computable Numbers, with an Application to the Entscheidungsproblem" (1937):

[that] the Hilbert Entscheidungsproblem can have no solution ... I propose, therefore to show that there can be no general process for determining whether a given formula U of the functional calculus K is provable, i.e. that there can be no machine which, supplied with any one U of these formulae, will eventually say whether U is provable.

— from Turing's paper as reprinted in The Undecidable, p. 145

Turing's example (his second proof): If one is to ask for a general procedure to tell us: "Does this machine ever print 0", the question is "undecidable".

1937–1970: The "digital computer", the birth of "computer science"

In 1937, while at Princeton working on his PhD thesis, Turing built a digital (Boolean-logic) multiplier from scratch, making his own electromechanical relays (Hodges p. 138). "Alan's task was to embody the logical design of a Turing machine in a network of relay-operated switches ..." (Hodges p. 138). While Turing might have been just initially curious and experimenting, quite-earnest work in the same direction was going in Germany (Konrad Zuse (1938)), and in the United States (Howard Aiken) and George Stibitz (1937); the fruits of their labors were used by both the Axis and Allied militaries in World War II (cf. Hodges p. 298–299). In the early to mid-1950s Hao Wang and Marvin Minsky reduced the Turing machine to a simpler form (a precursor to the Post–Turing machine of Martin Davis); simultaneously European researchers were reducing the new-fangled electronic computer to a computer-like theoretical object equivalent to what was now being called a "Turing machine". In the late 1950s and early 1960s, the coincidentally parallel developments of Melzak and Lambek (1961), Minsky (1961), and Shepherdson and Sturgis (1961) carried the European work further and reduced the Turing machine to a more friendly, computer-like abstract model called the counter machine; Elgot and Robinson (1964), Hartmanis (1971), Cook and Reckhow (1973) carried this work even further with the register machine and random-access machine models—but basically all are just multi-tape Turing machines with an arithmetic-like instruction set.

1970–present: as a model of computation

Today, the counter, register and random-access machines and their sire the Turing machine continue to be the models of choice for theorists investigating questions in the theory of computation. In particular, computational complexity theory makes use of the Turing machine:

Depending on the objects one likes to manipulate in the computations (numbers like nonnegative integers or alphanumeric strings), two models have obtained a dominant position in machine-based complexity theory:

the off-line multitape Turing machine..., which represents the standard model for string-oriented computation, and the random access machine (RAM) as introduced by Cook and Reckhow ..., which models the idealized Von Neumann-style computer.

— van Emde Boas 1990:4

Only in the related area of analysis of algorithms this role is taken over by the RAM model.

— van Emde Boas 1990:16
at July 07, 2022
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Newer Post Older Post Home

Interpersonal communication

From Wikipedia, the free encyclopedia https://en.wikipedia.org/wiki/Interpers...

  • Islamic State and the Levant
    From Wikipedia, the free encyclopedia Islamic State of Iraq and the Levant الدولة الإسلامية في العراق والشام   ( ...
  • Heart Sutra
    From Wikipedia, the free encyclopedia A reproduction of the palm -leaf manuscript in Siddham script ...
  • Environmental impact of fracking
    From Wikipedia, the free encyclopedia Fracking Shale gas drilling rig near Alvarado, Texas The environme...

Search This Blog

  • Home

About Me

My photo
David J Strumfels
View my complete profile

Blog Archive

  • ►  2025 (857)
    • ►  May (104)
      • ►  May 18 (6)
      • ►  May 17 (7)
      • ►  May 16 (1)
      • ►  May 15 (5)
      • ►  May 14 (6)
      • ►  May 13 (12)
      • ►  May 12 (4)
      • ►  May 11 (2)
      • ►  May 10 (5)
      • ►  May 09 (3)
      • ►  May 08 (7)
      • ►  May 07 (3)
      • ►  May 06 (8)
      • ►  May 05 (9)
      • ►  May 04 (5)
      • ►  May 03 (6)
      • ►  May 02 (5)
      • ►  May 01 (10)
    • ►  April (193)
      • ►  Apr 30 (8)
      • ►  Apr 29 (6)
      • ►  Apr 28 (5)
      • ►  Apr 27 (10)
      • ►  Apr 26 (9)
      • ►  Apr 25 (4)
      • ►  Apr 24 (11)
      • ►  Apr 23 (3)
      • ►  Apr 22 (8)
      • ►  Apr 21 (10)
      • ►  Apr 20 (14)
      • ►  Apr 19 (6)
      • ►  Apr 18 (13)
      • ►  Apr 17 (10)
      • ►  Apr 16 (8)
      • ►  Apr 15 (4)
      • ►  Apr 14 (6)
      • ►  Apr 13 (7)
      • ►  Apr 12 (7)
      • ►  Apr 11 (9)
      • ►  Apr 10 (1)
      • ►  Apr 09 (5)
      • ►  Apr 08 (4)
      • ►  Apr 07 (5)
      • ►  Apr 06 (4)
      • ►  Apr 05 (4)
      • ►  Apr 04 (2)
      • ►  Apr 03 (2)
      • ►  Apr 02 (2)
      • ►  Apr 01 (6)
    • ►  March (182)
      • ►  Mar 31 (5)
      • ►  Mar 30 (10)
      • ►  Mar 29 (12)
      • ►  Mar 28 (5)
      • ►  Mar 27 (7)
      • ►  Mar 26 (5)
      • ►  Mar 25 (7)
      • ►  Mar 24 (8)
      • ►  Mar 23 (6)
      • ►  Mar 22 (5)
      • ►  Mar 21 (5)
      • ►  Mar 20 (5)
      • ►  Mar 19 (6)
      • ►  Mar 18 (4)
      • ►  Mar 17 (7)
      • ►  Mar 16 (5)
      • ►  Mar 15 (7)
      • ►  Mar 14 (5)
      • ►  Mar 13 (2)
      • ►  Mar 12 (1)
      • ►  Mar 11 (1)
      • ►  Mar 10 (6)
      • ►  Mar 09 (8)
      • ►  Mar 08 (7)
      • ►  Mar 07 (6)
      • ►  Mar 06 (11)
      • ►  Mar 05 (6)
      • ►  Mar 04 (8)
      • ►  Mar 03 (4)
      • ►  Mar 02 (5)
      • ►  Mar 01 (3)
    • ►  February (115)
      • ►  Feb 28 (5)
      • ►  Feb 27 (5)
      • ►  Feb 26 (1)
      • ►  Feb 25 (2)
      • ►  Feb 24 (5)
      • ►  Feb 22 (2)
      • ►  Feb 21 (2)
      • ►  Feb 20 (3)
      • ►  Feb 19 (4)
      • ►  Feb 18 (4)
      • ►  Feb 17 (6)
      • ►  Feb 16 (2)
      • ►  Feb 15 (4)
      • ►  Feb 14 (4)
      • ►  Feb 13 (1)
      • ►  Feb 12 (3)
      • ►  Feb 11 (2)
      • ►  Feb 10 (7)
      • ►  Feb 09 (5)
      • ►  Feb 08 (4)
      • ►  Feb 07 (4)
      • ►  Feb 06 (5)
      • ►  Feb 05 (7)
      • ►  Feb 04 (6)
      • ►  Feb 03 (7)
      • ►  Feb 02 (7)
      • ►  Feb 01 (8)
    • ►  January (263)
      • ►  Jan 31 (7)
      • ►  Jan 30 (8)
      • ►  Jan 29 (8)
      • ►  Jan 28 (6)
      • ►  Jan 27 (7)
      • ►  Jan 26 (15)
      • ►  Jan 25 (11)
      • ►  Jan 24 (18)
      • ►  Jan 23 (10)
      • ►  Jan 22 (13)
      • ►  Jan 21 (5)
      • ►  Jan 20 (9)
      • ►  Jan 19 (2)
      • ►  Jan 18 (6)
      • ►  Jan 17 (4)
      • ►  Jan 16 (5)
      • ►  Jan 15 (7)
      • ►  Jan 14 (7)
      • ►  Jan 13 (11)
      • ►  Jan 12 (4)
      • ►  Jan 11 (16)
      • ►  Jan 10 (11)
      • ►  Jan 09 (6)
      • ►  Jan 08 (5)
      • ►  Jan 07 (9)
      • ►  Jan 06 (6)
      • ►  Jan 05 (10)
      • ►  Jan 04 (14)
      • ►  Jan 03 (4)
      • ►  Jan 02 (14)
      • ►  Jan 01 (5)
  • ►  2024 (3069)
    • ►  December (227)
      • ►  Dec 31 (6)
      • ►  Dec 30 (4)
      • ►  Dec 29 (5)
      • ►  Dec 28 (4)
      • ►  Dec 27 (4)
      • ►  Dec 26 (5)
      • ►  Dec 25 (3)
      • ►  Dec 24 (5)
      • ►  Dec 23 (6)
      • ►  Dec 22 (8)
      • ►  Dec 21 (9)
      • ►  Dec 20 (15)
      • ►  Dec 19 (4)
      • ►  Dec 18 (13)
      • ►  Dec 17 (9)
      • ►  Dec 16 (14)
      • ►  Dec 15 (14)
      • ►  Dec 14 (12)
      • ►  Dec 13 (6)
      • ►  Dec 12 (10)
      • ►  Dec 11 (11)
      • ►  Dec 10 (7)
      • ►  Dec 09 (7)
      • ►  Dec 08 (6)
      • ►  Dec 07 (13)
      • ►  Dec 06 (4)
      • ►  Dec 05 (8)
      • ►  Dec 04 (3)
      • ►  Dec 03 (2)
      • ►  Dec 02 (6)
      • ►  Dec 01 (4)
    • ►  November (223)
      • ►  Nov 30 (6)
      • ►  Nov 29 (6)
      • ►  Nov 28 (6)
      • ►  Nov 27 (4)
      • ►  Nov 26 (5)
      • ►  Nov 25 (12)
      • ►  Nov 24 (9)
      • ►  Nov 23 (9)
      • ►  Nov 22 (7)
      • ►  Nov 21 (8)
      • ►  Nov 20 (6)
      • ►  Nov 19 (5)
      • ►  Nov 18 (8)
      • ►  Nov 17 (7)
      • ►  Nov 16 (7)
      • ►  Nov 15 (8)
      • ►  Nov 14 (8)
      • ►  Nov 13 (5)
      • ►  Nov 12 (3)
      • ►  Nov 11 (7)
      • ►  Nov 10 (12)
      • ►  Nov 09 (6)
      • ►  Nov 08 (10)
      • ►  Nov 07 (8)
      • ►  Nov 06 (4)
      • ►  Nov 05 (2)
      • ►  Nov 04 (7)
      • ►  Nov 03 (19)
      • ►  Nov 02 (7)
      • ►  Nov 01 (12)
    • ►  October (231)
      • ►  Oct 31 (5)
      • ►  Oct 30 (9)
      • ►  Oct 29 (13)
      • ►  Oct 28 (11)
      • ►  Oct 27 (13)
      • ►  Oct 26 (11)
      • ►  Oct 25 (11)
      • ►  Oct 24 (8)
      • ►  Oct 23 (8)
      • ►  Oct 22 (1)
      • ►  Oct 21 (8)
      • ►  Oct 20 (2)
      • ►  Oct 17 (5)
      • ►  Oct 16 (8)
      • ►  Oct 15 (14)
      • ►  Oct 14 (15)
      • ►  Oct 13 (11)
      • ►  Oct 12 (7)
      • ►  Oct 11 (8)
      • ►  Oct 10 (4)
      • ►  Oct 09 (11)
      • ►  Oct 08 (3)
      • ►  Oct 07 (6)
      • ►  Oct 06 (3)
      • ►  Oct 05 (2)
      • ►  Oct 04 (5)
      • ►  Oct 03 (9)
      • ►  Oct 02 (8)
      • ►  Oct 01 (12)
    • ►  September (257)
      • ►  Sep 30 (3)
      • ►  Sep 29 (12)
      • ►  Sep 28 (16)
      • ►  Sep 27 (6)
      • ►  Sep 26 (2)
      • ►  Sep 25 (1)
      • ►  Sep 24 (3)
      • ►  Sep 23 (2)
      • ►  Sep 22 (6)
      • ►  Sep 21 (18)
      • ►  Sep 20 (5)
      • ►  Sep 19 (5)
      • ►  Sep 18 (2)
      • ►  Sep 17 (1)
      • ►  Sep 16 (4)
      • ►  Sep 15 (12)
      • ►  Sep 14 (4)
      • ►  Sep 13 (12)
      • ►  Sep 12 (6)
      • ►  Sep 11 (5)
      • ►  Sep 10 (4)
      • ►  Sep 09 (9)
      • ►  Sep 08 (12)
      • ►  Sep 07 (17)
      • ►  Sep 06 (13)
      • ►  Sep 05 (10)
      • ►  Sep 04 (10)
      • ►  Sep 03 (18)
      • ►  Sep 02 (20)
      • ►  Sep 01 (19)
    • ►  August (338)
      • ►  Aug 31 (16)
      • ►  Aug 30 (17)
      • ►  Aug 29 (11)
      • ►  Aug 28 (15)
      • ►  Aug 27 (16)
      • ►  Aug 26 (7)
      • ►  Aug 25 (7)
      • ►  Aug 24 (11)
      • ►  Aug 23 (9)
      • ►  Aug 22 (11)
      • ►  Aug 21 (8)
      • ►  Aug 20 (14)
      • ►  Aug 19 (9)
      • ►  Aug 18 (7)
      • ►  Aug 17 (3)
      • ►  Aug 16 (13)
      • ►  Aug 15 (7)
      • ►  Aug 14 (12)
      • ►  Aug 13 (12)
      • ►  Aug 12 (15)
      • ►  Aug 11 (13)
      • ►  Aug 10 (12)
      • ►  Aug 09 (17)
      • ►  Aug 08 (13)
      • ►  Aug 07 (8)
      • ►  Aug 06 (8)
      • ►  Aug 05 (17)
      • ►  Aug 04 (4)
      • ►  Aug 03 (7)
      • ►  Aug 02 (13)
      • ►  Aug 01 (6)
    • ►  July (305)
      • ►  Jul 31 (7)
      • ►  Jul 30 (14)
      • ►  Jul 29 (11)
      • ►  Jul 28 (17)
      • ►  Jul 27 (12)
      • ►  Jul 26 (13)
      • ►  Jul 25 (12)
      • ►  Jul 24 (4)
      • ►  Jul 23 (15)
      • ►  Jul 22 (8)
      • ►  Jul 21 (8)
      • ►  Jul 20 (11)
      • ►  Jul 19 (13)
      • ►  Jul 18 (5)
      • ►  Jul 17 (4)
      • ►  Jul 16 (7)
      • ►  Jul 15 (12)
      • ►  Jul 14 (12)
      • ►  Jul 13 (4)
      • ►  Jul 12 (11)
      • ►  Jul 11 (14)
      • ►  Jul 10 (10)
      • ►  Jul 09 (14)
      • ►  Jul 08 (10)
      • ►  Jul 07 (3)
      • ►  Jul 06 (9)
      • ►  Jul 05 (13)
      • ►  Jul 04 (9)
      • ►  Jul 03 (8)
      • ►  Jul 02 (8)
      • ►  Jul 01 (7)
    • ►  June (217)
      • ►  Jun 30 (5)
      • ►  Jun 29 (7)
      • ►  Jun 28 (6)
      • ►  Jun 27 (4)
      • ►  Jun 26 (4)
      • ►  Jun 25 (8)
      • ►  Jun 24 (9)
      • ►  Jun 23 (5)
      • ►  Jun 22 (5)
      • ►  Jun 21 (4)
      • ►  Jun 20 (4)
      • ►  Jun 19 (7)
      • ►  Jun 18 (10)
      • ►  Jun 17 (4)
      • ►  Jun 16 (10)
      • ►  Jun 15 (10)
      • ►  Jun 14 (11)
      • ►  Jun 13 (14)
      • ►  Jun 12 (9)
      • ►  Jun 11 (8)
      • ►  Jun 10 (6)
      • ►  Jun 09 (9)
      • ►  Jun 08 (14)
      • ►  Jun 07 (2)
      • ►  Jun 06 (1)
      • ►  Jun 05 (2)
      • ►  Jun 04 (11)
      • ►  Jun 03 (3)
      • ►  Jun 02 (15)
      • ►  Jun 01 (10)
    • ►  May (166)
      • ►  May 31 (3)
      • ►  May 30 (2)
      • ►  May 29 (6)
      • ►  May 28 (5)
      • ►  May 27 (9)
      • ►  May 26 (6)
      • ►  May 25 (3)
      • ►  May 24 (6)
      • ►  May 23 (6)
      • ►  May 22 (6)
      • ►  May 21 (8)
      • ►  May 20 (2)
      • ►  May 19 (5)
      • ►  May 18 (5)
      • ►  May 17 (3)
      • ►  May 16 (5)
      • ►  May 15 (6)
      • ►  May 14 (4)
      • ►  May 13 (4)
      • ►  May 12 (9)
      • ►  May 11 (12)
      • ►  May 10 (4)
      • ►  May 09 (7)
      • ►  May 08 (5)
      • ►  May 07 (8)
      • ►  May 06 (10)
      • ►  May 05 (2)
      • ►  May 04 (4)
      • ►  May 03 (2)
      • ►  May 02 (6)
      • ►  May 01 (3)
    • ►  April (275)
      • ►  Apr 29 (2)
      • ►  Apr 28 (8)
      • ►  Apr 27 (10)
      • ►  Apr 26 (11)
      • ►  Apr 25 (9)
      • ►  Apr 24 (7)
      • ►  Apr 23 (5)
      • ►  Apr 22 (8)
      • ►  Apr 21 (9)
      • ►  Apr 20 (8)
      • ►  Apr 19 (4)
      • ►  Apr 18 (9)
      • ►  Apr 17 (11)
      • ►  Apr 16 (15)
      • ►  Apr 15 (12)
      • ►  Apr 14 (15)
      • ►  Apr 13 (14)
      • ►  Apr 12 (15)
      • ►  Apr 11 (12)
      • ►  Apr 10 (14)
      • ►  Apr 09 (6)
      • ►  Apr 08 (16)
      • ►  Apr 07 (4)
      • ►  Apr 06 (9)
      • ►  Apr 05 (13)
      • ►  Apr 04 (8)
      • ►  Apr 03 (12)
      • ►  Apr 02 (5)
      • ►  Apr 01 (4)
    • ►  March (200)
      • ►  Mar 31 (6)
      • ►  Mar 30 (12)
      • ►  Mar 29 (9)
      • ►  Mar 28 (11)
      • ►  Mar 27 (13)
      • ►  Mar 26 (8)
      • ►  Mar 25 (9)
      • ►  Mar 24 (3)
      • ►  Mar 23 (7)
      • ►  Mar 22 (3)
      • ►  Mar 21 (16)
      • ►  Mar 20 (2)
      • ►  Mar 19 (7)
      • ►  Mar 18 (6)
      • ►  Mar 17 (12)
      • ►  Mar 16 (9)
      • ►  Mar 15 (10)
      • ►  Mar 14 (2)
      • ►  Mar 13 (8)
      • ►  Mar 12 (1)
      • ►  Mar 10 (4)
      • ►  Mar 09 (2)
      • ►  Mar 08 (1)
      • ►  Mar 07 (4)
      • ►  Mar 06 (6)
      • ►  Mar 05 (11)
      • ►  Mar 04 (9)
      • ►  Mar 02 (8)
      • ►  Mar 01 (1)
    • ►  February (220)
      • ►  Feb 29 (6)
      • ►  Feb 28 (1)
      • ►  Feb 27 (4)
      • ►  Feb 26 (6)
      • ►  Feb 25 (7)
      • ►  Feb 24 (4)
      • ►  Feb 23 (5)
      • ►  Feb 22 (7)
      • ►  Feb 20 (15)
      • ►  Feb 19 (4)
      • ►  Feb 18 (13)
      • ►  Feb 17 (4)
      • ►  Feb 16 (5)
      • ►  Feb 15 (10)
      • ►  Feb 14 (9)
      • ►  Feb 13 (17)
      • ►  Feb 12 (9)
      • ►  Feb 11 (10)
      • ►  Feb 10 (18)
      • ►  Feb 09 (5)
      • ►  Feb 08 (9)
      • ►  Feb 07 (11)
      • ►  Feb 06 (6)
      • ►  Feb 05 (10)
      • ►  Feb 04 (4)
      • ►  Feb 03 (5)
      • ►  Feb 02 (8)
      • ►  Feb 01 (8)
    • ►  January (410)
      • ►  Jan 31 (13)
      • ►  Jan 30 (11)
      • ►  Jan 29 (14)
      • ►  Jan 28 (11)
      • ►  Jan 27 (20)
      • ►  Jan 26 (22)
      • ►  Jan 25 (16)
      • ►  Jan 24 (14)
      • ►  Jan 23 (18)
      • ►  Jan 22 (15)
      • ►  Jan 21 (11)
      • ►  Jan 20 (16)
      • ►  Jan 19 (5)
      • ►  Jan 18 (11)
      • ►  Jan 17 (11)
      • ►  Jan 16 (8)
      • ►  Jan 15 (27)
      • ►  Jan 14 (12)
      • ►  Jan 13 (16)
      • ►  Jan 12 (4)
      • ►  Jan 11 (8)
      • ►  Jan 10 (7)
      • ►  Jan 09 (9)
      • ►  Jan 08 (10)
      • ►  Jan 07 (10)
      • ►  Jan 06 (13)
      • ►  Jan 05 (18)
      • ►  Jan 04 (9)
      • ►  Jan 03 (20)
      • ►  Jan 02 (14)
      • ►  Jan 01 (17)
  • ►  2023 (4333)
    • ►  December (314)
      • ►  Dec 31 (10)
      • ►  Dec 30 (18)
      • ►  Dec 29 (17)
      • ►  Dec 28 (8)
      • ►  Dec 27 (1)
      • ►  Dec 26 (14)
      • ►  Dec 25 (19)
      • ►  Dec 24 (20)
      • ►  Dec 23 (12)
      • ►  Dec 22 (12)
      • ►  Dec 21 (4)
      • ►  Dec 20 (18)
      • ►  Dec 19 (9)
      • ►  Dec 18 (5)
      • ►  Dec 17 (6)
      • ►  Dec 16 (17)
      • ►  Dec 15 (5)
      • ►  Dec 14 (16)
      • ►  Dec 13 (10)
      • ►  Dec 12 (7)
      • ►  Dec 11 (2)
      • ►  Dec 10 (7)
      • ►  Dec 09 (3)
      • ►  Dec 08 (5)
      • ►  Dec 07 (5)
      • ►  Dec 06 (16)
      • ►  Dec 05 (13)
      • ►  Dec 04 (11)
      • ►  Dec 03 (8)
      • ►  Dec 02 (7)
      • ►  Dec 01 (9)
    • ►  November (353)
      • ►  Nov 30 (10)
      • ►  Nov 29 (8)
      • ►  Nov 28 (7)
      • ►  Nov 27 (13)
      • ►  Nov 26 (7)
      • ►  Nov 25 (4)
      • ►  Nov 23 (11)
      • ►  Nov 22 (6)
      • ►  Nov 21 (7)
      • ►  Nov 20 (6)
      • ►  Nov 19 (5)
      • ►  Nov 18 (13)
      • ►  Nov 17 (10)
      • ►  Nov 16 (2)
      • ►  Nov 15 (16)
      • ►  Nov 14 (21)
      • ►  Nov 13 (14)
      • ►  Nov 12 (12)
      • ►  Nov 11 (19)
      • ►  Nov 10 (11)
      • ►  Nov 09 (24)
      • ►  Nov 08 (8)
      • ►  Nov 07 (11)
      • ►  Nov 06 (13)
      • ►  Nov 05 (18)
      • ►  Nov 04 (9)
      • ►  Nov 03 (21)
      • ►  Nov 02 (25)
      • ►  Nov 01 (22)
    • ►  October (549)
      • ►  Oct 31 (23)
      • ►  Oct 30 (19)
      • ►  Oct 29 (22)
      • ►  Oct 28 (30)
      • ►  Oct 27 (24)
      • ►  Oct 26 (28)
      • ►  Oct 25 (24)
      • ►  Oct 24 (20)
      • ►  Oct 23 (4)
      • ►  Oct 22 (24)
      • ►  Oct 21 (20)
      • ►  Oct 20 (17)
      • ►  Oct 19 (14)
      • ►  Oct 18 (14)
      • ►  Oct 17 (19)
      • ►  Oct 16 (12)
      • ►  Oct 15 (4)
      • ►  Oct 14 (23)
      • ►  Oct 13 (21)
      • ►  Oct 12 (22)
      • ►  Oct 11 (22)
      • ►  Oct 10 (11)
      • ►  Oct 09 (12)
      • ►  Oct 08 (19)
      • ►  Oct 07 (16)
      • ►  Oct 06 (19)
      • ►  Oct 05 (20)
      • ►  Oct 04 (11)
      • ►  Oct 03 (15)
      • ►  Oct 02 (11)
      • ►  Oct 01 (9)
    • ►  September (478)
      • ►  Sep 30 (25)
      • ►  Sep 29 (19)
      • ►  Sep 28 (28)
      • ►  Sep 27 (17)
      • ►  Sep 26 (21)
      • ►  Sep 25 (21)
      • ►  Sep 24 (6)
      • ►  Sep 23 (13)
      • ►  Sep 22 (6)
      • ►  Sep 21 (11)
      • ►  Sep 20 (9)
      • ►  Sep 19 (4)
      • ►  Sep 18 (6)
      • ►  Sep 17 (4)
      • ►  Sep 16 (11)
      • ►  Sep 15 (13)
      • ►  Sep 14 (22)
      • ►  Sep 13 (9)
      • ►  Sep 12 (11)
      • ►  Sep 11 (13)
      • ►  Sep 10 (25)
      • ►  Sep 09 (26)
      • ►  Sep 08 (23)
      • ►  Sep 07 (20)
      • ►  Sep 06 (27)
      • ►  Sep 05 (20)
      • ►  Sep 04 (18)
      • ►  Sep 03 (11)
      • ►  Sep 02 (24)
      • ►  Sep 01 (15)
    • ►  August (464)
      • ►  Aug 31 (20)
      • ►  Aug 30 (24)
      • ►  Aug 29 (10)
      • ►  Aug 28 (17)
      • ►  Aug 27 (15)
      • ►  Aug 26 (20)
      • ►  Aug 25 (12)
      • ►  Aug 24 (8)
      • ►  Aug 23 (16)
      • ►  Aug 22 (12)
      • ►  Aug 21 (21)
      • ►  Aug 20 (18)
      • ►  Aug 19 (10)
      • ►  Aug 18 (19)
      • ►  Aug 17 (14)
      • ►  Aug 16 (15)
      • ►  Aug 15 (22)
      • ►  Aug 14 (22)
      • ►  Aug 13 (11)
      • ►  Aug 12 (18)
      • ►  Aug 11 (15)
      • ►  Aug 10 (15)
      • ►  Aug 09 (22)
      • ►  Aug 08 (19)
      • ►  Aug 07 (24)
      • ►  Aug 06 (17)
      • ►  Aug 05 (3)
      • ►  Aug 04 (7)
      • ►  Aug 03 (2)
      • ►  Aug 02 (6)
      • ►  Aug 01 (10)
    • ►  July (359)
      • ►  Jul 31 (21)
      • ►  Jul 30 (5)
      • ►  Jul 29 (15)
      • ►  Jul 28 (10)
      • ►  Jul 27 (12)
      • ►  Jul 26 (12)
      • ►  Jul 25 (2)
      • ►  Jul 23 (17)
      • ►  Jul 22 (5)
      • ►  Jul 21 (15)
      • ►  Jul 20 (9)
      • ►  Jul 19 (11)
      • ►  Jul 18 (24)
      • ►  Jul 17 (10)
      • ►  Jul 16 (12)
      • ►  Jul 15 (6)
      • ►  Jul 14 (10)
      • ►  Jul 13 (7)
      • ►  Jul 12 (14)
      • ►  Jul 11 (14)
      • ►  Jul 10 (8)
      • ►  Jul 09 (8)
      • ►  Jul 08 (10)
      • ►  Jul 07 (12)
      • ►  Jul 06 (18)
      • ►  Jul 05 (19)
      • ►  Jul 04 (8)
      • ►  Jul 03 (17)
      • ►  Jul 02 (9)
      • ►  Jul 01 (19)
    • ►  June (397)
      • ►  Jun 30 (17)
      • ►  Jun 29 (15)
      • ►  Jun 28 (6)
      • ►  Jun 27 (8)
      • ►  Jun 26 (15)
      • ►  Jun 25 (18)
      • ►  Jun 24 (11)
      • ►  Jun 23 (23)
      • ►  Jun 22 (30)
      • ►  Jun 21 (20)
      • ►  Jun 20 (18)
      • ►  Jun 19 (18)
      • ►  Jun 18 (20)
      • ►  Jun 17 (16)
      • ►  Jun 16 (13)
      • ►  Jun 15 (8)
      • ►  Jun 14 (11)
      • ►  Jun 13 (7)
      • ►  Jun 12 (5)
      • ►  Jun 11 (4)
      • ►  Jun 10 (4)
      • ►  Jun 09 (4)
      • ►  Jun 08 (5)
      • ►  Jun 07 (3)
      • ►  Jun 06 (3)
      • ►  Jun 05 (21)
      • ►  Jun 04 (24)
      • ►  Jun 03 (12)
      • ►  Jun 02 (18)
      • ►  Jun 01 (20)
    • ►  May (395)
      • ►  May 31 (15)
      • ►  May 30 (25)
      • ►  May 29 (24)
      • ►  May 28 (26)
      • ►  May 27 (21)
      • ►  May 26 (23)
      • ►  May 25 (14)
      • ►  May 24 (7)
      • ►  May 23 (6)
      • ►  May 22 (4)
      • ►  May 21 (6)
      • ►  May 20 (2)
      • ►  May 19 (9)
      • ►  May 18 (8)
      • ►  May 17 (11)
      • ►  May 16 (8)
      • ►  May 15 (14)
      • ►  May 14 (15)
      • ►  May 13 (12)
      • ►  May 12 (10)
      • ►  May 11 (16)
      • ►  May 10 (10)
      • ►  May 09 (15)
      • ►  May 08 (12)
      • ►  May 07 (6)
      • ►  May 06 (8)
      • ►  May 05 (13)
      • ►  May 04 (14)
      • ►  May 03 (17)
      • ►  May 02 (12)
      • ►  May 01 (12)
    • ►  April (292)
      • ►  Apr 30 (13)
      • ►  Apr 29 (12)
      • ►  Apr 28 (19)
      • ►  Apr 27 (15)
      • ►  Apr 26 (18)
      • ►  Apr 25 (14)
      • ►  Apr 24 (24)
      • ►  Apr 23 (7)
      • ►  Apr 22 (21)
      • ►  Apr 21 (14)
      • ►  Apr 20 (10)
      • ►  Apr 19 (10)
      • ►  Apr 18 (12)
      • ►  Apr 17 (7)
      • ►  Apr 16 (8)
      • ►  Apr 15 (11)
      • ►  Apr 14 (9)
      • ►  Apr 13 (11)
      • ►  Apr 12 (12)
      • ►  Apr 11 (10)
      • ►  Apr 10 (13)
      • ►  Apr 09 (7)
      • ►  Apr 08 (10)
      • ►  Apr 07 (2)
      • ►  Apr 02 (1)
      • ►  Apr 01 (2)
    • ►  March (306)
      • ►  Mar 28 (1)
      • ►  Mar 27 (2)
      • ►  Mar 26 (3)
      • ►  Mar 25 (3)
      • ►  Mar 24 (5)
      • ►  Mar 22 (3)
      • ►  Mar 21 (3)
      • ►  Mar 20 (6)
      • ►  Mar 19 (17)
      • ►  Mar 18 (7)
      • ►  Mar 17 (23)
      • ►  Mar 16 (24)
      • ►  Mar 15 (18)
      • ►  Mar 14 (30)
      • ►  Mar 13 (24)
      • ►  Mar 12 (26)
      • ►  Mar 11 (13)
      • ►  Mar 10 (24)
      • ►  Mar 09 (22)
      • ►  Mar 08 (18)
      • ►  Mar 06 (9)
      • ►  Mar 05 (6)
      • ►  Mar 04 (7)
      • ►  Mar 03 (7)
      • ►  Mar 02 (3)
      • ►  Mar 01 (2)
    • ►  February (210)
      • ►  Feb 27 (1)
      • ►  Feb 26 (4)
      • ►  Feb 24 (12)
      • ►  Feb 23 (9)
      • ►  Feb 22 (9)
      • ►  Feb 21 (9)
      • ►  Feb 19 (4)
      • ►  Feb 16 (9)
      • ►  Feb 15 (2)
      • ►  Feb 14 (5)
      • ►  Feb 13 (1)
      • ►  Feb 12 (1)
      • ►  Feb 11 (13)
      • ►  Feb 10 (8)
      • ►  Feb 09 (12)
      • ►  Feb 08 (10)
      • ►  Feb 07 (19)
      • ►  Feb 06 (9)
      • ►  Feb 05 (18)
      • ►  Feb 04 (10)
      • ►  Feb 03 (13)
      • ►  Feb 02 (12)
      • ►  Feb 01 (20)
    • ►  January (216)
      • ►  Jan 31 (8)
      • ►  Jan 30 (11)
      • ►  Jan 29 (13)
      • ►  Jan 28 (7)
      • ►  Jan 27 (13)
      • ►  Jan 26 (13)
      • ►  Jan 25 (4)
      • ►  Jan 24 (2)
      • ►  Jan 23 (6)
      • ►  Jan 22 (7)
      • ►  Jan 21 (4)
      • ►  Jan 20 (5)
      • ►  Jan 19 (1)
      • ►  Jan 18 (3)
      • ►  Jan 17 (2)
      • ►  Jan 15 (1)
      • ►  Jan 14 (2)
      • ►  Jan 13 (13)
      • ►  Jan 12 (25)
      • ►  Jan 11 (13)
      • ►  Jan 10 (18)
      • ►  Jan 09 (18)
      • ►  Jan 07 (9)
      • ►  Jan 06 (2)
      • ►  Jan 05 (11)
      • ►  Jan 04 (3)
      • ►  Jan 03 (2)
  • ▼  2022 (2401)
    • ►  December (115)
      • ►  Dec 31 (1)
      • ►  Dec 30 (2)
      • ►  Dec 10 (7)
      • ►  Dec 09 (8)
      • ►  Dec 08 (8)
      • ►  Dec 07 (12)
      • ►  Dec 06 (16)
      • ►  Dec 05 (11)
      • ►  Dec 04 (15)
      • ►  Dec 03 (15)
      • ►  Dec 02 (8)
      • ►  Dec 01 (12)
    • ►  November (498)
      • ►  Nov 30 (2)
      • ►  Nov 29 (11)
      • ►  Nov 28 (13)
      • ►  Nov 27 (1)
      • ►  Nov 26 (9)
      • ►  Nov 25 (13)
      • ►  Nov 24 (16)
      • ►  Nov 23 (8)
      • ►  Nov 22 (16)
      • ►  Nov 21 (21)
      • ►  Nov 20 (13)
      • ►  Nov 19 (24)
      • ►  Nov 18 (23)
      • ►  Nov 17 (28)
      • ►  Nov 16 (15)
      • ►  Nov 15 (22)
      • ►  Nov 14 (32)
      • ►  Nov 13 (20)
      • ►  Nov 12 (22)
      • ►  Nov 11 (30)
      • ►  Nov 10 (4)
      • ►  Nov 09 (21)
      • ►  Nov 08 (21)
      • ►  Nov 07 (21)
      • ►  Nov 06 (14)
      • ►  Nov 05 (19)
      • ►  Nov 04 (17)
      • ►  Nov 03 (14)
      • ►  Nov 02 (12)
      • ►  Nov 01 (16)
    • ►  October (272)
      • ►  Oct 31 (14)
      • ►  Oct 30 (12)
      • ►  Oct 29 (13)
      • ►  Oct 28 (9)
      • ►  Oct 27 (10)
      • ►  Oct 26 (6)
      • ►  Oct 25 (15)
      • ►  Oct 24 (11)
      • ►  Oct 23 (12)
      • ►  Oct 22 (9)
      • ►  Oct 21 (5)
      • ►  Oct 19 (5)
      • ►  Oct 18 (8)
      • ►  Oct 17 (4)
      • ►  Oct 16 (4)
      • ►  Oct 15 (10)
      • ►  Oct 14 (6)
      • ►  Oct 13 (8)
      • ►  Oct 12 (9)
      • ►  Oct 11 (14)
      • ►  Oct 10 (15)
      • ►  Oct 09 (9)
      • ►  Oct 08 (12)
      • ►  Oct 07 (14)
      • ►  Oct 06 (7)
      • ►  Oct 05 (13)
      • ►  Oct 04 (8)
      • ►  Oct 03 (10)
    • ►  September (149)
      • ►  Sep 30 (4)
      • ►  Sep 29 (6)
      • ►  Sep 28 (4)
      • ►  Sep 27 (3)
      • ►  Sep 26 (6)
      • ►  Sep 25 (1)
      • ►  Sep 24 (1)
      • ►  Sep 23 (6)
      • ►  Sep 22 (1)
      • ►  Sep 21 (6)
      • ►  Sep 20 (5)
      • ►  Sep 19 (6)
      • ►  Sep 17 (5)
      • ►  Sep 16 (2)
      • ►  Sep 15 (4)
      • ►  Sep 14 (6)
      • ►  Sep 13 (3)
      • ►  Sep 12 (5)
      • ►  Sep 11 (5)
      • ►  Sep 10 (4)
      • ►  Sep 09 (11)
      • ►  Sep 08 (6)
      • ►  Sep 07 (7)
      • ►  Sep 06 (6)
      • ►  Sep 05 (8)
      • ►  Sep 04 (5)
      • ►  Sep 03 (12)
      • ►  Sep 02 (2)
      • ►  Sep 01 (9)
    • ►  August (231)
      • ►  Aug 31 (7)
      • ►  Aug 30 (9)
      • ►  Aug 29 (8)
      • ►  Aug 28 (10)
      • ►  Aug 27 (6)
      • ►  Aug 26 (10)
      • ►  Aug 25 (9)
      • ►  Aug 24 (8)
      • ►  Aug 23 (12)
      • ►  Aug 22 (6)
      • ►  Aug 21 (4)
      • ►  Aug 20 (10)
      • ►  Aug 19 (12)
      • ►  Aug 18 (7)
      • ►  Aug 17 (10)
      • ►  Aug 16 (9)
      • ►  Aug 15 (10)
      • ►  Aug 14 (7)
      • ►  Aug 13 (9)
      • ►  Aug 12 (7)
      • ►  Aug 11 (8)
      • ►  Aug 10 (5)
      • ►  Aug 09 (7)
      • ►  Aug 08 (8)
      • ►  Aug 07 (9)
      • ►  Aug 06 (10)
      • ►  Aug 05 (10)
      • ►  Aug 04 (4)
    • ▼  July (258)
      • ►  Jul 31 (1)
      • ►  Jul 30 (3)
      • ►  Jul 29 (3)
      • ►  Jul 28 (1)
      • ►  Jul 27 (5)
      • ►  Jul 26 (5)
      • ►  Jul 25 (4)
      • ►  Jul 24 (4)
      • ►  Jul 23 (6)
      • ►  Jul 22 (5)
      • ►  Jul 21 (2)
      • ►  Jul 20 (10)
      • ►  Jul 19 (5)
      • ►  Jul 18 (8)
      • ►  Jul 17 (1)
      • ►  Jul 15 (6)
      • ►  Jul 14 (11)
      • ►  Jul 13 (9)
      • ►  Jul 12 (8)
      • ►  Jul 11 (17)
      • ►  Jul 10 (16)
      • ►  Jul 09 (14)
      • ►  Jul 08 (18)
      • ▼  Jul 07 (12)
        • Crystal oscillator
        • Ethology
        • Oscillation
        • Turing machine
        • Homo habilis
        • Electric vehicle
        • Non-ionizing radiation
        • Mind
        • Clock
        • Tabula rasa
        • Systems science
        • Multiple trace theory
      • ►  Jul 06 (12)
      • ►  Jul 05 (17)
      • ►  Jul 04 (13)
      • ►  Jul 03 (15)
      • ►  Jul 02 (12)
      • ►  Jul 01 (15)
    • ►  June (133)
      • ►  Jun 30 (10)
      • ►  Jun 29 (9)
      • ►  Jun 28 (9)
      • ►  Jun 27 (9)
      • ►  Jun 26 (11)
      • ►  Jun 25 (12)
      • ►  Jun 24 (12)
      • ►  Jun 23 (10)
      • ►  Jun 22 (10)
      • ►  Jun 21 (4)
      • ►  Jun 20 (3)
      • ►  Jun 19 (8)
      • ►  Jun 18 (2)
      • ►  Jun 17 (2)
      • ►  Jun 15 (3)
      • ►  Jun 14 (1)
      • ►  Jun 13 (1)
      • ►  Jun 07 (1)
      • ►  Jun 04 (5)
      • ►  Jun 03 (2)
      • ►  Jun 02 (7)
      • ►  Jun 01 (2)
    • ►  May (168)
      • ►  May 31 (1)
      • ►  May 30 (2)
      • ►  May 29 (1)
      • ►  May 28 (1)
      • ►  May 26 (4)
      • ►  May 24 (1)
      • ►  May 23 (1)
      • ►  May 21 (3)
      • ►  May 20 (3)
      • ►  May 19 (2)
      • ►  May 18 (5)
      • ►  May 17 (3)
      • ►  May 16 (5)
      • ►  May 15 (11)
      • ►  May 14 (7)
      • ►  May 13 (8)
      • ►  May 12 (8)
      • ►  May 11 (7)
      • ►  May 10 (10)
      • ►  May 09 (11)
      • ►  May 08 (14)
      • ►  May 07 (7)
      • ►  May 06 (9)
      • ►  May 05 (6)
      • ►  May 04 (12)
      • ►  May 03 (10)
      • ►  May 02 (7)
      • ►  May 01 (9)
    • ►  April (59)
      • ►  Apr 30 (8)
      • ►  Apr 29 (11)
      • ►  Apr 28 (3)
      • ►  Apr 27 (5)
      • ►  Apr 26 (4)
      • ►  Apr 23 (1)
      • ►  Apr 22 (1)
      • ►  Apr 16 (2)
      • ►  Apr 15 (1)
      • ►  Apr 14 (2)
      • ►  Apr 13 (1)
      • ►  Apr 11 (2)
      • ►  Apr 09 (1)
      • ►  Apr 08 (4)
      • ►  Apr 07 (1)
      • ►  Apr 06 (4)
      • ►  Apr 05 (7)
      • ►  Apr 04 (1)
    • ►  March (114)
      • ►  Mar 27 (1)
      • ►  Mar 26 (8)
      • ►  Mar 25 (1)
      • ►  Mar 23 (4)
      • ►  Mar 22 (4)
      • ►  Mar 21 (2)
      • ►  Mar 20 (8)
      • ►  Mar 17 (4)
      • ►  Mar 16 (1)
      • ►  Mar 15 (8)
      • ►  Mar 14 (1)
      • ►  Mar 13 (4)
      • ►  Mar 12 (6)
      • ►  Mar 11 (4)
      • ►  Mar 10 (6)
      • ►  Mar 09 (6)
      • ►  Mar 08 (12)
      • ►  Mar 07 (5)
      • ►  Mar 06 (3)
      • ►  Mar 05 (4)
      • ►  Mar 04 (2)
      • ►  Mar 03 (6)
      • ►  Mar 02 (6)
      • ►  Mar 01 (8)
    • ►  February (136)
      • ►  Feb 28 (3)
      • ►  Feb 27 (3)
      • ►  Feb 26 (4)
      • ►  Feb 25 (1)
      • ►  Feb 24 (1)
      • ►  Feb 23 (4)
      • ►  Feb 22 (6)
      • ►  Feb 21 (3)
      • ►  Feb 19 (4)
      • ►  Feb 18 (2)
      • ►  Feb 17 (4)
      • ►  Feb 16 (5)
      • ►  Feb 15 (7)
      • ►  Feb 14 (5)
      • ►  Feb 13 (6)
      • ►  Feb 12 (3)
      • ►  Feb 11 (7)
      • ►  Feb 10 (5)
      • ►  Feb 09 (4)
      • ►  Feb 08 (3)
      • ►  Feb 07 (2)
      • ►  Feb 06 (5)
      • ►  Feb 05 (6)
      • ►  Feb 04 (4)
      • ►  Feb 03 (11)
      • ►  Feb 02 (13)
      • ►  Feb 01 (15)
    • ►  January (268)
      • ►  Jan 31 (16)
      • ►  Jan 30 (21)
      • ►  Jan 29 (11)
      • ►  Jan 28 (14)
      • ►  Jan 27 (11)
      • ►  Jan 26 (14)
      • ►  Jan 25 (5)
      • ►  Jan 23 (1)
      • ►  Jan 22 (2)
      • ►  Jan 19 (2)
      • ►  Jan 17 (9)
      • ►  Jan 16 (3)
      • ►  Jan 14 (14)
      • ►  Jan 13 (5)
      • ►  Jan 12 (6)
      • ►  Jan 11 (8)
      • ►  Jan 10 (13)
      • ►  Jan 09 (4)
      • ►  Jan 08 (14)
      • ►  Jan 07 (9)
      • ►  Jan 06 (10)
      • ►  Jan 05 (15)
      • ►  Jan 04 (13)
      • ►  Jan 03 (14)
      • ►  Jan 02 (19)
      • ►  Jan 01 (15)
  • ►  2021 (3238)
    • ►  December (507)
      • ►  Dec 31 (10)
      • ►  Dec 30 (9)
      • ►  Dec 29 (14)
      • ►  Dec 28 (11)
      • ►  Dec 27 (18)
      • ►  Dec 26 (12)
      • ►  Dec 25 (18)
      • ►  Dec 24 (13)
      • ►  Dec 23 (13)
      • ►  Dec 22 (9)
      • ►  Dec 21 (6)
      • ►  Dec 20 (15)
      • ►  Dec 19 (12)
      • ►  Dec 18 (11)
      • ►  Dec 17 (19)
      • ►  Dec 16 (13)
      • ►  Dec 15 (22)
      • ►  Dec 14 (25)
      • ►  Dec 13 (23)
      • ►  Dec 12 (21)
      • ►  Dec 11 (21)
      • ►  Dec 10 (22)
      • ►  Dec 09 (18)
      • ►  Dec 08 (23)
      • ►  Dec 07 (25)
      • ►  Dec 06 (19)
      • ►  Dec 05 (11)
      • ►  Dec 04 (20)
      • ►  Dec 03 (19)
      • ►  Dec 02 (25)
      • ►  Dec 01 (10)
    • ►  November (305)
      • ►  Nov 30 (16)
      • ►  Nov 29 (20)
      • ►  Nov 28 (11)
      • ►  Nov 27 (16)
      • ►  Nov 26 (17)
      • ►  Nov 25 (20)
      • ►  Nov 24 (14)
      • ►  Nov 23 (15)
      • ►  Nov 22 (16)
      • ►  Nov 21 (16)
      • ►  Nov 20 (16)
      • ►  Nov 19 (11)
      • ►  Nov 18 (12)
      • ►  Nov 17 (10)
      • ►  Nov 16 (13)
      • ►  Nov 15 (9)
      • ►  Nov 14 (6)
      • ►  Nov 13 (5)
      • ►  Nov 12 (10)
      • ►  Nov 11 (3)
      • ►  Nov 10 (6)
      • ►  Nov 09 (7)
      • ►  Nov 08 (2)
      • ►  Nov 07 (1)
      • ►  Nov 06 (5)
      • ►  Nov 05 (4)
      • ►  Nov 04 (2)
      • ►  Nov 03 (5)
      • ►  Nov 02 (3)
      • ►  Nov 01 (14)
    • ►  October (238)
      • ►  Oct 31 (16)
      • ►  Oct 30 (6)
      • ►  Oct 29 (13)
      • ►  Oct 28 (16)
      • ►  Oct 27 (10)
      • ►  Oct 26 (8)
      • ►  Oct 25 (8)
      • ►  Oct 24 (5)
      • ►  Oct 23 (11)
      • ►  Oct 22 (5)
      • ►  Oct 21 (12)
      • ►  Oct 20 (4)
      • ►  Oct 19 (2)
      • ►  Oct 18 (2)
      • ►  Oct 17 (2)
      • ►  Oct 16 (1)
      • ►  Oct 15 (4)
      • ►  Oct 12 (2)
      • ►  Oct 11 (4)
      • ►  Oct 10 (9)
      • ►  Oct 09 (13)
      • ►  Oct 08 (4)
      • ►  Oct 07 (6)
      • ►  Oct 06 (6)
      • ►  Oct 05 (9)
      • ►  Oct 04 (12)
      • ►  Oct 03 (12)
      • ►  Oct 02 (20)
      • ►  Oct 01 (16)
    • ►  September (358)
      • ►  Sep 30 (16)
      • ►  Sep 29 (18)
      • ►  Sep 28 (10)
      • ►  Sep 27 (17)
      • ►  Sep 26 (11)
      • ►  Sep 25 (15)
      • ►  Sep 24 (11)
      • ►  Sep 23 (12)
      • ►  Sep 22 (7)
      • ►  Sep 21 (8)
      • ►  Sep 20 (19)
      • ►  Sep 19 (14)
      • ►  Sep 18 (16)
      • ►  Sep 17 (17)
      • ►  Sep 16 (20)
      • ►  Sep 15 (17)
      • ►  Sep 14 (8)
      • ►  Sep 13 (19)
      • ►  Sep 12 (13)
      • ►  Sep 11 (11)
      • ►  Sep 10 (10)
      • ►  Sep 09 (13)
      • ►  Sep 08 (8)
      • ►  Sep 07 (9)
      • ►  Sep 06 (6)
      • ►  Sep 05 (10)
      • ►  Sep 04 (8)
      • ►  Sep 03 (6)
      • ►  Sep 02 (4)
      • ►  Sep 01 (5)
    • ►  August (213)
      • ►  Aug 31 (6)
      • ►  Aug 30 (10)
      • ►  Aug 29 (4)
      • ►  Aug 26 (3)
      • ►  Aug 25 (2)
      • ►  Aug 23 (4)
      • ►  Aug 22 (2)
      • ►  Aug 21 (10)
      • ►  Aug 20 (12)
      • ►  Aug 19 (10)
      • ►  Aug 18 (13)
      • ►  Aug 17 (8)
      • ►  Aug 16 (12)
      • ►  Aug 15 (15)
      • ►  Aug 14 (12)
      • ►  Aug 13 (10)
      • ►  Aug 12 (3)
      • ►  Aug 11 (7)
      • ►  Aug 10 (7)
      • ►  Aug 09 (5)
      • ►  Aug 08 (7)
      • ►  Aug 07 (9)
      • ►  Aug 06 (9)
      • ►  Aug 05 (6)
      • ►  Aug 04 (5)
      • ►  Aug 03 (4)
      • ►  Aug 02 (6)
      • ►  Aug 01 (12)
    • ►  July (213)
      • ►  Jul 31 (18)
      • ►  Jul 30 (7)
      • ►  Jul 29 (17)
      • ►  Jul 28 (16)
      • ►  Jul 27 (6)
      • ►  Jul 25 (1)
      • ►  Jul 24 (7)
      • ►  Jul 23 (5)
      • ►  Jul 22 (13)
      • ►  Jul 21 (3)
      • ►  Jul 20 (8)
      • ►  Jul 19 (11)
      • ►  Jul 18 (9)
      • ►  Jul 17 (6)
      • ►  Jul 16 (16)
      • ►  Jul 15 (7)
      • ►  Jul 14 (8)
      • ►  Jul 13 (8)
      • ►  Jul 12 (5)
      • ►  Jul 11 (1)
      • ►  Jul 09 (4)
      • ►  Jul 08 (3)
      • ►  Jul 07 (1)
      • ►  Jul 05 (1)
      • ►  Jul 04 (2)
      • ►  Jul 03 (8)
      • ►  Jul 02 (5)
      • ►  Jul 01 (17)
    • ►  June (292)
      • ►  Jun 30 (13)
      • ►  Jun 29 (19)
      • ►  Jun 28 (17)
      • ►  Jun 27 (12)
      • ►  Jun 26 (27)
      • ►  Jun 25 (18)
      • ►  Jun 24 (11)
      • ►  Jun 23 (12)
      • ►  Jun 22 (11)
      • ►  Jun 21 (16)
      • ►  Jun 20 (7)
      • ►  Jun 19 (9)
      • ►  Jun 18 (14)
      • ►  Jun 17 (7)
      • ►  Jun 16 (11)
      • ►  Jun 15 (9)
      • ►  Jun 14 (12)
      • ►  Jun 13 (2)
      • ►  Jun 12 (4)
      • ►  Jun 11 (8)
      • ►  Jun 10 (6)
      • ►  Jun 09 (2)
      • ►  Jun 08 (5)
      • ►  Jun 07 (4)
      • ►  Jun 06 (3)
      • ►  Jun 05 (4)
      • ►  Jun 04 (4)
      • ►  Jun 03 (8)
      • ►  Jun 02 (6)
      • ►  Jun 01 (11)
    • ►  May (302)
      • ►  May 31 (14)
      • ►  May 30 (21)
      • ►  May 29 (11)
      • ►  May 28 (21)
      • ►  May 27 (8)
      • ►  May 26 (5)
      • ►  May 25 (11)
      • ►  May 24 (13)
      • ►  May 23 (5)
      • ►  May 22 (13)
      • ►  May 21 (8)
      • ►  May 20 (8)
      • ►  May 19 (8)
      • ►  May 18 (11)
      • ►  May 17 (12)
      • ►  May 16 (17)
      • ►  May 15 (13)
      • ►  May 14 (10)
      • ►  May 13 (8)
      • ►  May 12 (16)
      • ►  May 11 (11)
      • ►  May 10 (16)
      • ►  May 09 (9)
      • ►  May 08 (7)
      • ►  May 07 (5)
      • ►  May 06 (7)
      • ►  May 05 (1)
      • ►  May 04 (1)
      • ►  May 03 (3)
      • ►  May 02 (1)
      • ►  May 01 (8)
    • ►  April (398)
      • ►  Apr 30 (7)
      • ►  Apr 29 (6)
      • ►  Apr 28 (11)
      • ►  Apr 27 (5)
      • ►  Apr 26 (21)
      • ►  Apr 25 (18)
      • ►  Apr 24 (16)
      • ►  Apr 23 (21)
      • ►  Apr 22 (19)
      • ►  Apr 21 (14)
      • ►  Apr 20 (16)
      • ►  Apr 19 (25)
      • ►  Apr 18 (11)
      • ►  Apr 17 (3)
      • ►  Apr 16 (9)
      • ►  Apr 15 (8)
      • ►  Apr 14 (11)
      • ►  Apr 13 (19)
      • ►  Apr 12 (9)
      • ►  Apr 11 (15)
      • ►  Apr 10 (11)
      • ►  Apr 09 (14)
      • ►  Apr 08 (15)
      • ►  Apr 07 (15)
      • ►  Apr 06 (13)
      • ►  Apr 05 (12)
      • ►  Apr 04 (14)
      • ►  Apr 03 (17)
      • ►  Apr 02 (16)
      • ►  Apr 01 (7)
    • ►  March (330)
      • ►  Mar 31 (7)
      • ►  Mar 30 (8)
      • ►  Mar 29 (11)
      • ►  Mar 28 (16)
      • ►  Mar 27 (10)
      • ►  Mar 26 (12)
      • ►  Mar 25 (19)
      • ►  Mar 24 (14)
      • ►  Mar 23 (14)
      • ►  Mar 22 (11)
      • ►  Mar 21 (12)
      • ►  Mar 20 (14)
      • ►  Mar 19 (15)
      • ►  Mar 18 (17)
      • ►  Mar 17 (4)
      • ►  Mar 16 (12)
      • ►  Mar 15 (18)
      • ►  Mar 14 (9)
      • ►  Mar 13 (12)
      • ►  Mar 12 (12)
      • ►  Mar 11 (14)
      • ►  Mar 10 (7)
      • ►  Mar 09 (7)
      • ►  Mar 08 (11)
      • ►  Mar 07 (9)
      • ►  Mar 06 (7)
      • ►  Mar 05 (9)
      • ►  Mar 04 (4)
      • ►  Mar 03 (5)
      • ►  Mar 02 (5)
      • ►  Mar 01 (5)
    • ►  February (76)
      • ►  Feb 28 (8)
      • ►  Feb 27 (11)
      • ►  Feb 26 (4)
      • ►  Feb 25 (4)
      • ►  Feb 24 (1)
      • ►  Feb 23 (3)
      • ►  Feb 22 (2)
      • ►  Feb 21 (1)
      • ►  Feb 20 (3)
      • ►  Feb 19 (3)
      • ►  Feb 18 (4)
      • ►  Feb 17 (8)
      • ►  Feb 16 (2)
      • ►  Feb 15 (6)
      • ►  Feb 14 (1)
      • ►  Feb 13 (3)
      • ►  Feb 12 (5)
      • ►  Feb 10 (2)
      • ►  Feb 08 (1)
      • ►  Feb 06 (1)
      • ►  Feb 05 (2)
      • ►  Feb 02 (1)
    • ►  January (6)
      • ►  Jan 31 (1)
      • ►  Jan 24 (1)
      • ►  Jan 15 (1)
      • ►  Jan 14 (3)
  • ►  2020 (2688)
    • ►  December (67)
      • ►  Dec 29 (1)
      • ►  Dec 28 (3)
      • ►  Dec 27 (1)
      • ►  Dec 23 (5)
      • ►  Dec 21 (4)
      • ►  Dec 19 (1)
      • ►  Dec 18 (2)
      • ►  Dec 11 (1)
      • ►  Dec 10 (6)
      • ►  Dec 09 (15)
      • ►  Dec 08 (8)
      • ►  Dec 07 (10)
      • ►  Dec 06 (5)
      • ►  Dec 05 (5)
    • ►  November (141)
      • ►  Nov 30 (5)
      • ►  Nov 29 (5)
      • ►  Nov 28 (1)
      • ►  Nov 27 (8)
      • ►  Nov 26 (20)
      • ►  Nov 25 (9)
      • ►  Nov 24 (11)
      • ►  Nov 23 (9)
      • ►  Nov 22 (11)
      • ►  Nov 21 (12)
      • ►  Nov 20 (3)
      • ►  Nov 19 (10)
      • ►  Nov 18 (7)
      • ►  Nov 17 (8)
      • ►  Nov 16 (2)
      • ►  Nov 15 (4)
      • ►  Nov 14 (8)
      • ►  Nov 13 (4)
      • ►  Nov 12 (2)
      • ►  Nov 10 (1)
      • ►  Nov 02 (1)
    • ►  October (190)
      • ►  Oct 26 (1)
      • ►  Oct 25 (4)
      • ►  Oct 24 (19)
      • ►  Oct 23 (16)
      • ►  Oct 22 (2)
      • ►  Oct 21 (1)
      • ►  Oct 20 (1)
      • ►  Oct 16 (2)
      • ►  Oct 11 (11)
      • ►  Oct 10 (8)
      • ►  Oct 09 (14)
      • ►  Oct 08 (18)
      • ►  Oct 07 (9)
      • ►  Oct 06 (17)
      • ►  Oct 05 (17)
      • ►  Oct 04 (4)
      • ►  Oct 03 (14)
      • ►  Oct 02 (13)
      • ►  Oct 01 (19)
    • ►  September (371)
      • ►  Sep 30 (12)
      • ►  Sep 29 (11)
      • ►  Sep 28 (14)
      • ►  Sep 27 (14)
      • ►  Sep 26 (13)
      • ►  Sep 25 (25)
      • ►  Sep 24 (30)
      • ►  Sep 23 (16)
      • ►  Sep 22 (11)
      • ►  Sep 21 (18)
      • ►  Sep 20 (16)
      • ►  Sep 19 (23)
      • ►  Sep 18 (22)
      • ►  Sep 17 (15)
      • ►  Sep 16 (11)
      • ►  Sep 15 (13)
      • ►  Sep 14 (9)
      • ►  Sep 13 (11)
      • ►  Sep 12 (9)
      • ►  Sep 11 (6)
      • ►  Sep 10 (1)
      • ►  Sep 09 (9)
      • ►  Sep 08 (14)
      • ►  Sep 07 (7)
      • ►  Sep 06 (13)
      • ►  Sep 05 (8)
      • ►  Sep 04 (6)
      • ►  Sep 03 (1)
      • ►  Sep 02 (3)
      • ►  Sep 01 (10)
    • ►  August (112)
      • ►  Aug 31 (12)
      • ►  Aug 30 (2)
      • ►  Aug 29 (7)
      • ►  Aug 28 (2)
      • ►  Aug 27 (1)
      • ►  Aug 26 (1)
      • ►  Aug 24 (2)
      • ►  Aug 23 (2)
      • ►  Aug 21 (3)
      • ►  Aug 20 (4)
      • ►  Aug 19 (8)
      • ►  Aug 18 (5)
      • ►  Aug 17 (4)
      • ►  Aug 16 (6)
      • ►  Aug 15 (4)
      • ►  Aug 14 (1)
      • ►  Aug 13 (2)
      • ►  Aug 12 (4)
      • ►  Aug 11 (5)
      • ►  Aug 10 (7)
      • ►  Aug 09 (8)
      • ►  Aug 08 (4)
      • ►  Aug 07 (1)
      • ►  Aug 06 (5)
      • ►  Aug 05 (2)
      • ►  Aug 04 (1)
      • ►  Aug 03 (4)
      • ►  Aug 02 (1)
      • ►  Aug 01 (4)
    • ►  July (227)
      • ►  Jul 30 (3)
      • ►  Jul 29 (6)
      • ►  Jul 28 (2)
      • ►  Jul 27 (1)
      • ►  Jul 26 (7)
      • ►  Jul 25 (3)
      • ►  Jul 24 (3)
      • ►  Jul 23 (14)
      • ►  Jul 22 (1)
      • ►  Jul 21 (12)
      • ►  Jul 20 (8)
      • ►  Jul 19 (10)
      • ►  Jul 18 (12)
      • ►  Jul 17 (4)
      • ►  Jul 16 (12)
      • ►  Jul 15 (12)
      • ►  Jul 14 (8)
      • ►  Jul 13 (13)
      • ►  Jul 12 (8)
      • ►  Jul 11 (14)
      • ►  Jul 10 (7)
      • ►  Jul 09 (9)
      • ►  Jul 08 (7)
      • ►  Jul 07 (10)
      • ►  Jul 06 (8)
      • ►  Jul 05 (8)
      • ►  Jul 04 (8)
      • ►  Jul 03 (6)
      • ►  Jul 02 (4)
      • ►  Jul 01 (7)
    • ►  June (243)
      • ►  Jun 30 (5)
      • ►  Jun 29 (3)
      • ►  Jun 28 (4)
      • ►  Jun 27 (6)
      • ►  Jun 26 (4)
      • ►  Jun 25 (2)
      • ►  Jun 24 (3)
      • ►  Jun 23 (5)
      • ►  Jun 22 (6)
      • ►  Jun 20 (5)
      • ►  Jun 19 (6)
      • ►  Jun 18 (5)
      • ►  Jun 17 (16)
      • ►  Jun 16 (17)
      • ►  Jun 15 (8)
      • ►  Jun 14 (11)
      • ►  Jun 13 (8)
      • ►  Jun 12 (11)
      • ►  Jun 11 (6)
      • ►  Jun 10 (15)
      • ►  Jun 09 (6)
      • ►  Jun 08 (20)
      • ►  Jun 07 (10)
      • ►  Jun 06 (11)
      • ►  Jun 05 (13)
      • ►  Jun 04 (12)
      • ►  Jun 03 (11)
      • ►  Jun 02 (6)
      • ►  Jun 01 (8)
    • ►  May (405)
      • ►  May 31 (8)
      • ►  May 30 (6)
      • ►  May 29 (16)
      • ►  May 28 (10)
      • ►  May 27 (15)
      • ►  May 26 (18)
      • ►  May 25 (14)
      • ►  May 24 (23)
      • ►  May 23 (15)
      • ►  May 22 (21)
      • ►  May 21 (13)
      • ►  May 20 (22)
      • ►  May 19 (25)
      • ►  May 18 (17)
      • ►  May 17 (21)
      • ►  May 16 (10)
      • ►  May 15 (12)
      • ►  May 14 (22)
      • ►  May 13 (13)
      • ►  May 12 (14)
      • ►  May 11 (10)
      • ►  May 10 (8)
      • ►  May 09 (15)
      • ►  May 08 (17)
      • ►  May 07 (1)
      • ►  May 06 (3)
      • ►  May 05 (11)
      • ►  May 04 (11)
      • ►  May 03 (7)
      • ►  May 02 (2)
      • ►  May 01 (5)
    • ►  April (183)
      • ►  Apr 30 (10)
      • ►  Apr 29 (6)
      • ►  Apr 28 (7)
      • ►  Apr 27 (9)
      • ►  Apr 26 (8)
      • ►  Apr 25 (10)
      • ►  Apr 24 (8)
      • ►  Apr 23 (10)
      • ►  Apr 22 (4)
      • ►  Apr 21 (10)
      • ►  Apr 20 (9)
      • ►  Apr 19 (10)
      • ►  Apr 18 (22)
      • ►  Apr 17 (8)
      • ►  Apr 16 (8)
      • ►  Apr 15 (5)
      • ►  Apr 14 (2)
      • ►  Apr 13 (4)
      • ►  Apr 12 (1)
      • ►  Apr 11 (7)
      • ►  Apr 10 (8)
      • ►  Apr 09 (1)
      • ►  Apr 07 (3)
      • ►  Apr 06 (1)
      • ►  Apr 03 (3)
      • ►  Apr 02 (3)
      • ►  Apr 01 (6)
    • ►  March (208)
      • ►  Mar 31 (10)
      • ►  Mar 30 (9)
      • ►  Mar 29 (4)
      • ►  Mar 28 (3)
      • ►  Mar 27 (11)
      • ►  Mar 26 (5)
      • ►  Mar 25 (5)
      • ►  Mar 24 (7)
      • ►  Mar 23 (5)
      • ►  Mar 22 (7)
      • ►  Mar 21 (7)
      • ►  Mar 20 (9)
      • ►  Mar 19 (8)
      • ►  Mar 18 (3)
      • ►  Mar 17 (1)
      • ►  Mar 16 (1)
      • ►  Mar 14 (5)
      • ►  Mar 13 (8)
      • ►  Mar 12 (11)
      • ►  Mar 11 (9)
      • ►  Mar 10 (6)
      • ►  Mar 09 (10)
      • ►  Mar 08 (8)
      • ►  Mar 07 (10)
      • ►  Mar 06 (7)
      • ►  Mar 05 (11)
      • ►  Mar 04 (15)
      • ►  Mar 03 (9)
      • ►  Mar 02 (4)
    • ►  February (255)
      • ►  Feb 28 (6)
      • ►  Feb 27 (7)
      • ►  Feb 26 (6)
      • ►  Feb 25 (5)
      • ►  Feb 24 (12)
      • ►  Feb 22 (9)
      • ►  Feb 21 (11)
      • ►  Feb 20 (9)
      • ►  Feb 19 (9)
      • ►  Feb 18 (4)
      • ►  Feb 17 (9)
      • ►  Feb 16 (9)
      • ►  Feb 15 (12)
      • ►  Feb 14 (15)
      • ►  Feb 13 (13)
      • ►  Feb 12 (10)
      • ►  Feb 11 (12)
      • ►  Feb 10 (14)
      • ►  Feb 09 (7)
      • ►  Feb 08 (8)
      • ►  Feb 07 (11)
      • ►  Feb 06 (8)
      • ►  Feb 05 (14)
      • ►  Feb 04 (7)
      • ►  Feb 03 (12)
      • ►  Feb 02 (12)
      • ►  Feb 01 (4)
    • ►  January (286)
      • ►  Jan 31 (10)
      • ►  Jan 30 (12)
      • ►  Jan 29 (10)
      • ►  Jan 28 (6)
      • ►  Jan 27 (11)
      • ►  Jan 26 (11)
      • ►  Jan 25 (11)
      • ►  Jan 24 (13)
      • ►  Jan 23 (17)
      • ►  Jan 22 (6)
      • ►  Jan 21 (10)
      • ►  Jan 20 (9)
      • ►  Jan 19 (12)
      • ►  Jan 18 (6)
      • ►  Jan 17 (11)
      • ►  Jan 16 (6)
      • ►  Jan 15 (7)
      • ►  Jan 14 (8)
      • ►  Jan 13 (10)
      • ►  Jan 12 (9)
      • ►  Jan 11 (1)
      • ►  Jan 10 (11)
      • ►  Jan 09 (9)
      • ►  Jan 08 (10)
      • ►  Jan 07 (13)
      • ►  Jan 06 (5)
      • ►  Jan 05 (11)
      • ►  Jan 04 (8)
      • ►  Jan 03 (6)
      • ►  Jan 02 (11)
      • ►  Jan 01 (6)
  • ►  2019 (3306)
    • ►  December (344)
      • ►  Dec 31 (13)
      • ►  Dec 30 (9)
      • ►  Dec 29 (10)
      • ►  Dec 28 (15)
      • ►  Dec 27 (10)
      • ►  Dec 26 (6)
      • ►  Dec 25 (13)
      • ►  Dec 24 (10)
      • ►  Dec 23 (13)
      • ►  Dec 22 (9)
      • ►  Dec 21 (13)
      • ►  Dec 20 (14)
      • ►  Dec 19 (10)
      • ►  Dec 18 (12)
      • ►  Dec 17 (13)
      • ►  Dec 16 (16)
      • ►  Dec 15 (11)
      • ►  Dec 14 (19)
      • ►  Dec 13 (10)
      • ►  Dec 12 (15)
      • ►  Dec 11 (10)
      • ►  Dec 10 (9)
      • ►  Dec 09 (12)
      • ►  Dec 08 (9)
      • ►  Dec 07 (10)
      • ►  Dec 06 (7)
      • ►  Dec 05 (10)
      • ►  Dec 04 (8)
      • ►  Dec 03 (11)
      • ►  Dec 02 (10)
      • ►  Dec 01 (7)
    • ►  November (197)
      • ►  Nov 30 (13)
      • ►  Nov 29 (14)
      • ►  Nov 28 (11)
      • ►  Nov 27 (9)
      • ►  Nov 26 (5)
      • ►  Nov 25 (3)
      • ►  Nov 24 (11)
      • ►  Nov 23 (2)
      • ►  Nov 22 (7)
      • ►  Nov 21 (4)
      • ►  Nov 20 (4)
      • ►  Nov 19 (2)
      • ►  Nov 18 (7)
      • ►  Nov 17 (3)
      • ►  Nov 16 (9)
      • ►  Nov 15 (1)
      • ►  Nov 14 (3)
      • ►  Nov 13 (14)
      • ►  Nov 12 (2)
      • ►  Nov 11 (5)
      • ►  Nov 10 (5)
      • ►  Nov 09 (4)
      • ►  Nov 08 (11)
      • ►  Nov 07 (3)
      • ►  Nov 06 (9)
      • ►  Nov 05 (7)
      • ►  Nov 04 (2)
      • ►  Nov 03 (7)
      • ►  Nov 02 (10)
      • ►  Nov 01 (10)
    • ►  October (154)
      • ►  Oct 31 (7)
      • ►  Oct 30 (8)
      • ►  Oct 29 (5)
      • ►  Oct 28 (12)
      • ►  Oct 27 (5)
      • ►  Oct 26 (12)
      • ►  Oct 25 (7)
      • ►  Oct 24 (7)
      • ►  Oct 23 (5)
      • ►  Oct 22 (14)
      • ►  Oct 21 (9)
      • ►  Oct 20 (8)
      • ►  Oct 19 (4)
      • ►  Oct 18 (2)
      • ►  Oct 17 (5)
      • ►  Oct 16 (3)
      • ►  Oct 15 (9)
      • ►  Oct 14 (7)
      • ►  Oct 13 (4)
      • ►  Oct 12 (5)
      • ►  Oct 10 (2)
      • ►  Oct 09 (10)
      • ►  Oct 07 (2)
      • ►  Oct 05 (1)
      • ►  Oct 02 (1)
    • ►  September (67)
      • ►  Sep 30 (3)
      • ►  Sep 29 (1)
      • ►  Sep 28 (2)
      • ►  Sep 27 (2)
      • ►  Sep 26 (4)
      • ►  Sep 25 (3)
      • ►  Sep 22 (3)
      • ►  Sep 21 (6)
      • ►  Sep 19 (1)
      • ►  Sep 18 (3)
      • ►  Sep 16 (3)
      • ►  Sep 15 (2)
      • ►  Sep 14 (4)
      • ►  Sep 13 (1)
      • ►  Sep 11 (1)
      • ►  Sep 09 (4)
      • ►  Sep 08 (4)
      • ►  Sep 07 (1)
      • ►  Sep 06 (6)
      • ►  Sep 04 (3)
      • ►  Sep 03 (6)
      • ►  Sep 01 (4)
    • ►  August (84)
      • ►  Aug 26 (2)
      • ►  Aug 25 (2)
      • ►  Aug 24 (2)
      • ►  Aug 23 (1)
      • ►  Aug 22 (3)
      • ►  Aug 21 (2)
      • ►  Aug 19 (1)
      • ►  Aug 18 (2)
      • ►  Aug 17 (1)
      • ►  Aug 14 (1)
      • ►  Aug 13 (1)
      • ►  Aug 12 (5)
      • ►  Aug 11 (4)
      • ►  Aug 10 (7)
      • ►  Aug 09 (2)
      • ►  Aug 08 (2)
      • ►  Aug 07 (5)
      • ►  Aug 06 (6)
      • ►  Aug 05 (3)
      • ►  Aug 04 (5)
      • ►  Aug 03 (9)
      • ►  Aug 02 (8)
      • ►  Aug 01 (10)
    • ►  July (217)
      • ►  Jul 31 (6)
      • ►  Jul 29 (10)
      • ►  Jul 28 (5)
      • ►  Jul 27 (10)
      • ►  Jul 25 (7)
      • ►  Jul 24 (11)
      • ►  Jul 23 (8)
      • ►  Jul 22 (4)
      • ►  Jul 21 (17)
      • ►  Jul 20 (7)
      • ►  Jul 19 (11)
      • ►  Jul 18 (9)
      • ►  Jul 17 (7)
      • ►  Jul 16 (10)
      • ►  Jul 15 (6)
      • ►  Jul 14 (6)
      • ►  Jul 13 (15)
      • ►  Jul 12 (12)
      • ►  Jul 11 (3)
      • ►  Jul 10 (7)
      • ►  Jul 09 (2)
      • ►  Jul 08 (2)
      • ►  Jul 07 (7)
      • ►  Jul 06 (9)
      • ►  Jul 04 (11)
      • ►  Jul 03 (2)
      • ►  Jul 02 (4)
      • ►  Jul 01 (9)
    • ►  June (260)
      • ►  Jun 30 (7)
      • ►  Jun 29 (15)
      • ►  Jun 28 (4)
      • ►  Jun 27 (2)
      • ►  Jun 26 (6)
      • ►  Jun 25 (2)
      • ►  Jun 24 (10)
      • ►  Jun 23 (10)
      • ►  Jun 22 (8)
      • ►  Jun 21 (12)
      • ►  Jun 20 (8)
      • ►  Jun 19 (8)
      • ►  Jun 18 (12)
      • ►  Jun 17 (7)
      • ►  Jun 16 (7)
      • ►  Jun 15 (10)
      • ►  Jun 14 (11)
      • ►  Jun 13 (1)
      • ►  Jun 11 (2)
      • ►  Jun 10 (13)
      • ►  Jun 09 (16)
      • ►  Jun 08 (10)
      • ►  Jun 07 (16)
      • ►  Jun 06 (11)
      • ►  Jun 05 (17)
      • ►  Jun 04 (6)
      • ►  Jun 03 (13)
      • ►  Jun 02 (4)
      • ►  Jun 01 (12)
    • ►  May (426)
      • ►  May 31 (22)
      • ►  May 30 (14)
      • ►  May 29 (7)
      • ►  May 28 (16)
      • ►  May 27 (8)
      • ►  May 26 (9)
      • ►  May 25 (25)
      • ►  May 24 (10)
      • ►  May 23 (10)
      • ►  May 22 (13)
      • ►  May 21 (11)
      • ►  May 20 (16)
      • ►  May 19 (26)
      • ►  May 18 (8)
      • ►  May 17 (17)
      • ►  May 16 (11)
      • ►  May 15 (3)
      • ►  May 14 (17)
      • ►  May 13 (17)
      • ►  May 12 (14)
      • ►  May 11 (13)
      • ►  May 10 (18)
      • ►  May 09 (15)
      • ►  May 08 (12)
      • ►  May 07 (8)
      • ►  May 06 (12)
      • ►  May 05 (12)
      • ►  May 04 (13)
      • ►  May 03 (13)
      • ►  May 02 (16)
      • ►  May 01 (20)
    • ►  April (356)
      • ►  Apr 30 (9)
      • ►  Apr 29 (10)
      • ►  Apr 28 (11)
      • ►  Apr 27 (11)
      • ►  Apr 26 (15)
      • ►  Apr 25 (9)
      • ►  Apr 24 (12)
      • ►  Apr 23 (15)
      • ►  Apr 22 (12)
      • ►  Apr 21 (15)
      • ►  Apr 20 (13)
      • ►  Apr 19 (9)
      • ►  Apr 18 (14)
      • ►  Apr 17 (11)
      • ►  Apr 16 (8)
      • ►  Apr 15 (15)
      • ►  Apr 14 (6)
      • ►  Apr 13 (8)
      • ►  Apr 12 (10)
      • ►  Apr 11 (17)
      • ►  Apr 10 (12)
      • ►  Apr 09 (8)
      • ►  Apr 08 (13)
      • ►  Apr 07 (18)
      • ►  Apr 06 (11)
      • ►  Apr 05 (12)
      • ►  Apr 04 (16)
      • ►  Apr 03 (12)
      • ►  Apr 02 (12)
      • ►  Apr 01 (12)
    • ►  March (419)
      • ►  Mar 31 (13)
      • ►  Mar 30 (17)
      • ►  Mar 29 (13)
      • ►  Mar 28 (14)
      • ►  Mar 27 (17)
      • ►  Mar 26 (12)
      • ►  Mar 25 (9)
      • ►  Mar 24 (13)
      • ►  Mar 23 (13)
      • ►  Mar 22 (12)
      • ►  Mar 21 (12)
      • ►  Mar 20 (12)
      • ►  Mar 19 (12)
      • ►  Mar 18 (12)
      • ►  Mar 17 (12)
      • ►  Mar 16 (17)
      • ►  Mar 15 (13)
      • ►  Mar 14 (16)
      • ►  Mar 13 (8)
      • ►  Mar 12 (12)
      • ►  Mar 11 (11)
      • ►  Mar 10 (12)
      • ►  Mar 09 (15)
      • ►  Mar 08 (11)
      • ►  Mar 07 (19)
      • ►  Mar 06 (26)
      • ►  Mar 05 (14)
      • ►  Mar 04 (14)
      • ►  Mar 03 (12)
      • ►  Mar 02 (12)
      • ►  Mar 01 (14)
    • ►  February (375)
      • ►  Feb 28 (11)
      • ►  Feb 27 (10)
      • ►  Feb 26 (8)
      • ►  Feb 25 (11)
      • ►  Feb 24 (11)
      • ►  Feb 23 (5)
      • ►  Feb 22 (14)
      • ►  Feb 21 (13)
      • ►  Feb 20 (17)
      • ►  Feb 19 (14)
      • ►  Feb 18 (15)
      • ►  Feb 17 (12)
      • ►  Feb 16 (14)
      • ►  Feb 15 (14)
      • ►  Feb 14 (15)
      • ►  Feb 13 (20)
      • ►  Feb 12 (11)
      • ►  Feb 11 (21)
      • ►  Feb 10 (12)
      • ►  Feb 09 (18)
      • ►  Feb 08 (20)
      • ►  Feb 07 (13)
      • ►  Feb 06 (12)
      • ►  Feb 05 (14)
      • ►  Feb 04 (17)
      • ►  Feb 03 (8)
      • ►  Feb 02 (11)
      • ►  Feb 01 (14)
    • ►  January (407)
      • ►  Jan 31 (15)
      • ►  Jan 30 (11)
      • ►  Jan 29 (5)
      • ►  Jan 28 (19)
      • ►  Jan 27 (15)
      • ►  Jan 26 (13)
      • ►  Jan 25 (15)
      • ►  Jan 24 (13)
      • ►  Jan 23 (15)
      • ►  Jan 22 (10)
      • ►  Jan 21 (10)
      • ►  Jan 20 (18)
      • ►  Jan 19 (18)
      • ►  Jan 18 (7)
      • ►  Jan 17 (14)
      • ►  Jan 16 (17)
      • ►  Jan 15 (12)
      • ►  Jan 14 (14)
      • ►  Jan 13 (19)
      • ►  Jan 12 (8)
      • ►  Jan 11 (15)
      • ►  Jan 10 (9)
      • ►  Jan 09 (13)
      • ►  Jan 08 (12)
      • ►  Jan 07 (12)
      • ►  Jan 06 (15)
      • ►  Jan 05 (25)
      • ►  Jan 04 (11)
      • ►  Jan 03 (7)
      • ►  Jan 02 (12)
      • ►  Jan 01 (8)
  • ►  2018 (2910)
    • ►  December (343)
      • ►  Dec 31 (10)
      • ►  Dec 30 (14)
      • ►  Dec 29 (10)
      • ►  Dec 28 (7)
      • ►  Dec 27 (6)
      • ►  Dec 26 (16)
      • ►  Dec 25 (15)
      • ►  Dec 24 (11)
      • ►  Dec 23 (14)
      • ►  Dec 22 (7)
      • ►  Dec 21 (11)
      • ►  Dec 20 (9)
      • ►  Dec 19 (12)
      • ►  Dec 18 (8)
      • ►  Dec 17 (13)
      • ►  Dec 16 (16)
      • ►  Dec 15 (14)
      • ►  Dec 14 (9)
      • ►  Dec 13 (12)
      • ►  Dec 12 (11)
      • ►  Dec 11 (7)
      • ►  Dec 10 (8)
      • ►  Dec 09 (8)
      • ►  Dec 08 (14)
      • ►  Dec 07 (16)
      • ►  Dec 06 (12)
      • ►  Dec 05 (14)
      • ►  Dec 04 (8)
      • ►  Dec 03 (10)
      • ►  Dec 02 (3)
      • ►  Dec 01 (18)
    • ►  November (319)
      • ►  Nov 30 (11)
      • ►  Nov 29 (14)
      • ►  Nov 28 (9)
      • ►  Nov 27 (4)
      • ►  Nov 26 (10)
      • ►  Nov 25 (18)
      • ►  Nov 24 (14)
      • ►  Nov 23 (9)
      • ►  Nov 22 (15)
      • ►  Nov 21 (4)
      • ►  Nov 20 (6)
      • ►  Nov 19 (9)
      • ►  Nov 18 (3)
      • ►  Nov 17 (10)
      • ►  Nov 16 (5)
      • ►  Nov 15 (13)
      • ►  Nov 14 (11)
      • ►  Nov 13 (11)
      • ►  Nov 12 (16)
      • ►  Nov 11 (8)
      • ►  Nov 10 (14)
      • ►  Nov 09 (6)
      • ►  Nov 08 (6)
      • ►  Nov 07 (6)
      • ►  Nov 06 (14)
      • ►  Nov 05 (6)
      • ►  Nov 04 (18)
      • ►  Nov 03 (22)
      • ►  Nov 02 (7)
      • ►  Nov 01 (20)
    • ►  October (304)
      • ►  Oct 31 (6)
      • ►  Oct 30 (10)
      • ►  Oct 29 (17)
      • ►  Oct 28 (10)
      • ►  Oct 27 (11)
      • ►  Oct 26 (11)
      • ►  Oct 25 (12)
      • ►  Oct 24 (13)
      • ►  Oct 23 (13)
      • ►  Oct 22 (10)
      • ►  Oct 21 (9)
      • ►  Oct 20 (11)
      • ►  Oct 19 (7)
      • ►  Oct 18 (7)
      • ►  Oct 17 (14)
      • ►  Oct 16 (5)
      • ►  Oct 15 (13)
      • ►  Oct 14 (8)
      • ►  Oct 13 (13)
      • ►  Oct 12 (6)
      • ►  Oct 11 (17)
      • ►  Oct 10 (17)
      • ►  Oct 09 (1)
      • ►  Oct 08 (10)
      • ►  Oct 07 (2)
      • ►  Oct 06 (11)
      • ►  Oct 05 (16)
      • ►  Oct 04 (6)
      • ►  Oct 03 (9)
      • ►  Oct 02 (6)
      • ►  Oct 01 (3)
    • ►  September (324)
      • ►  Sep 30 (5)
      • ►  Sep 29 (8)
      • ►  Sep 28 (9)
      • ►  Sep 27 (9)
      • ►  Sep 26 (11)
      • ►  Sep 25 (13)
      • ►  Sep 24 (16)
      • ►  Sep 23 (7)
      • ►  Sep 22 (18)
      • ►  Sep 21 (8)
      • ►  Sep 20 (8)
      • ►  Sep 19 (8)
      • ►  Sep 18 (11)
      • ►  Sep 17 (6)
      • ►  Sep 16 (9)
      • ►  Sep 15 (13)
      • ►  Sep 14 (7)
      • ►  Sep 13 (13)
      • ►  Sep 12 (4)
      • ►  Sep 11 (14)
      • ►  Sep 10 (12)
      • ►  Sep 09 (9)
      • ►  Sep 08 (14)
      • ►  Sep 07 (11)
      • ►  Sep 06 (13)
      • ►  Sep 05 (17)
      • ►  Sep 04 (12)
      • ►  Sep 03 (17)
      • ►  Sep 02 (10)
      • ►  Sep 01 (12)
    • ►  August (453)
      • ►  Aug 31 (6)
      • ►  Aug 30 (12)
      • ►  Aug 29 (13)
      • ►  Aug 28 (7)
      • ►  Aug 27 (6)
      • ►  Aug 26 (9)
      • ►  Aug 25 (11)
      • ►  Aug 24 (6)
      • ►  Aug 23 (10)
      • ►  Aug 22 (18)
      • ►  Aug 21 (8)
      • ►  Aug 20 (18)
      • ►  Aug 19 (5)
      • ►  Aug 18 (8)
      • ►  Aug 17 (16)
      • ►  Aug 16 (18)
      • ►  Aug 15 (7)
      • ►  Aug 14 (8)
      • ►  Aug 13 (17)
      • ►  Aug 12 (18)
      • ►  Aug 11 (21)
      • ►  Aug 10 (10)
      • ►  Aug 09 (14)
      • ►  Aug 08 (25)
      • ►  Aug 07 (25)
      • ►  Aug 06 (22)
      • ►  Aug 05 (32)
      • ►  Aug 04 (24)
      • ►  Aug 03 (15)
      • ►  Aug 02 (26)
      • ►  Aug 01 (18)
    • ►  July (443)
      • ►  Jul 31 (28)
      • ►  Jul 30 (13)
      • ►  Jul 29 (20)
      • ►  Jul 28 (16)
      • ►  Jul 27 (30)
      • ►  Jul 26 (14)
      • ►  Jul 25 (16)
      • ►  Jul 24 (26)
      • ►  Jul 23 (14)
      • ►  Jul 22 (15)
      • ►  Jul 21 (21)
      • ►  Jul 20 (10)
      • ►  Jul 19 (11)
      • ►  Jul 18 (9)
      • ►  Jul 17 (12)
      • ►  Jul 16 (10)
      • ►  Jul 15 (10)
      • ►  Jul 14 (11)
      • ►  Jul 13 (12)
      • ►  Jul 12 (7)
      • ►  Jul 11 (12)
      • ►  Jul 10 (8)
      • ►  Jul 09 (16)
      • ►  Jul 08 (7)
      • ►  Jul 07 (11)
      • ►  Jul 06 (8)
      • ►  Jul 05 (22)
      • ►  Jul 04 (15)
      • ►  Jul 03 (15)
      • ►  Jul 02 (13)
      • ►  Jul 01 (11)
    • ►  June (335)
      • ►  Jun 30 (18)
      • ►  Jun 29 (16)
      • ►  Jun 28 (27)
      • ►  Jun 27 (8)
      • ►  Jun 26 (9)
      • ►  Jun 25 (15)
      • ►  Jun 24 (6)
      • ►  Jun 23 (12)
      • ►  Jun 22 (8)
      • ►  Jun 21 (6)
      • ►  Jun 20 (8)
      • ►  Jun 19 (15)
      • ►  Jun 18 (7)
      • ►  Jun 17 (7)
      • ►  Jun 16 (16)
      • ►  Jun 15 (9)
      • ►  Jun 14 (10)
      • ►  Jun 13 (14)
      • ►  Jun 12 (9)
      • ►  Jun 11 (20)
      • ►  Jun 10 (16)
      • ►  Jun 09 (10)
      • ►  Jun 08 (9)
      • ►  Jun 07 (9)
      • ►  Jun 06 (6)
      • ►  Jun 05 (9)
      • ►  Jun 04 (9)
      • ►  Jun 03 (6)
      • ►  Jun 02 (9)
      • ►  Jun 01 (12)
    • ►  May (298)
      • ►  May 31 (15)
      • ►  May 30 (10)
      • ►  May 29 (12)
      • ►  May 28 (13)
      • ►  May 27 (12)
      • ►  May 26 (23)
      • ►  May 25 (13)
      • ►  May 24 (7)
      • ►  May 23 (4)
      • ►  May 22 (10)
      • ►  May 21 (7)
      • ►  May 20 (13)
      • ►  May 19 (10)
      • ►  May 18 (10)
      • ►  May 17 (8)
      • ►  May 16 (8)
      • ►  May 15 (12)
      • ►  May 14 (10)
      • ►  May 13 (19)
      • ►  May 12 (7)
      • ►  May 11 (6)
      • ►  May 10 (11)
      • ►  May 09 (7)
      • ►  May 08 (4)
      • ►  May 07 (4)
      • ►  May 06 (12)
      • ►  May 05 (6)
      • ►  May 04 (3)
      • ►  May 03 (7)
      • ►  May 02 (13)
      • ►  May 01 (2)
    • ►  April (36)
      • ►  Apr 30 (3)
      • ►  Apr 29 (11)
      • ►  Apr 28 (2)
      • ►  Apr 27 (2)
      • ►  Apr 26 (4)
      • ►  Apr 23 (1)
      • ►  Apr 22 (3)
      • ►  Apr 21 (1)
      • ►  Apr 20 (4)
      • ►  Apr 16 (1)
      • ►  Apr 14 (1)
      • ►  Apr 08 (1)
      • ►  Apr 07 (2)
    • ►  March (24)
      • ►  Mar 30 (3)
      • ►  Mar 25 (1)
      • ►  Mar 24 (1)
      • ►  Mar 23 (1)
      • ►  Mar 22 (1)
      • ►  Mar 17 (1)
      • ►  Mar 15 (2)
      • ►  Mar 13 (1)
      • ►  Mar 12 (2)
      • ►  Mar 11 (2)
      • ►  Mar 10 (1)
      • ►  Mar 09 (1)
      • ►  Mar 06 (1)
      • ►  Mar 05 (2)
      • ►  Mar 03 (1)
      • ►  Mar 02 (2)
      • ►  Mar 01 (1)
    • ►  February (19)
      • ►  Feb 28 (4)
      • ►  Feb 26 (1)
      • ►  Feb 23 (1)
      • ►  Feb 21 (1)
      • ►  Feb 20 (1)
      • ►  Feb 19 (1)
      • ►  Feb 18 (2)
      • ►  Feb 17 (1)
      • ►  Feb 16 (1)
      • ►  Feb 15 (3)
      • ►  Feb 07 (1)
      • ►  Feb 06 (1)
      • ►  Feb 05 (1)
    • ►  January (12)
      • ►  Jan 28 (3)
      • ►  Jan 26 (5)
      • ►  Jan 24 (2)
      • ►  Jan 07 (1)
      • ►  Jan 05 (1)
  • ►  2017 (105)
    • ►  December (9)
      • ►  Dec 31 (1)
      • ►  Dec 27 (2)
      • ►  Dec 24 (1)
      • ►  Dec 15 (1)
      • ►  Dec 02 (4)
    • ►  November (8)
      • ►  Nov 24 (1)
      • ►  Nov 23 (1)
      • ►  Nov 17 (1)
      • ►  Nov 16 (2)
      • ►  Nov 13 (1)
      • ►  Nov 11 (2)
    • ►  October (1)
      • ►  Oct 09 (1)
    • ►  August (2)
      • ►  Aug 12 (1)
      • ►  Aug 04 (1)
    • ►  July (18)
      • ►  Jul 28 (1)
      • ►  Jul 27 (1)
      • ►  Jul 26 (4)
      • ►  Jul 19 (1)
      • ►  Jul 17 (1)
      • ►  Jul 15 (2)
      • ►  Jul 14 (2)
      • ►  Jul 13 (1)
      • ►  Jul 12 (2)
      • ►  Jul 02 (3)
    • ►  June (9)
      • ►  Jun 25 (1)
      • ►  Jun 18 (1)
      • ►  Jun 16 (1)
      • ►  Jun 14 (2)
      • ►  Jun 08 (1)
      • ►  Jun 05 (2)
      • ►  Jun 04 (1)
    • ►  May (22)
      • ►  May 29 (1)
      • ►  May 20 (2)
      • ►  May 19 (1)
      • ►  May 18 (1)
      • ►  May 17 (1)
      • ►  May 14 (3)
      • ►  May 13 (1)
      • ►  May 09 (1)
      • ►  May 07 (3)
      • ►  May 06 (2)
      • ►  May 05 (1)
      • ►  May 04 (2)
      • ►  May 03 (1)
      • ►  May 02 (1)
      • ►  May 01 (1)
    • ►  April (25)
      • ►  Apr 30 (1)
      • ►  Apr 29 (1)
      • ►  Apr 27 (1)
      • ►  Apr 24 (2)
      • ►  Apr 23 (1)
      • ►  Apr 18 (1)
      • ►  Apr 17 (2)
      • ►  Apr 16 (1)
      • ►  Apr 14 (2)
      • ►  Apr 12 (2)
      • ►  Apr 11 (1)
      • ►  Apr 08 (1)
      • ►  Apr 06 (1)
      • ►  Apr 05 (1)
      • ►  Apr 04 (1)
      • ►  Apr 03 (2)
      • ►  Apr 02 (2)
      • ►  Apr 01 (2)
    • ►  March (11)
      • ►  Mar 31 (2)
      • ►  Mar 30 (2)
      • ►  Mar 28 (1)
      • ►  Mar 27 (3)
      • ►  Mar 25 (2)
      • ►  Mar 11 (1)
  • ►  2016 (31)
    • ►  August (1)
      • ►  Aug 10 (1)
    • ►  March (3)
      • ►  Mar 17 (1)
      • ►  Mar 12 (1)
      • ►  Mar 04 (1)
    • ►  February (11)
      • ►  Feb 29 (1)
      • ►  Feb 24 (1)
      • ►  Feb 22 (1)
      • ►  Feb 21 (2)
      • ►  Feb 11 (1)
      • ►  Feb 09 (2)
      • ►  Feb 03 (1)
      • ►  Feb 02 (1)
      • ►  Feb 01 (1)
    • ►  January (16)
      • ►  Jan 26 (2)
      • ►  Jan 24 (1)
      • ►  Jan 22 (2)
      • ►  Jan 21 (1)
      • ►  Jan 20 (1)
      • ►  Jan 19 (2)
      • ►  Jan 16 (1)
      • ►  Jan 14 (3)
      • ►  Jan 13 (1)
      • ►  Jan 12 (1)
      • ►  Jan 07 (1)
  • ►  2015 (1803)
    • ►  December (9)
      • ►  Dec 31 (1)
      • ►  Dec 26 (1)
      • ►  Dec 25 (1)
      • ►  Dec 23 (1)
      • ►  Dec 22 (2)
      • ►  Dec 19 (1)
      • ►  Dec 01 (2)
    • ►  November (11)
      • ►  Nov 28 (2)
      • ►  Nov 13 (1)
      • ►  Nov 11 (1)
      • ►  Nov 09 (3)
      • ►  Nov 07 (1)
      • ►  Nov 05 (1)
      • ►  Nov 03 (1)
      • ►  Nov 02 (1)
    • ►  October (31)
      • ►  Oct 31 (1)
      • ►  Oct 30 (2)
      • ►  Oct 29 (1)
      • ►  Oct 28 (3)
      • ►  Oct 26 (1)
      • ►  Oct 24 (1)
      • ►  Oct 22 (1)
      • ►  Oct 21 (1)
      • ►  Oct 19 (1)
      • ►  Oct 17 (1)
      • ►  Oct 16 (1)
      • ►  Oct 15 (1)
      • ►  Oct 14 (1)
      • ►  Oct 11 (2)
      • ►  Oct 09 (4)
      • ►  Oct 08 (1)
      • ►  Oct 07 (6)
      • ►  Oct 06 (1)
      • ►  Oct 02 (1)
    • ►  September (34)
      • ►  Sep 29 (4)
      • ►  Sep 28 (2)
      • ►  Sep 27 (2)
      • ►  Sep 26 (3)
      • ►  Sep 25 (1)
      • ►  Sep 24 (1)
      • ►  Sep 23 (2)
      • ►  Sep 22 (4)
      • ►  Sep 21 (6)
      • ►  Sep 14 (1)
      • ►  Sep 13 (1)
      • ►  Sep 12 (1)
      • ►  Sep 11 (1)
      • ►  Sep 09 (2)
      • ►  Sep 08 (1)
      • ►  Sep 05 (1)
      • ►  Sep 04 (1)
    • ►  August (6)
      • ►  Aug 22 (1)
      • ►  Aug 20 (1)
      • ►  Aug 08 (1)
      • ►  Aug 07 (2)
      • ►  Aug 06 (1)
    • ►  July (29)
      • ►  Jul 21 (1)
      • ►  Jul 18 (1)
      • ►  Jul 15 (1)
      • ►  Jul 14 (3)
      • ►  Jul 13 (1)
      • ►  Jul 12 (1)
      • ►  Jul 10 (2)
      • ►  Jul 09 (1)
      • ►  Jul 08 (1)
      • ►  Jul 06 (4)
      • ►  Jul 05 (3)
      • ►  Jul 04 (1)
      • ►  Jul 03 (6)
      • ►  Jul 02 (1)
      • ►  Jul 01 (2)
    • ►  June (9)
      • ►  Jun 28 (2)
      • ►  Jun 24 (2)
      • ►  Jun 22 (1)
      • ►  Jun 18 (1)
      • ►  Jun 17 (1)
      • ►  Jun 02 (2)
    • ►  May (141)
      • ►  May 31 (3)
      • ►  May 30 (7)
      • ►  May 29 (8)
      • ►  May 28 (4)
      • ►  May 27 (4)
      • ►  May 26 (5)
      • ►  May 25 (1)
      • ►  May 24 (4)
      • ►  May 23 (8)
      • ►  May 22 (6)
      • ►  May 21 (4)
      • ►  May 20 (4)
      • ►  May 19 (7)
      • ►  May 18 (3)
      • ►  May 17 (2)
      • ►  May 16 (7)
      • ►  May 15 (10)
      • ►  May 14 (7)
      • ►  May 13 (5)
      • ►  May 12 (2)
      • ►  May 11 (2)
      • ►  May 10 (4)
      • ►  May 09 (3)
      • ►  May 08 (3)
      • ►  May 07 (5)
      • ►  May 06 (4)
      • ►  May 05 (4)
      • ►  May 04 (2)
      • ►  May 03 (3)
      • ►  May 02 (4)
      • ►  May 01 (6)
    • ►  April (150)
      • ►  Apr 29 (4)
      • ►  Apr 28 (5)
      • ►  Apr 24 (3)
      • ►  Apr 22 (1)
      • ►  Apr 19 (3)
      • ►  Apr 17 (2)
      • ►  Apr 16 (2)
      • ►  Apr 15 (1)
      • ►  Apr 14 (1)
      • ►  Apr 12 (3)
      • ►  Apr 10 (13)
      • ►  Apr 09 (18)
      • ►  Apr 08 (8)
      • ►  Apr 07 (15)
      • ►  Apr 06 (13)
      • ►  Apr 05 (17)
      • ►  Apr 04 (9)
      • ►  Apr 03 (4)
      • ►  Apr 02 (14)
      • ►  Apr 01 (14)
    • ►  March (609)
      • ►  Mar 31 (29)
      • ►  Mar 30 (24)
      • ►  Mar 29 (18)
      • ►  Mar 28 (15)
      • ►  Mar 27 (7)
      • ►  Mar 26 (14)
      • ►  Mar 25 (6)
      • ►  Mar 23 (11)
      • ►  Mar 22 (22)
      • ►  Mar 21 (29)
      • ►  Mar 20 (41)
      • ►  Mar 19 (34)
      • ►  Mar 18 (34)
      • ►  Mar 17 (41)
      • ►  Mar 16 (31)
      • ►  Mar 15 (1)
      • ►  Mar 14 (3)
      • ►  Mar 13 (17)
      • ►  Mar 12 (12)
      • ►  Mar 11 (12)
      • ►  Mar 10 (19)
      • ►  Mar 09 (25)
      • ►  Mar 08 (20)
      • ►  Mar 07 (17)
      • ►  Mar 06 (20)
      • ►  Mar 05 (19)
      • ►  Mar 04 (30)
      • ►  Mar 03 (5)
      • ►  Mar 02 (18)
      • ►  Mar 01 (35)
    • ►  February (652)
      • ►  Feb 28 (19)
      • ►  Feb 27 (19)
      • ►  Feb 26 (28)
      • ►  Feb 25 (18)
      • ►  Feb 24 (8)
      • ►  Feb 23 (26)
      • ►  Feb 22 (15)
      • ►  Feb 21 (40)
      • ►  Feb 20 (24)
      • ►  Feb 19 (40)
      • ►  Feb 18 (38)
      • ►  Feb 17 (39)
      • ►  Feb 16 (53)
      • ►  Feb 15 (28)
      • ►  Feb 14 (31)
      • ►  Feb 13 (14)
      • ►  Feb 12 (26)
      • ►  Feb 11 (18)
      • ►  Feb 10 (32)
      • ►  Feb 09 (15)
      • ►  Feb 08 (7)
      • ►  Feb 07 (24)
      • ►  Feb 06 (15)
      • ►  Feb 05 (16)
      • ►  Feb 04 (21)
      • ►  Feb 03 (9)
      • ►  Feb 02 (23)
      • ►  Feb 01 (6)
    • ►  January (122)
      • ►  Jan 31 (10)
      • ►  Jan 30 (21)
      • ►  Jan 29 (4)
      • ►  Jan 28 (5)
      • ►  Jan 27 (9)
      • ►  Jan 26 (3)
      • ►  Jan 25 (6)
      • ►  Jan 24 (9)
      • ►  Jan 23 (5)
      • ►  Jan 22 (4)
      • ►  Jan 21 (3)
      • ►  Jan 20 (1)
      • ►  Jan 17 (1)
      • ►  Jan 16 (2)
      • ►  Jan 15 (2)
      • ►  Jan 14 (2)
      • ►  Jan 13 (8)
      • ►  Jan 12 (4)
      • ►  Jan 11 (4)
      • ►  Jan 10 (2)
      • ►  Jan 09 (6)
      • ►  Jan 08 (6)
      • ►  Jan 07 (5)
  • ►  2014 (1062)
    • ►  November (6)
      • ►  Nov 26 (2)
      • ►  Nov 25 (3)
      • ►  Nov 24 (1)
    • ►  October (10)
      • ►  Oct 23 (2)
      • ►  Oct 16 (3)
      • ►  Oct 12 (4)
      • ►  Oct 06 (1)
    • ►  September (270)
      • ►  Sep 21 (34)
      • ►  Sep 20 (15)
      • ►  Sep 17 (9)
      • ►  Sep 13 (10)
      • ►  Sep 12 (33)
      • ►  Sep 11 (30)
      • ►  Sep 10 (1)
      • ►  Sep 09 (14)
      • ►  Sep 08 (23)
      • ►  Sep 07 (5)
      • ►  Sep 06 (19)
      • ►  Sep 05 (18)
      • ►  Sep 04 (24)
      • ►  Sep 03 (18)
      • ►  Sep 02 (10)
      • ►  Sep 01 (7)
    • ►  August (497)
      • ►  Aug 31 (15)
      • ►  Aug 30 (20)
      • ►  Aug 28 (1)
      • ►  Aug 25 (10)
      • ►  Aug 24 (26)
      • ►  Aug 23 (23)
      • ►  Aug 22 (14)
      • ►  Aug 21 (22)
      • ►  Aug 20 (21)
      • ►  Aug 19 (18)
      • ►  Aug 18 (66)
      • ►  Aug 17 (21)
      • ►  Aug 16 (16)
      • ►  Aug 15 (34)
      • ►  Aug 14 (25)
      • ►  Aug 13 (12)
      • ►  Aug 11 (7)
      • ►  Aug 10 (18)
      • ►  Aug 09 (13)
      • ►  Aug 08 (13)
      • ►  Aug 07 (26)
      • ►  Aug 06 (21)
      • ►  Aug 05 (7)
      • ►  Aug 04 (15)
      • ►  Aug 03 (20)
      • ►  Aug 02 (5)
      • ►  Aug 01 (8)
    • ►  July (85)
      • ►  Jul 31 (5)
      • ►  Jul 30 (26)
      • ►  Jul 29 (21)
      • ►  Jul 28 (33)
    • ►  March (3)
      • ►  Mar 25 (1)
      • ►  Mar 12 (1)
      • ►  Mar 09 (1)
    • ►  February (23)
      • ►  Feb 14 (1)
      • ►  Feb 06 (2)
      • ►  Feb 04 (4)
      • ►  Feb 03 (1)
      • ►  Feb 02 (6)
      • ►  Feb 01 (9)
    • ►  January (168)
      • ►  Jan 31 (10)
      • ►  Jan 30 (6)
      • ►  Jan 29 (4)
      • ►  Jan 27 (6)
      • ►  Jan 26 (1)
      • ►  Jan 25 (7)
      • ►  Jan 24 (13)
      • ►  Jan 23 (11)
      • ►  Jan 22 (3)
      • ►  Jan 21 (6)
      • ►  Jan 20 (3)
      • ►  Jan 19 (8)
      • ►  Jan 18 (7)
      • ►  Jan 17 (7)
      • ►  Jan 16 (13)
      • ►  Jan 15 (1)
      • ►  Jan 12 (1)
      • ►  Jan 11 (1)
      • ►  Jan 09 (3)
      • ►  Jan 08 (6)
      • ►  Jan 07 (7)
      • ►  Jan 06 (14)
      • ►  Jan 05 (10)
      • ►  Jan 04 (2)
      • ►  Jan 02 (6)
      • ►  Jan 01 (12)
  • ►  2013 (210)
    • ►  December (199)
      • ►  Dec 30 (5)
      • ►  Dec 29 (8)
      • ►  Dec 28 (6)
      • ►  Dec 27 (11)
      • ►  Dec 26 (9)
      • ►  Dec 25 (7)
      • ►  Dec 24 (15)
      • ►  Dec 23 (13)
      • ►  Dec 22 (3)
      • ►  Dec 21 (9)
      • ►  Dec 20 (10)
      • ►  Dec 19 (7)
      • ►  Dec 18 (4)
      • ►  Dec 17 (7)
      • ►  Dec 16 (6)
      • ►  Dec 15 (5)
      • ►  Dec 14 (3)
      • ►  Dec 13 (5)
      • ►  Dec 12 (2)
      • ►  Dec 11 (4)
      • ►  Dec 10 (9)
      • ►  Dec 09 (11)
      • ►  Dec 08 (11)
      • ►  Dec 07 (14)
      • ►  Dec 06 (3)
      • ►  Dec 05 (3)
      • ►  Dec 04 (6)
      • ►  Dec 03 (1)
      • ►  Dec 02 (2)
    • ►  September (2)
      • ►  Sep 25 (2)
    • ►  April (1)
      • ►  Apr 30 (1)
    • ►  January (8)
      • ►  Jan 22 (1)
      • ►  Jan 20 (4)
      • ►  Jan 16 (1)
      • ►  Jan 15 (1)
      • ►  Jan 14 (1)
  • ►  2012 (2)
    • ►  December (1)
      • ►  Dec 21 (1)
    • ►  January (1)
      • ►  Jan 11 (1)
  • ►  2011 (26)
    • ►  December (25)
      • ►  Dec 22 (1)
      • ►  Dec 17 (3)
      • ►  Dec 16 (2)
      • ►  Dec 15 (1)
      • ►  Dec 14 (1)
      • ►  Dec 13 (2)
      • ►  Dec 12 (1)
      • ►  Dec 11 (1)
      • ►  Dec 10 (1)
      • ►  Dec 07 (4)
      • ►  Dec 06 (2)
      • ►  Dec 04 (1)
      • ►  Dec 03 (2)
      • ►  Dec 02 (3)
    • ►  November (1)
      • ►  Nov 19 (1)
  • ►  2010 (2)
    • ►  September (1)
      • ►  Sep 11 (1)
    • ►  January (1)
      • ►  Jan 16 (1)
  • ►  2008 (1)
    • ►  April (1)
      • ►  Apr 05 (1)

Labels

  • Estradiol

Report Abuse

Followers

Total Pageviews

Translate

Simple theme. Theme images by merrymoonmary. Powered by Blogger.