7.9. Input Files (Optional)¶
Files are used to store data in software that we use every day. For example, when you play a game on your computer, your game progress is saved in a file. The next time you play that game, your game progress is loaded in from that file, so you can continue where you left off. In this lesson, you will learn how to read in data from a file in Java.
A file is storage for data that persists when the program is not running. The data in a file can be retrieved during program execution. For example in Unit 6, you created a SpellChecker
class that reads in a dictionary file into an array of words, and a spellcheck
method that uses this array to verify if a word is spelled correctly. Input files like the dictionary enable us to handle large amounts of data efficiently. Instead of manually entering data into our program every time it runs, we can store the data in a file and read it as needed. Another benefit of using files is the ability to separate the data from the code, allowing for more modular and flexible software design.
7.9.1. Java File
, Scanner
, and IOException
Classes¶
One way to connect a file to a Java program is to use the File
class from the java.io
package. (The io stands for input/output). This was used in Java before version 7 and is used by the College Board. A newer library nio
will be presented in the next sections. (The nio
stands for, wait for it, “new input/output”.)
A file can be opened by creating a File
object, using the name of the file or the complete path to the file, as the argument of the constructor, File(String str)
.
import java.io.*;
...
File myFile = new File("data.txt");
After opening a file, the Scanner
class can be used to read in the data from the file line by line. The Scanner
class is part of the java.util
package and has a constructor that takes a File
object as an argument to create an input stream from the file.
But what if you misspell the file name or the file does not exist? The Scanner
constructor will throw a FileNotFoundException
if it cannot find the file. This is a type of IOException
, which is a general error that is also thrown when the input does not match expectations. We’ve seen other exceptions before, like ArrayIndexOutOfBoundsException
and NullPointerException
. Exceptions are a way for Java to handle runtime errors that occur during program execution. When an exception is thrown, the program stops executing and the exception is thrown back to the calling method. If the exception is not handled, the program will terminate. Java uses try/catch
blocks to handle exceptions, but you can use the throws
keyword in the method header to indicate that the method may throw an exception instead of handling it there. The throws IOException statement is added to the end of the method header. Here is an example that sets up an input file in the main method and throws an exception.
import java.io.*;
import java.util.*;
public class FileIO
{
// Notice throws IOException here
public static void main(String[] args) throws IOException
{
File myFile = new File("data.txt");
Scanner scan = new Scanner(myFile);
...
scan.close();
}
}
Try the following exercise to practice reading in a file. Notice the compiler error “unreported exception FileNotFoundException; must be caught or declared to be thrown”. Add throws IOException to the end of the main method header to fix the error.
Run the code below to see the error message. Add throws and the correct exception to the end of the main method header to fix the error.
7.9.2. Reading in Data with Scanner¶
Once the file is opened, the data can be read using Scanner
methods. For example, the method, nextLine
will read the next line of input and returns it as a String
. Here are the methods used in the Scanner file to read all types of input:
Scanner(File f)
the Scanner constructor that accepts a File for reading.boolean hasNext()
returns true if there is a next item to read in the file or input source; false otherwise.String nextLine()
returns the next line of text up until the end of the line as a String read from the file or input source; returns null if there is no next line.String next()
returns the next String up until a white space read from the file or input source.int nextInt()
returns the next int read from the file or input source. If the next int does not exist, it will result in anInputMismatchException
. Note that this method does not read the end of the line, so the next call tonextLine()
will return the rest of the line which will be empty.double nextDouble()
returns the next double read from the file or input source.boolean nextBoolean()
returns the next Boolean read from the file or input source.void close()
closes the input stream.
After opening a file and connecting it to a Scanner
object, a loop is usually used to read in each line of the file. A while
loop can use the method hasNextLine
as the loop condition to detect if the file still contains elements to
read. A loop with this condition will terminate when there are no more lines to read in the file. After the loop is finished reading the data, the close
method from Scanner should be called to close the file.
while (scan.hasNextLine())
{
String line = scan.nextLine();
...
}
scan.close();
We can save a file into an array. In the SpellChecker
class, we read the data file of words into a dictionary array with the following code. However, we had to know the number lines or words in the file to declare an array of the right size.
String[] dictionary = new String[10000];
int i = 0;
while(scan.hasNextLine())
{
String line = scan.nextLine();
dictionary[i] = line;
i++;
}
The following exercise reads in a data file about Pokemon and prints out the first 10 lines in the file. This file has the extension csv which stands for Comma Separated Values. All spreadsheets can be saved as CSV text files, and spreadsheet software can easily open CSV files as spreadsheets.
Number,Pokemon,Type 1,Type 2,HP,Attack,Defense,Speed,PNG,Description 1,Bulbasaur,Grass,Poison,45,49,49,45,https://play.pokemonshowdown.com/sprites/bw/bulbasaur.png,A strange seed was planted on its back at birth. The plant sprouts and grows with this Pokemon. 2,Ivysaur,Grass,Poison,60,62,63,60,https://play.pokemonshowdown.com/sprites/bw/ivysaur.png,"Often seen swimming elegantly by lake shores. It is often mistaken for the Japanese monster, Kappa." 3,Venusaur,Grass,Poison,80,82,83,80,https://play.pokemonshowdown.com/sprites/bw/venusaur.png,"Because it stores several kinds of toxic gases in its body, it is prone to exploding without warning." 4,Charmander,Fire,,39,52,43,65,https://play.pokemonshowdown.com/sprites/bw/charmander.png,"Obviously prefers hot places. When it rains, steam is said to spout from the tip of its tail." 5,Charmeleon,Fire,,58,64,58,80,https://play.pokemonshowdown.com/sprites/bw/charmeleon.png,"When it swings its burning tail, it elevates the temperature to unbearably high levels." 6,Charizard,Fire,Flying,78,84,78,100,https://play.pokemonshowdown.com/sprites/bw/charizard.png,Spits fire that is hot enough to melt boulders. Known to cause forest fires unintentionally. 7,Squirtle,Water,,44,48,65,43,https://play.pokemonshowdown.com/sprites/bw/squirtle.png,"After birth, its back swells and hardens into a shell. Powerfully sprays foam from its mouth." 8,Wartortle,Water,,59,63,80,58,https://play.pokemonshowdown.com/sprites/bw/wartortle.png,"Often hides in water to stalk unwary prey. For swimming fast, it moves its ears to maintain balance." 9,Blastoise,Water,,79,83,100,78,https://play.pokemonshowdown.com/sprites/bw/blastoise.png,A brutal Pokemon with pressurized water jets on its shell. They are used for high speed tackles. 10,Caterpie,Bug,,45,30,35,45,https://play.pokemonshowdown.com/sprites/bw/caterpie.png,Its short feet are tipped with suction pads that enable it to tirelessly climb slopes and walls. 11,Metapod,Bug,,50,20,55,30,https://play.pokemonshowdown.com/sprites/bw/metapod.png,"This Pokemon is vulnerable to attack while its shell is soft, exposing its weak and tender body." 12,Butterfree,Bug,Flying,60,45,50,70,https://play.pokemonshowdown.com/sprites/bw/butterfree.png,"In battle, it flaps its wings at high speed to release highly toxic dust into the air." 13,Weedle,Bug,Poison,40,35,30,50,https://play.pokemonshowdown.com/sprites/bw/weedle.png,"Often found in forests, eating leaves. It has a sharp venomous stinger on its head." 14,Kakuna,Bug,Poison,45,25,50,35,https://play.pokemonshowdown.com/sprites/bw/kakuna.png,"Almost incapable of moving, this Pokemon can only harden its shell to protect itself from predators." 15,Beedrill,Bug,Poison,65,80,40,75,https://play.pokemonshowdown.com/sprites/bw/beedrill.png,Flies at high speed and attacks using its large venomous stingers on its forelegs and tail. 16,Pidgey,Normal,Flying,40,45,40,56,https://play.pokemonshowdown.com/sprites/bw/pidgey.png,A common sight in forests and woods. It flaps its wings at ground level to kick up blinding sand. 17,Pidgeotto,Normal,Flying,63,60,55,71,https://play.pokemonshowdown.com/sprites/bw/pidgeotto.png,"Very protective of its sprawling territorial area, this Pokemon will fiercely peck at any intruder." 18,Pidgeot,Normal,Flying,83,80,75,91,https://play.pokemonshowdown.com/sprites/bw/pidgeot.png,"When hunting, it skims the surface of water at high speed to pick off unwary prey such as MAGIKARP." 19,Rattata,Normal,,30,56,35,72,https://play.pokemonshowdown.com/sprites/bw/rattata.png,"Bites anything when it attacks. Small and very quick, it is a common sight in many places." 20,Raticate,Normal,,55,81,60,97,https://play.pokemonshowdown.com/sprites/bw/raticate.png,It uses its whiskers to maintain its balance. It apparently slows down if they are cut off. 21,Spearow,Normal,Flying,40,60,30,70,https://play.pokemonshowdown.com/sprites/bw/spearow.png,Eats bugs in grassy areas. It has to flap its short wings at high speed to stay airborne. 22,Fearow,Normal,Flying,65,90,65,100,https://play.pokemonshowdown.com/sprites/bw/fearow.png,"With its huge and magnificent wings, it can keep aloft without ever having to land for rest." 23,Ekans,Poison,,35,60,44,55,https://play.pokemonshowdown.com/sprites/bw/ekans.png,"Moves silently and stealthily. Eats the eggs of birds, such as PIDGEY and SPEAROW, whole." 24,Arbok,Poison,,60,85,69,80,https://play.pokemonshowdown.com/sprites/bw/arbok.png,It is rumored that the ferocious warning markings on its belly differ from area to area. 25,Pikachu,Electric,,35,55,30,90,https://play.pokemonshowdown.com/sprites/bw/pikachu.png,"When several of these Pokemon gather, their electricity could build and cause lightning storms." 26,Raichu,Electric,,60,90,55,100,https://play.pokemonshowdown.com/sprites/bw/raichu.png,Its long tail serves as a ground to protect itself from its own high voltage power. 27,Sandshrew,Ground,,50,75,85,40,https://play.pokemonshowdown.com/sprites/bw/sandshrew.png,Burrows deep underground in arid locations far from water. It only emerges to hunt for food. 28,Sandslash,Ground,,75,100,110,65,https://play.pokemonshowdown.com/sprites/bw/sandslash.png,Curls up into a spiny ball when threatened. It can roll while curled up to attack or escape. 29,NidoranF,Poison,,55,47,52,41,https://play.pokemonshowdown.com/sprites/bw/nidoranf.png,"Although small, its venomous barbs render this Pokemon dangerous. The female has smaller horns." 30,Nidorina,Poison,,70,62,67,56,https://play.pokemonshowdown.com/sprites/bw/nidorina.png,The female's horn develops slowly. Prefers physical attacks such as clawing and biting. 31,Nidoqueen,Poison,Ground,90,82,87,76,https://play.pokemonshowdown.com/sprites/bw/nidoqueen.png,Its hard scales provide strong protection. It uses its hefty bulk to execute powerful moves. 32,NidoranM,Poison,,46,57,40,50,https://play.pokemonshowdown.com/sprites/bw/nidoranm.png,"Stiffens its ears to sense danger. The larger its horns, the more powerful its secreted venom." 33,Nidorino,Poison,,61,72,57,65,https://play.pokemonshowdown.com/sprites/bw/nidorino.png,An aggressive Pokemon that is quick to attack. The horn on its head secretes a powerful venom. 34,Nidoking,Poison,Ground,81,92,77,85,https://play.pokemonshowdown.com/sprites/bw/nidoking.png,"It uses its powerful tail in battle to smash, constrict, then break the prey's bones." 35,Clefairy,Normal,,70,45,48,35,https://play.pokemonshowdown.com/sprites/bw/clefairy.png,Its magical and cute appeal has many admirers. It is rare and found only in certain areas. 36,Clefable,Normal,,95,70,73,60,https://play.pokemonshowdown.com/sprites/bw/clefable.png,A timid fairy Pokemon that is rarely seen. It will run and hide the moment it senses people. 37,Vulpix,Fire,,38,41,40,65,https://play.pokemonshowdown.com/sprites/bw/vulpix.png,"At the time of birth, it has just one tail. The tail splits from its tip as it grows older." 38,Ninetales,Fire,,73,76,75,100,https://play.pokemonshowdown.com/sprites/bw/ninetales.png,Very smart and very vengeful. Grabbing one of its many tails could result in a 1000-year curse. 39,Jigglypuff,Normal,,115,45,20,20,https://play.pokemonshowdown.com/sprites/bw/jigglypuff.png,"When its huge eyes light up, it sings a mysteriously soothing melody that lulls its enemies to sleep." 40,Wigglytuff,Normal,,140,70,45,45,https://play.pokemonshowdown.com/sprites/bw/wigglytuff.png,"The body is soft and rubbery. When angered, it will suck in air and inflate itself to an enormous size." 41,Zubat,Poison,Flying,40,45,35,55,https://play.pokemonshowdown.com/sprites/bw/zubat.png,Forms colonies in perpetually dark places. Uses ultrasonic waves to identify and approach targets. 42,Golbat,Poison,Flying,75,80,70,90,https://play.pokemonshowdown.com/sprites/bw/golbat.png,"Once it strikes, it will not stop draining energy from the victim even if it gets too heavy to fly." 43,Oddish,Grass,Poison,45,50,55,30,https://play.pokemonshowdown.com/sprites/bw/oddish.png,"During the day, it keeps its face buried in the ground. At night, it wanders around sowing its seeds." 44,Gloom,Grass,Poison,60,65,70,40,https://play.pokemonshowdown.com/sprites/bw/gloom.png,The fluid that oozes from its mouth isn't drool. It is a nectar that is used to attract prey. 45,Vileplume,Grass,Poison,75,80,85,50,https://play.pokemonshowdown.com/sprites/bw/vileplume.png,"The larger its petals, the more toxic pollen it contains. Its big head is heavy and hard to hold up." 46,Paras,Bug,Grass,35,70,55,25,https://play.pokemonshowdown.com/sprites/bw/paras.png,Burrows to suck tree roots. The mushrooms on its back grow by drawing nutrients from the bug host. 47,Parasect,Bug,Grass,60,95,80,30,https://play.pokemonshowdown.com/sprites/bw/parasect.png,A host-parasite pair in which the parasite mushroom has taken over the host bug. Prefers damp places. 48,Venonat,Bug,Poison,60,55,50,45,https://play.pokemonshowdown.com/sprites/bw/venonat.png,Lives in the shadows of tall trees where it eats insects. It is attracted by light at night. 49,Venomoth,Bug,Poison,70,65,60,90,https://play.pokemonshowdown.com/sprites/bw/venomoth.png,The dust-like scales covering its wings are color coded to indicate the kinds of poison it has. 50,Diglett,Ground,,10,55,25,95,https://play.pokemonshowdown.com/sprites/bw/diglett.png,Lives about one yard underground where it feeds on plant roots. It sometimes appears above ground. 51,Dugtrio,Ground,,35,80,50,120,https://play.pokemonshowdown.com/sprites/bw/dugtrio.png,A team of DIGLETT triplets. It triggers huge earthquakes by burrowing 60 miles underground. 52,Meowth,Normal,,40,45,35,90,https://play.pokemonshowdown.com/sprites/bw/meowth.png,Adores circular objects. Wanders the streets on a nightly basis to look for dropped loose change. 53,Persian,Normal,,65,70,60,115,https://play.pokemonshowdown.com/sprites/bw/persian.png,"Although its fur has many admirers, it is tough to raise as a pet because of its fickle meanness." 54,Psyduck,Water,,50,52,48,55,https://play.pokemonshowdown.com/sprites/bw/psyduck.png,"While lulling its enemies with its vacant look, this wily Pokemon will use psychokinetic powers." 55,Golduck,Water,,80,82,78,85,https://play.pokemonshowdown.com/sprites/bw/golduck.png,"Often seen swimming elegantly by lake shores. It is often mistaken for the Japanese monster, Kappa." 56,Mankey,Fighting,,40,80,35,70,https://play.pokemonshowdown.com/sprites/bw/mankey.png,Extremely quick to anger. It could be docile one moment then thrashing away the next instant. 57,Primeape,Fighting,,65,105,60,95,https://play.pokemonshowdown.com/sprites/bw/primeape.png,Always furious and tenacious to boot. It will not abandon chasing its quarry until it is caught. 58,Growlithe,Fire,,55,70,45,60,https://play.pokemonshowdown.com/sprites/bw/growlithe.png,Very protective of its territory. It will bark and bite to repel intruders from its space. 59,Arcanine,Fire,,90,110,80,95,https://play.pokemonshowdown.com/sprites/bw/arcanine.png,A Pokemon that has been admired since the past for its beauty. It runs agilely as if on wings. 60,Poliwag,Water,,40,50,40,90,https://play.pokemonshowdown.com/sprites/bw/poliwag.png,Its newly grown legs prevent it from running. It appears to prefer swimming than trying to stand. 61,Poliwhirl,Water,,65,65,65,90,https://play.pokemonshowdown.com/sprites/bw/poliwhirl.png,"Capable of living in or out of water. When out of water, it sweats to keep its body slimy." 62,Poliwrath,Water,Fighting,90,85,95,70,https://play.pokemonshowdown.com/sprites/bw/poliwrath.png,An adept swimmer at both the front crawl and breast stroke. Easily overtakes the best human swimmers. 63,Abra,Psychic,,25,20,15,90,https://play.pokemonshowdown.com/sprites/bw/abra.png,"Using its ability to read minds, it will identify impending danger and TELEPORT to safety." 64,Kadabra,Psychic,,40,35,30,105,https://play.pokemonshowdown.com/sprites/bw/kadabra.png,It emits special alpha waves from its body that induce headaches just by being close by. 65,Alakazam,Psychic,,55,50,45,120,https://play.pokemonshowdown.com/sprites/bw/alakazam.png,"Its brain can outperform a supercomputer. Its intelligence quotient is said to be 5,000." 66,Machop,Fighting,,70,80,50,35,https://play.pokemonshowdown.com/sprites/bw/machop.png,Loves to build its muscles. It trains in all styles of martial arts to become even stronger. 67,Machoke,Fighting,,80,100,70,45,https://play.pokemonshowdown.com/sprites/bw/machoke.png,"Its muscular body is so powerful, it must wear a power save belt to be able to regulate its motions." 68,Machamp,Fighting,,90,130,80,55,https://play.pokemonshowdown.com/sprites/bw/machamp.png,"Using its heavy muscles, it throws powerful punches that can send the victim clear over the horizon." 69,Bellsprout,Grass,Poison,50,75,35,40,https://play.pokemonshowdown.com/sprites/bw/bellsprout.png,A carnivorous Pokemon that traps and eats bugs. It uses its root feet to soak up needed moisture. 70,Weepinbell,Grass,Poison,65,90,50,55,https://play.pokemonshowdown.com/sprites/bw/weepinbell.png,It spits out POISONPOWDER to immobilize the enemy and then finishes it with a spray of ACID. 71,Victreebel,Grass,Poison,80,105,65,70,https://play.pokemonshowdown.com/sprites/bw/victreebel.png,"Said to live in huge colonies deep in jungles, although no one has ever returned from there." 72,Tentacool,Water,Poison,40,40,35,70,https://play.pokemonshowdown.com/sprites/bw/tentacool.png,Drifts in shallow seas. Anglers who hook them by accident are often punished by its stinging acid. 73,Tentacruel,Water,Poison,80,70,65,100,https://play.pokemonshowdown.com/sprites/bw/tentacruel.png,"The tentacles are normally kept short. On hunts, they are extended to ensnare and immobilize prey." 74,Geodude,Rock,Ground,40,80,100,20,https://play.pokemonshowdown.com/sprites/bw/geodude.png,"Found in fields and mountains. Mistaking them for boulders, people often step or trip on them." 75,Graveler,Rock,Ground,55,95,115,35,https://play.pokemonshowdown.com/sprites/bw/graveler.png,Rolls down slopes to move. It rolls over any obstacle without slowing or changing its direction. 76,Golem,Rock,Ground,80,110,130,45,https://play.pokemonshowdown.com/sprites/bw/golem.png,Its boulder-like body is extremely hard. It can easily withstand dynamite blasts without damage. 77,Ponyta,Fire,,50,85,55,90,https://play.pokemonshowdown.com/sprites/bw/ponyta.png,Its hooves are 10 times harder than diamonds. It can trample anything completely flat in little time. 78,Rapidash,Fire,,65,100,70,105,https://play.pokemonshowdown.com/sprites/bw/rapidash.png,"Very competitive, this Pokemon will chase anything that moves fast in the hopes of racing it." 79,Slowpoke,Water,Psychic,90,65,65,15,https://play.pokemonshowdown.com/sprites/bw/slowpoke.png,Incredibly slow and dopey. It takes 5 seconds for it to feel pain when under attack. 80,Slowbro,Water,Psychic,95,75,110,30,https://play.pokemonshowdown.com/sprites/bw/slowbro.png,The SHELLDER that is latched onto SLOWPOKE's tail is said to feed on the host's left over scraps. 81,Magnemite,Electric,,25,35,70,45,https://play.pokemonshowdown.com/sprites/bw/magnemite.png,Uses anti-gravity to stay suspended. Appears without warning and uses THUNDER WAVE and similar moves. 82,Magneton,Electric,,50,60,95,70,https://play.pokemonshowdown.com/sprites/bw/magneton.png,Formed by several MAGNEMITEs linked together. They frequently appear when sunspots flare up. 83,Farfetch'd,Normal,Flying,52,65,55,60,https://play.pokemonshowdown.com/sprites/bw/farfetchd.png,The sprig of green onions it holds is its weapon. It is used much like a metal sword. 84,Doduo,Normal,Flying,35,85,45,75,https://play.pokemonshowdown.com/sprites/bw/doduo.png,A bird that makes up for its poor flying with its fast foot speed. Leaves giant footprints. 85,Dodrio,Normal,Flying,60,110,70,100,https://play.pokemonshowdown.com/sprites/bw/dodrio.png,"Uses its three brains to execute complex plans. While two heads sleep, one head stays awake." 86,Seel,Water,,65,45,55,45,https://play.pokemonshowdown.com/sprites/bw/seel.png,The protruding horn on its head is very hard. It is used for bashing through thick ice. 87,Dewgong,Water,Ice,90,70,80,70,https://play.pokemonshowdown.com/sprites/bw/dewgong.png,Stores thermal energy in its body. Swims at a steady 8 knots even in intensely cold waters. 88,Grimer,Poison,,80,80,50,25,https://play.pokemonshowdown.com/sprites/bw/grimer.png,Appears in filthy areas. Thrives by sucking up polluted sludge that is pumped out of factories. 89,Muk,Poison,,105,105,75,50,https://play.pokemonshowdown.com/sprites/bw/muk.png,"Thickly covered with a filthy, vile sludge. It is so toxic, even its footprints contain poison." 90,Shellder,Water,,30,65,100,40,https://play.pokemonshowdown.com/sprites/bw/shellder.png,Its hard shell repels any kind of attack. It is vulnerable only when its shell is open. 91,Cloyster,Water,Ice,50,95,180,70,https://play.pokemonshowdown.com/sprites/bw/cloyster.png,"When attacked, it launches its horns in quick volleys. Its innards have never been seen." 92,Gastly,Ghost,Poison,30,35,30,80,https://play.pokemonshowdown.com/sprites/bw/gastly.png,"Almost invisible, this gaseous Pokemon cloaks the target and puts it to sleep without notice." 93,Haunter,Ghost,Poison,45,50,45,95,https://play.pokemonshowdown.com/sprites/bw/haunter.png,"Because of its ability to slip through block walls, it is said to be from another dimension." 94,Gengar,Ghost,Poison,60,65,60,110,https://play.pokemonshowdown.com/sprites/bw/gengar.png,"Under a full moon, this Pokemon likes to mimic the shadows of people and laugh at their fright." 95,Onix,Rock,Ground,35,45,160,70,https://play.pokemonshowdown.com/sprites/bw/onix.png,"As it grows, the stone portions of its body harden to become similar to a diamond, but colored black." 96,Drowzee,Psychic,,60,48,45,42,https://play.pokemonshowdown.com/sprites/bw/drowzee.png,Puts enemies to sleep then eats their dreams. Occasionally gets sick from eating bad dreams. 97,Hypno,Psychic,,85,73,70,67,https://play.pokemonshowdown.com/sprites/bw/hypno.png,"When it locks eyes with an enemy, it will use a mix of PSI moves such as HYPNOSIS and CONFUSION." 98,Krabby,Water,,30,105,90,50,https://play.pokemonshowdown.com/sprites/bw/krabby.png,"Its pincers are not only powerful weapons, they are used for balance when walking sideways." 99,Kingler,Water,,55,130,115,75,https://play.pokemonshowdown.com/sprites/bw/kingler.png,"The large pincer has 10000 hp of crushing power. However, its huge size makes it unwieldy to use." 100,Voltorb,Electric,,40,30,50,100,https://play.pokemonshowdown.com/sprites/bw/voltorb.png,"Usually found in power plants. Easily mistaken for a Pokeball, they have zapped many people." 101,Electrode,Electric,,60,50,70,140,https://play.pokemonshowdown.com/sprites/bw/electrode.png,It stores electric energy under very high pressure. It often explodes with little or no provocation. 102,Exeggcute,Grass,Psychic,60,40,80,40,https://play.pokemonshowdown.com/sprites/bw/exeggcute.png,"Often mistaken for eggs. When disturbed, they quickly gather and attack in swarms." 103,Exeggutor,Grass,Psychic,95,95,85,55,https://play.pokemonshowdown.com/sprites/bw/exeggutor.png,"Legend has it that on rare occasions, one of its heads will drop off and continue on as an EXEGGCUTE." 104,Cubone,Ground,,50,50,95,35,https://play.pokemonshowdown.com/sprites/bw/cubone.png,"Because it never removes its skull helmet, no one has ever seen this Pokemon's real face." 105,Marowak,Ground,,60,80,110,45,https://play.pokemonshowdown.com/sprites/bw/marowak.png,The bone it holds is its key weapon. It throws the bone skillfully like a boomerang to KO targets. 106,Hitmonlee,Fighting,,50,120,53,87,https://play.pokemonshowdown.com/sprites/bw/hitmonlee.png,"When in a hurry, its legs lengthen progressively. It runs smoothly with extra long, loping strides." 107,Hitmonchan,Fighting,,50,105,79,76,https://play.pokemonshowdown.com/sprites/bw/hitmonchan.png,"While apparently doing nothing, it fires punches in lightning fast volleys that are impossible to see." 108,Lickitung,Normal,,90,55,75,30,https://play.pokemonshowdown.com/sprites/bw/lickitung.png,Its tongue can be extended like a chameleon's. It leaves a tingling sensation when it licks enemies. 109,Koffing,Poison,,40,65,95,35,https://play.pokemonshowdown.com/sprites/bw/koffing.png,"Because it stores several kinds of toxic gases in its body, it is prone to exploding without warning." 110,Weezing,Poison,,65,90,120,60,https://play.pokemonshowdown.com/sprites/bw/weezing.png,"Where two kinds of poison gases meet, 2 KOFFINGs can fuse into a WEEZING over many years." 111,Rhyhorn,Ground,Rock,80,85,95,25,https://play.pokemonshowdown.com/sprites/bw/rhyhorn.png,Its massive bones are 1000 times harder than human bones. It can easily knock a trailer flying. 112,Rhydon,Ground,Rock,105,130,120,40,https://play.pokemonshowdown.com/sprites/bw/rhydon.png,"Protected by an armor-like hide, it is capable of living in molten lava of 3,600 degrees." 113,Chansey,Normal,,250,5,5,50,https://play.pokemonshowdown.com/sprites/bw/chansey.png,A rare and elusive Pokemon that is said to bring happiness to those who manage to get it. 114,Tangela,Grass,,65,55,115,60,https://play.pokemonshowdown.com/sprites/bw/tangela.png,The whole body is swathed with wide vines that are similar to seaweed. Its vines shake as it walks. 115,Kangaskhan,Normal,,105,95,80,90,https://play.pokemonshowdown.com/sprites/bw/kangaskhan.png,The infant rarely ventures out of its mother's protective pouch until it is 3 years old. 116,Horsea,Water,,30,40,70,60,https://play.pokemonshowdown.com/sprites/bw/horsea.png,Known to shoot down flying bugs with precision blasts of ink from the surface of the water. 117,Seadra,Water,,55,65,95,85,https://play.pokemonshowdown.com/sprites/bw/seadra.png,Capable of swimming backwards by rapidly flapping its wing-like pectoral fins and stout tail. 118,Goldeen,Water,,45,67,60,63,https://play.pokemonshowdown.com/sprites/bw/goldeen.png,"Its tail fin billows like an elegant ballroom dress, giving it the nickname of the Water Queen." 119,Seaking,Water,,80,92,65,68,https://play.pokemonshowdown.com/sprites/bw/seaking.png,"In the autumn spawning season, they can be seen swimming powerfully up rivers and creeks." 120,Staryu,Water,,30,45,55,85,https://play.pokemonshowdown.com/sprites/bw/staryu.png,An enigmatic Pokemon that can effortlessly regenerate any appendage it loses in battle. 121,Starmie,Water,Psychic,60,75,85,115,https://play.pokemonshowdown.com/sprites/bw/starmie.png,Its central core glows with the seven colors of the rainbow. Some people value the core as a gem. 122,Mr. Mime,Psychic,,40,45,65,90,https://play.pokemonshowdown.com/sprites/bw/mrmime.png,"If interrupted while it is miming, it will slap around the offender with its broad hands." 123,Scyther,Bug,Flying,70,110,80,105,https://play.pokemonshowdown.com/sprites/bw/scyther.png,"With ninja-like agility and speed, it can create the illusion that there is more than one." 124,Jynx,Ice,Psychic,65,50,35,95,https://play.pokemonshowdown.com/sprites/bw/jynx.png,It seductively wiggles its hips as it walks. It can cause people to dance in unison with it. 125,Electabuzz,Electric,,65,83,57,105,https://play.pokemonshowdown.com/sprites/bw/electabuzz.png,"Normally found near power plants, they can wander away and cause major blackouts in cities." 126,Magmar,Fire,,65,95,57,93,https://play.pokemonshowdown.com/sprites/bw/magmar.png,Its body always burns with an orange glow that enables it to hide perfectly among flames. 127,Pinsir,Bug,,65,125,100,85,https://play.pokemonshowdown.com/sprites/bw/pinsir.png,"If it fails to crush the victim in its pincers, it will swing it around and toss it hard." 128,Tauros,Normal,,75,100,95,110,https://play.pokemonshowdown.com/sprites/bw/tauros.png,"When it targets an enemy, it charges furiously while whipping its body with its long tails." 129,Magikarp,Water,,20,10,55,80,https://play.pokemonshowdown.com/sprites/bw/magikarp.png,"In the distant past, it was somewhat stronger than the horribly weak descendants that exist today." 130,Gyarados,Water,Flying,95,125,79,81,https://play.pokemonshowdown.com/sprites/bw/gyarados.png,"Rarely seen in the wild. Huge and vicious, it is capable of destroying entire cities in a rage." 131,Lapras,Water,Ice,130,85,80,60,https://play.pokemonshowdown.com/sprites/bw/lapras.png,A Pokemon that has been overhunted almost to extinction. It can ferry people across the water. 132,Ditto,Normal,,48,48,48,48,https://play.pokemonshowdown.com/sprites/bw/ditto.png,Capable of copying an enemy's genetic code to instantly transform itself into a duplicate of the enemy. 133,Eevee,Normal,,55,55,50,55,https://play.pokemonshowdown.com/sprites/bw/eevee.png,Its genetic code is irregular. It may mutate if it is exposed to radiation from element STONEs. 134,Vaporeon,Water,,130,65,60,65,https://play.pokemonshowdown.com/sprites/bw/vaporeon.png,Lives close to water. Its long tail is ridged with a fin which is often mistaken for a mermaid's. 135,Jolteon,Electric,,65,65,60,130,https://play.pokemonshowdown.com/sprites/bw/jolteon.png,It accumulates negative ions in the atmosphere to blast out 10000- volt lightning bolts. 136,Flareon,Fire,,65,130,60,65,https://play.pokemonshowdown.com/sprites/bw/flareon.png,"When storing thermal energy in its body, its temperature could soar to over 1600 degrees." 137,Porygon,Normal,,65,60,70,40,https://play.pokemonshowdown.com/sprites/bw/porygon.png,A Pokemon that consists entirely of programming code. Capable of moving freely in cyberspace. 138,Omanyte,Rock,Water,35,40,100,35,https://play.pokemonshowdown.com/sprites/bw/omanyte.png,"Although long extinct, in rare cases, it can be genetically resurrected from fossils." 139,Omastar,Rock,Water,70,60,125,55,https://play.pokemonshowdown.com/sprites/bw/omastar.png,A prehistoric Pokemon that died out when its heavy shell made it impossible to catch prey. 140,Kabuto,Rock,Water,30,80,90,55,https://play.pokemonshowdown.com/sprites/bw/kabuto.png,A Pokemon that was resurrected from a fossil found in what was once the ocean floor eons ago. 141,Kabutops,Rock,Water,60,115,105,80,https://play.pokemonshowdown.com/sprites/bw/kabutops.png,Its sleek shape is perfect for swimming. It slashes prey with its claws and drains the body fluids. 142,Aerodactyl,Rock,Flying,80,105,65,130,https://play.pokemonshowdown.com/sprites/bw/aerodactyl.png,"A ferocious, prehistoric Pokemon that goes for the enemy's throat with its serrated saw-like fangs." 143,Snorlax,Normal,,160,110,65,30,https://play.pokemonshowdown.com/sprites/bw/snorlax.png,"Very lazy. Just eats and sleeps. As its rotund bulk builds, it becomes steadily more slothful." 144,Articuno,Ice,Flying,90,85,100,85,https://play.pokemonshowdown.com/sprites/bw/articuno.png,A legendary bird Pokemon that is said to appear to doomed people who are lost in icy mountains. 145,Zapdos,Electric,Flying,90,90,85,100,https://play.pokemonshowdown.com/sprites/bw/zapdos.png,A legendary bird Pokemon that is said to appear from clouds while dropping enormous lightning bolts. 146,Moltres,Fire,Flying,90,100,90,90,https://play.pokemonshowdown.com/sprites/bw/moltres.png,Known as the legendary bird of fire. Every flap of its wings creates a dazzling flash of flames. 147,Dratini,Dragon,,41,64,45,50,https://play.pokemonshowdown.com/sprites/bw/dratini.png,Long considered a mythical Pokemon until recently when a small colony was found living underwater. 148,Dragonair,Dragon,,61,84,65,70,https://play.pokemonshowdown.com/sprites/bw/dragonair.png,A mystical Pokemon that exudes a gentle aura. Has the ability to change climate conditions. 149,Dragonite,Dragon,Flying,91,134,95,80,https://play.pokemonshowdown.com/sprites/bw/dragonite.png,An extremely rarely seen marine Pokemon. Its intelligence is said to match that of humans. 150,Mewtwo,Psychic,,106,110,90,130,https://play.pokemonshowdown.com/sprites/bw/mewtwo.png,It was created by a scientist after years of horrific gene splicing and DNA engineering experiments. 151,Mew,Psychic,,100,100,100,100,https://play.pokemonshowdown.com/sprites/bw/mew.png,So rare that it is still said to be a mirage by many experts. Only a few people have seen it worldwide
Complete the code in the main method below to read in the first 10 lines of the pokemon file using the Scanner class, save each line into the pokemonLines array, and print it out.
7.9.3. Reading in Files with java.nio.file
¶
The java.nio.file
package, added in Java version 7, provides a better and easier way to read in files. The Files
class in this package has a method called readAllLines
that reads all of the lines in a file and returns them as a List
of String
objects. The readAllLines
method throws an IOException
if the file cannot be read. (List
is an interface. Interfaces are not on the AP CSA exam but are quite common in actual Java programming. For now all you need to know is that all the methods we’ve talked about using with ArrayList
you can use on any List
such as the one returned by readAllLines
.)
import java.nio.file.*;
...
// This connects and reads in the file in 1 line of code!
// It needs to be in a method that throws or handles IOException
List<String> lines = Files.readAllLines(Paths.get("data.txt"));
Under the covers readAllLines
is almost certainly using an ArrayList
which is a kind of List
. The advantage of storing the lines in a dynamic data structure like an ArrayList
, instead of an array, is that you do not need to know how many lines you are going to store when you create the ArrayList
the way you do when you create an array. The ArrayList
can then grow in size as needed. (If you absolutely need an array, you can convert the List
to an array declared to be the correct size with myArray = lines.toArray(myArray);
)
Complete the code in the main method below to reads all lines of the file using Files.readAllLines
into a List<String>
named lines
. Add a loop that prints out the first 10 pokemon.
7.9.4. Object-Oriented Design with CSV Files¶
If you take a look at the Pokemon CSV file, you’ll notice that each line contains multiple data attributes separated by commas. These attributes include each Pokemon’s name, type, speed, etc. on each row. Typically, the first line of a CSV file serves as the header, indicating the names of these attributes.
To better organize and work with this data, we can create a Pokemon
class that corresponds to these attributes using object-oriented design. A CSV data file can be saved into an ArrayList
of Pokemon
objects by splitting each line (except the header) into the attributes for one Pokemon
object.
The Java String
class provides a useful method called split(String delimeter)
that allows us to split a string into an array of substrings based on a specified delimiter which is a character like a comma that separates the units of data. This method returns a String array where each element in the array represents a field of data from the line. Here is an example of how to use the split method to split a line of data from the Pokemon file into identifiable chunks of data. The first line of headers in the file indicates that the 0th element of the data array is the Pokemon’s number, element 1 is the name, etc. We only need to save the data that we want to use. In this case, we want to save the name, type1, speed, and imageFile. If we want to do math with the speed, we can convert it to an int using the Integer.parseInt
method.
// Split the line of data into an array of Strings
String[] data = line.split(",");
// Identify the data
// data: Number,Name,Type1,Type2,HP,Attack,Defense,Speed,PNG,Description
String name = data[1];
String type1 = data[2];
// Numerical data can be saved as numbers to do math
int speed = Integer.parseInt(data[7]);
String imageFile = data[8];
Try the exercise below to display Pokemon images using the split
method to extract names and urls saved in the file.
PokeImages: This program reads in some of the data from the pokemon file into a List of lines. Complete the main method to print out a random pokemon name and its image using the split method.
Once we have extracted the individual pieces of data from each line of the CSV file, the next step is to save this data into a Pokemon
object. We must first create a Pokemon
class with instance variables that correspond to the data attributes, and a constructor that initializes these variables. Assuming that we have already written the Pokemon
class and constructor, the following code creates a Pokemon object from the data using its constructor and saves it into an ArrayList
of Pokemon
objects.
// Create an ArrayList of Pokemon objects
ArrayList<Pokemon> pokemonList = new ArrayList<Pokemon>();
// read in the file
List<String> lines = Files.readAllLines(Paths.get("pokemon.csv"));
// loop through each row (except the 0th header row)
for(int i = 1; i < lines.size(); i++)
{
// Get each line
String line = lines.get(i);
// Split each line into its attributes name, type1, etc.
// ... split not shown....
// Create a Pokemon object from the split data
Pokemon p = new Pokemon(name, type1, speed, imageFile);
// Add the object to the ArrayList
pokemonList.add(p);
}
Let’s try this code in the exercise below.
Pokemon ArrayList: Design the class Pokemon that has at least 3 attributes that can be found in the Pokemon file, including its name, type1, and imagefile, and any other attributes from the file that you would like. Write a constructor and getters for these attributes. Then, read in the data from the pokemon file, split each line, and save the data in an ArrayList
of Pokemon objects. Write a findType
method that loops through the ArrayList to find the Pokemon of a type given as the argument and prints out their names and images.
7.9.5. Programming Challenge: ArrayList of Objects from Input File¶
Let’s end with a challenge that combines all the skills you have learned so far. You could work in pairs for this challenge. Choose a dataset from the files below to read into an ArrayList
of objects. Look at the columns of the dataset you have chosen to decide on the name and at least 3 attributes for your class. Each row in the data file will be an object of your class that you will add to the ArrayList
. If you find another data CSV file online that you would like to use, you can read from a URL instead of a file in Java using the java.net
package following the directions here https://docs.oracle.com/javase/tutorial/networking/urls/readingURL.html.
Country,Year,Birth Rate,Business Tax Rate,CO2 Emissions,Days to Start Business,Ease of Business,Energy Usage,GDP,Health Exp % GDP,Health Exp/Capita,Hours to do Tax,Infant Mortality Rate,Internet Usage,Lending Interest,Life Expectancy Female,Life Expectancy Male,Mobile Phone Usage,Number of Records,Population 0-14,Population 15-64,Population 65+,Population Total,Population Urban,Region,Tourism Inbound,Tourism Outbound Algeria,12/1/2000,0.02,,87931,,,26998,54790058957,0.035,60,,0.034,0.005,0.1,71,67,0.003,1,0.342,0.619,0.039,31719449,0.599,Africa,102000000,193000000 Angola,12/1/2000,0.05,,9542,,,7499,9129594819,0.034,22,,0.128,0.001,1.032,47,44,0.002,1,0.476,0.499,0.025,13924930,0.324,Africa,34000000,146000000 Benin,12/1/2000,0.043,,1617,,,1983,2359122303,0.043,15,,0.09,0.002,,57,53,0.008,1,0.454,0.517,0.029,6949366,0.383,Africa,77000000,50000000 Botswana,12/1/2000,0.027,,4276,,,1836,5788311645,0.047,152,,0.054,0.029,0.155,52,49,0.127,1,0.383,0.587,0.029,1755375,0.532,Africa,227000000,209000000 Burkina Faso,12/1/2000,0.046,,1041,,,,2610959139,0.051,12,,0.096,0.001,,52,49,0.002,1,0.468,0.505,0.028,11607944,0.178,Africa,23000000,30000000 Burundi,12/1/2000,0.042,,301,,,,870486066,0.063,7,,0.092,0.001,0.158,49,47,0.002,1,0.49,0.481,0.029,6674286,0.082,Africa,1400000,14000000 Cameroon,12/1/2000,0.041,,3432,,,6310,9287367569,0.044,26,,0.093,0.003,0.22,53,51,0.006,1,0.453,0.513,0.034,15927713,0.455,Africa,132000000,241000000 Central African Republic,12/1/2000,0.039,,268,,,,914500332,0.043,11,,0.113,0.001,0.22,45,42,0.001,1,0.423,0.537,0.04,3638316,0.376,Africa,5000000,33000000 Chad,12/1/2000,0.051,,176,,,,1385058212,0.063,10,,0.106,0,0.22,48,46,0.001,1,0.49,0.482,0.028,8301151,0.216,Africa,14000000,56000000 Comoros,12/1/2000,0.039,,84,,,,201899884,0.035,13,,0.073,0.003,0.12,59,56,,1,0.415,0.554,0.031,528312,0.281,Africa,15000000, "Congo, Dem. Rep.",12/1/2000,0.048,,1646,,,16679,19088046305,0.048,14,,0.115,0,,48,45,0,1,0.464,0.507,0.028,46949244,0.351,Africa,, "Congo, Rep.",12/1/2000,0.039,,1049,,,814,3219910666,0.021,22,,0.077,0,0.22,53,51,0.022,1,0.419,0.545,0.036,3126204,0.587,Africa,12400000,59000000 Cote d'Ivoire,12/1/2000,0.038,,6791,,,6734,10417060605,0.065,42,,0.1,0.002,,47,46,0.029,1,0.421,0.55,0.029,16131332,0.435,Africa,53000000,291000000 Djibouti,12/1/2000,0.03,,403,,,,551230862,0.058,44,,0.08,0.002,,59,55,0,1,0.414,0.556,0.03,722887,0.765,Africa,8100000,14800000 "Egypt, Arab Rep.",12/1/2000,0.025,,141326,,,40658,99838540997,0.054,79,,0.036,0.006,0.132,71,66,0.021,1,0.354,0.592,0.053,66136590,0.428,Africa,4657000000,1206000000 Equatorial Guinea,12/1/2000,0.04,,455,,,,1045998534,0.024,57,,0.099,0.001,0.22,49,46,0.01,1,0.426,0.537,0.037,518179,0.388,Africa,5000000,19000000 Eritrea,12/1/2000,0.04,,609,,,708,706370812,0.045,7,,0.058,0.001,,58,54,,1,0.47,0.512,0.018,3939348,0.176,Africa,36000000, Ethiopia,12/1/2000,0.044,,5831,,,25242,8091384891,0.043,5,,0.09,0,0.109,53,51,0,1,0.466,0.503,0.031,66024199,0.147,Africa,205000000,80000000 Gabon,12/1/2000,0.034,,1052,,,1463,5067865503,0.029,118,,0.056,0.012,0.22,61,59,0.098,1,0.406,0.535,0.059,1225527,0.801,Africa,99000000,183000000 "Gambia, The",12/1/2000,0.045,,275,,,,782913866,0.045,29,,0.063,0.009,0.24,56,54,0.005,1,0.459,0.514,0.027,1228863,0.479,Africa,, Ghana,12/1/2000,0.035,,6289,,,7736,4982849054,0.048,13,,0.065,0.002,,58,56,0.007,1,0.414,0.556,0.03,18825034,0.439,Africa,357000000,162000000 Guinea,12/1/2000,0.042,,1280,,,,2995360969,0.056,19,,0.103,0.001,0.194,51,51,0.005,1,0.44,0.525,0.034,8746128,0.31,Africa,7800000,13000000 Guinea-Bissau,12/1/2000,0.042,,147,,,,361858968,0.049,16,,0.109,0.002,,53,50,,1,0.435,0.534,0.031,1273312,0.367,Africa,, Kenya,12/1/2000,0.039,,10418,,,14055,12705350153,0.047,19,,0.069,0.003,0.223,54,52,0.004,1,0.442,0.531,0.028,31285050,0.199,Africa,500000000,156000000 Lesotho,12/1/2000,0.031,,,,,,771200632,0.069,29,,0.081,0.002,0.171,48,47,0.012,1,0.412,0.543,0.045,1856225,0.195,Africa,18000000,195000000 Liberia,12/1/2000,0.043,,436,,,,529064647,0.059,11,,0.119,0,0.205,53,52,0.001,1,0.432,0.537,0.031,2891968,0.443,Africa,, Libya,12/1/2000,0.022,,47114,,,15901,33896600871,0.034,252,,0.024,0.002,0.07,74,70,0.008,1,0.333,0.628,0.039,5176185,0.763,Africa,84000000,495000000 Madagascar,12/1/2000,0.041,,1874,,,,3877673635,0.05,12,,0.071,0.002,0.265,60,57,0.004,1,0.455,0.515,0.03,15744811,0.271,Africa,152000000,139000000 Malawi,12/1/2000,0.045,,906,,,,1743506287,0.061,9,,0.103,0.001,0.531,46,46,0.004,1,0.458,0.511,0.031,11321496,0.146,Africa,29000000,53000000 Mali,12/1/2000,0.048,,543,,,,2422482318,0.063,16,,0.116,0.001,,49,49,0.001,1,0.461,0.504,0.035,10260577,0.284,Africa,47000000,66000000 Mauritania,12/1/2000,0.038,,1236,,,,1293653473,0.06,24,,0.076,0.002,0.256,61,58,0.006,1,0.428,0.54,0.032,2708095,0.492,Africa,, Mauritius,12/1/2000,0.017,,2769,,,,4582562398,0.037,146,,0.016,0.073,0.208,75,68,0.152,1,0.258,0.681,0.061,1186873,0.427,Africa,732000000,203000000 Morocco,12/1/2000,0.022,,33905,,,10238,37020609825,0.042,54,,0.043,0.007,0.133,70,67,0.082,1,0.341,0.613,0.047,28710123,0.533,Africa,2280000000,506000000 Mozambique,12/1/2000,0.044,,1349,,,7173,4310090791,0.062,15,,0.114,0.001,0.19,49,46,0.003,1,0.438,0.53,0.032,18275618,0.291,Africa,74000000,122000000 Namibia,12/1/2000,0.032,,1643,,,978,3908645566,0.061,126,,0.049,0.016,0.153,57,53,0.043,1,0.405,0.562,0.033,1897953,0.324,Africa,193000000,86000000 Niger,12/1/2000,0.053,,796,,,,1798374533,0.064,10,,0.101,0,,51,51,0,1,0.479,0.495,0.025,10989815,0.162,Africa,23000000,32000000 Nigeria,12/1/2000,0.043,,79182,,,90596,46385996027,0.046,17,,0.113,0.001,0.213,47,46,0,1,0.435,0.537,0.028,122876727,0.348,Africa,186000000,610000000 Rwanda,12/1/2000,0.041,,686,,,,1734938190,0.042,9,,0.108,0.001,0.17,49,47,0.005,1,0.466,0.505,0.03,8395577,0.149,Africa,27000000,35000000 Sao Tome and Principe,12/1/2000,0.036,,48,,,,76709305,0.089,46,,0.058,0.046,0.397,65,62,,1,0.44,0.52,0.04,139428,0.534,Africa,9900000,2200000 Senegal,12/1/2000,0.04,,3938,,,2398,4679604922,0.046,22,,0.069,0.004,,59,56,0.025,1,0.451,0.517,0.032,9861679,0.403,Africa,152000000,125000000 Seychelles,12/1/2000,0.019,,565,,,,614877971,0.048,371,,0.012,0.074,0.107,,,0.325,1,0.282,0.637,0.081,81131,0.501,Africa,225000000,44000000 Sierra Leone,12/1/2000,0.044,,425,,,,635874002,0.184,28,,0.141,0.001,0.263,39,37,0.003,1,0.43,0.546,0.025,4139757,0.356,Africa,10000000,35000000 Somalia,12/1/2000,0.049,,517,,,,,,,,0.105,0,,52,49,0.011,1,0.472,0.499,0.029,7385416,0.332,Africa,, South Africa,12/1/2000,0.024,,368611,,,109264,132878000000,0.083,246,,0.052,0.053,0.145,58,54,0.186,1,0.33,0.636,0.034,44000000,0.569,Africa,3338000000,2684000000 South Sudan,12/1/2000,0.043,,,,,,,,,,0.11,,,50,48,,1,0.447,0.523,0.03,6652984,0.165,Africa,, Sudan,12/1/2000,0.04,,5534,,,13340,12257299163,0.034,15,,0.069,0,,60,56,0.001,1,0.437,0.533,0.03,27729798,0.325,Africa,5000000,55000000 Swaziland,12/1/2000,0.033,,1188,,,,1524490159,0.053,75,,0.08,0.009,0.14,49,48,0.031,1,0.446,0.524,0.029,1063715,0.227,Africa,24000000,32000000 Tanzania,12/1/2000,0.042,,2651,,,13390,10185786171,0.034,10,,0.08,0.001,0.216,51,49,0.003,1,0.448,0.523,0.029,34020512,0.223,Africa,381000000,369000000 Togo,12/1/2000,0.039,,1357,,,2111,1294250280,0.053,14,,0.077,0.008,,54,53,0.01,1,0.442,0.529,0.029,4864753,0.329,Africa,11000000,15000000 Tunisia,12/1/2000,0.017,,19923,,,7306,21473188882,0.054,123,,0.026,0.028,,75,71,0.012,1,0.298,0.641,0.06,9563500,0.634,Africa,1977000000,310000000 Uganda,12/1/2000,0.048,,1533,,,,6193246632,0.066,16,,0.089,0.002,0.229,48,48,0.005,1,0.493,0.481,0.027,24275641,0.121,Africa,165000000, Zambia,12/1/2000,0.045,,1819,,,6244,3253551750,0.056,18,,0.1,0.002,0.388,42,42,0.01,1,0.457,0.515,0.027,10100981,0.348,Africa,67000000,102000000 Zimbabwe,12/1/2000,0.032,,13887,,,9865,6689957610,,,,0.061,0.004,0.682,44,44,0.021,1,0.422,0.545,0.034,12503652,0.338,Africa,125000000, Afghanistan,12/1/2000,0.05,,781,,,,,,,,0.095,,,56,54,,1,0.495,0.485,0.02,20595360,0.213,Asia,, Armenia,12/1/2000,0.013,,3465,,,2015,1911563665,0.063,39,,0.027,0.013,0.316,75,68,0.006,1,0.259,0.641,0.1,3076098,0.647,Asia,52000000,56000000 Azerbaijan,12/1/2000,0.015,,29508,,,11296,5272617196,0.047,30,,0.061,0.001,0.197,70,64,0.052,1,0.311,0.633,0.056,8048600,0.514,Asia,68000000,138000000 Bangladesh,12/1/2000,0.027,,27869,,,18591,47124925462,0.028,10,,0.064,0.001,0.155,66,65,0.002,1,0.37,0.59,0.041,132383265,0.236,Asia,50000000,471000000 Bhutan,12/1/2000,0.028,,400,,,,439158233,0.067,52,,0.059,0.004,0.16,60,60,,1,0.406,0.556,0.038,564350,0.254,Asia,10000000, Brunei Darussalam,12/1/2000,0.023,,6527,,,2385,6001153318,0.03,543,,0.008,0.09,0.055,78,74,0.286,1,0.304,0.668,0.028,331801,0.712,Asia,, Cambodia,12/1/2000,0.028,,1977,,,3412,3654031716,0.063,19,,0.082,0,,65,59,0.011,1,0.408,0.554,0.038,12222871,0.186,Asia,345000000,52000000 China,12/1/2000,0.014,,3405180,,,1161353,1198470000000,0.046,43,,0.03,0.018,0.059,74,71,0.067,1,0.256,0.675,0.069,1262645000,0.359,Asia,17318000000,14169000000 Georgia,12/1/2000,0.012,,4536,,,2869,3057453461,0.069,45,,0.031,0.005,0.247,75,68,0.041,1,0.219,0.656,0.125,4418300,0.526,Asia,107000000,129000000 "Hong Kong SAR, China",12/1/2000,0.008,,40465,,,13392,171668000000,,,,,0.278,0.095,84,78,0.797,1,0.173,0.717,0.11,6665000,1,Asia,8198000000,12502000000 India,12/1/2000,0.026,,1186663,,,457198,476609000000,0.043,20,,0.067,0.005,0.123,63,61,0.003,1,0.342,0.614,0.044,1042261758,0.277,Asia,3598000000,3686000000 Indonesia,12/1/2000,0.022,,263419,,,154768,165021000000,0.02,15,,0.041,0.009,0.185,69,65,0.018,1,0.307,0.647,0.047,208938698,0.42,Asia,4975000000,3197000000 Japan,12/1/2000,0.009,,1219589,,,518964,4731200000000,0.076,2834,,0.003,0.3,0.021,85,78,0.531,1,0.146,0.682,0.172,126870000,0.786,Asia,5970000000,42643000000 Kazakhstan,12/1/2000,0.015,,127769,,,35679,18291990619,0.042,52,,0.038,0.007,,71,60,0.014,1,0.277,0.655,0.068,14883626,0.557,Asia,403000000,483000000 "Korea, Dem. Rep.",12/1/2000,0.018,,76699,,,19717,,,,,0.045,,,69,61,,1,0.26,0.681,0.059,22840225,0.594,Asia,, "Korea, Rep.",12/1/2000,0.013,,447561,,,188161,561633000000,0.043,491,,0.005,0.447,0.085,80,72,0.583,1,0.21,0.717,0.073,47008111,0.796,Asia,8527000000,7945000000 Kyrgyz Republic,12/1/2000,0.02,,4529,,,2317,1369691955,0.047,13,,0.042,0.01,0.519,72,65,0.002,1,0.35,0.596,0.055,4898400,0.353,Asia,20000000,28000000 Lao PDR,12/1/2000,0.031,,972,,,,1731198022,0.033,11,,0.083,0.001,0.32,63,60,0.002,1,0.435,0.529,0.036,5388281,0.22,Asia,114000000,8000000 "Macao SAR, China",12/1/2000,0.009,,1635,,,,6101794939,,,,,0.136,0.099,80,75,0.327,1,0.228,0.698,0.074,431907,1,Asia,3205000000, Malaysia,12/1/2000,0.023,,126603,,,47110,93789473684,0.03,120,,0.009,0.214,0.077,75,71,0.219,1,0.333,0.628,0.038,23420751,0.62,Asia,5873000000,2543000000 Maldives,12/1/2000,0.025,,499,,,,624337144,0.071,162,,0.035,0.022,0.13,70,69,0.028,1,0.413,0.549,0.038,272745,0.277,Asia,321000000,60000000 Mongolia,12/1/2000,0.019,,7506,,,2397,1136896162,0.047,22,,0.049,0.013,0.37,66,60,0.064,1,0.348,0.615,0.037,2397473,0.571,Asia,43000000,54000000 Myanmar,12/1/2000,0.021,,10088,,,12841,,0.021,3,,0.059,,0.153,64,60,0,1,0.307,0.645,0.047,48453000,0.27,Asia,195000000,30000000 Nepal,12/1/2000,0.033,,3234,,,8108,5494252208,0.05,12,,0.06,0.002,0.095,63,61,0,1,0.404,0.558,0.038,23184177,0.134,Asia,219000000,109000000 Pakistan,12/1/2000,0.031,,106449,,,64067,73952374970,0.03,15,,0.088,,,65,63,0.002,1,0.415,0.546,0.039,143832014,0.332,Asia,551000000,574000000 Philippines,12/1/2000,0.03,,73307,,,39872,81026294681,0.032,33,,0.03,0.02,0.109,70,64,0.083,1,0.385,0.583,0.032,77651848,0.48,Asia,2334000000,1841000000 Singapore,12/1/2000,0.012,,49006,,,18692,95835970989,0.027,662,,0.003,0.36,0.058,80,76,0.701,1,0.215,0.712,0.073,4027900,1,Asia,5142000000,4535000000 Sri Lanka,12/1/2000,0.018,,10161,,,8327,16330810304,0.037,32,,0.014,0.006,0.162,75,68,0.023,1,0.269,0.669,0.063,19102000,0.184,Asia,388000000,383000000 Tajikistan,12/1/2000,0.03,,2237,,,2149,860550294,0.046,6,,0.075,0,0.256,68,60,0,1,0.429,0.536,0.035,6186152,0.265,Asia,, Thailand,12/1/2000,0.015,,188355,,,72284,122725000000,0.034,67,,0.019,0.037,0.078,75,67,0.049,1,0.242,0.693,0.066,62343379,0.314,Asia,9935000000,3218000000 Timor-Leste,12/1/2000,0.043,,,,,,350100000,0.051,19,,0.084,,,61,58,,1,0.498,0.479,0.024,853585,0.243,Asia,, Turkmenistan,12/1/2000,0.024,,35365,,,14871,2904662605,0.039,44,,0.066,0.001,,68,60,0.002,1,0.363,0.594,0.043,4501419,0.459,Asia,, Uzbekistan,12/1/2000,0.021,,119951,,,50757,13760374488,0.053,29,,0.053,0.005,,70,64,0.002,1,0.373,0.584,0.043,24650400,0.374,Asia,63000000, Vietnam,12/1/2000,0.017,,53645,,,28736,33640085728,0.053,20,,0.027,0.003,0.106,78,69,0.01,1,0.316,0.62,0.064,77630900,0.244,Asia,, Albania,12/1/2000,0.019,,3022,,,1763,3686649387,0.064,70,,0.023,0.001,0.221,77,71,0.009,1,0.303,0.628,0.068,3089027,0.417,Europe,398000000,290000000 Andorra,12/1/2000,0.011,,524,,,,1133644295,0.062,1330,,0.004,0.105,,,,0.36,1,,,,65399,0.924,Europe,, Austria,12/1/2000,0.01,,63696,,,28558,192071000000,0.1,2403,,0.005,0.337,,81,75,0.763,1,0.17,0.675,0.155,8011566,0.658,Europe,11382000000,7001000000 Belarus,12/1/2000,0.009,,53469,,,24695,12736856485,0.061,64,,0.011,0.019,0.677,75,63,0.005,1,0.186,0.679,0.134,10005000,0.7,Europe,188000000,247000000 Belgium,12/1/2000,0.011,,115709,,,58508,232673000000,0.081,1845,,0.005,0.294,0.08,81,75,0.548,1,0.176,0.655,0.169,10251250,0.971,Europe,6592000000,9429000000 Bosnia and Herzegovina,12/1/2000,0.01,,23223,,,4346,5505984456,0.071,103,,0.008,0.011,0.305,77,72,0.024,1,0.202,0.691,0.107,3834364,0.393,Europe,246000000,92000000 Bulgaria,12/1/2000,0.009,,43531,,,18688,12903546765,0.062,98,,0.018,0.054,0.113,75,68,0.092,1,0.157,0.677,0.166,8170172,0.689,Europe,1364000000,764000000 Croatia,12/1/2000,0.01,,19644,,,7790,21517784659,0.078,377,,0.007,0.066,0.121,77,69,0.231,1,0.172,0.673,0.156,4426000,0.556,Europe,2871000000,634000000 Cyprus,12/1/2000,0.013,,6850,,,2137,9314937556,0.058,744,,0.006,0.153,0.08,80,76,0.231,1,0.224,0.674,0.102,943287,0.686,Europe,2137000000,543000000 Czech Republic,12/1/2000,0.009,,124649,,,40993,58807244368,0.063,361,,0.006,0.098,0.072,78,72,0.424,1,0.165,0.697,0.138,10255063,0.74,Europe,2973000000,1276000000 Denmark,12/1/2000,0.013,,47260,,,18634,160083000000,0.087,2613,,0.005,0.392,0.081,79,74,0.63,1,0.185,0.667,0.149,5339616,0.851,Europe,3671000000,4669000000 Estonia,12/1/2000,0.01,,15181,,,4715,5675697575,0.053,213,,0.009,0.286,0.074,76,65,0.408,1,0.18,0.669,0.152,1396985,0.694,Europe,657000000,253000000 Faeroe Islands,12/1/2000,,,711,,,,1062339944,,,,,0.329,,82,76,0.365,1,,,,46491,0.363,Europe,, Finland,12/1/2000,0.011,,52141,,,32233,121794000000,0.072,1700,,0.004,0.372,0.056,81,74,0.72,1,0.182,0.669,0.149,5176209,0.822,Europe,2035000000,2293000000 France,12/1/2000,0.013,,365560,,,251981,1326330000000,0.101,2209,,0.004,0.143,0.067,83,75,0.491,1,0.189,0.65,0.16,60911057,0.759,Europe,38534000000,26703000000 Germany,12/1/2000,0.009,,829978,,,336584,1886400000000,0.104,2387,,0.004,0.302,0.096,81,75,0.577,1,0.156,0.681,0.163,82211508,0.731,Europe,24943000000,57601000000 Greece,12/1/2000,0.01,,91616,,,27086,124418000000,0.079,918,,0.007,0.091,0.123,81,75,0.54,1,0.152,0.68,0.168,10917482,0.727,Europe,9262000000,4564000000 Hungary,12/1/2000,0.01,,57238,,,24999,46385589534,0.072,326,,0.01,0.07,0.126,76,67,0.301,1,0.168,0.68,0.151,10210971,0.646,Europe,3809000000,1722000000 Iceland,12/1/2000,0.014,,2164,,,3100,8697298234,0.095,2961,,0.003,0.445,0.168,82,78,0.764,1,0.233,0.651,0.116,281205,0.924,Europe,386000000,471000000 Ireland,12/1/2000,0.014,,41345,,,13574,97331522066,0.061,1572,,0.006,0.179,0.048,79,74,0.647,1,0.218,0.67,0.112,3805174,0.591,Europe,3517000000,2626000000 Isle of Man,12/1/2000,,,,,,,1563667800,,,,,,,,,,1,,,,76806,0.518,Europe,, Italy,12/1/2000,0.01,,451441,,,171522,1104010000000,0.079,1527,,0.005,0.231,0.07,83,77,0.741,1,0.143,0.674,0.183,56942108,0.672,Europe,28706000000,18169000000 Kosovo,12/1/2000,0.023,,,,,1545,1849196082,,,,,,,70,66,,1,,,,1700000,,Europe,, Latvia,12/1/2000,0.009,,6241,,,3832,7833068425,0.06,197,,0.015,0.063,0.119,76,65,0.169,1,0.179,0.671,0.15,2367550,0.681,Europe,172000000,281000000 Liechtenstein,12/1/2000,0.013,,,,,,2483890594,,,,,0.365,,80,74,0.302,1,,,,33093,0.151,Europe,, Lithuania,12/1/2000,0.01,,12200,,,7131,11434200000,0.065,212,,0.01,0.064,0.121,78,67,0.15,1,0.199,0.662,0.139,3499536,0.67,Europe,430000000,261000000 Luxembourg,12/1/2000,0.013,,8240,,,3335,20267551133,0.075,3495,,0.004,0.229,,81,75,0.695,1,0.189,0.67,0.141,436300,0.842,Europe,1686000000,1309000000 "Macedonia, FYR",12/1/2000,0.013,,12064,,,2668,3586883989,0.087,153,,0.014,0.025,0.189,76,71,0.056,1,0.224,0.676,0.1,2052129,0.585,Europe,88000000,58000000 Malta,12/1/2000,0.012,,2065,,,676,3957418083,0.066,643,,0.007,0.131,0.073,80,76,0.281,1,0.207,0.686,0.107,381363,0.924,Europe,731000000,224000000 Moldova,12/1/2000,0.012,,3513,,,2883,1288420223,0.067,24,,0.025,0.013,0.338,71,63,0.034,1,0.237,0.663,0.1,3639592,0.458,Europe,57000000,86000000 Monaco,12/1/2000,,,,,,,2647883820,0.033,2685,,0.004,0.422,,,,0.434,1,,,,32081,1,Europe,, Montenegro,12/1/2000,0.013,,,,,,984279596,0.075,121,,0.013,,,77,71,,1,0.213,0.673,0.113,611196,0.585,Europe,, Netherlands,12/1/2000,0.013,,165363,,,73223,385075000000,0.08,1932,,0.005,0.44,0.048,81,76,0.678,1,0.186,0.679,0.136,15925513,0.768,Europe,11285000000,13649000000 Norway,12/1/2000,0.013,,38808,,,26092,168289000000,0.091,3432,,0.004,0.52,0.089,81,76,0.718,1,0.2,0.648,0.152,4490967,0.761,Europe,2521000000,4893000000 Poland,12/1/2000,0.01,,301691,,,89116,171276000000,0.055,247,,0.008,0.073,0.2,78,70,0.176,1,0.194,0.684,0.123,38258629,0.617,Europe,6128000000,3417000000 Portugal,12/1/2000,0.012,,62966,,,24673,117300000000,0.093,1070,,0.006,0.164,,80,73,0.647,1,0.162,0.676,0.162,10289898,0.544,Europe,6027000000,2754000000 Romania,12/1/2000,0.01,,89985,,,36228,37305099928,0.043,72,,0.023,0.036,0.539,75,68,0.112,1,0.186,0.68,0.134,22442971,0.53,Europe,394000000,447000000 Russian Federation,12/1/2000,0.009,,1558112,,,619265,259708000000,0.054,96,,0.02,0.02,0.244,72,59,0.022,1,0.182,0.694,0.124,146596870,0.734,Europe,3429000000,8848000000 San Marino,12/1/2000,,,,,,,773907642,0.053,2161,,0.005,0.488,0.092,84,77,0.538,1,,,,26969,0.934,Europe,, Serbia,12/1/2000,0.01,,,,,13728,6082791506,0.074,51,,0.011,,0.063,75,70,,1,0.202,0.669,0.129,7516346,0.532,Europe,, Slovak Republic,12/1/2000,0.01,,37312,,,17743,28724041828,0.055,208,,0.01,0.094,0.149,77,69,0.231,1,0.197,0.689,0.114,5388720,0.562,Europe,441000000,341000000 Slovenia,12/1/2000,0.009,,14265,,,6413,19979467790,0.083,831,,0.005,0.151,0.158,79,72,0.611,1,0.159,0.7,0.141,1988925,0.508,Europe,1016000000,544000000 Spain,12/1/2000,0.01,,294434,,,121856,580345000000,0.072,1045,,0.005,0.136,0.052,83,76,0.602,1,0.148,0.684,0.169,40263216,0.763,Europe,32656000000,7710000000 Sweden,12/1/2000,0.01,,49794,,,47556,247260000000,0.082,2282,,0.003,0.457,0.058,82,77,0.718,1,0.184,0.643,0.173,8872109,0.84,Europe,4825000000,8959000000 Switzerland,12/1/2000,0.011,,39050,,,25005,256043000000,0.099,3541,,0.005,0.471,0.043,83,77,0.647,1,0.174,0.673,0.153,7184250,0.733,Europe,8988000000,7360000000 Turkey,12/1/2000,0.021,,216148,,,76348,266568000000,0.049,196,,0.034,0.038,,74,66,0.255,1,0.307,0.634,0.06,63174483,0.647,Europe,7636000000,1713000000 Ukraine,12/1/2000,0.008,,320774,,,133794,31261527363,0.056,36,,0.016,0.007,0.415,74,62,0.017,1,0.175,0.688,0.138,49175848,0.671,Europe,563000000,561000000 United Kingdom,12/1/2000,0.012,,543662,,,222940,1493630000000,0.07,1761,,0.006,0.268,0.06,80,75,0.737,1,0.19,0.652,0.158,58892514,0.787,Europe,29978000000,47009000000 Bahrain,12/1/2000,0.021,,18643,,,5865,9063147901,0.035,476,,0.011,0.062,0.116,76,74,0.308,1,0.308,0.667,0.024,668239,0.884,Middle East,854000000,425000000 "Iran, Islamic Rep.",12/1/2000,0.019,,372703,,,122983,101287000000,0.046,231,,0.029,0.009,,71,69,0.015,1,0.347,0.611,0.042,65911052,0.64,Middle East,677000000,671000000 Iraq,12/1/2000,0.036,,72445,,,25937,,0.008,7,,0.036,,,73,69,,1,0.428,0.537,0.035,23801156,0.685,Middle East,2000000,9000000 Israel,12/1/2000,0.022,,62691,,,18234,124895000000,0.074,1454,,0.006,0.209,0.128,81,77,0.732,1,0.281,0.619,0.1,6289000,0.912,Middle East,4611000000,3733000000 Jordan,12/1/2000,0.031,,15508,,,4864,8457923945,0.097,171,,0.023,0.026,0.118,73,70,0.082,1,0.394,0.575,0.031,4797000,0.798,Middle East,935000000,387000000 Kuwait,12/1/2000,0.024,,55181,,,18805,37718011469,0.025,494,,0.011,0.067,0.089,74,72,0.25,1,0.257,0.712,0.031,1906231,0.981,Middle East,394000000,2852000000 Lebanon,12/1/2000,0.019,,15354,,,4907,17260364842,0.109,579,,0.017,0.08,0.182,76,73,0.23,1,0.286,0.643,0.071,3235380,0.86,Middle East,742000000, Oman,12/1/2000,0.024,,21896,,,8083,19867880550,0.031,264,,0.014,0.035,0.101,74,70,0.074,1,0.372,0.605,0.023,2192535,0.716,Middle East,377000000,629000000 Qatar,12/1/2000,0.019,,34730,,,10876,17759889598,0.022,652,,0.011,0.049,,78,76,0.204,1,0.259,0.724,0.017,593693,0.963,Middle East,128000000,307000000 Saudi Arabia,12/1/2000,0.027,,296935,,,101325,188442000000,0.042,398,,0.019,0.022,,74,71,0.068,1,0.384,0.581,0.035,20144584,0.798,Middle East,, Syrian Arab Republic,12/1/2000,0.03,,51048,,,15765,19325894913,0.049,59,,0.02,0.002,0.09,75,72,0.002,1,0.408,0.558,0.034,16371208,0.519,Middle East,1082000000,669000000 United Arab Emirates,12/1/2000,0.017,,112562,,,33944,104337000000,0.022,752,,0.01,0.236,0.097,75,73,0.472,1,0.254,0.736,0.01,3026352,0.802,Middle East,1063000000,3019000000 "Yemen, Rep.",12/1/2000,0.039,,14639,,,4747,9636342275,0.041,25,,0.069,0.001,0.195,62,59,0.002,1,0.486,0.485,0.029,17522537,0.263,Middle East,73000000,127000000 American Samoa,12/1/2000,,,,,,,,,,,,,,,,0.035,1,,,,57522,0.886,Oceania,, Australia,12/1/2000,0.013,,329605,,,108110,415208000000,0.081,1713,,0.005,0.468,0.093,82,77,0.445,1,0.207,0.669,0.124,19153000,0.872,Oceania,13016000000,8780000000 Fiji,12/1/2000,0.025,,865,,,,1684109743,0.039,80,,0.021,0.015,0.084,70,65,0.068,1,0.351,0.615,0.034,811647,0.479,Oceania,291000000,96000000 French Polynesia,12/1/2000,0.02,,631,,,,3447543138,,,,,0.064,,75,70,0.168,1,0.318,0.64,0.043,237267,0.561,Oceania,, Guam,12/1/2000,0.022,,,,,,,,,,,0.161,,78,73,0.175,1,0.305,0.642,0.054,155328,0.931,Oceania,, Kiribati,12/1/2000,0.029,,33,,,,67512715,0.079,65,,0.054,0.018,,68,62,0.004,1,0.399,0.567,0.034,82788,0.43,Oceania,2700000, Marshall Islands,12/1/2000,,,77,,,,110937729,0.225,466,,0.034,0.015,,68,63,0.009,1,,,,52161,0.684,Oceania,3000000,200000 "Micronesia, Fed. Sts.",12/1/2000,0.03,,136,,,,233226323,0.078,170,,0.042,0.037,0.153,68,67,,1,0.403,0.56,0.037,107430,0.223,Oceania,17000000,5000000 New Caledonia,12/1/2000,0.021,,2299,,,,2682347064,,,,,0.139,,78,72,0.238,1,0.287,0.654,0.059,213230,0.618,Oceania,111000000, New Zealand,12/1/2000,0.015,,32897,,,17056,52011621745,0.076,1052,,0.006,0.474,0.078,81,76,0.4,1,0.227,0.655,0.118,3857700,0.857,Oceania,2272000000,1235000000 Papua New Guinea,12/1/2000,0.035,,2688,,,,3521348155,0.04,26,,0.058,0.008,0.175,61,57,0.002,1,0.402,0.573,0.025,5379226,0.132,Oceania,7000000,50000000 Samoa,12/1/2000,0.031,,139,,,,239698992,0.06,80,,0.019,0.006,,73,66,0.014,1,0.407,0.548,0.045,174614,0.22,Oceania,41000000, Solomon Islands,12/1/2000,0.036,,165,,,,435101217,0.046,48,,0.028,0.005,0.146,64,62,0.003,1,0.419,0.553,0.028,412336,0.158,Oceania,4000000,12200000 Tonga,12/1/2000,0.028,,121,,,,188623258,0.048,92,,0.015,0.024,0.113,73,69,0.002,1,0.384,0.559,0.057,97962,0.23,Oceania,7000000, Vanuatu,12/1/2000,0.032,,81,,,,272014693,0.036,52,,0.02,0.021,0.099,69,66,0.002,1,0.415,0.552,0.033,185058,0.217,Oceania,69000000,9000000 Antigua and Barbuda,12/1/2000,0.02,,345,,,,787693391,0.04,408,,0.014,0.065,0.122,76,71,0.283,1,0.292,0.637,0.071,77648,0.321,The Americas,291000000,31000000 Argentina,12/1/2000,0.019,,141077,,,60954,344273000000,0.092,710,,0.018,0.07,0.111,78,70,0.176,1,0.279,0.621,0.099,36903067,0.891,The Americas,3195000000,5460000000 Aruba,12/1/2000,0.014,,2233,,,,1873452514,,,,,0.154,0.121,76,71,0.165,1,0.232,0.692,0.076,90858,0.467,The Americas,850000000,163000000 "Bahamas, The",12/1/2000,0.018,,1668,,,,6327552000,0.052,1107,,0.013,0.08,0.06,75,69,0.106,1,0.293,0.654,0.054,297759,0.82,The Americas,1753000000,348000000 Barbados,12/1/2000,0.013,,1188,,,,3119500000,0.063,602,,0.015,0.04,0.102,75,71,0.107,1,0.219,0.666,0.115,267190,0.338,The Americas,733000000,141000000 Belize,12/1/2000,0.029,,689,,,,831750000,0.04,139,,0.021,0.06,0.16,74,67,0.07,1,0.402,0.555,0.043,238586,0.477,The Americas,111000000,44000000 Bermuda,12/1/2000,0.014,,495,,,,3480219000,,,,,0.429,,81,75,0.207,1,,,,61833,1,The Americas,431000000, Bolivia,12/1/2000,0.031,,10224,,,3737,8397858185,0.061,60,,0.057,0.014,0.346,65,61,0.069,1,0.398,0.56,0.042,8495271,0.618,The Americas,101000000,116000000 Brazil,12/1/2000,0.021,,327984,,,187442,644702000000,0.072,265,,0.029,0.029,0.568,74,67,0.133,1,0.296,0.649,0.055,174504898,0.812,The Americas,1969000000,4548000000 Canada,12/1/2000,0.011,,534484,,,251450,739456000000,0.088,2090,,0.005,0.513,0.073,82,77,0.284,1,0.192,0.683,0.125,30769700,0.795,The Americas,13035000000,15125000000 Cayman Islands,12/1/2000,,,455,,,,,,,,,,,,,0.257,1,,,,41685,1,The Americas,559000000, Chile,12/1/2000,0.017,,58694,,,25174,79328640264,0.077,390,,0.009,0.166,0.148,80,74,0.22,1,0.278,0.65,0.072,15454402,0.861,The Americas,1179000000,904000000 Colombia,12/1/2000,0.023,,57924,,,25814,99886577576,0.059,148,,0.021,0.022,0.188,75,67,0.057,1,0.328,0.624,0.047,39897984,0.721,The Americas,1313000000,1452000000 Costa Rica,12/1/2000,0.02,,5475,,,2874,15946443103,0.071,287,,0.011,0.058,0.249,80,75,0.054,1,0.315,0.631,0.055,3929588,0.59,The Americas,1477000000,551000000 Cuba,12/1/2000,0.013,,26039,,,12859,30565200000,0.061,166,,0.007,0.005,,79,75,0.001,1,0.216,0.685,0.099,11138416,0.753,The Americas,1948000000, Curacao,12/1/2000,,,,,,,,,,,,,,,,,1,0.249,0.648,0.103,133860,0.908,The Americas,227000000, Dominica,12/1/2000,,,103,,,,324463833,0.05,231,,0.014,0.088,0.117,,,0.017,1,,,,69679,0.653,The Americas,48000000,9000000 Dominican Republic,12/1/2000,0.025,,20117,,,7499,23996656676,0.063,173,,0.033,0.037,0.268,74,68,0.081,1,0.349,0.599,0.051,8663421,0.617,The Americas,2860000000,440000000 Ecuador,12/1/2000,0.025,,20942,,,7815,18327386416,0.036,53,,0.028,0.015,0.171,76,71,0.038,1,0.345,0.604,0.051,12533087,0.603,The Americas,451000000,416000000 El Salvador,12/1/2000,0.025,,5743,,,3968,13134100000,0.081,179,,0.027,0.012,0.14,74,65,0.125,1,0.383,0.562,0.055,5958794,0.589,The Americas,437000000,219000000 Greenland,12/1/2000,0.016,,532,,,,1068024994,,,,,0.317,,70,64,0.269,1,,,,56200,0.816,The Americas,, Grenada,12/1/2000,0.019,,191,,,,523256355,0.066,339,,0.014,0.041,0.116,73,68,0.042,1,0.35,0.572,0.078,101620,0.359,The Americas,93000000,8000000 Guatemala,12/1/2000,0.037,,9916,,,7041,19290566570,0.056,96,,0.04,0.007,0.209,71,64,0.076,1,0.441,0.519,0.04,11204183,0.451,The Americas,498000000,216000000 Guyana,12/1/2000,0.022,,1610,,,,712667925,0.058,56,,0.039,0.066,0.173,67,60,0.054,1,0.354,0.602,0.045,744471,0.287,The Americas,80000000,77000000 Haiti,12/1/2000,0.031,,1368,,,2010,3664503846,0.061,26,,0.075,0.002,0.314,59,56,0.006,1,0.403,0.557,0.04,8578234,0.356,The Americas,128000000,173000000 Honduras,12/1/2000,0.032,,5031,,,2990,7105529647,0.066,76,,0.031,0.012,0.268,73,68,0.025,1,0.424,0.537,0.039,6235561,0.455,The Americas,263000000,198000000 Jamaica,12/1/2000,0.021,,10319,,,3829,9008629729,0.055,189,,0.02,0.031,0.233,73,68,0.142,1,0.327,0.599,0.075,2589389,0.518,The Americas,1577000000,238000000 Mexico,12/1/2000,0.024,,381518,,,145384,683648000000,0.051,328,,0.022,0.051,0.169,77,72,0.136,1,0.341,0.61,0.049,103873607,0.747,The Americas,9133000000,6365000000 Nicaragua,12/1/2000,0.028,,3762,,,2522,5107329010,0.054,54,,0.033,0.01,0.181,72,67,0.018,1,0.409,0.554,0.037,5100920,0.547,The Americas,129000000,126000000 Panama,12/1/2000,0.024,,5790,,,2569,11620500000,0.078,295,,0.022,0.066,0.105,78,73,0.134,1,0.321,0.623,0.055,3054812,0.622,The Americas,628000000,241000000 Paraguay,12/1/2000,0.028,,3689,,,3850,8195993231,0.081,124,,0.028,0.007,0.268,72,68,0.153,1,0.382,0.574,0.044,5350253,0.553,The Americas,88000000,154000000 Peru,12/1/2000,0.024,,30297,,,12222,50681123109,0.047,96,,0.03,0.031,0.3,73,68,0.049,1,0.341,0.611,0.048,26000080,0.73,The Americas,861000000,641000000 Puerto Rico,12/1/2000,0.016,,,,,,61701810000,,,,,0.105,,81,73,0.347,1,0.236,0.651,0.113,3810605,0.944,The Americas,2388000000,1333000000 Sint Maarten (Dutch part),12/1/2000,,,,,,,,,,,,,,,,,1,,,,30519,1,The Americas,511000000,127000000 St. Kitts and Nevis,12/1/2000,,,103,,,,416566954,0.043,392,,0.014,0.059,0.111,,,0.026,1,,,,45544,0.328,The Americas,58000000,9000000 St. Lucia,12/1/2000,0.02,,330,,,,764457723,0.056,272,,0.015,0.051,0.131,73,70,0.016,1,0.322,0.602,0.076,156949,0.278,The Americas,281000000,33000000 St. Martin (French part),12/1/2000,0.017,,,,,,,,,,,,,80,74,,1,,,,28384,,The Americas,, St. Vincent and the Grenadines,12/1/2000,0.02,,158,,,,397447007,0.037,137,,0.019,0.032,0.115,73,68,0.022,1,0.314,0.616,0.069,107897,0.452,The Americas,82000000,10000000 Suriname,12/1/2000,0.023,,2127,,,,892164364,0.087,167,,0.03,0.025,0.29,71,65,0.088,1,0.306,0.637,0.057,466668,0.664,The Americas,42000000,67000000 Trinidad and Tobago,12/1/2000,0.015,,24514,,,10854,8154315708,0.04,260,,0.025,0.077,0.165,72,65,0.128,1,0.256,0.679,0.065,1267980,0.108,The Americas,371000000,190000000 Turks and Caicos Islands,12/1/2000,,,15,,,,,,,,,,,,,,1,,,,18876,0.846,The Americas,285000000, United States,12/1/2000,0.014,,5713560,,,2273332,10289700000000,0.136,4790,,0.007,0.431,0.092,79,74,0.385,1,0.213,0.663,0.124,282162411,0.791,The Americas,120912000000,91473000000 Uruguay,12/1/2000,0.016,,5306,,,3092,22823255806,0.112,773,,0.015,0.105,0.461,78,71,0.124,1,0.246,0.624,0.131,3320841,0.92,The Americas,827000000,381000000 "Venezuela, RB",12/1/2000,0.024,,152415,,,56424,117148000000,0.057,273,,0.018,0.034,0.252,75,70,0.223,1,0.337,0.617,0.046,24407553,0.88,The Americas,469000000,1647000000 Virgin Islands (U.S.),12/1/2000,0.014,,,,,,,,,,,0.138,,80,73,0.323,1,0.259,0.655,0.086,108639,0.926,The Americas,1206000000, Algeria,12/1/2001,0.019,,84293,,,27072,54744716706,0.038,65,,0.033,0.006,0.095,71,68,0.003,1,0.33,0.63,0.04,32150198,0.607,Africa,100000000,194000000 Angola,12/1/2001,0.05,,9732,,,7883,8936079253,0.058,36,,0.127,0.001,0.96,47,45,0.005,1,0.477,0.499,0.025,14385283,0.332,Africa,35000000,80000000 Benin,12/1/2001,0.042,,1738,,,2109,2499269391,0.047,16,,0.088,0.004,,57,54,0.017,1,0.453,0.518,0.029,7174911,0.387,Africa,86000000,48000000 Botswana,12/1/2001,0.027,,4334,,,1868,5489646903,0.052,175,,0.054,0.034,0.158,51,48,0.186,1,0.377,0.593,0.03,1783349,0.541,Africa,235000000,215000000 Burkina Faso,12/1/2001,0.046,,997,,,,2812845486,0.049,12,,0.095,0.002,,52,50,0.006,1,0.467,0.506,0.027,11946080,0.185,Africa,25000000,35000000 Burundi,12/1/2001,0.042,,216,,,,876794723,0.068,7,,0.089,0.001,0.168,50,47,0.005,1,0.484,0.487,0.029,6839376,0.085,Africa,900000,12000000 Cameroon,12/1/2001,0.041,,3421,,,6384,9633109257,0.047,27,,0.09,0.003,0.207,53,51,0.026,1,0.451,0.515,0.034,16350440,0.461,Africa,182000000,199000000 Central African Republic,12/1/2001,0.039,,246,,,,931833294,0.04,10,,0.113,0.001,0.207,45,42,0.003,1,0.422,0.538,0.04,3704045,0.377,Africa,5000000,29000000 Chad,12/1/2001,0.051,,172,,,,1709347777,0.06,12,,0.105,0,0.207,48,46,0.003,1,0.491,0.481,0.028,8620917,0.217,Africa,23000000,56000000 Comoros,12/1/2001,0.039,,88,,,,220115655,0.028,11,,0.073,0.004,0.12,60,57,,1,0.414,0.555,0.031,541976,0.28,Africa,9000000, "Congo, Dem. Rep.",12/1/2001,0.047,,1566,,,17242,7438189100,0.043,6,,0.114,0,,48,45,0.003,1,0.464,0.507,0.028,48167045,0.356,Africa,, "Congo, Rep.",12/1/2001,0.039,,862,,,884,2794259756,0.024,21,,0.075,0,0.207,54,51,0.047,1,0.419,0.545,0.036,3205636,0.592,Africa,22600000,82000000 Cote d'Ivoire,12/1/2001,0.038,,7726,,,6483,10545285037,0.052,34,,0.098,0.004,,47,46,0.044,1,0.421,0.55,0.029,16420173,0.442,Africa,58000000,289000000 Djibouti,12/1/2001,0.03,,385,,,,572417441,0.054,41,,0.078,0.003,0.115,59,56,0.004,1,0.407,0.562,0.031,733732,0.766,Africa,8600000,12900000 "Egypt, Arab Rep.",12/1/2001,0.025,,125452,,,45698,97632008051,0.058,76,,0.034,0.008,0.133,71,66,0.042,1,0.348,0.598,0.054,67204189,0.428,Africa,4119000000,1248000000 Equatorial Guinea,12/1/2001,0.039,,3095,,,,1461139008,0.015,50,,0.096,0.002,0.207,49,47,0.028,1,0.423,0.541,0.036,534592,0.388,Africa,14000000,30000000 Eritrea,12/1/2001,0.04,,631,,,742,752368494,0.039,7,,0.056,0.002,,59,54,,1,0.462,0.519,0.019,4101609,0.178,Africa,74000000, Ethiopia,12/1/2001,0.043,,4309,,,26171,8080496318,0.047,6,,0.087,0,0.109,54,52,0,1,0.466,0.504,0.031,67956866,0.149,Africa,218000000,50000000 Gabon,12/1/2001,0.034,,1782,,,1579,4712849280,0.033,125,,0.055,0.013,0.207,61,58,0.119,1,0.404,0.538,0.058,1255299,0.809,Africa,46000000,256000000 "Gambia, The",12/1/2001,0.045,,282,,,,687410629,0.046,25,,0.062,0.013,0.24,57,54,0.043,1,0.459,0.515,0.027,1266691,0.488,Africa,, Ghana,12/1/2001,0.034,,6920,,,8045,5314871684,0.056,15,,0.063,0.002,,58,56,0.013,1,0.412,0.557,0.031,19293392,0.446,Africa,374000000,165000000 Guinea,12/1/2001,0.042,,1298,,,,2833442750,0.059,19,,0.099,0.002,,51,51,0.006,1,0.44,0.526,0.034,8895353,0.314,Africa,8200000,26000000 Guinea-Bissau,12/1/2001,0.041,,150,,,,384270400,0.05,15,,0.106,0.003,,53,51,,1,0.434,0.535,0.031,1301748,0.375,Africa,2700000,5500000 Kenya,12/1/2001,0.039,,9369,,,14259,12985991723,0.046,19,,0.068,0.006,0.197,54,52,0.019,1,0.438,0.534,0.028,32126351,0.202,Africa,536000000,183000000 Lesotho,12/1/2001,0.031,,,,,,706430933,0.075,28,,0.082,0.003,0.166,46,45,0.03,1,0.41,0.545,0.046,1871500,0.201,Africa,16000000,166000000 Liberia,12/1/2001,0.042,,502,,,,515000000,0.064,11,,0.112,0,0.221,53,52,0.001,1,0.432,0.537,0.031,2998770,0.447,Africa,, Libya,12/1/2001,0.022,,48100,,,16361,28420321952,0.041,261,,0.024,0.004,0.07,74,71,0.01,1,0.326,0.634,0.04,5258677,0.764,Africa,90000000,572000000 Madagascar,12/1/2001,0.04,,1742,,,,4529575233,0.05,14,,0.067,0.002,0.253,60,58,0.009,1,0.455,0.516,0.03,16235767,0.274,Africa,149000000,179000000 Malawi,12/1/2001,0.045,,906,,,,1716502069,0.051,8,,0.097,0.002,0.562,46,46,0.005,1,0.46,0.51,0.03,11623166,0.147,Africa,40000000,52000000 Mali,12/1/2001,0.048,,546,,,,2629739067,0.064,18,,0.113,0.002,,49,50,0.002,1,0.461,0.505,0.034,10562768,0.291,Africa,91000000,65000000 Mauritania,12/1/2001,0.038,,1349,,,,1295536829,0.048,19,,0.076,0.003,0.225,61,58,0.04,1,0.426,0.543,0.032,2791403,0.5,Africa,, Mauritius,12/1/2001,0.016,,2967,,,,4536544699,0.038,147,,0.015,0.088,0.211,75,68,0.228,1,0.255,0.683,0.063,1199881,0.425,Africa,820000000,216000000 Morocco,12/1/2001,0.021,,37715,,,10894,37724674865,0.044,58,,0.041,0.014,0.133,70,67,0.164,1,0.333,0.619,0.048,29021156,0.537,Africa,2966000000,589000000 Mozambique,12/1/2001,0.045,,1580,,,7547,4075049537,0.056,12,,0.109,0.002,0.227,49,46,0.008,1,0.44,0.529,0.032,18785719,0.293,Africa,64000000,132000000 Namibia,12/1/2001,0.031,,2017,,,1127,3546791603,0.062,113,,0.049,0.024,0.145,56,52,0.055,1,0.403,0.564,0.033,1931282,0.329,Africa,264000000,71000000 Niger,12/1/2001,0.053,,759,,,,1945327546,0.074,12,,0.098,0.001,,51,51,0,1,0.481,0.494,0.025,11396434,0.163,Africa,30000000,33000000 Nigeria,12/1/2001,0.043,,83351,,,94633,44138014092,0.048,18,,0.11,0.001,0.234,47,46,0.002,1,0.435,0.538,0.028,126004992,0.357,Africa,168000000,858000000 Rwanda,12/1/2001,0.04,,689,,,,1674685126,0.044,8,,0.101,0.002,0.173,50,48,0.007,1,0.464,0.507,0.029,8760003,0.158,Africa,29000000,33000000 Sao Tome and Principe,12/1/2001,0.037,,51,,,,76553443,0.103,52,,0.056,0.063,0.37,65,62,,1,0.434,0.526,0.04,141783,0.544,Africa,6200000,2000000 Senegal,12/1/2001,0.04,,4331,,,2592,4877602012,0.05,24,,0.067,0.01,,60,57,0.03,1,0.449,0.519,0.032,10119118,0.405,Africa,175000000,112000000 Seychelles,12/1/2001,0.018,,642,,,,618433501,0.047,356,,0.012,0.11,0.106,,,0.452,1,0.275,0.645,0.08,81202,0.503,Africa,221000000,41000000 Sierra Leone,12/1/2001,0.044,,568,,,,1079478388,0.16,40,,0.139,0.002,0.243,40,38,0.006,1,0.429,0.547,0.024,4295667,0.359,Africa,14000000,42000000 Somalia,12/1/2001,0.048,,502,,,,,,,,0.105,0.001,,53,50,0.011,1,0.473,0.497,0.029,7609265,0.336,Africa,, South Africa,12/1/2001,0.024,,362743,,,112399,118479000000,0.086,223,,0.053,0.063,0.138,57,53,0.237,1,0.325,0.64,0.036,44909738,0.574,Africa,3256000000,2366000000 South Sudan,12/1/2001,0.042,,,,,,,,,,0.105,,,51,48,,1,0.446,0.523,0.031,6924455,0.166,Africa,, Sudan,12/1/2001,0.039,,6370,,,13988,13182872555,0.035,16,,0.067,0.001,,60,57,0.003,1,0.436,0.534,0.03,28434810,0.325,Africa,3000000,74000000 Swaziland,12/1/2001,0.032,,1144,,,,1349326983,0.052,65,,0.081,0.013,0.133,48,47,0.051,1,0.44,0.53,0.03,1074761,0.226,Africa,23000000,31000000 Tanzania,12/1/2001,0.042,,3128,,,14203,10383560998,0.035,11,,0.076,0.002,0.201,51,50,0.008,1,0.447,0.524,0.029,34895398,0.227,Africa,626000000,363000000 Togo,12/1/2001,0.039,,1162,,,2106,1332328986,0.052,14,,0.075,0.009,,54,53,0.019,1,0.439,0.532,0.028,4992225,0.334,Africa,14000000,20000000 Tunisia,12/1/2001,0.017,,20818,,,7711,22066101341,0.053,122,,0.024,0.043,,75,71,0.04,1,0.289,0.649,0.062,9673600,0.638,Africa,2061000000,322000000 Uganda,12/1/2001,0.048,,1621,,,,5840503703,0.072,17,,0.085,0.002,0.227,49,49,0.011,1,0.493,0.48,0.027,25088033,0.122,Africa,187000000, Zambia,12/1/2001,0.045,,1907,,,6430,3653822712,0.06,21,,0.095,0.002,0.462,43,42,0.012,1,0.459,0.514,0.027,10362137,0.35,Africa,80000000,102000000 Zimbabwe,12/1/2001,0.032,,12563,,,9690,6777384733,,,,0.06,0.008,0.38,43,43,0.025,1,0.419,0.547,0.034,12586763,0.342,Africa,81000000, Afghanistan,12/1/2001,0.049,,645,,,,2461666315,,,,0.093,0,,56,54,,1,0.495,0.484,0.02,21347782,0.216,Asia,, Armenia,12/1/2001,0.013,,3542,,,2006,2118467913,0.059,41,,0.025,0.016,0.267,75,68,0.008,1,0.25,0.646,0.104,3059960,0.644,Asia,81000000,59000000 Azerbaijan,12/1/2001,0.014,,28771,,,11445,5707618247,0.045,31,,0.057,0.003,0.197,70,64,0.089,1,0.301,0.641,0.058,8111200,0.516,Asia,57000000,119000000 Bangladesh,12/1/2001,0.026,,32457,,,20223,46987842847,0.03,10,,0.062,0.001,0.158,66,66,0.004,1,0.364,0.595,0.041,134729503,0.241,Asia,48000000,341000000 Bhutan,12/1/2001,0.027,,389,,,,476360697,0.062,51,,0.056,0.009,0.158,61,61,,1,0.393,0.568,0.039,580888,0.265,Asia,9000000, Brunei Darussalam,12/1/2001,0.022,,6197,,,2208,5601090584,0.032,525,,0.008,0.129,0.055,78,74,0.422,1,0.301,0.671,0.028,339114,0.717,Asia,155000000,456000000 Cambodia,12/1/2001,0.027,,2252,,,3430,3979813388,0.062,20,,0.076,0.001,,66,60,0.018,1,0.397,0.564,0.039,12472586,0.187,Asia,429000000,59000000 China,12/1/2001,0.013,,3487566,,,1186797,1324810000000,0.046,47,,0.028,0.026,0.059,74,71,0.112,1,0.246,0.683,0.07,1271850000,0.371,Asia,19006000000,14992000000 Georgia,12/1/2001,0.012,,3770,,,2570,3219487823,0.078,54,,0.029,0.01,0.223,76,68,0.064,1,0.212,0.659,0.129,4386400,0.524,Asia,136000000,136000000 "Hong Kong SAR, China",12/1/2001,0.007,,37972,,,14145,169403000000,,,,,0.387,0.051,85,78,0.838,1,0.167,0.72,0.112,6714300,1,Asia,7923000000,12317000000 India,12/1/2001,0.025,,1203843,,,464501,493954000000,0.045,21,,0.064,0.007,0.121,64,61,0.006,1,0.338,0.617,0.044,1059500888,0.279,Asia,3342000000,4367000000 Indonesia,12/1/2001,0.021,,294907,,,158963,160447000000,0.022,17,,0.039,0.02,0.185,70,66,0.031,1,0.304,0.649,0.047,211970371,0.428,Asia,5277000000,3406000000 Japan,12/1/2001,0.009,,1202266,,,510791,4159860000000,0.078,2554,,0.003,0.385,0.02,85,78,0.594,1,0.144,0.679,0.177,127149000,0.8,Asia,5750000000,35526000000 Kazakhstan,12/1/2001,0.015,,147908,,,34493,22152689130,0.035,53,,0.036,0.01,,71,61,0.04,1,0.271,0.661,0.069,14858335,0.555,Asia,502000000,761000000 "Korea, Dem. Rep.",12/1/2001,0.017,,79475,,,20369,,,,,0.039,,,70,62,,1,0.258,0.68,0.062,23043449,0.595,Asia,, "Korea, Rep.",12/1/2001,0.012,,450194,,,191046,533052000000,0.05,528,,0.006,0.566,0.077,80,73,0.629,1,0.206,0.717,0.077,47357362,0.799,Asia,7919000000,8349000000 Kyrgyz Republic,12/1/2001,0.02,,3781,,,2151,1525113501,0.048,15,,0.04,0.03,0.373,73,65,0.005,1,0.342,0.602,0.055,4945100,0.353,Asia,32000000,21000000 Lao PDR,12/1/2001,0.03,,902,,,,1768619058,0.041,13,,0.08,0.002,0.262,64,61,0.005,1,0.43,0.533,0.036,5470169,0.23,Asia,108000000,4000000 "Macao SAR, China",12/1/2001,0.008,,1687,,,,6514271488,,,,,0.225,0.08,80,76,0.444,1,0.219,0.708,0.074,438080,1,Asia,3745000000, Malaysia,12/1/2001,0.022,,136717,,,49255,92783947368,0.033,130,,0.008,0.267,0.071,75,71,0.309,1,0.327,0.634,0.039,23925742,0.629,Asia,7627000000,3391000000 Maldives,12/1/2001,0.023,,576,,,,802442810,0.053,153,,0.032,0.036,0.13,72,70,0.068,1,0.399,0.561,0.039,277825,0.289,Asia,327000000,59000000 Mongolia,12/1/2001,0.019,,7884,,,2415,1267997923,0.046,24,,0.047,0.017,0.374,67,60,0.081,1,0.336,0.627,0.037,2419669,0.582,Asia,49000000,59000000 Myanmar,12/1/2001,0.02,,8724,,,12547,,0.021,2,,0.057,0,0.15,64,60,0,1,0.301,0.651,0.048,48894203,0.273,Asia,132000000,32000000 Nepal,12/1/2001,0.032,,3454,,,8375,6007061224,0.053,13,,0.057,0.002,0.077,64,62,0.001,1,0.403,0.559,0.039,23655119,0.14,Asia,191000000,128000000 Pakistan,12/1/2001,0.03,,108283,,,65091,72309738921,0.028,13,,0.086,0.013,,65,63,0.005,1,0.409,0.552,0.04,146857081,0.334,Asia,533000000,555000000 Philippines,12/1/2001,0.029,,71052,,,38202,76261998623,0.03,29,,0.03,0.025,0.124,70,64,0.153,1,0.382,0.585,0.033,79297756,0.477,Asia,2011000000,1918000000 Singapore,12/1/2001,0.012,,49541,,,21229,89285087395,0.024,526,,0.003,0.417,0.056,80,76,0.744,1,0.211,0.714,0.075,4138000,1,Asia,4641000000,6600000000 Sri Lanka,12/1/2001,0.018,,10246,,,8050,15746224410,0.037,31,,0.013,0.008,0.194,76,68,0.035,1,0.265,0.672,0.064,18797000,0.184,Asia,347000000,402000000 Tajikistan,12/1/2001,0.03,,2292,,,2122,1080774006,0.046,8,,0.07,0.001,0.211,68,60,0,1,0.421,0.543,0.036,6289340,0.265,Asia,, Thailand,12/1/2001,0.014,,202132,,,74385,115536000000,0.033,61,,0.018,0.056,0.073,75,67,0.12,1,0.238,0.694,0.068,63069070,0.326,Asia,9378000000,3334000000 Timor-Leste,12/1/2001,0.041,,,,,,429700000,0.062,20,,0.08,,,62,59,,1,0.5,0.475,0.024,871353,0.246,Asia,, Turkmenistan,12/1/2001,0.023,,39270,,,15153,3534771969,0.038,58,,0.065,0.002,,68,60,0.002,1,0.356,0.6,0.044,4551762,0.461,Asia,, Uzbekistan,12/1/2001,0.021,,122038,,,51070,11401351420,0.053,24,,0.052,0.006,,70,64,0.005,1,0.365,0.591,0.044,24964450,0.373,Asia,72000000, Vietnam,12/1/2001,0.017,,61140,,,30646,35291349277,0.056,22,,0.026,0.013,0.094,79,69,0.015,1,0.307,0.628,0.065,78621000,0.249,Asia,, Albania,12/1/2001,0.018,,3223,,,1783,4091020249,0.06,75,,0.022,0.003,0.197,78,72,0.119,1,0.297,0.632,0.071,3064111,0.424,Europe,451000000,269000000 Andorra,12/1/2001,0.012,,524,,,,1264760246,0.056,1294,,0.004,,,,,0.433,1,,,,68000,0.921,Europe,, Austria,12/1/2001,0.009,,65716,,,30177,191679000000,0.101,2406,,0.005,0.392,,82,76,0.813,1,0.168,0.676,0.156,8042293,0.658,Europe,11511000000,7408000000 Belarus,12/1/2001,0.009,,52596,,,24785,12354820144,0.066,83,,0.01,0.043,0.47,75,63,0.014,1,0.179,0.684,0.137,9928000,0.705,Europe,272000000,486000000 Belgium,12/1/2001,0.011,,114766,,,58391,232486000000,0.083,1878,,0.005,0.313,0.085,81,75,0.747,1,0.175,0.655,0.17,10286570,0.972,Europe,8304000000,10878000000 Bosnia and Herzegovina,12/1/2001,0.01,,20700,,,4201,5748990555,0.072,108,,0.008,0.012,,77,73,0.115,1,0.199,0.689,0.112,3879353,0.393,Europe,279000000,96000000 Bulgaria,12/1/2001,0.009,,46454,,,19416,13868600710,0.074,129,,0.017,0.076,0.111,75,69,0.195,1,0.152,0.68,0.168,8020282,0.692,Europe,1262000000,836000000 Croatia,12/1/2001,0.009,,20715,,,7948,23052044813,0.072,376,,0.007,0.116,0.095,78,71,0.395,1,0.169,0.672,0.159,4440000,0.557,Europe,3463000000,677000000 Cyprus,12/1/2001,0.013,,6846,,,2114,9679304971,0.058,776,,0.005,0.188,0.075,80,76,0.327,1,0.219,0.678,0.103,961481,0.688,Europe,2203000000,568000000 Czech Republic,12/1/2001,0.009,,124407,,,42078,64375288107,0.064,403,,0.005,0.147,0.072,78,72,0.679,1,0.161,0.7,0.139,10216605,0.739,Europe,3104000000,1386000000 Denmark,12/1/2001,0.012,,49035,,,19203,160476000000,0.091,2730,,0.005,0.43,0.082,79,75,0.74,1,0.186,0.665,0.148,5358783,0.852,Europe,4003000000,4861000000 Estonia,12/1/2001,0.009,,15596,,,4919,6240147810,0.049,218,,0.008,0.315,0.078,76,65,0.48,1,0.174,0.671,0.155,1388115,0.692,Europe,661000000,253000000 Faeroe Islands,12/1/2001,,,792,,,,1154899793,,,,,0.432,,82,77,0.52,1,,,,47135,0.372,Europe,, Finland,12/1/2001,0.011,,56424,,,33150,124643000000,0.074,1786,,0.003,0.431,0.058,82,75,0.805,1,0.18,0.669,0.151,5188008,0.824,Europe,2065000000,2442000000 France,12/1/2001,0.013,,385827,,,260565,1338300000000,0.102,2241,,0.004,0.263,0.07,83,76,0.621,1,0.188,0.651,0.161,61355725,0.761,Europe,38385000000,26749000000 Germany,12/1/2001,0.009,,853663,,,346679,1880890000000,0.105,2402,,0.004,0.317,0.1,81,76,0.671,1,0.154,0.679,0.168,82349925,0.731,Europe,24175000000,56529000000 Greece,12/1/2001,0.009,,93806,,,28004,129842000000,0.088,1055,,0.006,0.109,0.086,81,76,0.723,1,0.15,0.678,0.172,10951764,0.729,Europe,9216000000,4189000000 Hungary,12/1/2001,0.01,,57022,,,25591,52720966883,0.072,374,,0.009,0.145,0.121,77,68,0.487,1,0.166,0.682,0.153,10187576,0.647,Europe,4191000000,1887000000 Iceland,12/1/2001,0.014,,2101,,,3238,7922983043,0.093,2612,,0.003,0.494,0.18,83,78,0.874,1,0.23,0.653,0.116,284968,0.925,Europe,383000000,372000000 Ireland,12/1/2001,0.015,,44151,,,14432,105167000000,0.067,1848,,0.006,0.231,0.048,80,75,0.768,1,0.214,0.674,0.112,3866243,0.594,Europe,3789000000,2956000000 Isle of Man,12/1/2001,,,,,,,1614595291,,,,,,,,,,1,,,,77616,0.518,Europe,, Italy,12/1/2001,0.009,,450348,,,172142,1123700000000,0.081,1590,,0.004,0.272,0.073,83,77,0.896,1,0.143,0.672,0.186,56974100,0.673,Europe,26916000000,16997000000 Kosovo,12/1/2001,0.022,,,,,1902,2535333632,,,,,,,70,66,,1,,,,1701154,,Europe,, Latvia,12/1/2001,0.008,,6854,,,4111,8313047744,0.062,215,,0.014,0.072,0.112,77,65,0.28,1,0.172,0.674,0.154,2337170,0.68,Europe,153000000,255000000 Liechtenstein,12/1/2001,0.012,,,,,,2491800559,,,,,0.451,,82,76,0.329,1,,,,33475,0.15,Europe,, Lithuania,12/1/2001,0.009,,12919,,,8277,12159225000,0.063,220,,0.009,0.072,0.096,78,66,0.294,1,0.193,0.665,0.142,3470818,0.669,Europe,425000000,227000000 Luxembourg,12/1/2001,0.012,,8801,,,3509,20196868009,0.074,3405,,0.004,0.362,,81,75,0.929,1,0.19,0.669,0.142,441525,0.848,Europe,1780000000,1464000000 "Macedonia, FYR",12/1/2001,0.012,,11998,,,2577,3436961385,0.085,141,,0.014,0.035,0.194,76,71,0.108,1,0.219,0.679,0.103,2065098,0.583,Europe,49000000,60000000 Malta,12/1/2001,0.01,,2486,,,787,3917620728,0.07,675,,0.007,0.179,0.069,81,77,0.585,1,0.2,0.688,0.111,393028,0.926,Europe,704000000,204000000 Moldova,12/1/2001,0.012,,3715,,,3052,1480656884,0.071,29,,0.024,0.015,0.287,71,63,0.056,1,0.228,0.669,0.102,3631462,0.457,Europe,58000000,90000000 Monaco,12/1/2001,,,,,,,2671401083,0.033,2718,,0.004,0.466,,,,0.442,1,,,,32366,1,Europe,, Montenegro,12/1/2001,0.013,,,,,,1159891560,0.085,160,,0.012,,,77,71,,1,0.21,0.673,0.117,611525,0.596,Europe,, Netherlands,12/1/2001,0.013,,167274,,,75614,400654000000,0.083,2079,,0.005,0.494,0.05,81,76,0.765,1,0.186,0.678,0.136,16046180,0.778,Europe,11147000000,13061000000 Norway,12/1/2001,0.013,,41092,,,26823,170923000000,0.098,3705,,0.004,0.64,0.087,82,76,0.796,1,0.2,0.65,0.15,4513751,0.766,Europe,2380000000,4718000000 Poland,12/1/2001,0.01,,302806,,,89733,190421000000,0.059,292,,0.008,0.099,0.184,78,70,0.261,1,0.187,0.688,0.125,38248076,0.618,Europe,5121000000,3595000000 Portugal,12/1/2001,0.011,,62863,,,24815,120332000000,0.093,1087,,0.005,0.181,,80,73,0.771,1,0.16,0.676,0.164,10362722,0.55,Europe,6236000000,2606000000 Romania,12/1/2001,0.01,,95672,,,36819,40585886769,0.044,79,,0.022,0.045,0.454,75,68,0.172,1,0.181,0.683,0.137,22131970,0.529,Europe,419000000,475000000 Russian Federation,12/1/2001,0.009,,1558013,,,626014,306603000000,0.057,119,,0.019,0.029,0.179,72,59,0.053,1,0.175,0.698,0.127,145976473,0.733,Europe,4726000000,9760000000 San Marino,12/1/2001,,,,,,,815205233,0.052,2183,,0.005,0.503,0.088,84,78,0.577,1,,,,27467,0.938,Europe,, Serbia,12/1/2001,0.011,,,,,14965,11390468619,0.076,84,,0.011,,0.345,75,70,,1,0.197,0.67,0.132,7503433,0.535,Europe,, Slovak Republic,12/1/2001,0.01,,39358,,,18593,30318731991,0.055,216,,0.01,0.125,0.112,78,70,0.399,1,0.191,0.695,0.114,5378867,0.562,Europe,649000000,340000000 Slovenia,12/1/2001,0.009,,15163,,,6732,20498926981,0.086,883,,0.004,0.302,0.151,80,72,0.739,1,0.155,0.701,0.144,1992060,0.508,Europe,1059000000,560000000 Spain,12/1/2001,0.01,,297830,,,125038,608856000000,0.072,1089,,0.005,0.181,0.052,83,76,0.728,1,0.146,0.685,0.169,40756001,0.763,Europe,33829000000,8466000000 Sweden,12/1/2001,0.01,,51129,,,50532,227359000000,0.089,2268,,0.003,0.518,0.056,82,78,0.808,1,0.183,0.645,0.172,8895960,0.841,Europe,5200000000,7916000000 Switzerland,12/1/2001,0.01,,42963,,,26557,262647000000,0.103,3748,,0.005,0.551,0.043,83,77,0.733,1,0.173,0.673,0.154,7229854,0.733,Europe,9290000000,7085000000 Turkey,12/1/2001,0.021,,194538,,,70402,196005000000,0.052,148,,0.032,0.052,,74,67,0.305,1,0.302,0.637,0.061,64100297,0.653,Europe,10067000000,1738000000 Ukraine,12/1/2001,0.008,,321651,,,134096,38009344577,0.057,44,,0.015,0.012,0.323,74,63,0.046,1,0.168,0.691,0.141,48683865,0.672,Europe,759000000,676000000 United Kingdom,12/1/2001,0.011,,550552,,,223770,1485150000000,0.073,1819,,0.006,0.335,0.051,80,76,0.782,1,0.188,0.654,0.158,59119673,0.788,Europe,26137000000,46410000000 Bahrain,12/1/2001,0.021,,13927,,,6069,8976446420,0.038,488,,0.011,0.15,0.107,76,74,0.429,1,0.305,0.67,0.024,698749,0.884,Middle East,886000000,423000000 "Iran, Islamic Rep.",12/1/2001,0.018,,398827,,,133435,115438000000,0.051,294,,0.027,0.015,,71,69,0.031,1,0.328,0.629,0.043,66857624,0.648,Middle East,1122000000,714000000 Iraq,12/1/2001,0.036,,85342,,,26935,,0.011,8,,0.035,0.001,,73,69,,1,0.426,0.539,0.035,24516842,0.686,Middle East,15000000,31000000 Israel,12/1/2001,0.021,,65749,,,19143,122941000000,0.079,1499,,0.005,0.174,0.1,81,78,0.897,1,0.28,0.619,0.1,6439000,0.913,Middle East,2854000000,3887000000 Jordan,12/1/2001,0.031,,16003,,,4818,8972965061,0.099,184,,0.023,0.047,0.109,73,71,0.179,1,0.392,0.577,0.031,4917000,0.801,Middle East,884000000,420000000 Kuwait,12/1/2001,0.023,,55122,,,20067,34890773740,0.036,634,,0.011,0.086,0.079,74,73,0.443,1,0.257,0.711,0.033,1980604,0.981,Middle East,286000000,3207000000 Lebanon,12/1/2001,0.018,,16208,,,5258,17649751244,0.109,571,,0.016,0.068,0.172,77,73,0.228,1,0.285,0.644,0.072,3357600,0.861,Middle East,837000000, Oman,12/1/2001,0.023,,20286,,,8420,19949284975,0.031,263,,0.013,0.059,0.092,75,71,0.144,1,0.369,0.607,0.024,2239025,0.715,Middle East,538000000,703000000 Qatar,12/1/2001,0.019,,30363,,,12452,17538461033,0.026,732,,0.01,0.062,,78,76,0.291,1,0.263,0.72,0.017,611808,0.965,Middle East,272000000,366000000 Saudi Arabia,12/1/2001,0.026,,297214,,,106657,183012000000,0.045,397,,0.019,0.047,,75,71,0.121,1,0.376,0.589,0.035,20891594,0.801,Middle East,, Syrian Arab Republic,12/1/2001,0.03,,48786,,,15638,21099833784,0.049,58,,0.019,0.004,0.09,75,72,0.012,1,0.404,0.563,0.034,16700984,0.523,Middle East,1150000000,670000000 United Arab Emirates,12/1/2001,0.016,,101415,,,37365,103312000000,0.025,815,,0.009,0.263,0.081,76,74,0.61,1,0.249,0.741,0.01,3132104,0.807,Middle East,1200000000,3321000000 "Yemen, Rep.",12/1/2001,0.039,,16252,,,5265,9854042165,0.043,27,,0.067,0.001,0.175,62,59,0.008,1,0.481,0.491,0.028,18029989,0.268,Middle East,38000000,136000000 American Samoa,12/1/2001,,,,,,,,,,,,,,,,0.037,1,,,,58176,0.885,Oceania,, Australia,12/1/2001,0.013,,324860,,,105751,378642000000,0.082,1632,,0.005,0.527,0.087,82,77,0.571,1,0.206,0.669,0.125,19413000,0.874,Oceania,12804000000,8053000000 Fiji,12/1/2001,0.024,,1115,,,,1660102346,0.033,67,,0.02,0.019,0.083,70,65,0.099,1,0.343,0.621,0.036,814700,0.483,Oceania,316000000,84000000 French Polynesia,12/1/2001,0.02,,737,,,,,,,,,0.063,,76,70,0.279,1,0.31,0.645,0.044,241276,0.56,Oceania,, Guam,12/1/2001,0.021,,,,,,,,,,,0.254,,78,73,0.208,1,0.303,0.641,0.055,156417,0.932,Oceania,, Kiribati,12/1/2001,0.028,,26,,,,63101272,0.088,67,,0.053,0.023,,68,62,0.005,1,0.394,0.572,0.034,84261,0.435,Oceania,3200000, Marshall Islands,12/1/2001,,,81,,,,115152143,0.194,412,,0.033,0.017,,,,0.009,1,,,,52184,0.687,Oceania,3100000,300000 "Micronesia, Fed. Sts.",12/1/2001,0.029,,176,,,,240051900,0.085,190,,0.041,0.047,0.153,68,67,,1,0.399,0.563,0.038,107170,0.223,Oceania,15000000,5000000 New Caledonia,12/1/2001,0.02,,1907,,,,,,,,,0.182,,78,72,0.317,1,0.284,0.655,0.061,217324,0.622,Oceania,94000000, New Zealand,12/1/2001,0.014,,34510,,,17120,53305639461,0.077,1052,,0.006,0.532,0.076,81,76,0.586,1,0.225,0.657,0.118,3880500,0.858,Oceania,2340000000,1255000000 Papua New Guinea,12/1/2001,0.035,,3231,,,,3081029666,0.045,25,,0.058,0.009,0.162,61,57,0.002,1,0.402,0.573,0.025,5518971,0.132,Oceania,5200000,38000000 Samoa,12/1/2001,0.03,,143,,,,243324190,0.058,79,,0.018,0.017,,73,67,0.014,1,0.406,0.549,0.045,175567,0.221,Oceania,39000000, Solomon Islands,12/1/2001,0.035,,172,,,,400464593,0.064,61,,0.029,0.005,0.146,65,62,0.002,1,0.418,0.554,0.029,423529,0.162,Oceania,8800000,10500000 Tonga,12/1/2001,0.028,,143,,,,167042880,0.057,96,,0.015,0.028,0.113,73,69,0.002,1,0.382,0.56,0.058,98504,0.23,Oceania,6800000,3200000 Vanuatu,12/1/2001,0.032,,88,,,,257926882,0.037,50,,0.019,0.028,0.088,70,66,0.002,1,0.411,0.556,0.033,189285,0.22,Oceania,58000000,8000000 Antigua and Barbuda,12/1/2001,0.02,,345,,,,778311557,0.044,429,,0.013,0.089,0.116,76,71,0.317,1,0.291,0.639,0.07,78972,0.317,The Americas,272000000,32000000 Argentina,12/1/2001,0.018,,132632,,,57835,325488000000,0.094,676,,0.018,0.098,0.277,78,70,0.181,1,0.276,0.624,0.1,37273361,0.893,The Americas,2756000000,4888000000 Aruba,12/1/2001,0.014,,2237,,,,1920262570,,,,,0.171,0.121,76,71,0.571,1,0.229,0.694,0.078,92894,0.463,The Americas,825000000,156000000 "Bahamas, The",12/1/2001,0.017,,1569,,,,6516651000,0.051,1107,,0.013,0.118,0.06,76,70,0.2,1,0.286,0.659,0.055,303005,0.821,The Americas,1665000000,342000000 Barbados,12/1/2001,0.013,,1221,,,,3112350000,0.067,635,,0.015,0.119,0.096,76,71,0.198,1,0.217,0.669,0.115,268296,0.337,The Americas,706000000,149000000 Belize,12/1/2001,0.029,,711,,,,871840755,0.045,160,,0.021,,0.155,74,67,0.16,1,0.397,0.56,0.042,245198,0.474,The Americas,111000000,45000000 Bermuda,12/1/2001,0.013,,495,,,,3680483000,,,,,0.475,,81,75,0.211,1,,,,62504,1,The Americas,351000000, Bolivia,12/1/2001,0.031,,9824,,,2903,8141513292,0.063,59,,0.054,0.021,0.201,65,61,0.09,1,0.396,0.562,0.042,8669066,0.623,The Americas,119000000,114000000 Brazil,12/1/2001,0.02,,337434,,,190712,553582000000,0.073,228,,0.027,0.045,0.576,74,67,0.162,1,0.291,0.653,0.056,176968205,0.816,The Americas,1844000000,3765000000 Canada,12/1/2001,0.011,,525690,,,247878,732717000000,0.093,2152,,0.005,0.602,0.058,82,77,0.344,1,0.189,0.685,0.127,31081900,0.798,The Americas,12680000000,14634000000 Cayman Islands,12/1/2001,,,455,,,,,,,,,,,,,0.392,1,,,,43317,1,The Americas,585000000, Chile,12/1/2001,0.016,,52757,,,24697,72336972322,0.077,348,,0.009,0.191,0.119,80,74,0.326,1,0.273,0.654,0.074,15639289,0.864,The Americas,1184000000,939000000 Colombia,12/1/2001,0.023,,56274,,,25708,98203544965,0.06,144,,0.021,0.029,0.207,75,68,0.081,1,0.324,0.628,0.048,40558648,0.724,The Americas,1483000000,1556000000 Costa Rica,12/1/2001,0.02,,5761,,,2889,16403602943,0.071,291,,0.011,0.096,0.238,80,76,0.081,1,0.308,0.637,0.055,4013488,0.604,The Americas,1339000000,434000000 Cuba,12/1/2001,0.013,,25453,,,12588,31683300000,0.063,178,,0.006,0.011,,79,75,0.001,1,0.213,0.687,0.101,11175465,0.756,The Americas,1840000000, Curacao,12/1/2001,,,,,,,,,,,,,,,,,1,0.242,0.651,0.107,128905,0.91,The Americas,271000000, Dominica,12/1/2001,,,114,,,,330949850,0.05,236,,0.013,0.132,0.111,,,0.111,1,,,,69660,0.654,The Americas,46000000,9000000 Dominican Republic,12/1/2001,0.025,,20235,,,7291,24894907435,0.062,173,,0.032,0.044,0.243,74,68,0.144,1,0.345,0.602,0.053,8799298,0.626,The Americas,2798000000,425000000 Ecuador,12/1/2001,0.025,,23447,,,8442,24468324000,0.04,77,,0.027,0.027,0.162,77,71,0.067,1,0.342,0.606,0.052,12780869,0.608,The Americas,438000000,465000000 El Salvador,12/1/2001,0.024,,5948,,,4151,13812700000,0.08,184,,0.025,0.015,,75,65,0.143,1,0.379,0.564,0.057,5985299,0.595,The Americas,452000000,247000000 Greenland,12/1/2001,0.017,,539,,,,1086170639,,,,,0.355,,70,65,0.282,1,,,,56350,0.818,The Americas,, Grenada,12/1/2001,0.019,,194,,,,523279846,0.076,392,,0.013,0.051,0.102,73,68,0.063,1,0.341,0.582,0.077,101849,0.361,The Americas,83000000,8000000 Guatemala,12/1/2001,0.036,,10627,,,7188,18702820735,0.064,105,,0.039,0.017,0.19,72,65,0.1,1,0.439,0.52,0.041,11478984,0.455,The Americas,588000000,266000000 Guyana,12/1/2001,0.022,,1595,,,,696281469,0.058,54,,0.038,0.132,0.17,67,60,0.101,1,0.356,0.601,0.044,747657,0.286,The Americas,65000000,62000000 Haiti,12/1/2001,0.031,,1569,,,2054,3507981946,0.056,23,,0.073,0.003,0.34,59,56,0.01,1,0.398,0.561,0.04,8720247,0.373,The Americas,105000000,168000000 Honduras,12/1/2001,0.031,,5713,,,3224,7566517572,0.069,83,,0.03,0.014,0.238,73,68,0.037,1,0.419,0.541,0.04,6365040,0.46,The Americas,260000000,205000000 Jamaica,12/1/2001,0.019,,10627,,,3841,9104515930,0.051,178,,0.02,0.039,0.206,74,68,0.229,1,0.324,0.601,0.075,2605556,0.521,The Americas,1494000000,227000000 Mexico,12/1/2001,0.024,,394800,,,146302,724704000000,0.054,373,,0.02,0.07,0.128,77,72,0.207,1,0.337,0.613,0.05,105339877,0.75,The Americas,9190000000,6685000000 Nicaragua,12/1/2001,0.027,,3964,,,2544,5323146568,0.053,54,,0.031,0.014,0.186,73,67,0.032,1,0.403,0.559,0.038,5176685,0.55,The Americas,135000000,128000000 Panama,12/1/2001,0.024,,7008,,,2816,11807500000,0.077,293,,0.021,0.073,0.11,78,73,0.152,1,0.318,0.625,0.056,3116409,0.625,The Americas,665000000,227000000 Paraguay,12/1/2001,0.028,,3821,,,3919,7662595076,0.076,107,,0.027,0.011,0.283,73,68,0.211,1,0.377,0.578,0.045,5460621,0.56,The Americas,91000000,130000000 Peru,12/1/2001,0.024,,27165,,,11795,51295103189,0.047,96,,0.028,0.076,0.25,74,68,0.068,1,0.337,0.614,0.049,26372358,0.734,The Americas,763000000,773000000 Puerto Rico,12/1/2001,0.015,,,,,,69668635000,,,,,0.156,,81,73,0.429,1,0.233,0.652,0.115,3818774,0.943,The Americas,2728000000,1456000000 Sint Maarten (Dutch part),12/1/2001,,,,,,,,,,,,,,,,,1,,,,31189,1,The Americas,484000000,137000000 St. Kitts and Nevis,12/1/2001,0.017,,183,,,,455905602,0.038,378,,0.013,0.077,0.111,,,0.045,1,,,,46214,0.326,The Americas,62000000,8000000 St. Lucia,12/1/2001,0.019,,363,,,,708290496,0.062,278,,0.015,0.082,0.13,74,70,0.017,1,0.315,0.61,0.075,158650,0.275,The Americas,233000000,32000000 St. Martin (French part),12/1/2001,0.017,,,,,,,,,,,,,81,74,,1,,,,27782,,The Americas,, St. Vincent and the Grenadines,12/1/2001,0.019,,180,,,,431017935,0.036,145,,0.019,0.051,0.116,73,68,0.069,1,0.308,0.622,0.07,107989,0.455,The Americas,89000000,12000000 Suriname,12/1/2001,0.022,,2266,,,,763465571,0.084,136,,0.029,0.031,0.257,72,65,0.184,1,0.304,0.638,0.058,473312,0.665,The Americas,26000000,62000000 Trinidad and Tobago,12/1/2001,0.015,,25024,,,11762,8824873156,0.044,305,,0.025,0.154,0.157,72,65,0.201,1,0.246,0.687,0.067,1272347,0.106,The Americas,361000000,172000000 Turks and Caicos Islands,12/1/2001,,,15,,,,,,,,,,,,,,1,,,,20186,0.854,The Americas,311000000, United States,12/1/2001,0.014,,5601405,,,2230817,10625300000000,0.142,5138,,0.007,0.491,0.069,79,74,0.447,1,0.212,0.665,0.123,284968955,0.792,The Americas,109103000000,85610000000 Uruguay,12/1/2001,0.016,,5090,,,2712,20898788420,0.112,703,,0.014,0.111,0.486,79,71,0.156,1,0.244,0.624,0.132,3326762,0.923,The Americas,700000000,338000000 "Venezuela, RB",12/1/2001,0.023,,172525,,,57871,122910000000,0.06,295,,0.018,0.046,0.225,76,70,0.26,1,0.332,0.621,0.046,24870441,0.883,The Americas,677000000,1718000000 Virgin Islands (U.S.),12/1/2001,0.013,,,,,,,,,,,0.184,,81,75,0.378,1,0.253,0.658,0.089,108386,0.928,The Americas,1234000000, Algeria,12/1/2002,0.019,,90854,,,28773,56760288962,0.037,65,,0.032,0.016,0.086,71,68,0.014,1,0.318,0.641,0.041,32572977,0.615,Africa,111000000,248000000 Angola,12/1/2002,0.05,,12666,,,8304,12497346043,0.044,33,,0.126,0.003,0.973,48,45,0.009,1,0.477,0.499,0.025,14886574,0.339,Africa,51000000,52000000 Benin,12/1/2002,0.042,,2054,,,2262,2807657386,0.043,16,,0.085,0.007,,58,54,0.03,1,0.451,0.52,0.028,7414744,0.39,Africa,95000000,49000000 Botswana,12/1/2002,0.026,,4485,,,1916,5438856515,0.057,193,,0.054,0.034,0.162,49,48,0.184,1,0.372,0.598,0.03,1808976,0.544,Africa,324000000,197000000 Burkina Faso,12/1/2002,0.046,,1005,,,,3205592273,0.05,13,,0.094,0.002,,52,50,0.009,1,0.467,0.507,0.027,12296399,0.193,Africa,37000000,36000000 Burundi,12/1/2002,0.043,,220,,,,825394484,0.071,6,,0.086,0.001,0.195,50,48,0.007,1,0.476,0.495,0.028,7037727,0.087,Africa,1600000,14000000 Cameroon,12/1/2002,0.041,,3418,,,6518,10879778328,0.048,31,,0.087,0.004,0.18,53,51,0.042,1,0.449,0.518,0.034,16782044,0.467,Africa,124000000,205000000 Central African Republic,12/1/2002,0.039,,246,,,,991387865,0.042,11,,0.113,0.001,0.18,46,42,0.003,1,0.422,0.539,0.04,3767248,0.378,Africa,3000000,29000000 Chad,12/1/2002,0.051,,169,,,,1987622269,0.08,18,,0.104,0.002,0.18,48,46,0.004,1,0.491,0.481,0.028,8959964,0.217,Africa,25000000,80000000 Comoros,12/1/2002,0.039,,92,,,,251162421,0.034,15,,0.072,0.006,0.12,60,57,,1,0.413,0.556,0.031,556028,0.28,Africa,11000000, "Congo, Dem. Rep.",12/1/2002,0.047,,1544,,,17841,8728037672,0.042,5,,0.113,0.001,,48,46,0.011,1,0.464,0.508,0.028,49516960,0.361,Africa,, "Congo, Rep.",12/1/2002,0.039,,708,,,869,3019993723,0.025,23,,0.073,0.002,0.18,54,52,0.068,1,0.42,0.545,0.036,3283719,0.596,Africa,25600000,85000000 Cote d'Ivoire,12/1/2002,0.038,,7286,,,6946,11486664265,0.047,33,,0.096,0.005,,47,46,0.062,1,0.422,0.549,0.029,16674987,0.449,Africa,56000000,490000000 Djibouti,12/1/2002,0.029,,400,,,,591122040,0.054,42,,0.076,0.005,0.113,59,56,0.02,1,0.398,0.57,0.032,744434,0.766,Africa,8900000,7700000 "Egypt, Arab Rep.",12/1/2002,0.024,,127194,,,47162,87850680573,0.061,74,,0.031,0.027,0.138,71,67,0.066,1,0.342,0.604,0.054,68302914,0.429,Africa,4133000000,1309000000 Equatorial Guinea,12/1/2002,0.039,,4980,,,,1806742733,0.018,71,,0.094,0.003,0.18,49,47,0.058,1,0.419,0.546,0.035,551399,0.388,Africa,, Eritrea,12/1/2002,0.04,,605,,,748,729321364,0.04,6,,0.054,0.002,,59,55,,1,0.454,0.527,0.019,4281576,0.18,Africa,73000000, Ethiopia,12/1/2002,0.042,,4481,,,26867,7707034813,0.047,5,,0.083,0.001,0.087,55,53,0.001,1,0.465,0.504,0.031,69948344,0.151,Africa,261000000,55000000 Gabon,12/1/2002,0.033,,1778,,,1583,4931503836,0.037,142,,0.054,0.019,0.18,61,58,0.217,1,0.402,0.54,0.058,1285318,0.816,Africa,77000000,234000000 "Gambia, The",12/1/2002,0.045,,315,,,,578235310,0.038,17,,0.061,0.018,0.24,57,55,0.077,1,0.459,0.515,0.026,1306667,0.497,Africa,, Ghana,12/1/2002,0.034,,7437,,,8264,6166197192,0.048,15,,0.062,0.008,,58,57,0.02,1,0.409,0.559,0.032,19786307,0.453,Africa,383000000,184000000 Guinea,12/1/2002,0.041,,1324,,,,2949637039,0.061,20,,0.095,0.004,,51,51,0.01,1,0.439,0.527,0.034,9045748,0.317,Africa,,38000000 Guinea-Bissau,12/1/2002,0.041,,154,,,,406669723,0.058,17,,0.104,0.01,,53,51,,1,0.433,0.537,0.03,1330849,0.383,Africa,2300000,10200000 Kenya,12/1/2002,0.039,,7968,,,14454,13147736954,0.045,18,,0.066,0.012,0.185,54,52,0.036,1,0.435,0.538,0.028,33000524,0.206,Africa,513000000,126000000 Lesotho,12/1/2002,0.03,,,,,,656802669,0.069,24,,0.082,0.011,0.171,45,44,0.073,1,0.407,0.547,0.046,1885487,0.206,Africa,14000000,164000000 Liberia,12/1/2002,0.042,,502,,,,536000000,0.054,9,,0.104,0,0.202,54,52,0.002,1,0.432,0.537,0.031,3070673,0.45,Africa,, Libya,12/1/2002,0.023,,47832,,,16951,19842519685,0.049,185,,0.023,0.022,0.07,74,71,0.013,1,0.32,0.64,0.041,5340389,0.765,Africa,202000000,654000000 Madagascar,12/1/2002,0.04,,1236,,,,4397254715,0.052,14,,0.064,0.003,0.253,61,59,0.01,1,0.454,0.517,0.03,16736029,0.277,Africa,109000000,192000000 Malawi,12/1/2002,0.044,,884,,,,2665158943,0.048,11,,0.09,0.002,0.505,47,47,0.007,1,0.461,0.509,0.03,11926778,0.148,Africa,45000000,86000000 Mali,12/1/2002,0.048,,554,,,,3342824260,0.063,19,,0.109,0.002,,50,50,0.004,1,0.461,0.506,0.033,10882662,0.298,Africa,105000000,62000000 Mauritania,12/1/2002,0.038,,1434,,,,1324424463,0.06,24,,0.076,0.004,0.21,61,58,0.086,1,0.423,0.545,0.032,2877431,0.508,Africa,, Mauritius,12/1/2002,0.017,,2981,,,,4767303153,0.042,168,,0.014,0.103,0.21,76,69,0.29,1,0.252,0.685,0.064,1210196,0.423,Africa,829000000,223000000 Morocco,12/1/2002,0.021,,38254,,,11079,40416114690,0.053,73,,0.04,0.024,0.131,70,67,0.211,1,0.327,0.625,0.048,29311443,0.54,Africa,3157000000,669000000 Mozambique,12/1/2002,0.045,,1588,,,7645,4201332885,0.064,14,,0.104,0.003,0.267,49,46,0.013,1,0.441,0.527,0.032,19319894,0.295,Africa,65000000,115000000 Namibia,12/1/2002,0.031,,1760,,,1010,3361236321,0.062,106,,0.049,0.026,0.138,56,52,0.077,1,0.402,0.565,0.033,1958303,0.338,Africa,251000000,65000000 Niger,12/1/2002,0.052,,814,,,,2170481498,0.07,12,,0.094,0.001,,52,52,0.005,1,0.483,0.491,0.025,11817297,0.164,Africa,20000000,29000000 Nigeria,12/1/2002,0.043,,98125,,,97389,59116868250,0.039,18,,0.106,0.003,0.248,48,47,0.012,1,0.434,0.538,0.028,129224641,0.365,Africa,256000000,910000000 Rwanda,12/1/2002,0.04,,689,,,,1677447003,0.042,8,,0.092,0.003,0.164,51,50,0.009,1,0.459,0.513,0.029,8987523,0.168,Africa,31000000,24000000 Sao Tome and Principe,12/1/2002,0.037,,59,,,,84617971,0.106,59,,0.054,0.076,0.374,66,62,0.014,1,0.429,0.53,0.04,144447,0.553,Africa,6900000,1800000 Senegal,12/1/2002,0.04,,4547,,,2632,5333862344,0.051,26,,0.065,0.01,,60,57,0.053,1,0.447,0.521,0.032,10390050,0.406,Africa,210000000,112000000 Seychelles,12/1/2002,0.018,,543,,,,698083345,0.044,371,,0.012,0.143,0.106,77,69,0.541,1,0.267,0.654,0.079,83700,0.505,Africa,247000000,53000000 Sierra Leone,12/1/2002,0.043,,609,,,,1239004288,0.16,44,,0.136,0.002,0.222,40,39,0.015,1,0.428,0.548,0.024,4493047,0.361,Africa,38000000,39000000 Somalia,12/1/2002,0.048,,572,,,,,,,,0.105,0.001,,53,50,0.013,1,0.475,0.496,0.029,7825924,0.34,Africa,, South Africa,12/1/2002,0.024,,347687,,,109908,111101000000,0.085,205,,0.053,0.067,0.158,55,52,0.297,1,0.32,0.643,0.037,45808736,0.579,Africa,3695000000,2251000000 South Sudan,12/1/2002,0.041,,,,,,,,,,0.1,,,51,49,,1,0.445,0.524,0.031,7186820,0.168,Africa,, Sudan,12/1/2002,0.039,,8119,,,15205,14803423335,0.036,18,,0.066,0.004,,61,57,0.005,1,0.435,0.535,0.03,29186427,0.326,Africa,108000000,91000000 Swaziland,12/1/2002,0.032,,1126,,,,1224220675,0.052,58,,0.082,0.018,0.153,47,46,0.063,1,0.435,0.535,0.03,1082183,0.224,Africa,45000000,27000000 Tanzania,12/1/2002,0.042,,3590,,,14916,10805600069,0.034,10,,0.071,0.002,0.164,52,51,0.017,1,0.447,0.524,0.029,35806497,0.23,Africa,639000000,361000000 Togo,12/1/2002,0.039,,1232,,,2182,1474630199,0.05,14,,0.073,0.01,,55,53,0.032,1,0.436,0.536,0.028,5123674,0.338,Africa,16000000,26000000 Tunisia,12/1/2002,0.017,,21016,,,7814,23141757278,0.053,128,,0.023,0.053,,75,71,0.059,1,0.281,0.656,0.064,9781900,0.642,Africa,1831000000,303000000 Uganda,12/1/2002,0.048,,1668,,,,6178563467,0.075,18,,0.081,0.004,0.191,50,50,0.015,1,0.494,0.48,0.026,25943441,0.123,Africa,194000000, Zambia,12/1/2002,0.045,,1969,,,6633,3711284087,0.067,24,,0.091,0.005,0.452,44,43,0.013,1,0.461,0.511,0.027,10625423,0.354,Africa,64000000,109000000 Zimbabwe,12/1/2002,0.032,,11932,,,9692,6342116354,,,,0.059,0.04,0.365,43,43,0.027,1,0.417,0.548,0.035,12640922,0.346,Africa,76000000, Afghanistan,12/1/2002,0.048,,359,,,,4128818043,0.089,14,,0.091,0,,57,55,0.001,1,0.495,0.485,0.02,22202806,0.219,Asia,, Armenia,12/1/2002,0.013,,3044,,,1876,2376335048,0.054,42,,0.024,0.02,0.211,76,69,0.023,1,0.241,0.651,0.108,3047002,0.643,Asia,81000000,85000000 Azerbaijan,12/1/2002,0.014,,29615,,,11559,6236024951,0.045,34,,0.053,0.05,0.174,70,65,0.096,1,0.291,0.649,0.06,8171950,0.518,Asia,63000000,110000000 Bangladesh,12/1/2002,0.026,,33707,,,20756,47571130071,0.031,11,,0.059,0.001,0.16,67,66,0.008,1,0.359,0.6,0.041,137006279,0.248,Asia,59000000,309000000 Bhutan,12/1/2002,0.026,,418,,,,537050133,0.079,71,,0.053,0.017,0.153,62,62,,1,0.38,0.581,0.039,598455,0.276,Asia,8000000, Brunei Darussalam,12/1/2002,0.022,,5321,,,2157,5843329102,0.031,526,,0.008,0.153,0.055,78,75,0.444,1,0.298,0.673,0.029,346407,0.721,Asia,113000000,398000000 Cambodia,12/1/2002,0.027,,2208,,,3994,4284028138,0.064,22,,0.069,0.002,,67,61,0.03,1,0.388,0.572,0.04,12709336,0.188,Asia,509000000,64000000 China,12/1/2002,0.013,,3694242,,,1253831,1453830000000,0.048,54,,0.026,0.046,0.053,74,72,0.159,1,0.236,0.692,0.072,1280400000,0.384,Asia,21742000000,16759000000 Georgia,12/1/2002,0.012,,3388,,,2544,3395778661,0.087,64,,0.028,0.016,0.236,76,69,0.109,1,0.205,0.661,0.134,4357000,0.523,Asia,144000000,189000000 "Hong Kong SAR, China",12/1/2002,0.007,,36952,,,13195,166349000000,,,,,0.431,0.05,85,79,0.925,1,0.161,0.724,0.115,6744100,1,Asia,9849000000,12418000000 India,12/1/2002,0.025,,1226791,,,477540,523969000000,0.044,21,,0.062,0.015,0.119,64,62,0.012,1,0.334,0.621,0.045,1076705723,0.282,Asia,3300000000,4350000000 Indonesia,12/1/2002,0.021,,306737,,,164879,195661000000,0.022,20,,0.038,0.021,0.189,70,66,0.054,1,0.302,0.651,0.048,215038285,0.436,Asia,5797000000,5042000000 Japan,12/1/2002,0.009,,1216751,,,510390,3980820000000,0.079,2455,,0.003,0.466,0.019,85,78,0.643,1,0.142,0.675,0.182,127445000,0.816,Asia,6069000000,34977000000 Kazakhstan,12/1/2002,0.015,,151946,,,39679,24636598581,0.036,61,,0.034,0.017,,72,61,0.07,1,0.263,0.665,0.071,14858948,0.553,Asia,680000000,863000000 "Korea, Dem. Rep.",12/1/2002,0.017,,76109,,,19566,,,,,0.034,,,70,63,,1,0.256,0.68,0.065,23248059,0.596,Asia,, "Korea, Rep.",12/1/2002,0.01,,465632,,,198667,609020000000,0.048,581,,0.006,0.594,0.068,80,73,0.697,1,0.203,0.716,0.081,47622179,0.803,Asia,7621000000,11440000000 Kyrgyz Republic,12/1/2002,0.019,,4848,,,2422,1605640633,0.054,17,,0.039,0.03,0.248,72,64,0.011,1,0.335,0.609,0.056,4990700,0.353,Asia,48000000,27000000 Lao PDR,12/1/2002,0.029,,1177,,,,1758176653,0.04,13,,0.078,0.003,0.293,64,62,0.01,1,0.425,0.539,0.037,5545245,0.24,Asia,110000000,4000000 "Macao SAR, China",12/1/2002,0.008,,1525,,,,7008026415,,,,,0.252,0.061,80,76,0.622,1,0.208,0.718,0.074,444150,1,Asia,4428000000,512000000 Malaysia,12/1/2002,0.021,,135129,,,51009,100846000000,0.033,138,,0.008,0.323,0.065,75,71,0.371,1,0.321,0.639,0.04,24413795,0.639,Asia,8084000000,3330000000 Maldives,12/1/2002,0.022,,689,,,,828240882,0.052,152,,0.028,0.053,0.135,73,70,0.148,1,0.385,0.574,0.041,282743,0.3,Asia,337000000,60000000 Mongolia,12/1/2002,0.019,,8287,,,2586,1396555772,0.048,28,,0.044,0.02,0.355,67,61,0.088,1,0.323,0.64,0.037,2443231,0.593,Asia,143000000,125000000 Myanmar,12/1/2002,0.02,,9208,,,12968,,0.024,3,,0.056,0,0.15,65,61,0.001,1,0.296,0.656,0.048,49261313,0.277,Asia,136000000,34000000 Nepal,12/1/2002,0.031,,2710,,,8467,6050875807,0.056,14,,0.054,0.003,0.068,64,62,0.001,1,0.401,0.559,0.04,24102862,0.143,Asia,134000000,108000000 Pakistan,12/1/2002,0.029,,114084,,,65775,72306820396,0.03,15,,0.085,0.026,,65,64,0.011,1,0.402,0.558,0.04,149693684,0.338,Asia,562000000,491000000 Philippines,12/1/2002,0.029,,71338,,,38767,81357657790,0.028,28,,0.029,0.043,0.091,70,64,0.19,1,0.38,0.587,0.033,80953652,0.474,Asia,2018000000,1874000000 Singapore,12/1/2002,0.011,,47231,,,21005,91941791944,0.029,632,,0.003,0.47,0.053,81,77,0.801,1,0.206,0.717,0.077,4176000,1,Asia,4458000000,8212000000 Sri Lanka,12/1/2002,0.019,,11008,,,8199,17102623876,0.039,34,,0.013,0.011,0.132,76,69,0.048,1,0.261,0.673,0.065,18921000,0.184,Asia,594000000,438000000 Tajikistan,12/1/2002,0.029,,1881,,,2129,1221113795,0.045,9,,0.066,0.001,0.147,68,61,0.002,1,0.412,0.552,0.036,6404118,0.264,Asia,5000000,1700000 Thailand,12/1/2002,0.014,,215975,,,82257,126877000000,0.037,74,,0.018,0.075,0.069,75,68,0.274,1,0.234,0.696,0.07,63797841,0.338,Asia,10388000000,3888000000 Timor-Leste,12/1/2002,0.04,,161,,,,426700000,0.061,19,,0.076,,,63,60,,1,0.497,0.478,0.025,899367,0.25,Asia,, Turkmenistan,12/1/2002,0.023,,40245,,,15811,4462028989,0.033,63,,0.063,0.003,,68,60,0.002,1,0.349,0.607,0.044,4600171,0.464,Asia,, Uzbekistan,12/1/2002,0.021,,126915,,,53188,9687951055,0.054,21,,0.05,0.011,,70,64,0.007,1,0.357,0.598,0.045,25271850,0.371,Asia,68000000, Vietnam,12/1/2002,0.017,,70806,,,33441,37947904054,0.051,22,,0.026,0.019,0.091,79,69,0.023,1,0.298,0.637,0.065,79538700,0.255,Asia,, Albania,12/1/2002,0.017,,3751,,,1975,4449373456,0.065,89,,0.021,0.004,0.153,78,72,0.261,1,0.29,0.636,0.075,3051427,0.435,Europe,492000000,386000000 Andorra,12/1/2002,0.011,,532,,,,1456198796,0.058,1486,,0.004,0.113,,,,0.458,1,,,,71639,0.916,Europe,, Austria,12/1/2002,0.01,,67179,,,30447,207537000000,0.101,2599,,0.004,0.366,,82,76,0.832,1,0.167,0.677,0.156,8081957,0.658,Europe,12334000000,7743000000 Belarus,12/1/2002,0.009,,52390,,,25262,14594925393,0.065,96,,0.009,0.09,0.369,74,62,0.047,1,0.172,0.687,0.14,9865000,0.709,Europe,295000000,527000000 Belgium,12/1/2002,0.011,,107531,,,56375,252795000000,0.085,2075,,0.004,0.463,0.077,81,75,0.784,1,0.174,0.655,0.171,10332785,0.972,Europe,7598000000,11270000000 Bosnia and Herzegovina,12/1/2002,0.009,,22919,,,4407,6651226179,0.071,122,,0.007,0.026,0.127,77,73,0.192,1,0.197,0.686,0.117,3897579,0.393,Europe,307000000,112000000 Bulgaria,12/1/2002,0.009,,44635,,,18861,15979194511,0.076,154,,0.016,0.091,0.092,75,69,0.33,1,0.148,0.683,0.17,7868468,0.695,Europe,1392000000,1018000000 Croatia,12/1/2002,0.009,,21877,,,8245,26524896398,0.063,375,,0.007,0.178,0.128,78,71,0.522,1,0.167,0.671,0.163,4440000,0.559,Europe,3952000000,852000000 Cyprus,12/1/2002,0.013,,7022,,,2143,10557366162,0.061,882,,0.005,0.283,0.072,80,76,0.427,1,0.214,0.682,0.104,979877,0.687,Europe,2178000000,582000000 Czech Republic,12/1/2002,0.009,,120193,,,42535,78425201661,0.068,522,,0.005,0.239,0.067,79,72,0.843,1,0.157,0.704,0.139,10196916,0.738,Europe,3376000000,1797000000 Denmark,12/1/2002,0.012,,49266,,,19004,173881000000,0.093,3023,,0.004,0.643,0.071,79,75,0.834,1,0.187,0.664,0.149,5375931,0.853,Europe,4791000000,5838000000 Estonia,12/1/2002,0.01,,14936,,,4713,7324390332,0.048,256,,0.008,0.415,0.067,77,65,0.654,1,0.167,0.674,0.159,1379350,0.691,Europe,737000000,305000000 Faeroe Islands,12/1/2002,,,763,,,,1268445919,,,,,0.533,,82,77,0.727,1,,,,47751,0.38,Europe,, Finland,12/1/2002,0.011,,61078,,,34819,135184000000,0.078,2032,,0.003,0.624,0.048,82,75,0.869,1,0.178,0.669,0.153,5200598,0.825,Europe,2235000000,2438000000 France,12/1/2002,0.013,,380840,,,261182,1452030000000,0.106,2497,,0.004,0.302,0.066,83,76,0.643,1,0.187,0.651,0.162,61803229,0.764,Europe,40537000000,27808000000 Germany,12/1/2002,0.009,,828771,,,338553,2006590000000,0.107,2610,,0.004,0.488,0.097,81,75,0.707,1,0.151,0.676,0.173,82488495,0.732,Europe,26690000000,59496000000 Greece,12/1/2002,0.009,,93670,,,28321,146050000000,0.091,1223,,0.006,0.147,0.074,81,76,0.845,1,0.148,0.676,0.176,10983723,0.733,Europe,10005000000,2453000000 Hungary,12/1/2002,0.01,,56094,,,25601,66389489264,0.076,495,,0.009,0.167,0.102,77,68,0.677,1,0.163,0.683,0.154,10158608,0.651,Europe,3774000000,2211000000 Iceland,12/1/2002,0.014,,2171,,,3285,8907207933,0.102,3156,,0.003,0.791,0.154,83,79,0.908,1,0.228,0.656,0.117,287523,0.927,Europe,415000000,373000000 Ireland,12/1/2002,0.015,,43762,,,14673,123016000000,0.07,2221,,0.005,0.259,0.038,80,75,0.762,1,0.211,0.678,0.111,3931947,0.596,Europe,4228000000,3835000000 Isle of Man,12/1/2002,0.011,,,,,,1897606791,,,,,,,82,75,,1,,,,78338,0.519,Europe,, Italy,12/1/2002,0.009,,452632,,,172396,1225180000000,0.082,1761,,0.004,0.28,0.065,83,77,0.943,1,0.142,0.669,0.189,57059007,0.674,Europe,28192000000,19636000000 Kosovo,12/1/2002,0.021,,,,,1894,2702427047,,,,,,,70,66,,1,,,,1702310,,Europe,, Latvia,12/1/2002,0.009,,6652,,,4073,9314784080,0.063,248,,0.013,0.219,0.08,77,65,0.396,1,0.165,0.677,0.158,2310173,0.679,Europe,201000000,267000000 Liechtenstein,12/1/2002,0.012,,,,,,2688617885,,,,,0.595,,82,77,0.337,1,,,,33821,0.149,Europe,, Lithuania,12/1/2002,0.009,,13212,,,8865,14163949142,0.064,263,,0.009,0.177,0.068,78,66,0.481,1,0.187,0.669,0.144,3443067,0.668,Europe,556000000,334000000 Luxembourg,12/1/2002,0.012,,9417,,,3646,22568793525,0.083,4202,,0.003,0.398,,82,75,1.066,1,0.189,0.668,0.143,446175,0.853,Europe,2547000000,1963000000 "Macedonia, FYR",12/1/2002,0.012,,10935,,,2527,3791306758,0.093,170,,0.013,0.173,0.184,76,71,0.176,1,0.213,0.681,0.106,2074441,0.581,Europe,55000000,60000000 Malta,12/1/2002,0.01,,2299,,,734,4296164768,0.079,839,,0.006,0.289,0.06,81,76,0.674,1,0.193,0.69,0.117,395969,0.929,Europe,757000000,180000000 Moldova,12/1/2002,0.012,,3986,,,3096,1661818168,0.081,37,,0.023,0.038,0.235,71,63,0.085,1,0.219,0.676,0.105,3623062,0.456,Europe,72000000,109000000 Monaco,12/1/2002,,,,,,,2905973022,0.034,2985,,0.004,0.48,,,,0.456,1,,,,32653,1,Europe,, Montenegro,12/1/2002,0.013,,,,,,1284504509,0.086,180,,0.011,,,77,71,,1,0.207,0.671,0.121,612325,0.606,Europe,, Netherlands,12/1/2002,0.013,,172364,,,75706,437807000000,0.089,2411,,0.005,0.613,0.04,81,76,0.754,1,0.186,0.677,0.137,16148929,0.791,Europe,11745000000,14201000000 Norway,12/1/2002,0.012,,37429,,,24912,191927000000,0.104,4418,,0.004,0.728,0.087,82,77,0.835,1,0.2,0.651,0.149,4538159,0.77,Europe,2581000000,5610000000 Poland,12/1/2002,0.009,,296932,,,88855,198179000000,0.063,328,,0.007,0.212,0.12,79,70,0.363,1,0.18,0.692,0.127,38230364,0.618,Europe,4971000000,3440000000 Portugal,12/1/2002,0.011,,66820,,,25824,132286000000,0.093,1190,,0.005,0.194,,81,74,0.834,1,0.159,0.675,0.166,10419631,0.557,Europe,6595000000,2631000000 Romania,12/1/2002,0.01,,92174,,,38140,45988510814,0.046,97,,0.022,0.066,0.354,75,67,0.23,1,0.174,0.686,0.14,21730496,0.528,Europe,400000000,448000000 Russian Federation,12/1/2002,0.01,,1557665,,,623098,345110000000,0.06,142,,0.018,0.041,0.157,72,59,0.121,1,0.168,0.702,0.13,145408033,0.733,Europe,5278000000,11362000000 San Marino,12/1/2002,,,,,,,879957210,0.065,2894,,0.004,0.508,0.08,85,78,0.597,1,,,,28064,0.939,Europe,, Serbia,12/1/2002,0.01,,,,,15891,15102567925,0.089,179,,0.01,,0.197,75,70,,1,0.193,0.672,0.135,7500031,0.537,Europe,77000000,105000000 Slovak Republic,12/1/2002,0.01,,39252,,,18733,34638306042,0.056,256,,0.009,0.401,0.103,78,70,0.543,1,0.185,0.7,0.115,5376912,0.56,Europe,742000000,506000000 Slovenia,12/1/2002,0.009,,15420,,,6830,23136352386,0.086,1000,,0.004,0.278,0.132,80,72,0.838,1,0.151,0.702,0.147,1994530,0.508,Europe,1152000000,647000000 Spain,12/1/2002,0.01,,314519,,,128757,686296000000,0.073,1215,,0.005,0.204,0.043,83,76,0.811,1,0.145,0.686,0.169,41431558,0.765,Europe,35468000000,9366000000 Sweden,12/1/2002,0.011,,57425,,,51784,250961000000,0.092,2599,,0.003,0.706,0.056,82,78,0.892,1,0.181,0.647,0.172,8924958,0.841,Europe,5671000000,8221000000 Switzerland,12/1/2002,0.01,,40718,,,25888,286658000000,0.106,4190,,0.005,0.614,0.039,83,78,0.792,1,0.171,0.675,0.155,7284753,0.734,Europe,9117000000,7210000000 Turkey,12/1/2002,0.021,,205678,,,74248,232535000000,0.054,180,,0.03,0.114,,75,68,0.359,1,0.297,0.64,0.063,65022300,0.66,Europe,11901000000,1880000000 Ukraine,12/1/2002,0.009,,318684,,,135601,42392896031,0.063,55,,0.014,0.019,0.253,74,63,0.077,1,0.162,0.692,0.145,48202500,0.673,Europe,1001000000,794000000 United Kingdom,12/1/2002,0.011,,531939,,,218306,1620900000000,0.076,2065,,0.005,0.565,0.04,81,76,0.828,1,0.186,0.656,0.158,59370479,0.79,Europe,27819000000,51125000000 Bahrain,12/1/2002,0.02,,15698,,,6433,9632411109,0.039,510,,0.01,0.181,0.084,76,74,0.531,1,0.301,0.675,0.024,732541,0.884,Middle East,985000000,550000000 "Iran, Islamic Rep.",12/1/2002,0.018,,402178,,,138011,116421000000,0.051,102,,0.026,0.046,,72,69,0.034,1,0.308,0.647,0.045,67727274,0.655,Middle East,1607000000,3990000000 Iraq,12/1/2002,0.035,,87260,,,27981,,0.014,9,,0.035,0.005,,73,68,0.001,1,0.424,0.541,0.035,25238267,0.686,Middle East,45000000,26000000 Israel,12/1/2002,0.021,,63146,,,18809,112974000000,0.078,1334,,0.005,0.178,0.099,82,78,1.01,1,0.28,0.62,0.1,6570000,0.913,Middle East,2426000000,3322000000 Jordan,12/1/2002,0.031,,16887,,,5060,9580161951,0.097,189,,0.022,0.06,0.102,74,71,0.249,1,0.39,0.579,0.031,5038000,0.804,Middle East,1254000000,504000000 Kuwait,12/1/2002,0.022,,52753,,,20639,38138801497,0.036,661,,0.011,0.102,0.065,74,73,0.599,1,0.256,0.71,0.034,2048232,0.981,Middle East,320000000,3412000000 Lebanon,12/1/2002,0.017,,16039,,,5220,19152238806,0.1,546,,0.015,0.07,0.166,77,74,0.22,1,0.284,0.643,0.072,3515604,0.862,Middle East,4284000000,2683000000 Oman,12/1/2002,0.023,,25471,,,8818,20049414986,0.032,278,,0.013,0.069,0.085,75,71,0.201,1,0.366,0.609,0.024,2308409,0.715,Middle East,539000000,702000000 Qatar,12/1/2002,0.018,,28482,,,13711,19363735706,0.027,833,,0.01,0.102,,78,76,0.424,1,0.268,0.716,0.016,629745,0.967,Middle East,285000000,423000000 Saudi Arabia,12/1/2002,0.025,,326407,,,116953,188551000000,0.043,375,,0.018,0.064,,75,71,0.229,1,0.368,0.598,0.034,21825217,0.803,Middle East,,7370000000 Syrian Arab Republic,12/1/2002,0.029,,39068,,,16735,21582248882,0.049,57,,0.018,0.021,0.09,76,72,0.024,1,0.4,0.567,0.034,16994676,0.527,Middle East,970000000,760000000 United Arab Emirates,12/1/2002,0.016,,84704,,,40578,109816000000,0.027,917,,0.009,0.283,,76,74,0.753,1,0.243,0.746,0.01,3223969,0.811,Middle East,1332000000,3651000000 "Yemen, Rep.",12/1/2002,0.038,,15764,,,5100,10693278292,0.042,27,,0.064,0.005,0.177,62,60,0.026,1,0.476,0.497,0.028,18551068,0.273,Middle East,38000000,135000000 American Samoa,12/1/2002,,,,,,,,,,,,,,,,0.035,1,,,,58729,0.884,Oceania,, Australia,12/1/2002,0.013,,341002,,,109461,394442000000,0.084,1847,,0.005,,0.082,83,77,0.643,1,0.204,0.67,0.126,19651400,0.875,Oceania,13624000000,8494000000 Fiji,12/1/2002,0.024,,836,,,,1842691481,0.035,79,,0.02,0.062,0.081,71,65,0.11,1,0.334,0.629,0.037,816237,0.487,Oceania,384000000,79000000 French Polynesia,12/1/2002,0.019,,737,,,,,,,,,0.082,,76,70,0.213,1,0.303,0.652,0.045,245032,0.559,Oceania,471000000,264000000 Guam,12/1/2002,0.021,,,,,,,,,,,0.312,,78,73,0.448,1,0.302,0.641,0.058,157241,0.933,Oceania,, Kiribati,12/1/2002,0.027,,40,,,,72259046,0.088,76,,0.052,0.025,,68,63,0.006,1,0.389,0.576,0.035,85799,0.435,Oceania,, Marshall Islands,12/1/2002,,,84,,,,124735072,0.182,418,,0.033,0.023,,,,0.011,1,,,,52161,0.69,Oceania,3400000,300000 "Micronesia, Fed. Sts.",12/1/2002,0.028,,147,,,,241543396,0.079,178,,0.04,0.056,0.153,68,67,0.001,1,0.395,0.566,0.039,106983,0.223,Oceania,17000000,5000000 New Caledonia,12/1/2002,0.019,,2428,,,,,,,,,0.224,,79,71,0.367,1,0.281,0.657,0.062,221490,0.626,Oceania,156000000,104000000 New Zealand,12/1/2002,0.014,,33201,,,17119,66021205382,0.08,1244,,0.006,0.591,0.072,81,77,0.618,1,0.223,0.659,0.118,3948500,0.859,Oceania,3159000000,1386000000 Papua New Guinea,12/1/2002,0.034,,3513,,,,2999542369,0.046,24,,0.057,0.013,0.139,62,57,0.003,1,0.402,0.573,0.025,5660267,0.132,Oceania,2800000,60000000 Samoa,12/1/2002,0.03,,143,,,,256677700,0.055,83,,0.018,0.022,0.114,73,67,0.015,1,0.404,0.55,0.046,176592,0.219,Oceania,45000000, Solomon Islands,12/1/2002,0.035,,172,,,,341663054,0.061,48,,0.029,0.005,0.146,66,63,0.002,1,0.416,0.555,0.029,434880,0.166,Oceania,800000,8500000 Tonga,12/1/2002,0.029,,147,,,,181801947,0.05,92,,0.015,0.029,0.114,73,69,0.034,1,0.382,0.559,0.059,99083,0.231,Oceania,5900000,3200000 Vanuatu,12/1/2002,0.031,,84,,,,262603782,0.038,52,,0.019,0.035,0.074,70,67,0.025,1,0.408,0.56,0.033,193950,0.222,Oceania,72000000,11000000 Antigua and Barbuda,12/1/2002,0.02,,363,,,,806505874,0.043,433,,0.012,0.125,0.114,76,71,0.477,1,0.29,0.64,0.07,80030,0.311,The Americas,274000000,33000000 Argentina,12/1/2002,0.018,,123266,,,55386,123607000000,0.083,225,,0.017,0.109,0.517,78,71,0.175,1,0.273,0.626,0.101,37627545,0.895,The Americas,1716000000,2744000000 Aruba,12/1/2002,0.013,,2255,,,,1941094972,,,,,0.188,0.131,76,71,0.651,1,0.225,0.695,0.079,94995,0.46,The Americas,835000000,172000000 "Bahamas, The",12/1/2002,0.016,,1577,,,,6957996000,0.053,1183,,0.013,0.18,0.06,76,70,0.394,1,0.279,0.664,0.057,309039,0.821,The Americas,1773000000,338000000 Barbados,12/1/2002,0.013,,1228,,,,3168600000,0.074,677,,0.015,0.278,0.085,76,71,0.361,1,0.214,0.672,0.114,269524,0.335,The Americas,666000000,146000000 Belize,12/1/2002,0.028,,359,,,,932676403,0.044,162,,0.02,0.057,0.148,75,68,0.205,1,0.393,0.565,0.042,251766,0.471,The Americas,121000000,48000000 Bermuda,12/1/2002,0.013,,524,,,,3937228000,,,,,0.52,,81,76,0.473,1,,,,62912,1,The Americas,378000000,243000000 Bolivia,12/1/2002,0.03,,9567,,,3527,7905485216,0.065,58,,0.052,0.031,0.206,66,62,0.116,1,0.393,0.564,0.043,8843350,0.628,The Americas,143000000,114000000 Brazil,12/1/2002,0.02,,332267,,,195759,504221000000,0.072,203,,0.025,0.091,0.629,75,67,0.194,1,0.287,0.655,0.057,179393768,0.819,The Americas,2142000000,2929000000 Canada,12/1/2002,0.011,,519163,,,248220,752532000000,0.096,2254,,0.005,0.616,0.042,82,77,0.379,1,0.186,0.687,0.128,31362000,0.799,The Americas,12744000000,14257000000 Cayman Islands,12/1/2002,,,469,,,,,,,,,,,,,0.425,1,,,,44742,1,The Americas,607000000, Chile,12/1/2002,0.016,,55361,,,25568,70984568429,0.075,331,,0.008,0.221,0.078,81,75,0.395,1,0.267,0.658,0.075,15819522,0.866,The Americas,1221000000,932000000 Colombia,12/1/2002,0.022,,55661,,,25205,97933392356,0.057,135,,0.02,0.046,0.163,75,68,0.112,1,0.32,0.631,0.049,41216304,0.727,The Americas,1237000000,1355000000 Costa Rica,12/1/2002,0.019,,6326,,,3073,16844378578,0.08,332,,0.01,0.199,0.264,80,76,0.123,1,0.3,0.644,0.056,4093840,0.618,The Americas,1292000000,430000000 Cuba,12/1/2002,0.012,,26091,,,11729,33590400000,0.065,195,,0.006,0.038,,79,75,0.002,1,0.209,0.689,0.103,11212125,0.758,The Americas,1769000000, Curacao,12/1/2002,,,,,,,,,,,,,,,,,1,0.234,0.656,0.11,128804,0.909,The Americas,217000000,137000000 Dominica,12/1/2002,0.015,,103,,,,326998081,0.051,237,,0.013,0.184,0.11,79,75,0.174,1,,,,69806,0.657,The Americas,46000000,9000000 Dominican Republic,12/1/2002,0.024,,21500,,,7476,26570402719,0.063,176,,0.032,0.068,0.261,74,68,0.19,1,0.342,0.604,0.054,8935261,0.634,The Americas,2730000000,429000000 Ecuador,12/1/2002,0.025,,24690,,,9177,28548945000,0.048,105,,0.026,0.043,0.158,77,71,0.12,1,0.338,0.609,0.053,13030041,0.611,The Americas,449000000,507000000 El Salvador,12/1/2002,0.023,,6040,,,4232,14306700000,0.077,184,,0.024,0.019,,75,65,0.148,1,0.374,0.568,0.058,6008308,0.6,The Americas,521000000,266000000 Greenland,12/1/2002,0.017,,539,,,,1169136691,,,,,0.442,,71,65,0.352,1,,,,56609,0.821,The Americas,, Grenada,12/1/2002,0.019,,205,,,,544381962,0.066,353,,0.013,0.148,0.113,73,68,0.074,1,0.33,0.592,0.077,102099,0.361,The Americas,91000000,8000000 Guatemala,12/1/2002,0.036,,11096,,,7248,20776536920,0.062,110,,0.037,0.034,0.169,72,65,0.134,1,0.438,0.521,0.042,11765738,0.459,The Americas,647000000,329000000 Guyana,12/1/2002,0.022,,1580,,,,722460912,0.058,56,,0.037,,0.163,67,60,0.106,1,0.358,0.6,0.042,750629,0.285,The Americas,53000000,44000000 Haiti,12/1/2002,0.03,,1826,,,2309,3214632479,0.055,20,,0.071,0.009,0.342,60,56,0.016,1,0.394,0.566,0.04,8859635,0.389,The Americas,108000000,172000000 Honduras,12/1/2002,0.03,,6091,,,3380,7776459964,0.073,88,,0.029,0.026,0.227,73,69,0.05,1,0.414,0.545,0.04,6495801,0.466,The Americas,305000000,221000000 Jamaica,12/1/2002,0.018,,10301,,,3586,9718989517,0.049,180,,0.019,0.061,0.185,74,68,0.474,1,0.321,0.604,0.076,2615253,0.523,The Americas,1482000000,274000000 Mexico,12/1/2002,0.023,,391251,,,150843,741559000000,0.056,396,,0.019,0.119,0.082,77,72,0.243,1,0.334,0.615,0.051,106723661,0.754,The Americas,9547000000,7087000000 Nicaragua,12/1/2002,0.027,,4037,,,2636,5224213019,0.057,57,,0.03,0.017,0.183,74,68,0.045,1,0.397,0.565,0.039,5248577,0.552,The Americas,135000000,125000000 Panama,12/1/2002,0.023,,5871,,,2625,12272400000,0.08,310,,0.021,0.085,0.106,78,73,0.165,1,0.316,0.627,0.057,3178450,0.628,The Americas,710000000,252000000 Paraguay,12/1/2002,0.027,,3898,,,3885,6325151760,0.07,79,,0.026,0.018,0.387,73,69,0.299,1,0.372,0.582,0.045,5571371,0.566,The Americas,76000000,117000000 Peru,12/1/2002,0.023,,27187,,,11873,53992755100,0.048,102,,0.026,0.09,0.208,74,69,0.086,1,0.333,0.617,0.051,26729909,0.739,The Americas,836000000,806000000 Puerto Rico,12/1/2002,0.014,,,,,,72546194000,,,,,0.175,,82,74,0.434,1,0.23,0.653,0.117,3823701,0.943,The Americas,2486000000,1319000000 Sint Maarten (Dutch part),12/1/2002,,,,,,,,,,,,,,,,,1,,,,32566,1,The Americas,489000000,140000000 St. Kitts and Nevis,12/1/2002,0.017,,198,,,,478067954,0.037,374,,0.012,0.212,0.109,74,69,0.107,1,,,,46934,0.324,The Americas,57000000,8000000 St. Lucia,12/1/2002,0.018,,326,,,,723027643,0.064,289,,0.015,0.146,0.126,74,70,0.089,1,0.308,0.619,0.073,160217,0.263,The Americas,210000000,34000000 St. Martin (French part),12/1/2002,0.017,,,,,,,,,,,,,81,74,,1,,,,27450,,The Americas,, St. Vincent and the Grenadines,12/1/2002,0.019,,187,,,,462641610,0.039,168,,0.019,0.055,0.116,73,68,0.092,1,0.302,0.627,0.071,108150,0.459,The Americas,91000000,10000000 Suriname,12/1/2002,0.022,,2252,,,,1078402128,0.071,161,,0.029,0.042,0.222,72,65,0.226,1,0.303,0.639,0.059,480099,0.666,The Americas,17000000,54000000 Trinidad and Tobago,12/1/2002,0.015,,26890,,,12540,9008273516,0.05,352,,0.025,0.22,0.125,73,65,0.206,1,0.238,0.694,0.068,1277723,0.104,The Americas,402000000,208000000 Turks and Caicos Islands,12/1/2002,,,99,,,,,,,,,,,,,,1,,,,21740,0.86,The Americas,292000000, United States,12/1/2002,0.014,,5650950,,,2255957,10980200000000,0.151,5578,,0.007,0.588,0.047,80,74,0.489,1,0.21,0.667,0.123,287625193,0.794,The Americas,104427000000,81860000000 Uruguay,12/1/2002,0.016,,4620,,,2538,13606494599,0.11,449,,0.014,0.114,1.184,79,71,0.154,1,0.243,0.624,0.133,3327500,0.926,The Americas,409000000,243000000 "Venezuela, RB",12/1/2002,0.023,,193262,,,57515,92889586976,0.057,207,,0.017,0.049,0.366,76,70,0.258,1,0.327,0.625,0.047,25333622,0.884,The Americas,484000000,1546000000 Virgin Islands (U.S.),12/1/2002,0.015,,,,,,,,,,,0.275,,81,75,0.416,1,0.246,0.662,0.093,108208,0.93,The Americas,1195000000, Algeria,12/1/2003,0.02,,92533,25,,30698,67863832648,0.036,74,,0.031,0.022,0.081,71,68,0.044,1,0.307,0.651,0.042,33003442,0.623,Africa,112000000,255000000 Angola,12/1/2003,0.05,,9065,119,,9004,14188949240,0.049,45,,0.125,0.004,0.961,49,46,0.023,1,0.477,0.498,0.025,15421075,0.346,Africa,63000000,49000000 Benin,12/1/2003,0.041,,2321,32,,2386,3557229702,0.046,21,,0.082,0.01,,58,55,0.031,1,0.449,0.522,0.028,7665681,0.393,Africa,108000000,53000000 Botswana,12/1/2003,0.026,,4265,107,,1907,7511538765,0.043,190,,0.051,0.033,0.164,48,47,0.243,1,0.367,0.602,0.031,1832602,0.546,Africa,459000000,235000000 Burkina Faso,12/1/2003,0.045,,1078,40,,,4205691122,0.055,19,,0.091,0.004,,53,51,0.019,1,0.466,0.508,0.026,12659086,0.2,Africa,38000000,50000000 Burundi,12/1/2003,0.043,,165,13,,,784654424,0.072,6,,0.082,0.002,0.182,50,48,0.009,1,0.468,0.504,0.028,7264340,0.089,Africa,1200000,15000000 Cameroon,12/1/2003,0.041,,3795,45,,6766,13621809574,0.049,39,,0.084,0.006,0.18,53,51,0.063,1,0.447,0.52,0.033,17223277,0.473,Africa,266000000,272000000 Central African Republic,12/1/2003,0.038,,235,22,,,1139754772,0.044,13,,0.112,0.002,0.18,46,43,0.01,1,0.421,0.539,0.04,3829636,0.379,Africa,4000000,31000000 Chad,12/1/2003,0.05,,381,64,,,2736666451,0.058,17,,0.103,0.003,0.18,48,46,0.007,1,0.492,0.481,0.027,9311234,0.217,Africa,, Comoros,12/1/2003,0.039,,99,,,,324470869,0.036,21,,0.072,0.008,0.118,60,57,0.004,1,0.414,0.556,0.03,570491,0.279,Africa,16000000,8000000 "Congo, Dem. Rep.",12/1/2003,0.047,,1698,166,,18503,8937565919,0.051,6,,0.111,0.001,,49,46,0.024,1,0.464,0.508,0.028,50972323,0.365,Africa,, "Congo, Rep.",12/1/2003,0.039,,1085,37,,999,3495868725,0.026,27,,0.07,0.005,0.18,54,52,0.098,1,0.421,0.544,0.036,3363418,0.601,Africa,30000000,118000000 Cote d'Ivoire,12/1/2003,0.037,,5460,62,,6578,13737482343,0.051,42,,0.094,0.008,,47,46,0.076,1,0.422,0.548,0.029,16909801,0.455,Africa,76000000,551000000 Djibouti,12/1/2003,0.029,,407,,,,622044666,0.062,50,,0.075,0.006,0.113,59,56,0.03,1,0.39,0.578,0.032,755085,0.767,Africa,6900000,9900000 "Egypt, Arab Rep.",12/1/2003,0.024,,147963,37,,48971,82923680622,0.056,56,,0.029,0.04,0.135,72,67,0.083,1,0.335,0.61,0.054,69432477,0.429,Africa,4704000000,1465000000 Equatorial Guinea,12/1/2003,0.038,,6018,,,,2484745876,0.02,101,,0.092,0.005,0.18,49,47,0.073,1,0.415,0.551,0.034,568552,0.388,Africa,, Eritrea,12/1/2003,0.04,,726,,,804,870247702,0.032,6,,0.051,,,60,55,,1,0.446,0.535,0.019,4472533,0.183,Africa,74000000, Ethiopia,12/1/2003,0.041,,4947,46,,27648,8465744001,0.049,6,,0.079,0.001,0.07,55,54,0.001,1,0.465,0.504,0.031,71989666,0.153,Africa,336000000,63000000 Gabon,12/1/2003,0.033,,1335,,,1593,6054883172,0.038,174,,0.053,0.027,0.18,61,58,0.228,1,0.399,0.543,0.057,1315820,0.822,Africa,84000000,239000000 "Gambia, The",12/1/2003,0.045,,315,,,,487038678,0.042,15,,0.059,0.024,0.293,57,55,0.111,1,0.459,0.515,0.026,1348548,0.506,Africa,58000000,8000000 Ghana,12/1/2003,0.034,,7631,22,,8226,7632720680,0.048,18,,0.06,0.012,,59,57,0.039,1,0.407,0.561,0.032,20301686,0.46,Africa,441000000,216000000 Guinea,12/1/2003,0.041,,1342,40,,,3446442219,0.049,18,,0.092,0.005,,52,52,0.012,1,0.438,0.529,0.033,9204581,0.321,Africa,,36000000 Guinea-Bissau,12/1/2003,0.041,,194,,,,465414408,0.058,20,,0.101,0.014,,53,51,0.001,1,0.431,0.539,0.03,1360559,0.392,Africa,2400000,21300000 Kenya,12/1/2003,0.039,,6755,60,,14769,14904504019,0.044,20,,0.065,0.029,0.166,54,52,0.047,1,0.432,0.541,0.028,33905011,0.209,Africa,619000000,127000000 Lesotho,12/1/2003,0.03,,,93,,,969181551,0.071,36,,0.083,0.015,0.16,44,44,0.066,1,0.404,0.55,0.046,1898757,0.211,Africa,21000000,242000000 Liberia,12/1/2003,0.041,,532,,,,409000000,0.034,5,,0.097,0,0.171,54,53,0.015,1,0.432,0.537,0.03,3124222,0.454,Africa,, Libya,12/1/2003,0.023,,49167,,,17441,24062500000,0.041,194,,0.022,0.028,0.07,75,71,0.023,1,0.315,0.644,0.041,5422612,0.767,Africa,243000000,689000000 Madagascar,12/1/2003,0.039,,1701,67,,,5474030228,0.048,15,,0.061,0.004,0.243,62,59,0.016,1,0.452,0.518,0.029,17245275,0.279,Africa,119000000,67000000 Malawi,12/1/2003,0.043,,957,45,,,2424656666,0.063,13,,0.084,0.003,0.489,47,47,0.011,1,0.461,0.509,0.03,12238739,0.149,Africa,66000000,70000000 Mali,12/1/2003,0.048,,539,41,,,4362439887,0.062,24,,0.105,0.003,,50,51,0.022,1,0.462,0.506,0.032,11219737,0.305,Africa,136000000,94000000 Mauritania,12/1/2003,0.037,,1474,82,,,1563072653,0.054,23,,0.076,0.004,0.21,62,59,0.118,1,0.42,0.548,0.032,2965667,0.516,Africa,, Mauritius,12/1/2003,0.016,,3146,,,,5609836354,0.039,188,,0.014,0.122,0.21,76,69,0.384,1,0.249,0.687,0.064,1222811,0.42,Africa,960000000,236000000 Morocco,12/1/2003,0.021,,37561,36,,11018,49822651702,0.053,88,,0.038,0.034,0.126,70,67,0.249,1,0.32,0.631,0.049,29586937,0.543,Africa,3802000000,845000000 Mozambique,12/1/2003,0.045,,1918,153,,8063,4666197195,0.064,15,,0.099,0.004,0.247,49,46,0.022,1,0.444,0.525,0.032,19873460,0.296,Africa,106000000,141000000 Namibia,12/1/2003,0.03,,1874,85,,1076,4931280096,0.065,162,,0.049,0.034,0.147,56,52,0.113,1,0.401,0.565,0.033,1981237,0.347,Africa,383000000,101000000 Niger,12/1/2003,0.052,,880,35,,,2731416281,0.068,15,,0.09,0.002,,53,53,0.007,1,0.486,0.489,0.025,12254040,0.165,Africa,28000000,39000000 Nigeria,12/1/2003,0.043,,93138,36,,99007,67655840108,0.075,39,,0.103,0.006,0.207,48,47,0.024,1,0.435,0.538,0.028,132550146,0.374,Africa,58000000,2076000000 Rwanda,12/1/2003,0.039,,682,18,,,1845979351,0.063,13,,0.083,0.004,0.171,53,51,0.014,1,0.452,0.521,0.027,9126167,0.176,Africa,30000000,26000000 Sao Tome and Principe,12/1/2003,0.037,,66,,,,101315400,0.118,78,,0.052,0.102,0.296,66,62,0.033,1,0.426,0.534,0.04,147455,0.563,Africa,7400000,1800000 Senegal,12/1/2003,0.039,,5013,59,,2556,6858952717,0.054,35,,0.062,0.021,,61,58,0.073,1,0.445,0.524,0.032,10673535,0.408,Africa,269000000,129000000 Seychelles,12/1/2003,0.018,,557,,,,703096503,0.048,403,,0.012,0.146,0.106,76,66,0.585,1,0.258,0.664,0.078,82800,0.506,Africa,258000000,54000000 Sierra Leone,12/1/2003,0.043,,653,26,,,1371442566,0.155,45,,0.133,0.002,0.2,41,40,0.024,1,0.428,0.548,0.024,4712763,0.364,Africa,60000000,38000000 Somalia,12/1/2003,0.047,,576,,,,,,,,0.105,0.004,,53,50,0.025,1,0.476,0.495,0.029,8037706,0.344,Africa,, South Africa,12/1/2003,0.023,,380811,38,,117374,168219000000,0.086,310,,0.053,0.07,0.15,54,51,0.36,1,0.316,0.645,0.039,46409243,0.584,Africa,6674000000,3655000000 South Sudan,12/1/2003,0.041,,,,,,,,,,0.095,,,51,49,,1,0.444,0.525,0.031,7449905,0.169,Africa,, Sudan,12/1/2003,0.039,,9072,,,14725,17646271397,0.038,23,,0.064,0.005,,61,57,0.014,1,0.435,0.535,0.03,29973979,0.327,Africa,17000000,119000000 Swaziland,12/1/2003,0.032,,1041,,,,1854020496,0.058,98,,0.082,0.024,0.146,46,46,0.078,1,0.43,0.539,0.031,1087929,0.223,Africa,70000000,23000000 Tanzania,12/1/2003,0.042,,3806,28,,15491,11659129815,0.037,12,,0.066,0.007,0.145,53,51,0.035,1,0.446,0.524,0.03,36760831,0.236,Africa,654000000,375000000 Togo,12/1/2003,0.039,,1463,65,,2303,1673690390,0.056,18,,0.072,0.012,,55,53,0.046,1,0.433,0.539,0.028,5258956,0.343,Africa,26000000,37000000 Tunisia,12/1/2003,0.017,,21397,11,,8028,27453084983,0.054,151,,0.022,0.065,,75,71,0.195,1,0.272,0.663,0.065,9839800,0.646,Africa,1935000000,355000000 Uganda,12/1/2003,0.047,,1709,34,,,6336696289,0.076,18,,0.077,0.005,0.189,51,51,0.029,1,0.494,0.481,0.026,26838428,0.125,Africa,185000000, Zambia,12/1/2003,0.045,,2101,35,,6828,4341841414,0.067,27,,0.086,0.01,0.406,45,44,0.022,1,0.464,0.509,0.027,10894519,0.358,Africa,88000000,115000000 Zimbabwe,12/1/2003,0.032,,10627,97,,9500,5727591778,,,,0.058,0.064,0.973,42,43,0.029,1,0.416,0.549,0.035,12673103,0.345,Africa,61000000, Afghanistan,12/1/2003,0.047,,583,,,,4583648922,0.1,18,,0.088,0.001,,57,55,0.009,1,0.494,0.485,0.02,23116142,0.222,Asia,, Armenia,12/1/2003,0.014,,3429,18,,1981,2807061009,0.056,51,,0.023,0.046,0.208,76,69,0.038,1,0.233,0.655,0.112,3036032,0.643,Asia,90000000,97000000 Azerbaijan,12/1/2003,0.014,,30616,105,,12158,7275766111,0.066,57,,0.05,,0.155,71,65,0.126,1,0.28,0.658,0.062,8234100,0.52,Asia,70000000,120000000 Bangladesh,12/1/2003,0.025,,33883,50,,21713,51913661485,0.03,11,,0.056,0.002,0.16,67,66,0.01,1,0.354,0.605,0.042,139185986,0.254,Asia,59000000,389000000 Bhutan,12/1/2003,0.025,,378,62,,,622026107,0.051,51,,0.051,0.024,0.15,63,62,0.004,1,0.365,0.595,0.04,616383,0.287,Asia,8000000, Brunei Darussalam,12/1/2003,0.021,,5357,,,2505,6557333067,0.031,575,,0.008,0.196,0.055,79,75,0.502,1,0.295,0.675,0.03,353649,0.726,Asia,124000000,469000000 Cambodia,12/1/2003,0.026,,2380,94,,4115,4658246907,0.073,26,,0.063,0.003,,68,62,0.039,1,0.379,0.58,0.041,12934369,0.189,Asia,441000000,60000000 China,12/1/2003,0.012,,4525177,48,,1427554,1640960000000,0.048,61,,0.024,0.062,0.053,75,72,0.207,1,0.225,0.702,0.074,1288400000,0.398,Asia,18707000000,16716000000 Georgia,12/1/2003,0.012,,3773,25,,2705,3991374540,0.085,74,,0.026,0.026,0.238,76,69,0.156,1,0.197,0.664,0.139,4328900,0.524,Asia,172000000,170000000 "Hong Kong SAR, China",12/1/2003,0.007,,40066,11,,13608,161385000000,,,,,0.522,0.05,84,79,1.064,1,0.155,0.728,0.117,6730800,1,Asia,9004000000,11447000000 India,12/1/2003,0.024,,1281914,89,,489507,618356000000,0.043,24,,0.06,0.017,0.115,65,62,0.031,1,0.33,0.624,0.046,1093786762,0.286,Asia,4560000000,4385000000 Indonesia,12/1/2003,0.021,,316792,168,,165366,234772000000,0.025,27,,0.036,0.024,0.169,70,66,0.085,1,0.301,0.651,0.048,218145617,0.444,Asia,4461000000,4427000000 Japan,12/1/2003,0.009,,1237429,31,,506237,4302940000000,0.08,2693,,0.003,0.484,0.018,85,78,0.685,1,0.141,0.672,0.188,127718000,0.832,Asia,11475000000,36505000000 Kazakhstan,12/1/2003,0.017,,153816,26,,43041,30833692831,0.037,77,,0.032,0.02,,72,61,0.09,1,0.257,0.67,0.074,14909018,0.551,Asia,638000000,783000000 "Korea, Dem. Rep.",12/1/2003,0.016,,77777,,,20027,,,,,0.03,,,71,64,,1,0.253,0.679,0.068,23449180,0.596,Asia,, "Korea, Rep.",12/1/2003,0.01,,466215,17,,202717,680521000000,0.052,695,,0.005,0.655,0.062,81,74,0.721,1,0.199,0.716,0.085,47859311,0.807,Asia,7005000000,11063000000 Kyrgyz Republic,12/1/2003,0.021,,5328,21,,2584,1919012781,0.054,21,,0.037,0.039,0.191,72,65,0.028,1,0.326,0.617,0.057,5043300,0.353,Asia,62000000,35000000 Lao PDR,12/1/2003,0.029,,1129,153,,,2023324407,0.049,18,,0.075,0.003,0.305,65,62,0.02,1,0.418,0.545,0.037,5619069,0.251,Asia,77000000,5000000 "Macao SAR, China",12/1/2003,0.008,,1536,,,,7926373572,,,,,0.257,0.06,81,76,0.808,1,0.197,0.73,0.074,450711,1,Asia,5225000000,471000000 Malaysia,12/1/2003,0.02,,160266,37,,54619,110202000000,0.039,172,,0.007,0.35,0.063,76,71,0.447,1,0.315,0.644,0.042,24890654,0.648,Asia,6799000000,3401000000 Maldives,12/1/2003,0.022,,598,13,,,949867662,0.06,199,,0.025,0.06,0.14,74,71,0.231,1,0.37,0.587,0.043,287594,0.313,Asia,402000000,60000000 Mongolia,12/1/2003,0.019,,8034,20,,2525,1595297301,0.074,48,,0.042,,0.319,68,61,0.129,1,0.311,0.652,0.037,2468595,0.604,Asia,154000000,144000000 Myanmar,12/1/2003,0.02,,9846,,,14064,,0.023,4,,0.054,0,0.15,65,61,0.001,1,0.29,0.661,0.048,49577152,0.281,Asia,70000000,36000000 Nepal,12/1/2003,0.03,,2952,31,,8707,6330476435,0.054,14,,0.052,0.004,0.074,65,63,0.003,1,0.399,0.559,0.041,24525527,0.146,Asia,232000000,119000000 Pakistan,12/1/2003,0.029,,118895,24,,68695,83244801093,0.029,16,,0.083,0.05,,65,64,0.016,1,0.395,0.564,0.04,152419974,0.341,Asia,620000000,1163000000 Philippines,12/1/2003,0.028,,71532,49,,38822,83908205720,0.032,33,,0.029,0.049,0.095,71,64,0.272,1,0.377,0.59,0.033,82604681,0.471,Asia,1821000000,1649000000 Singapore,12/1/2003,0.011,,31133,8,,25634,97002305536,0.036,823,,0.003,0.538,0.053,82,77,0.841,1,0.201,0.72,0.079,4114800,1,Asia,3842000000,8382000000 Sri Lanka,12/1/2003,0.019,,10660,58,,8682,18881765437,0.039,38,,0.013,0.015,0.103,77,70,0.071,1,0.258,0.675,0.067,19173000,0.184,Asia,709000000,462000000 Tajikistan,12/1/2003,0.029,,2076,,,2170,1554125543,0.045,11,,0.061,0.001,0.167,69,61,0.007,1,0.402,0.561,0.037,6529609,0.264,Asia,6200000,2100000 Thailand,12/1/2003,0.013,,232198,33,,89107,142640000000,0.036,79,,0.017,0.093,0.059,75,68,0.335,1,0.231,0.696,0.073,64488338,0.35,Asia,10456000000,3538000000 Timor-Leste,12/1/2003,0.039,,161,,,,436500000,0.075,24,,0.072,,0.167,63,60,0.021,1,0.491,0.483,0.026,933369,0.253,Asia,, Turkmenistan,12/1/2003,0.023,,42215,,,17629,5977440583,0.038,95,,0.062,0.004,,68,60,0.002,1,0.342,0.613,0.045,4648037,0.466,Asia,, Uzbekistan,12/1/2003,0.02,,122683,29,,51412,10128112401,0.052,20,,0.049,0.019,,71,64,0.013,1,0.349,0.605,0.046,25567650,0.37,Asia,48000000, Vietnam,12/1/2003,0.017,,78767,59,,35111,42717072778,0.052,25,,0.025,0.038,0.095,79,70,0.033,1,0.289,0.646,0.065,80468400,0.261,Asia,1400000000, Albania,12/1/2003,0.016,,4294,41,,1976,5652325082,0.062,108,,0.02,0.01,0.143,79,72,0.34,1,0.282,0.64,0.078,3033659,0.446,Europe,537000000,507000000 Andorra,12/1/2003,0.01,,535,,,,1917948475,0.058,1891,,0.003,0.135,,,,0.686,1,,,,75643,0.912,Europe,, Austria,12/1/2003,0.01,,72317,25,,32214,253946000000,0.103,3223,,0.004,0.427,,82,76,0.893,1,0.165,0.678,0.157,8121423,0.658,Europe,15128000000,9761000000 Belarus,12/1/2003,0.009,,53722,79,,26009,17825436035,0.066,120,,0.009,,0.24,75,63,0.114,1,0.166,0.691,0.143,9797000,0.714,Europe,339000000,436000000 Belgium,12/1/2003,0.011,,114836,56,,59242,311690000000,0.1,3000,,0.004,0.5,0.069,81,75,0.829,1,0.173,0.655,0.172,10376133,0.973,Europe,8848000000,13402000000 Bosnia and Herzegovina,12/1/2003,0.009,,23238,68,,4400,8370020196,0.08,174,,0.007,0.04,0.109,78,73,0.276,1,0.194,0.684,0.122,3895779,0.392,Europe,404000000,145000000 Bulgaria,12/1/2003,0.009,,47308,32,,19399,20668176834,0.076,201,,0.016,0.12,0.085,76,69,0.448,1,0.143,0.685,0.171,7823557,0.699,Europe,2051000000,1467000000 Croatia,12/1/2003,0.009,,23542,29,,8812,34143409062,0.064,495,,0.006,0.228,0.116,78,71,0.575,1,0.164,0.67,0.166,4440000,0.56,Europe,6513000000,709000000 Cyprus,12/1/2003,0.012,,7748,,,2332,13319544758,0.068,1235,,0.005,0.301,0.069,81,76,0.553,1,0.209,0.686,0.105,998142,0.686,Europe,2325000000,700000000 Czech Republic,12/1/2003,0.009,,122379,40,,44415,95292530753,0.071,666,,0.005,0.343,0.059,79,72,0.951,1,0.154,0.707,0.139,10193998,0.737,Europe,4069000000,2177000000 Denmark,12/1/2003,0.012,,55735,7,,20087,212622000000,0.095,3756,,0.004,0.763,,80,75,0.886,1,0.188,0.663,0.149,5390574,0.854,Europe,5271000000,6659000000 Estonia,12/1/2003,0.01,,17052,72,,5188,9845187817,0.049,352,,0.007,0.453,0.055,77,66,0.784,1,0.161,0.676,0.163,1370720,0.69,Europe,883000000,404000000 Faeroe Islands,12/1/2003,,,777,,,,1486861879,,,,,0.589,,82,77,0.787,1,,,,48308,0.387,Europe,, Finland,12/1/2003,0.011,,68888,31,,36747,164256000000,0.082,2572,,0.003,0.692,0.041,82,75,0.911,1,0.177,0.668,0.155,5213014,0.826,Europe,2676000000,2954000000 France,12/1/2003,0.013,,387591,41,,265879,1792220000000,0.108,3137,,0.004,0.361,0.066,83,76,0.689,1,0.186,0.651,0.163,62242474,0.766,Europe,45990000000,32618000000 Germany,12/1/2003,0.009,,833406,45,,338070,2423810000000,0.109,3206,,0.004,0.559,,81,76,0.773,1,0.148,0.673,0.179,82534176,0.732,Europe,30104000000,73203000000 Greece,12/1/2003,0.01,,95738,38,,29141,192850000000,0.089,1579,,0.006,0.178,0.068,81,77,0.81,1,0.146,0.674,0.18,11018324,0.737,Europe,10842000000,2439000000 Hungary,12/1/2003,0.009,,59072,52,,26136,83538373061,0.086,706,,0.008,0.216,0.096,77,68,0.783,1,0.16,0.685,0.155,10129552,0.655,Europe,4119000000,2700000000 Iceland,12/1/2003,0.014,,2167,,,3273,10969898924,0.106,4020,,0.003,0.831,0.12,83,80,0.965,1,0.225,0.658,0.117,289521,0.928,Europe,486000000,524000000 Ireland,12/1/2003,0.015,,43337,18,,14061,158730000000,0.073,2918,,0.005,0.343,0.028,81,76,0.873,1,0.208,0.681,0.111,3996521,0.599,Europe,5206000000,4832000000 Isle of Man,12/1/2003,,,,,,,2264911807,,,,,,,,,,1,,,,79001,0.519,Europe,, Italy,12/1/2003,0.009,,468349,23,,179423,1514500000000,0.082,2157,,0.004,0.29,0.058,83,77,0.981,1,0.142,0.667,0.192,57313203,0.675,Europe,32591000000,23731000000 Kosovo,12/1/2003,0.018,,,,,1994,3355083117,,,,,,,71,66,,1,,,,1703466,,Europe,, Latvia,12/1/2003,0.009,,7088,16,,4324,11186452601,0.062,295,,0.012,0.27,0.054,77,66,0.533,1,0.158,0.679,0.163,2287955,0.678,Europe,271000000,365000000 Liechtenstein,12/1/2003,0.01,,,,,,3070803431,,,,,0.588,,82,78,0.732,1,,,,34141,0.149,Europe,, Lithuania,12/1/2003,0.009,,12915,26,,9253,18608709857,0.065,351,,0.009,0.259,0.058,78,67,0.622,1,0.18,0.673,0.147,3415213,0.667,Europe,700000000,476000000 Luxembourg,12/1/2003,0.012,,9905,,,3843,29144582393,0.077,4984,,0.003,0.546,,81,75,1.206,1,0.189,0.668,0.144,451630,0.857,Europe,3149000000,2445000000 "Macedonia, FYR",12/1/2003,0.012,,11309,48,,2776,4756221629,0.093,212,,0.013,0.191,0.16,76,71,0.373,1,0.208,0.684,0.108,2080866,0.579,Europe,86000000,71000000 Malta,12/1/2003,0.01,,2582,,,826,5119621569,0.082,1074,,0.006,0.316,0.059,81,76,0.704,1,0.185,0.691,0.123,398582,0.932,Europe,869000000,238000000 Moldova,12/1/2003,0.012,,4290,42,,3360,1980901554,0.083,46,,0.021,0.074,0.193,72,64,0.122,1,0.208,0.683,0.108,3612874,0.455,Europe,79000000,118000000 Monaco,12/1/2003,,,,,,,3588988601,0.039,4216,,0.004,0.495,,,,0.457,1,,,,32968,1,Europe,, Montenegro,12/1/2003,0.013,,,,,,1707662608,0.091,254,,0.011,,,76,71,,1,0.205,0.67,0.125,613448,0.616,Europe,, Netherlands,12/1/2003,0.012,,175041,9,,78010,538313000000,0.098,3249,,0.005,0.644,0.03,81,76,0.818,1,0.186,0.676,0.138,16225302,0.803,Europe,14603000000,15887000000 Norway,12/1/2003,0.012,,42625,18,,27020,224881000000,0.106,5220,,0.004,0.781,0.047,82,77,0.891,1,0.199,0.653,0.148,4564855,0.772,Europe,2989000000,7089000000 Poland,12/1/2003,0.009,,304856,31,,91105,216801000000,0.062,354,,0.007,0.249,0.073,79,71,0.455,1,0.174,0.696,0.13,38204570,0.617,Europe,4733000000,3286000000 Portugal,12/1/2003,0.011,,61276,78,,25129,161932000000,0.097,1514,,0.004,0.297,,81,74,0.958,1,0.158,0.674,0.168,10458821,0.563,Europe,7634000000,2982000000 Romania,12/1/2003,0.01,,95940,29,,39525,59466017706,0.053,146,,0.021,0.089,0.254,75,68,0.317,1,0.166,0.691,0.143,21574326,0.529,Europe,523000000,572000000 Russian Federation,12/1/2003,0.01,,1604973,43,,645323,430348000000,0.056,167,,0.017,0.083,0.13,72,59,0.249,1,0.162,0.705,0.134,144667468,0.734,Europe,5879000000,13427000000 San Marino,12/1/2003,,,,,,,1122981525,0.051,2837,,0.004,0.5,0.075,85,78,0.589,1,,,,28700,0.94,Europe,, Serbia,12/1/2003,0.011,,,56,,16635,19550781969,0.088,171,,0.009,,0.155,75,70,,1,0.189,0.674,0.137,7480591,0.54,Europe,159000000,144000000 Slovak Republic,12/1/2003,0.01,,39494,103,,18639,45837416479,0.058,360,,0.009,0.43,0.085,78,70,0.683,1,0.179,0.706,0.116,5373374,0.559,Europe,876000000,662000000 Slovenia,12/1/2003,0.009,,15500,60,,6912,29152072068,0.086,1263,,0.004,0.319,0.108,81,73,0.873,1,0.147,0.703,0.15,1995733,0.507,Europe,1427000000,805000000 Spain,12/1/2003,0.01,,321097,114,,133196,883840000000,0.082,1730,,0.005,0.399,,83,76,0.886,1,0.145,0.687,0.169,42187645,0.768,Europe,43863000000,11330000000 Sweden,12/1/2003,0.011,,54781,16,,50618,314713000000,0.093,3277,,0.003,0.791,0.048,82,78,0.984,1,0.179,0.649,0.172,8958229,0.842,Europe,6548000000,9375000000 Switzerland,12/1/2003,0.01,,40205,20,,25996,334575000000,0.109,5002,,0.004,0.651,0.033,83,78,0.849,1,0.168,0.676,0.156,7339001,0.734,Europe,10493000000,8614000000 Turkey,12/1/2003,0.02,,218509,38,,77833,303005000000,0.053,232,,0.029,0.123,,75,68,0.423,1,0.293,0.643,0.064,65938265,0.666,Europe,13203000000,2113000000 Ukraine,12/1/2003,0.009,,352259,40,,144641,50132953288,0.069,73,,0.014,0.031,0.179,74,63,0.136,1,0.156,0.693,0.15,47812950,0.674,Europe,1204000000,953000000 United Kingdom,12/1/2003,0.012,,540640,13,,222080,1875140000000,0.078,2444,,0.005,0.648,0.037,81,76,0.909,1,0.183,0.658,0.159,59647577,0.793,Europe,30736000000,58627000000 Bahrain,12/1/2003,0.02,,16468,,,6752,11075116594,0.037,536,,0.01,0.216,0.083,76,74,0.574,1,0.294,0.683,0.023,772058,0.884,Middle East,1206000000,492000000 "Iran, Islamic Rep.",12/1/2003,0.018,,418859,29,,142649,135410000000,0.047,97,,0.024,0.069,,72,70,0.05,1,0.289,0.664,0.047,68543171,0.662,Middle East,1266000000,4120000000 Iraq,12/1/2003,0.035,,91118,,,27086,,0.044,16,,0.034,0.006,,73,68,0.003,1,0.422,0.543,0.035,25959531,0.687,Middle East,, Israel,12/1/2003,0.022,,65122,20,,19730,118673000000,0.077,1364,,0.005,0.196,0.106,82,78,1.042,1,0.28,0.62,0.1,6689700,0.914,Middle East,2473000000,3341000000 Jordan,12/1/2003,0.03,,17470,79,,5176,10193023726,0.092,187,,0.022,0.085,0.093,74,71,0.266,1,0.387,0.582,0.031,5164000,0.806,Middle East,1266000000,503000000 Kuwait,12/1/2003,0.022,,61657,35,,22001,47875837662,0.032,728,,0.01,0.224,0.054,75,73,0.671,1,0.256,0.71,0.034,2116353,0.982,Middle East,328000000,3750000000 Lebanon,12/1/2003,0.016,,18221,46,,5220,20082918740,0.093,498,,0.014,0.08,0.134,78,74,0.216,1,0.284,0.643,0.073,3690110,0.863,Middle East,6782000000,3319000000 Oman,12/1/2003,0.022,,32391,35,,9350,21542262852,0.032,294,,0.012,0.073,0.082,76,72,0.249,1,0.364,0.612,0.025,2389121,0.715,Middle East,546000000,804000000 Qatar,12/1/2003,0.017,,36157,,,14185,23533790531,0.041,1476,,0.01,0.192,,78,76,0.57,1,0.269,0.716,0.015,660238,0.969,Middle East,369000000,471000000 Saudi Arabia,12/1/2003,0.024,,327272,74,,121382,214573000000,0.04,384,,0.018,0.08,,75,72,0.317,1,0.359,0.608,0.033,22852333,0.805,Middle East,3418000000,4165000000 Syrian Arab Republic,12/1/2003,0.028,,54286,43,,16543,21828144686,0.051,60,,0.018,0.034,0.075,76,72,0.069,1,0.396,0.57,0.034,17298476,0.53,Middle East,877000000,734000000 United Arab Emirates,12/1/2003,0.016,,106842,19,,40190,124346000000,0.026,968,,0.009,0.295,,76,74,0.882,1,0.234,0.756,0.01,3369254,0.815,Middle East,1438000000,3956000000 "Yemen, Rep.",12/1/2003,0.037,,17305,72,,5667,11777768087,0.05,35,,0.061,0.006,0.18,63,60,0.035,1,0.47,0.503,0.027,19081306,0.278,Middle East,139000000,134000000 American Samoa,12/1/2003,,,,,,,,,,,,,,,,0.036,1,,,,59117,0.883,Oceania,, Australia,12/1/2003,0.013,,346476,3,,110814,466663000000,0.083,2323,,0.005,,0.084,83,78,0.719,1,0.202,0.671,0.127,19895400,0.877,Oceania,16647000000,10135000000 Fiji,12/1/2003,0.024,,862,45,,,2315935753,0.034,95,,0.02,0.067,0.076,71,66,0.134,1,0.324,0.638,0.038,817224,0.491,Oceania,496000000,88000000 French Polynesia,12/1/2003,0.019,,799,,,,,,,,,0.141,,76,71,0.242,1,0.294,0.659,0.046,248536,0.56,Oceania,651000000,335000000 Guam,12/1/2003,0.02,,,,,,,,,,,0.337,,79,74,0.506,1,0.3,0.64,0.06,157823,0.934,Oceania,, Kiribati,12/1/2003,0.026,,40,21,,,90148518,0.096,103,,0.051,0.03,,69,63,0.006,1,0.383,0.582,0.035,87371,0.435,Oceania,, Marshall Islands,12/1/2003,,,84,17,,,126887585,0.173,411,,0.033,0.026,,,,0.011,1,,,,52115,0.693,Oceania,4000000,300000 "Micronesia, Fed. Sts.",12/1/2003,0.028,,147,16,,,244990984,0.095,218,,0.039,0.092,0.15,68,67,0.055,1,0.393,0.568,0.039,106816,0.223,Oceania,17000000,6000000 New Caledonia,12/1/2003,0.018,,2750,,,,,,,,,0.264,,79,72,0.439,1,0.278,0.659,0.063,225735,0.629,Oceania,196000000,128000000 New Zealand,12/1/2003,0.014,,33938,12,,16847,87440435752,0.079,1602,,0.006,0.61,0.07,81,77,0.646,1,0.221,0.661,0.119,4027200,0.86,Oceania,4232000000,1649000000 Papua New Guinea,12/1/2003,0.034,,3968,51,,,3536459120,0.041,25,,0.057,0.014,0.134,62,58,0.003,1,0.401,0.573,0.026,5803302,0.131,Oceania,4900000,52000000 Samoa,12/1/2003,0.03,,150,42,,,301905953,0.051,93,,0.017,0.028,0.113,74,67,0.059,1,0.401,0.552,0.047,177677,0.217,Oceania,54000000, Solomon Islands,12/1/2003,0.035,,180,56,,,332736307,0.06,45,,0.029,0.006,0.147,66,63,0.002,1,0.415,0.556,0.029,446335,0.17,Oceania,1600000,6400000 Tonga,12/1/2003,0.029,,176,32,,,208098552,0.051,106,,0.014,0.03,0.113,74,69,0.112,1,0.382,0.559,0.06,99691,0.231,Oceania,10300000,13200000 Vanuatu,12/1/2003,0.031,,81,39,,,314463144,0.037,58,,0.018,0.039,0.059,71,67,0.039,1,0.404,0.564,0.032,198952,0.225,Oceania,83000000,14000000 Antigua and Barbuda,12/1/2003,0.019,,389,,,,849234754,0.044,457,,0.012,0.172,0.128,77,72,0.57,1,0.288,0.64,0.071,80904,0.305,The Americas,300000000,35000000 Argentina,12/1/2003,0.018,,133127,66,,59047,156989000000,0.082,280,,0.017,0.119,0.191,78,71,0.207,1,0.27,0.629,0.101,37970411,0.897,The Americas,2306000000,2997000000 Aruba,12/1/2003,0.013,,2255,,,,2021301676,,,,,0.208,0.115,76,72,0.721,1,0.221,0.698,0.081,97015,0.456,The Americas,858000000,213000000 "Bahamas, The",12/1/2003,0.016,,1518,,,,6949317000,0.056,1237,,0.013,0.2,0.06,76,70,0.387,1,0.271,0.67,0.059,315624,0.822,The Americas,1770000000,404000000 Barbados,12/1/2003,0.013,,1269,,,,3271200000,0.071,702,,0.015,0.397,0.085,76,71,0.517,1,0.211,0.677,0.112,270844,0.333,The Americas,767000000,153000000 Belize,12/1/2003,0.028,,374,,,,990350000,0.045,174,,0.019,,0.143,75,68,0.234,1,0.388,0.57,0.042,258346,0.469,The Americas,150000000,50000000 Bermuda,12/1/2003,0.013,,510,,,,4186525000,,,,,0.565,,81,76,0.628,1,,,,63325,1,The Americas,348000000,248000000 Bolivia,12/1/2003,0.03,,14129,60,,3688,8082396526,0.056,50,,0.049,0.035,0.177,66,62,0.142,1,0.39,0.567,0.043,9016787,0.633,The Americas,243000000,197000000 Brazil,12/1/2003,0.019,,321622,152,,198976,552469000000,0.07,214,,0.024,0.132,0.671,75,67,0.255,1,0.283,0.658,0.059,181752951,0.822,The Americas,2673000000,2874000000 Canada,12/1/2003,0.011,,553185,3,,262038,887752000000,0.098,2680,,0.005,0.642,0.047,82,77,0.421,1,0.183,0.689,0.129,31676000,0.8,The Americas,12236000000,16309000000 Cayman Islands,12/1/2003,,,480,,,,,,,,,,,,,0.457,1,,,,46032,1,The Americas,518000000, Chile,12/1/2003,0.016,,55078,27,,25833,77840186385,0.071,338,,0.008,0.255,0.062,81,75,0.454,1,0.261,0.662,0.077,15995658,0.869,The Americas,1309000000,1109000000 Colombia,12/1/2003,0.022,,57422,60,,25736,94684582573,0.059,134,,0.02,0.074,0.152,76,68,0.148,1,0.316,0.635,0.049,41872051,0.73,The Americas,1191000000,1349000000 Costa Rica,12/1/2003,0.018,,6626,77,,3297,17517536016,0.081,343,,0.009,0.203,0.256,81,76,0.187,1,0.293,0.65,0.057,4171145,0.631,The Americas,1424000000,434000000 Cuba,12/1/2003,0.012,,25486,,,11662,35901500000,0.063,202,,0.006,0.052,,79,75,0.003,1,0.204,0.691,0.105,11245926,0.759,The Americas,1999000000, Curacao,12/1/2003,,,,,,,,,,,,,,,,,1,0.225,0.66,0.114,131253,0.908,The Americas,223000000,176000000 Dominica,12/1/2003,,,114,,,,340803913,0.049,240,,0.013,0.236,0.115,,,0.34,1,,,,70058,0.66,The Americas,52000000,9000000 Dominican Republic,12/1/2003,0.024,,21888,77,,7479,21268012747,0.065,143,,0.031,0.079,0.314,74,68,0.231,1,0.338,0.607,0.055,9071318,0.646,The Americas,3128000000,408000000 Ecuador,12/1/2003,0.024,,26523,92,,9712,32432859000,0.067,164,,0.026,0.045,0.136,77,71,0.181,1,0.334,0.612,0.054,13279806,0.613,The Americas,408000000,500000000 El Salvador,12/1/2003,0.022,,6553,115,,4418,15046700000,0.073,182,,0.023,0.025,,75,66,0.191,1,0.369,0.572,0.059,6029366,0.606,The Americas,664000000,311000000 Greenland,12/1/2003,0.016,,532,,,,1426452030,,,,,0.545,,71,66,0.524,1,,,,56765,0.823,The Americas,, Grenada,12/1/2003,0.019,,216,,,,596339089,0.062,359,,0.013,0.186,0.12,73,69,0.413,1,0.319,0.603,0.077,102369,0.36,The Americas,104000000,8000000 Guatemala,12/1/2003,0.035,,10502,39,,7436,21917565500,0.064,116,,0.036,0.045,0.15,73,66,0.169,1,0.436,0.522,0.042,12062835,0.463,The Americas,646000000,373000000 Guyana,12/1/2003,0.022,,1566,,,,741929343,0.056,55,,0.037,,0.15,68,61,0.183,1,0.36,0.599,0.041,753612,0.284,The Americas,28000000,30000000 Haiti,12/1/2003,0.03,,1734,202,,2218,2826481072,0.053,17,,0.069,0.016,0.442,60,57,0.036,1,0.389,0.57,0.041,8996229,0.406,The Americas,96000000,202000000 Honduras,12/1/2003,0.03,,6769,62,,3647,8140294080,0.083,103,,0.028,0.048,0.208,74,69,0.057,1,0.409,0.55,0.041,6628171,0.472,The Americas,372000000,274000000 Jamaica,12/1/2003,0.017,,10722,31,,3728,9430236065,0.046,162,,0.019,0.078,0.189,74,68,0.596,1,0.318,0.606,0.076,2624695,0.524,The Americas,1621000000,269000000 Mexico,12/1/2003,0.023,,405633,58,,153665,713284000000,0.058,397,,0.018,0.129,0.07,78,73,0.279,1,0.33,0.618,0.051,108056312,0.757,The Americas,10058000000,7252000000 Nicaragua,12/1/2003,0.026,,4411,46,,2758,5322437648,0.061,61,,0.029,0.019,0.155,74,68,0.088,1,0.391,0.57,0.039,5317878,0.555,The Americas,160000000,139000000 Panama,12/1/2003,0.023,,6153,18,,2649,12933200000,0.076,303,,0.02,0.1,0.099,78,73,0.214,1,0.313,0.629,0.058,3240805,0.631,The Americas,804000000,267000000 Paraguay,12/1/2003,0.027,,4070,74,,3965,6588103836,0.061,71,,0.025,0.021,0.5,73,69,0.312,1,0.368,0.586,0.046,5682350,0.569,The Americas,81000000,115000000 Peru,12/1/2003,0.023,,26380,98,,11638,57840001637,0.045,102,,0.025,0.116,0.21,74,69,0.108,1,0.328,0.62,0.052,27073334,0.742,The Americas,1023000000,847000000 Puerto Rico,12/1/2003,0.013,,,7,,,75833996000,,,,,0.197,,82,74,0.452,1,0.227,0.654,0.118,3826095,0.942,The Americas,2677000000,1420000000 Sint Maarten (Dutch part),12/1/2003,,,,,,,,,,,,,,,,,1,,,,33791,1,The Americas,538000000,144000000 St. Kitts and Nevis,12/1/2003,,,220,,,,461576906,0.037,359,,0.012,0.23,0.122,,,0.461,1,,,,47679,0.323,The Americas,75000000,8000000 St. Lucia,12/1/2003,0.018,,359,,,,781338353,0.062,299,,0.015,0.21,0.15,74,70,0.612,1,0.3,0.628,0.072,161766,0.252,The Americas,282000000,36000000 St. Martin (French part),12/1/2003,0.017,,,,,,,,,,,,,81,74,,1,,,,27363,,The Americas,, St. Vincent and the Grenadines,12/1/2003,0.019,,194,,,,482397041,0.039,174,,0.019,0.065,0.118,73,69,0.581,1,0.296,0.632,0.072,108353,0.463,The Americas,91000000,13000000 Suriname,12/1/2003,0.021,,2241,,,,1271196078,0.066,173,,0.028,0.047,0.21,72,65,0.346,1,0.301,0.639,0.059,486867,0.667,The Americas,18000000,68000000 Trinidad and Tobago,12/1/2003,0.015,,27697,,,13541,11235960523,0.051,449,,0.025,0.26,0.112,73,65,0.262,1,0.23,0.701,0.069,1283868,0.102,The Americas,437000000,143000000 Turks and Caicos Islands,12/1/2003,,,103,,,,,,,,,,,,,,1,,,,23412,0.866,The Americas,, United States,12/1/2003,0.014,,5681664,6,,2261151,11512200000000,0.156,5993,,0.007,0.617,0.041,80,75,0.548,1,0.209,0.669,0.123,290107933,0.796,The Americas,101535000000,82091000000 Uruguay,12/1/2003,0.016,,4598,45,,2523,12045627411,0.097,351,,0.013,0.159,0.589,79,72,0.15,1,0.242,0.625,0.134,3325411,0.928,The Americas,419000000,236000000 "Venezuela, RB",12/1/2003,0.023,,192103,141,,52881,83622191419,0.059,190,,0.017,0.075,0.252,76,70,0.272,1,0.322,0.63,0.048,25797219,0.885,The Americas,378000000,1311000000 Virgin Islands (U.S.),12/1/2003,0.014,,,,,,,,,,,0.274,,81,75,0.455,1,0.238,0.666,0.096,108085,0.933,The Americas,1257000000, Algeria,12/1/2004,0.02,,89493,25,,30974,85324997370,0.035,90,,0.03,0.046,0.08,71,68,0.146,1,0.297,0.66,0.043,33461345,0.631,Africa,178000000,341000000 Angola,12/1/2004,0.05,,18793,119,,9676,19640862550,0.051,63,,0.123,0.005,0.823,49,47,0.046,1,0.477,0.498,0.025,15976715,0.354,Africa,82000000,86000000 Benin,12/1/2004,0.041,,2512,31,,2491,4050869968,0.046,23,,0.078,0.012,,58,55,0.058,1,0.447,0.525,0.028,7922796,0.396,Africa,121000000,59000000 Botswana,12/1/2004,0.026,,4378,107,,1857,8957491785,0.049,268,,0.046,0.033,0.158,48,47,0.282,1,0.362,0.607,0.032,1854739,0.548,Africa,582000000,280000000 Burkina Faso,12/1/2004,0.045,,1104,40,,,4838551014,0.061,24,,0.089,0.004,,53,51,0.03,1,0.466,0.508,0.026,13034258,0.208,Africa,52000000,67000000 Burundi,12/1/2004,0.043,,198,13,,,915257323,0.097,9,,0.079,0.003,0.183,51,48,0.013,1,0.461,0.512,0.028,7510771,0.091,Africa,1800000,29000000 Cameroon,12/1/2004,0.041,,3957,45,,6959,15775356737,0.046,41,,0.081,0.01,0.18,53,51,0.087,1,0.445,0.522,0.033,17674960,0.479,Africa,212000000,394000000 Central African Republic,12/1/2004,0.038,,213,22,,,1270080228,0.041,14,,0.111,0.002,0.18,46,43,0.015,1,0.42,0.54,0.04,3893595,0.38,Africa,7800000,32000000 Chad,12/1/2004,0.05,,378,64,,,4414929142,0.051,23,,0.102,0.004,0.18,48,47,0.013,1,0.492,0.481,0.027,9665024,0.218,Africa,, Comoros,12/1/2004,0.039,,103,,,34,362420484,0.04,25,,0.071,0.013,0.11,60,57,0.014,1,0.414,0.556,0.03,585389,0.279,Africa,21000000,9000000 "Congo, Dem. Rep.",12/1/2004,0.046,,1936,133,,19231,10297481118,0.054,7,,0.108,0.002,,49,46,0.038,1,0.463,0.509,0.028,52487293,0.37,Africa,, "Congo, Rep.",12/1/2004,0.039,,1181,37,,1020,4648628839,0.026,34,,0.066,0.011,0.18,55,52,0.111,1,0.422,0.543,0.035,3448868,0.605,Africa,23100000,176000000 Cote d'Ivoire,12/1/2004,0.037,,7664,58,,9302,15481092596,0.056,50,,0.091,0.008,,48,46,0.098,1,0.423,0.548,0.029,17144325,0.462,Africa,91000000,571000000 Djibouti,12/1/2004,0.029,,458,,,133,666072102,0.068,57,,0.073,0.008,0.112,59,56,0.045,1,0.381,0.586,0.033,765776,0.767,Africa,6800000,14000000 "Egypt, Arab Rep.",12/1/2004,0.024,,150912,37,,53536,78845185709,0.053,57,,0.027,0.119,0.134,72,67,0.108,1,0.33,0.616,0.054,70591288,0.43,Africa,6328000000,1543000000 Equatorial Guinea,12/1/2004,0.038,,5218,,,762,4410764261,0.021,191,,0.089,0.008,0.18,50,47,0.106,1,0.41,0.557,0.033,585983,0.388,Africa,, Eritrea,12/1/2004,0.04,,770,91,,744,1109054002,0.029,7,,0.049,,,60,56,0.004,1,0.44,0.541,0.019,4665522,0.186,Africa,73000000, Ethiopia,12/1/2004,0.04,,5244,34,,28377,9945571030,0.043,6,,0.074,0.002,0.07,56,55,0.002,1,0.464,0.505,0.031,74066147,0.155,Africa,458000000,59000000 Gabon,12/1/2004,0.033,,1767,,,1629,7178135606,0.034,180,,0.052,0.03,0.18,61,59,0.363,1,0.397,0.546,0.057,1347125,0.828,Africa,74000000,275000000 "Gambia, The",12/1/2004,0.044,,323,,,108,578785601,0.044,18,,0.058,0.033,0.365,58,55,0.126,1,0.46,0.515,0.026,1391934,0.515,Africa,51000000,6000000 Ghana,12/1/2004,0.034,,7349,22,,8267,8881419348,0.061,26,,0.059,0.017,,59,57,0.081,1,0.404,0.562,0.033,20835514,0.466,Africa,495000000,270000000 Guinea,12/1/2004,0.04,,1342,40,,,3666349049,0.053,20,,0.088,0.005,,52,52,0.017,1,0.437,0.53,0.033,9379621,0.324,Africa,,29000000 Guinea-Bissau,12/1/2004,0.04,,202,,,86,522651788,0.053,20,,0.099,0.018,,53,51,0.028,1,0.43,0.54,0.029,1390791,0.4,Africa,2200000,22300000 Kenya,12/1/2004,0.039,,7624,47,,15552,16095321631,0.043,20,,0.063,0.03,0.125,55,53,0.073,1,0.429,0.543,0.027,34834606,0.213,Africa,799000000,108000000 Lesotho,12/1/2004,0.029,,,93,,28,1234197704,0.07,45,,0.084,0.022,0.124,44,43,0.103,1,0.4,0.553,0.046,1912022,0.217,Africa,26000000,278000000 Liberia,12/1/2004,0.041,,627,,,,467000000,0.088,13,,0.09,0,0.181,55,53,0.03,1,0.433,0.537,0.03,3184643,0.457,Africa,59000000,29000000 Libya,12/1/2004,0.023,,50359,,,17796,33384615385,0.035,205,,0.021,0.035,0.061,75,72,0.091,1,0.31,0.648,0.042,5507000,0.768,Africa,261000000,789000000 Madagascar,12/1/2004,0.038,,1808,44,,,4363934417,0.049,12,,0.058,0.005,0.255,62,59,0.019,1,0.45,0.52,0.029,17763367,0.282,Africa,239000000,108000000 Malawi,12/1/2004,0.043,,975,39,,,2625127098,0.078,16,,0.078,0.003,0.368,48,48,0.018,1,0.461,0.508,0.03,12569091,0.15,Africa,74000000,70000000 Mali,12/1/2004,0.048,,565,41,,,4874178417,0.063,27,,0.101,0.004,,51,51,0.035,1,0.462,0.506,0.031,11572936,0.313,Africa,142000000,125000000 Mauritania,12/1/2004,0.037,,1632,82,,,1833445283,0.059,28,,0.075,0.005,0.21,62,59,0.171,1,0.418,0.551,0.032,3055425,0.524,Africa,, Mauritius,12/1/2004,0.016,,3194,46,,1019,6385691315,0.042,227,,0.014,0.137,0.21,76,69,0.453,1,0.246,0.689,0.065,1233386,0.418,Africa,1156000000,277000000 Morocco,12/1/2004,0.02,,43311,12,,12221,56948015336,0.052,99,,0.037,0.116,0.115,71,67,0.313,1,0.314,0.636,0.049,29855820,0.546,Africa,4540000000,912000000 Mozambique,12/1/2004,0.044,,1922,153,,8375,5697991241,0.059,16,,0.095,0.007,0.221,49,46,0.035,1,0.446,0.522,0.032,20438827,0.298,Africa,96000000,140000000 Namibia,12/1/2004,0.03,,1962,85,,1163,6606866450,0.065,213,,0.048,0.038,0.114,57,53,0.143,1,0.4,0.567,0.033,2003320,0.357,Africa,426000000,123000000 Niger,12/1/2004,0.052,,964,35,,,3052898686,0.071,16,,0.086,0.002,,53,53,0.014,1,0.488,0.487,0.025,12708897,0.166,Africa,32000000,42000000 Nigeria,12/1/2004,0.043,,97047,36,,101751,87845403978,0.07,45,,0.1,0.013,0.192,49,48,0.067,1,0.435,0.538,0.027,135999250,0.382,Africa,49000000, Rwanda,12/1/2004,0.039,,689,18,,,2089188921,0.058,13,,0.075,0.004,0.165,55,52,0.015,1,0.446,0.528,0.026,9254379,0.184,Africa,44000000,31000000 Sao Tome and Principe,12/1/2004,0.038,,73,192,,38,110723362,0.11,79,,0.05,0.133,0.298,66,62,0.051,1,0.422,0.537,0.04,150842,0.571,Africa,7700000,2100000 Senegal,12/1/2004,0.039,,5280,59,,2736,8031344240,0.057,42,,0.059,0.044,,62,58,0.102,1,0.443,0.526,0.032,10967568,0.409,Africa,286000000,138000000 Seychelles,12/1/2004,0.017,,744,,,256,839319935,0.043,421,,0.012,0.243,0.1,76,69,0.634,1,0.25,0.673,0.076,82500,0.508,Africa,256000000,53000000 Sierra Leone,12/1/2004,0.042,,642,26,,,1431208677,0.154,45,,0.13,0.002,0.221,42,41,,1,0.427,0.549,0.024,4928175,0.366,Africa,58000000,30000000 Somalia,12/1/2004,0.047,,576,,,,,,,,0.105,0.011,,54,51,0.061,1,0.477,0.494,0.029,8249965,0.348,Africa,, South Africa,12/1/2004,0.023,,427132,38,,128722,219093000000,0.089,410,,0.052,0.084,0.113,53,51,0.438,1,0.312,0.647,0.042,47019452,0.59,Africa,7571000000,4237000000 South Sudan,12/1/2004,0.04,,,,,,,,,,0.091,,,52,50,,1,0.442,0.526,0.032,7730180,0.17,Africa,, Sudan,12/1/2004,0.038,,11382,39,,14769,21457886199,0.041,29,,0.063,0.008,,61,58,0.028,1,0.433,0.536,0.03,30778572,0.327,Africa,21000000,176000000 Swaziland,12/1/2004,0.032,,1030,,,406,2420610579,0.059,130,,0.082,0.032,0.113,46,46,0.132,1,0.424,0.545,0.031,1094758,0.222,Africa,75000000,54000000 Tanzania,12/1/2004,0.042,,4353,28,,16198,12825801917,0.034,12,,0.061,0.009,0.141,53,52,0.051,1,0.446,0.524,0.03,37765139,0.242,Africa,762000000,470000000 Togo,12/1/2004,0.038,,1397,65,,2327,1937074538,0.059,21,,0.07,0.015,,55,53,0.062,1,0.431,0.541,0.028,5397851,0.347,Africa,25000000,38000000 Tunisia,12/1/2004,0.017,,22446,11,,8463,31183139301,0.056,179,,0.021,0.085,,75,71,0.376,1,0.265,0.669,0.066,9932400,0.649,Africa,2432000000,427000000 Uganda,12/1/2004,0.047,,1852,34,,,7940362663,0.079,24,,0.073,0.007,0.206,52,52,0.042,1,0.494,0.481,0.025,27766986,0.128,Africa,268000000,158000000 Zambia,12/1/2004,0.044,,2131,35,,7005,5439176376,0.067,33,,0.081,0.02,0.307,46,45,0.042,1,0.466,0.507,0.027,11174650,0.362,Africa,92000000,86000000 Zimbabwe,12/1/2004,0.032,,9927,97,,9269,5805598443,,,,0.058,0.066,2.789,43,44,0.034,1,0.415,0.549,0.036,12693047,0.343,Africa,194000000, Afghanistan,12/1/2004,0.046,,733,9,,,5285461999,0.098,19,,0.086,0.001,,58,55,0.025,1,0.494,0.486,0.02,24018682,0.226,Asia,, Armenia,12/1/2004,0.014,,3645,18,,2095,3576615240,0.055,65,,0.022,0.049,0.186,76,70,0.067,1,0.225,0.66,0.115,3025652,0.642,Asia,188000000,216000000 Azerbaijan,12/1/2004,0.016,,32090,121,,12786,8680511918,0.079,81,,0.047,,0.157,71,66,0.172,1,0.27,0.667,0.064,8306500,0.522,Asia,79000000,140000000 Bangladesh,12/1/2004,0.024,,39750,50,,22554,56560744012,0.031,12,,0.053,0.002,0.148,68,67,0.02,1,0.348,0.609,0.042,141235035,0.261,Asia,76000000,442000000 Bhutan,12/1/2004,0.024,,308,62,,180,702682018,0.044,49,,0.048,0.032,0.15,63,63,0.03,1,0.352,0.608,0.04,633893,0.298,Asia,13000000, Brunei Darussalam,12/1/2004,0.02,,5361,,,2296,7872333197,0.03,658,,0.008,0.297,0.055,79,75,0.561,1,0.292,0.677,0.031,360797,0.731,Asia,181000000,382000000 Cambodia,12/1/2004,0.026,,2446,94,,3389,5337833256,0.071,29,,0.057,0.003,,69,63,0.066,1,0.37,0.588,0.043,13149386,0.191,Asia,673000000,80000000 China,12/1/2004,0.012,,5288166,48,,1639854,1931640000000,0.047,70,,0.022,0.073,0.056,75,73,0.256,1,0.214,0.711,0.075,1296075000,0.411,Asia,27755000000,21360000000 Georgia,12/1/2004,0.012,,4323,25,,2781,5125273877,0.085,97,,0.024,0.039,0.221,76,69,0.186,1,0.19,0.667,0.143,4318300,0.524,Asia,209000000,196000000 "Hong Kong SAR, China",12/1/2004,0.007,,38415,11,,12808,169100000000,,,,,0.564,0.05,85,79,1.191,1,0.148,0.732,0.119,6783500,1,Asia,11874000000,13270000000 India,12/1/2004,0.024,,1348525,89,,519165,721586000000,0.045,29,,0.058,0.02,0.109,65,62,0.047,1,0.326,0.627,0.046,1110626108,0.289,Asia,6307000000,5783000000 Indonesia,12/1/2004,0.021,,337635,151,,176238,256837000000,0.024,27,,0.035,0.026,0.141,71,67,0.137,1,0.3,0.651,0.048,221293797,0.451,Asia,5226000000,4569000000 Japan,12/1/2004,0.009,,1259655,31,,522488,4655800000000,0.08,2914,,0.003,0.624,0.018,86,79,0.722,1,0.139,0.668,0.193,127761000,0.846,Asia,14343000000,48175000000 Kazakhstan,12/1/2004,0.018,,172158,26,,50717,43151647003,0.04,114,,0.03,0.027,,72,60,0.164,1,0.251,0.674,0.076,15012985,0.549,Asia,803000000,997000000 "Korea, Dem. Rep.",12/1/2004,0.016,,79482,,,20494,,,,,0.028,,,72,64,,1,0.25,0.678,0.071,23639303,0.597,Asia,, "Korea, Rep.",12/1/2004,0.01,,482277,17,,208284,764881000000,0.052,784,,0.005,0.727,0.059,81,75,0.782,1,0.196,0.716,0.089,48039415,0.81,Asia,8226000000,13507000000 Kyrgyz Republic,12/1/2004,0.022,,5699,21,,2542,2211535312,0.056,25,,0.036,0.051,0.293,72,64,0.052,1,0.319,0.624,0.057,5104700,0.353,Asia,92000000,73000000 Lao PDR,12/1/2004,0.028,,1423,153,,,2366398120,0.046,19,,0.073,0.004,0.293,65,63,0.036,1,0.411,0.552,0.037,5699112,0.262,Asia,122000000,8000000 "Macao SAR, China",12/1/2004,0.008,,1727,,,,10258324479,,,,,0.315,0.06,81,76,0.943,1,0.185,0.742,0.074,458542,1,Asia,7431000000,529000000 Malaysia,12/1/2004,0.019,,167333,37,,58691,124750000000,0.037,181,,0.007,0.423,0.06,76,71,0.576,1,0.308,0.649,0.043,25365089,0.657,Asia,9183000000,3822000000 Maldives,12/1/2004,0.021,,777,9,,250,1075605492,0.059,217,,0.022,0.066,0.13,75,72,0.387,1,0.356,0.599,0.044,292505,0.325,Asia,471000000,75000000 Mongolia,12/1/2004,0.02,,8551,13,,2600,1992066759,0.07,56,,0.039,,0.315,69,61,0.172,1,0.299,0.664,0.037,2496248,0.614,Asia,205000000,207000000 Myanmar,12/1/2004,0.019,,12435,,,14764,,0.023,5,,0.052,0,0.15,65,61,0.002,1,0.286,0.666,0.049,49875169,0.285,Asia,97000000,32000000 Nepal,12/1/2004,0.029,,2769,31,,8832,7273933993,0.058,17,,0.049,0.004,0.085,65,63,0.005,1,0.397,0.56,0.043,24921910,0.149,Asia,260000000,205000000 Pakistan,12/1/2004,0.028,,131601,24,,73580,97977766198,0.028,18,,0.082,0.062,0.073,66,64,0.032,1,0.388,0.571,0.041,155151394,0.344,Asia,765000000,1612000000 Philippines,12/1/2004,0.028,,74066,49,,38643,91371236939,0.032,35,,0.028,0.052,0.101,71,64,0.391,1,0.374,0.592,0.034,84231329,0.469,Asia,2390000000,1526000000 Singapore,12/1/2004,0.01,,28474,8,,30845,114187000000,0.032,826,,0.002,0.62,0.053,82,77,0.912,1,0.196,0.723,0.081,4166700,1,Asia,5327000000,9291000000 Sri Lanka,12/1/2004,0.019,,11965,48,,8798,20662525941,0.042,44,,0.012,0.014,0.095,77,70,0.112,1,0.256,0.675,0.069,19435000,0.184,Asia,808000000,499000000 Tajikistan,12/1/2004,0.029,,2563,,,2346,2076148710,0.043,13,,0.058,0.001,0.203,69,62,0.02,1,0.392,0.57,0.037,6663929,0.264,Asia,9600000,3400000 Thailand,12/1/2004,0.013,,252345,33,,96291,161340000000,0.035,87,,0.016,0.107,0.055,76,69,0.414,1,0.228,0.697,0.075,65087400,0.363,Asia,13054000000,5343000000 Timor-Leste,12/1/2004,0.038,,176,158,,58,455500000,0.086,27,,0.069,,0.155,64,61,0.027,1,0.484,0.489,0.027,966987,0.257,Asia,, Turkmenistan,12/1/2004,0.023,,43337,,,18406,6838351088,0.037,111,,0.06,0.008,,68,60,0.011,1,0.334,0.62,0.046,4696876,0.468,Asia,, Uzbekistan,12/1/2004,0.021,,119306,29,,50678,12030023548,0.051,24,,0.048,0.026,,71,64,0.021,1,0.341,0.613,0.047,25864350,0.368,Asia,57000000, Vietnam,12/1/2004,0.017,,90549,51,,38968,49424107710,0.055,30,,0.024,0.076,0.097,79,70,0.059,1,0.28,0.654,0.066,81437700,0.267,Asia,1700000000, Albania,12/1/2004,0.015,,4166,41,,2172,7464446950,0.065,148,,0.019,0.024,0.118,79,73,0.392,1,0.273,0.645,0.082,3014579,0.457,Europe,756000000,669000000 Andorra,12/1/2004,0.011,,565,,,,2322163502,0.057,2193,,0.003,0.268,,,,0.738,1,,,,79060,0.908,Europe,, Austria,12/1/2004,0.01,,71866,25,,32690,291430000000,0.104,3720,,0.004,0.543,,82,76,0.975,1,0.163,0.679,0.158,8171966,0.658,Europe,17251000000,10812000000 Belarus,12/1/2004,0.009,,58038,79,,26888,23141587718,0.066,157,,0.008,,0.169,75,63,0.23,1,0.16,0.694,0.146,9730000,0.719,Europe,362000000,500000000 Belgium,12/1/2004,0.011,,111282,34,,58895,361683000000,0.1,3482,,0.004,0.539,0.067,82,76,0.875,1,0.172,0.656,0.173,10421137,0.973,Europe,10089000000,15456000000 Bosnia and Herzegovina,12/1/2004,0.008,,24617,63,,4811,10022840635,0.09,236,,0.007,0.155,0.103,78,73,0.362,1,0.192,0.682,0.127,3886723,0.392,Europe,507000000,162000000 Bulgaria,12/1/2004,0.009,,46787,32,,18833,25283228366,0.073,238,,0.015,0.181,0.089,76,69,0.611,1,0.14,0.688,0.173,7781161,0.702,Europe,2796000000,1935000000 Croatia,12/1/2004,0.009,,23047,29,,8831,41003558916,0.066,614,,0.006,0.309,0.117,79,72,0.644,1,0.162,0.67,0.169,4439000,0.562,Europe,6945000000,881000000 Cyprus,12/1/2004,0.012,,7334,,,2184,15816972051,0.064,1353,,0.004,0.338,0.076,81,76,0.648,1,0.205,0.69,0.106,1015820,0.684,Europe,2552000000,907000000 Czech Republic,12/1/2004,0.01,,122709,40,,45511,113977000000,0.069,771,,0.005,0.355,0.06,79,73,1.056,1,0.151,0.709,0.14,10197101,0.737,Europe,4931000000,2682000000 Denmark,12/1/2004,0.012,,50597,7,,19428,244728000000,0.097,4387,,0.004,0.809,,80,75,0.957,1,0.188,0.662,0.15,5404523,0.856,Europe,5652000000,7279000000 Estonia,12/1/2004,0.01,,17217,72,,5282,12031396467,0.051,450,,0.006,0.532,0.057,78,66,0.943,1,0.156,0.678,0.166,1362550,0.689,Europe,1111000000,486000000 Faeroe Islands,12/1/2004,,,796,,,,1683997930,,,,,0.665,,82,77,0.847,1,,,,48782,0.392,Europe,, Finland,12/1/2004,0.011,,67091,14,,37120,189065000000,0.082,2974,,0.003,0.724,0.037,82,75,0.954,1,0.175,0.667,0.157,5228172,0.828,Europe,2975000000,3383000000 France,12/1/2004,0.013,,390103,7,,269777,2055680000000,0.11,3620,,0.004,0.392,0.066,84,77,0.73,1,0.186,0.651,0.164,62702121,0.769,Europe,52108000000,36029000000 Germany,12/1/2004,0.009,,825896,45,,340676,2726340000000,0.107,3524,,0.004,0.647,,82,76,0.851,1,0.146,0.67,0.184,82516260,0.733,Europe,36390000000,80624000000 Greece,12/1/2004,0.01,,97150,38,,29707,227950000000,0.087,1809,,0.005,0.214,,82,77,0.845,1,0.145,0.672,0.183,11055729,0.741,Europe,12809000000,2880000000 Hungary,12/1/2004,0.009,,57352,52,,26157,101926000000,0.082,828,,0.008,0.277,0.128,77,69,0.863,1,0.158,0.687,0.156,10107146,0.659,Europe,4009000000,2482000000 Iceland,12/1/2004,0.015,,2233,5,,3368,13251434311,0.1,4567,,0.003,0.839,0.12,83,79,0.989,1,0.223,0.66,0.117,292074,0.929,Europe,558000000,699000000 Ireland,12/1/2004,0.015,,43956,18,,14269,186281000000,0.075,3487,,0.005,0.37,0.026,81,76,0.945,1,0.206,0.683,0.111,4070262,0.602,Europe,6075000000,5291000000 Isle of Man,12/1/2004,,,,,,,2758117365,,,,,,,,,,1,,,,79658,0.519,Europe,, Italy,12/1/2004,0.01,,472768,13,,181990,1735520000000,0.085,2549,,0.004,0.332,0.055,84,78,1.077,1,0.141,0.665,0.194,57685327,0.676,Europe,37870000000,24064000000 Kosovo,12/1/2004,0.02,,,,,2005,3639935348,,,,,,0.148,71,66,,1,,,,1704622,,Europe,, Latvia,12/1/2004,0.009,,7132,16,,4438,13761569545,0.065,387,,0.012,0.386,0.074,77,67,0.681,1,0.152,0.68,0.168,2263122,0.679,Europe,343000000,428000000 Liechtenstein,12/1/2004,0.011,,,,,,3454374261,,,,,0.64,,85,79,0.74,1,,,,34445,0.148,Europe,, Lithuania,12/1/2004,0.009,,13330,26,,9386,22659294573,0.057,374,,0.008,0.312,0.057,78,66,0.915,1,0.173,0.677,0.15,3377075,0.666,Europe,834000000,643000000 Luxembourg,12/1/2004,0.012,,11269,,,4282,34077095478,0.082,6145,,0.003,0.659,,82,76,1.041,1,0.188,0.668,0.144,458095,0.862,Europe,3880000000,2950000000 "Macedonia, FYR",12/1/2004,0.012,,11192,48,,2756,5514253043,0.087,230,,0.012,0.244,0.124,77,72,0.473,1,0.203,0.687,0.11,2085728,0.577,Europe,103000000,85000000 Malta,12/1/2004,0.01,,2574,,,830,5643525282,0.086,1247,,0.006,0.346,0.053,81,77,0.741,1,0.178,0.693,0.129,401268,0.934,Europe,949000000,291000000 Moldova,12/1/2004,0.012,,4554,30,,3377,2598231467,0.085,61,,0.02,0.106,0.209,72,64,0.206,1,0.198,0.691,0.111,3603945,0.454,Europe,112000000,135000000 Monaco,12/1/2004,,,,,,,4110348444,0.04,4885,,0.004,0.525,,,,0.472,1,,,,33346,1,Europe,, Montenegro,12/1/2004,0.013,,,,,,2073255525,0.087,293,,0.01,0.254,,76,71,0.787,1,0.203,0.669,0.128,614670,0.62,Europe,, Netherlands,12/1/2004,0.012,,176903,9,,79075,609890000000,0.1,3739,,0.005,0.685,0.028,81,77,0.912,1,0.185,0.676,0.139,16281779,0.815,Europe,16495000000,16937000000 Norway,12/1/2004,0.012,,42666,18,,26433,260029000000,0.101,5733,,0.003,0.777,0.04,82,78,0.986,1,0.198,0.655,0.148,4591910,0.773,Europe,3531000000,8894000000 Poland,12/1/2004,0.009,,304988,31,,91371,252769000000,0.062,410,,0.007,0.325,0.076,79,71,0.604,1,0.169,0.7,0.131,38182222,0.616,Europe,6499000000,5092000000 Portugal,12/1/2004,0.01,,63175,78,,25831,185397000000,0.1,1779,,0.004,0.318,,81,75,1.009,1,0.157,0.674,0.17,10483861,0.569,Europe,8858000000,3369000000 Romania,12/1/2004,0.01,,95401,28,,38683,75794733525,0.054,190,,0.02,0.15,0.256,75,68,0.461,1,0.16,0.694,0.146,21451748,0.53,Europe,607000000,672000000 Russian Federation,12/1/2004,0.01,,1602963,30,,647392,591017000000,0.052,212,,0.015,0.129,0.114,72,59,0.511,1,0.156,0.707,0.136,143821212,0.734,Europe,7262000000,16082000000 San Marino,12/1/2004,0.01,,,,,,1317357835,0.053,3359,,0.004,0.506,0.071,85,79,0.583,1,,,,29290,0.94,Europe,, Serbia,12/1/2004,0.011,,,56,,18094,23649854234,0.087,204,,0.008,0.235,0.155,75,70,0.472,1,0.185,0.676,0.139,7463157,0.543,Europe,220000000,208000000 Slovak Republic,12/1/2004,0.01,,38749,52,,18353,56073225726,0.072,565,,0.009,0.529,0.091,78,70,0.793,1,0.173,0.711,0.116,5372280,0.557,Europe,931000000,900000000 Slovenia,12/1/2004,0.009,,15746,60,,7131,33837749815,0.083,1415,,0.004,0.408,0.087,81,74,0.927,1,0.144,0.703,0.153,1997012,0.506,Europe,1725000000,937000000 Spain,12/1/2004,0.011,,339429,114,,139030,1044610000000,0.082,2028,,0.005,0.44,,83,77,0.904,1,0.145,0.687,0.168,42921895,0.77,Europe,49996000000,14864000000 Sweden,12/1/2004,0.011,,54521,16,,52588,362090000000,0.091,3666,,0.003,0.839,0.04,83,78,0.978,1,0.176,0.651,0.172,8993531,0.843,Europe,7686000000,11088000000 Switzerland,12/1/2004,0.01,,40392,18,,26090,374224000000,0.11,5570,,0.004,0.678,0.032,84,79,0.854,1,0.166,0.678,0.157,7389625,0.734,Europe,11404000000,9924000000 Turkey,12/1/2004,0.02,,225407,6,,80858,392166000000,0.054,297,,0.027,0.146,,76,69,0.519,1,0.289,0.646,0.065,66845635,0.672,Europe,15888000000,2524000000 Ukraine,12/1/2004,0.009,,343121,34,,143843,64883060726,0.066,90,,0.013,0.035,0.174,74,63,0.289,1,0.151,0.694,0.155,47451600,0.676,Europe,2931000000,2660000000 United Kingdom,12/1/2004,0.012,,540409,13,,221558,2220820000000,0.08,2955,,0.005,0.656,0.044,81,77,0.995,1,0.181,0.66,0.159,59987905,0.796,Europe,37166000000,69076000000 Bahrain,12/1/2004,0.019,,17510,,,6970,13150516509,0.039,539,,0.01,0.215,0.079,76,75,0.792,1,0.283,0.694,0.023,820505,0.884,Middle East,1504000000,528000000 "Iran, Islamic Rep.",12/1/2004,0.018,,447480,29,,155548,163227000000,0.047,117,,0.023,0.075,0.167,73,70,0.073,1,0.272,0.68,0.048,69342126,0.669,Middle East,1305000000,4402000000 Iraq,12/1/2004,0.035,,114084,77,,26901,36627901762,0.056,55,,0.034,0.009,0.129,72,67,0.022,1,0.421,0.545,0.035,26673536,0.687,Middle East,, Israel,12/1/2004,0.021,,63201,20,,19241,126571000000,0.076,1410,,0.005,0.228,0.075,82,78,1.117,1,0.279,0.621,0.1,6809000,0.915,Middle East,2908000000,3663000000 Jordan,12/1/2004,0.03,,19241,26,,6219,11407566660,0.091,203,,0.021,0.117,0.083,74,71,0.319,1,0.383,0.585,0.032,5290000,0.809,Middle East,1621000000,585000000 Kuwait,12/1/2004,0.021,,63534,35,,23469,59440511982,0.027,743,,0.01,0.229,0.056,75,73,0.808,1,0.255,0.711,0.034,2196466,0.982,Middle East,398000000,4147000000 Lebanon,12/1/2004,0.015,,16835,46,,5271,20955223881,0.082,458,,0.013,0.09,0.108,78,75,0.23,1,0.283,0.644,0.074,3853582,0.865,Middle East,5931000000,3719000000 Oman,12/1/2004,0.022,,27987,35,,9603,24673602280,0.03,310,,0.011,0.068,0.076,76,72,0.327,1,0.359,0.616,0.025,2464001,0.718,Middle East,601000000,823000000 Qatar,12/1/2004,0.016,,44393,,,16648,31734065019,0.036,1589,,0.009,0.207,0.07,78,76,0.681,1,0.259,0.727,0.014,720383,0.971,Middle East,498000000,691000000 Saudi Arabia,12/1/2004,0.024,,395834,74,,143706,258742000000,0.037,399,,0.017,0.102,,76,72,0.385,1,0.351,0.617,0.032,23839231,0.808,Middle East,6486000000,4428000000 Syrian Arab Republic,12/1/2004,0.028,,51111,43,,17937,25086930693,0.045,61,,0.017,0.043,0.075,76,73,0.133,1,0.392,0.575,0.034,17676012,0.534,Middle East,1883000000,688000000 United Arab Emirates,12/1/2004,0.016,,113241,19,,42310,147824000000,0.025,995,,0.009,0.301,,76,74,1.007,1,0.219,0.771,0.009,3658658,0.819,Middle East,1593000000,4472000000 "Yemen, Rep.",12/1/2004,0.036,,18881,63,,6186,13873500888,0.049,38,,0.059,0.009,0.185,63,60,0.075,1,0.463,0.51,0.027,19612696,0.284,Middle East,139000000,183000000 American Samoa,12/1/2004,,,,,,,,,,,,,,,,0.038,1,,,,59262,0.882,Oceania,, Australia,12/1/2004,0.012,,348757,3,,112696,613161000000,0.086,2872,,0.005,,0.089,83,78,0.815,1,0.2,0.672,0.128,20127400,0.878,Oceania,20453000000,14224000000 Fiji,12/1/2004,0.024,,1133,45,,666,2727507213,0.036,120,,0.02,0.074,0.072,71,66,0.174,1,0.314,0.646,0.04,818995,0.495,Oceania,588000000,118000000 French Polynesia,12/1/2004,0.019,,788,,,,,,,,,0.179,,77,71,0.381,1,0.286,0.666,0.048,251811,0.562,Oceania,737000000,425000000 Guam,12/1/2004,0.02,,,,,,,,,,,0.362,,79,74,0.619,1,0.298,0.64,0.062,158194,0.935,Oceania,, Kiribati,12/1/2004,0.025,,44,21,,8,102220915,0.104,119,,0.05,0.035,,69,63,0.007,1,0.377,0.587,0.036,88936,0.435,Oceania,, Marshall Islands,12/1/2004,,,88,17,,29,131106366,0.176,449,,0.033,0.036,,,,0.012,1,,,,52074,0.696,Oceania,5000000,400000 "Micronesia, Fed. Sts.",12/1/2004,0.027,,147,16,,,239563310,0.104,233,,0.038,0.11,0.154,68,67,0.12,1,0.391,0.57,0.04,106575,0.223,Oceania,19000000,7000000 New Caledonia,12/1/2004,0.017,,2552,,,,,,,,,0.303,,79,72,0.517,1,0.274,0.661,0.066,230068,0.633,Oceania,241000000,167000000 New Zealand,12/1/2004,0.014,,34759,12,,17393,102986000000,0.08,1974,,0.006,0.618,0.071,82,78,0.742,1,0.218,0.663,0.119,4087500,0.86,Oceania,5098000000,2229000000 Papua New Guinea,12/1/2004,0.033,,4481,51,,,3927114457,0.046,30,,0.056,0.015,0.133,62,58,0.008,1,0.401,0.574,0.026,5948461,0.131,Oceania,7100000,72000000 Samoa,12/1/2004,0.03,,154,42,,56,374507188,0.049,106,,0.017,0.031,0.112,74,68,0.089,1,0.398,0.554,0.048,178794,0.215,Oceania,70000000,12000000 Solomon Islands,12/1/2004,0.035,,180,56,,58,375109695,0.056,46,,0.029,0.006,0.143,67,64,0.007,1,0.414,0.557,0.029,457827,0.174,Oceania,3500000,12300000 Tonga,12/1/2004,0.029,,172,32,,57,240794581,0.048,115,,0.014,0.04,0.116,74,69,0.163,1,0.381,0.558,0.06,100319,0.231,Oceania,13100000,16200000 Vanuatu,12/1/2004,0.03,,55,47,,30,364996869,0.035,62,,0.018,0.047,0.076,71,67,0.051,1,0.4,0.567,0.033,204135,0.228,Oceania,93000000,15000000 Antigua and Barbuda,12/1/2004,0.019,,407,,,135,905113767,0.041,453,,0.011,0.243,0.12,77,72,0.661,1,0.286,0.642,0.072,81718,0.298,The Americas,337000000,38000000 Argentina,12/1/2004,0.018,,156170,30,,67303,183296000000,0.082,327,,0.016,0.16,0.068,78,71,0.353,1,0.266,0.632,0.102,38308779,0.899,The Americas,2660000000,3208000000 Aruba,12/1/2004,0.013,,2259,,,,2228279330,,,,,0.23,0.116,77,72,0.996,1,0.217,0.699,0.083,98742,0.452,The Americas,1056000000,248000000 "Bahamas, The",12/1/2004,0.015,,1723,,,664,7094413000,0.06,1326,,0.013,0.22,0.06,77,70,0.577,1,0.263,0.676,0.061,322400,0.822,The Americas,1897000000,469000000 Barbados,12/1/2004,0.013,,1294,,,375,3509700000,0.071,737,,0.015,0.498,0.083,76,71,0.735,1,0.209,0.681,0.11,272205,0.331,The Americas,784000000,163000000 Belize,12/1/2004,0.027,,381,,,155,1057850000,0.044,175,,0.019,0.058,0.139,75,69,0.283,1,0.384,0.575,0.041,265040,0.466,The Americas,168000000,47000000 Bermuda,12/1/2004,0.013,,671,,,,4484703000,,,,,0.61,,81,76,0.767,1,,,,63740,1,The Americas,426000000,217000000 Bolivia,12/1/2004,0.029,,13084,60,,3622,8773451739,0.053,51,,0.046,0.044,0.145,67,62,0.196,1,0.387,0.569,0.044,9187610,0.637,The Americas,283000000,232000000 Brazil,12/1/2004,0.019,,337826,152,,210042,663760000000,0.071,257,,0.022,0.191,0.549,75,68,0.357,1,0.28,0.66,0.06,184010283,0.825,The Americas,3389000000,3752000000 Canada,12/1/2004,0.011,,552349,3,,267619,1018390000000,0.098,3047,,0.005,0.66,0.04,83,78,0.471,1,0.18,0.691,0.13,31995000,0.8,The Americas,15135000000,19267000000 Cayman Islands,12/1/2004,,,499,,,,,,,,,,,,,0.715,1,,,,47299,1,The Americas,523000000, Chile,12/1/2004,0.015,,60047,27,,27514,100631000000,0.067,414,,0.008,0.282,0.051,81,75,0.573,1,0.255,0.667,0.079,16168241,0.872,The Americas,1571000000,1251000000 Colombia,12/1/2004,0.022,,55071,42,,26001,117075000000,0.054,148,,0.019,0.091,0.151,76,68,0.245,1,0.312,0.638,0.05,42527623,0.733,The Americas,1369000000,1469000000 Costa Rica,12/1/2004,0.018,,6931,77,,3880,18596365927,0.078,346,,0.009,0.208,0.234,81,76,0.217,1,0.286,0.656,0.058,4246336,0.644,The Americas,1586000000,481000000 Cuba,12/1/2004,0.012,,25005,,,11312,38202800000,0.061,209,,0.006,0.084,,80,76,0.007,1,0.199,0.694,0.107,11273363,0.76,The Americas,2114000000, Curacao,12/1/2004,,,,,,,,,,,,,,,,,1,0.218,0.665,0.118,133363,0.907,The Americas,224000000,195000000 Dominica,12/1/2004,,,110,,,39,366976849,0.047,243,,0.013,0.303,0.089,,,0.595,1,,,,70325,0.663,The Americas,61000000,9000000 Dominican Republic,12/1/2004,0.024,,18786,77,,6528,22163928097,0.051,120,,0.03,0.089,0.326,75,68,0.275,1,0.334,0.61,0.056,9207389,0.66,The Americas,3152000000,448000000 Ecuador,12/1/2004,0.024,,28658,92,,10278,36591661000,0.066,178,,0.025,0.048,0.1,77,72,0.262,1,0.33,0.615,0.055,13529091,0.615,The Americas,464000000,577000000 El Salvador,12/1/2004,0.021,,6366,115,,4382,15798300000,0.073,191,,0.021,0.032,,75,66,0.303,1,0.363,0.576,0.061,6050297,0.611,The Americas,748000000,373000000 Greenland,12/1/2004,0.016,,583,,,,1644951892,,,,,0.561,,72,66,0.686,1,,,,56911,0.826,The Americas,, Grenada,12/1/2004,0.019,,205,,,74,600014341,0.058,342,,0.013,0.196,0.102,74,69,0.422,1,0.309,0.614,0.077,102655,0.36,The Americas,86000000,9000000 Guatemala,12/1/2004,0.035,,11621,39,,7785,23965280312,0.064,124,,0.035,0.051,0.138,73,66,0.256,1,0.434,0.524,0.043,12367800,0.468,The Americas,630000000,488000000 Guyana,12/1/2004,0.022,,1628,46,,479,785918770,0.053,55,,0.036,,0.145,68,61,0.227,1,0.363,0.598,0.039,756939,0.284,The Americas,27000000,30000000 Haiti,12/1/2004,0.029,,1988,202,,2288,3660483886,0.056,22,,0.067,0.054,0.48,61,57,0.044,1,0.385,0.574,0.041,9129933,0.424,The Americas,93000000,206000000 Honduras,12/1/2004,0.029,,7367,62,,3853,8772197585,0.079,103,,0.027,0.056,0.199,74,69,0.105,1,0.404,0.555,0.041,6762426,0.479,The Americas,420000000,300000000 Jamaica,12/1/2004,0.017,,10715,31,,3769,10173234921,0.048,183,,0.018,0.1,0.181,74,68,0.689,1,0.315,0.609,0.076,2634145,0.526,The Americas,1733000000,318000000 Mexico,12/1/2004,0.022,,410744,58,,159324,770268000000,0.06,441,,0.017,0.141,0.074,78,73,0.352,1,0.327,0.621,0.052,109381550,0.76,The Americas,11610000000,8034000000 Nicaragua,12/1/2004,0.026,,4426,39,,2821,5795568203,0.061,66,,0.027,0.023,0.135,75,69,0.137,1,0.384,0.575,0.04,5386299,0.557,The Americas,192000000,154000000 Panama,12/1/2004,0.023,,5805,18,,2613,14179300000,0.081,347,,0.02,0.111,0.088,79,73,0.381,1,0.31,0.63,0.06,3303335,0.634,The Americas,903000000,294000000 Paraguay,12/1/2004,0.026,,4089,74,,4002,8033877360,0.059,82,,0.025,0.035,0.335,73,69,0.302,1,0.363,0.59,0.047,5793330,0.571,The Americas,87000000,121000000 Peru,12/1/2004,0.022,,31896,98,,12875,65702520516,0.044,111,,0.023,0.141,0.247,75,69,0.149,1,0.324,0.623,0.053,27403845,0.746,The Americas,1232000000,852000000 Puerto Rico,12/1/2004,0.013,,,7,,,80322313000,,,,,0.221,,82,74,0.49,1,0.225,0.655,0.12,3826878,0.942,The Americas,3024000000,1584000000 Sint Maarten (Dutch part),12/1/2004,,,,,,,,,,,,,,,,,1,,,,35318,1,The Americas,626000000,80000000 St. Kitts and Nevis,12/1/2004,,,227,,,76,497548517,0.035,363,,0.011,0.247,0.103,,,0.599,1,,,,48421,0.322,The Americas,103000000,10000000 St. Lucia,12/1/2004,0.018,,356,,,120,858255380,0.063,330,,0.015,0.214,0.111,75,71,0.618,1,0.292,0.636,0.072,163460,0.241,The Americas,326000000,37000000 St. Martin (French part),12/1/2004,0.017,,,,,,,,,,,,,81,75,,1,,,,27514,,The Americas,, St. Vincent and the Grenadines,12/1/2004,0.018,,194,,,66,522544702,0.037,179,,0.019,0.074,0.097,73,69,0.663,1,0.29,0.638,0.072,108562,0.466,The Americas,96000000,14000000 Suriname,12/1/2004,0.021,,2292,,,664,1484092538,0.069,207,,0.027,0.061,0.204,72,65,0.431,1,0.3,0.64,0.06,493394,0.667,The Americas,52000000,85000000 Trinidad and Tobago,12/1/2004,0.015,,30993,,,14115,12884712296,0.052,522,,0.024,0.27,0.093,73,65,0.505,1,0.224,0.706,0.071,1290379,0.101,The Americas,568000000,141000000 Turks and Caicos Islands,12/1/2004,,,103,,,,,,,,,,,,,,1,,,,25025,0.872,The Americas,, United States,12/1/2004,0.014,,5790765,6,,2307819,12277000000000,0.157,6355,,0.007,0.648,0.043,80,75,0.625,1,0.207,0.67,0.123,292805298,0.798,The Americas,115689000000,94764000000 Uruguay,12/1/2004,0.016,,5611,45,,2869,13686333822,0.085,350,,0.013,0.171,0.237,79,72,0.18,1,0.24,0.626,0.135,3323822,0.931,The Americas,591000000,267000000 "Venezuela, RB",12/1/2004,0.022,,168268,141,,56441,112451000000,0.056,239,,0.016,0.084,0.185,76,70,0.321,1,0.318,0.633,0.049,26261326,0.885,The Americas,554000000,1604000000 Virgin Islands (U.S.),12/1/2004,0.015,,,,,,,,,,,0.274,,82,76,0.594,1,0.231,0.669,0.101,107950,0.935,The Americas,1356000000, Algeria,12/1/2005,0.021,0.769,107128,25,,32335,103199000000,0.031,95,451,0.029,0.058,0.08,71,68,0.402,1,0.289,0.667,0.044,33960903,0.638,Africa,477000000,660000000 Angola,12/1/2005,0.049,0.521,19156,119,,9356,28233699240,0.042,71,272,0.122,0.011,0.677,50,47,0.097,1,0.478,0.498,0.025,16544376,0.362,Africa,103000000,135000000 Benin,12/1/2005,0.04,0.757,2398,31,,2499,4358015993,0.047,25,270,0.075,0.013,,59,56,0.073,1,0.445,0.527,0.028,8182362,0.4,Africa,108000000,58000000 Botswana,12/1/2005,0.025,0.171,4613,107,,1929,9931223496,0.056,298,140,0.043,0.033,0.157,47,46,0.301,1,0.358,0.61,0.032,1875805,0.551,Africa,563000000,301000000 Burkina Faso,12/1/2005,0.045,0.475,1126,40,,,5462709055,0.069,28,270,0.086,0.005,,53,52,0.047,1,0.465,0.509,0.026,13421929,0.215,Africa,46000000,74000000 Burundi,12/1/2005,0.044,2.797,154,13,,,1117254387,0.101,14,140,0.075,0.005,0.184,51,49,0.02,1,0.454,0.519,0.027,7770392,0.094,Africa,1900000,62000000 Cameroon,12/1/2005,0.04,0.506,3696,45,,6981,16587921221,0.049,45,654,0.078,0.014,0.177,53,51,0.124,1,0.443,0.524,0.033,18137734,0.485,Africa,229000000,480000000 Central African Republic,12/1/2005,0.037,0.657,213,22,,,1350300947,0.044,15,504,0.111,0.003,0.177,47,43,0.025,1,0.419,0.542,0.04,3960897,0.381,Africa,7200000,46000000 Chad,12/1/2005,0.05,0.74,400,64,,,6646663021,0.047,25,732,0.101,0.004,0.177,48,47,0.021,1,0.492,0.481,0.027,10014413,0.218,Africa,, Comoros,12/1/2005,0.039,2.179,110,24,,37,387036132,0.043,28,100,0.07,0.02,0.11,60,58,0.026,1,0.415,0.555,0.03,600733,0.279,Africa,24000000,10000000 "Congo, Dem. Rep.",12/1/2005,0.046,2.865,2226,133,,19971,11964484458,0.053,7,308,0.105,0.002,,49,46,0.051,1,0.462,0.51,0.028,54028003,0.375,Africa,3200000,54000000 "Congo, Rep.",12/1/2005,0.039,0.649,1456,37,,1083,6087002682,0.024,42,606,0.062,0.015,0.177,55,53,0.158,1,0.422,0.543,0.035,3542867,0.61,Africa,40000000,112000000 Cote d'Ivoire,12/1/2005,0.037,0.473,7825,45,,9634,16363437145,0.057,53,270,0.089,0.01,,48,46,0.135,1,0.423,0.547,0.03,17393994,0.468,Africa,93000000,549000000 Djibouti,12/1/2005,0.029,0.378,473,37,,139,708633195,0.072,63,66,0.071,0.01,0.112,59,57,0.057,1,0.373,0.594,0.034,776585,0.768,Africa,7100000,14400000 "Egypt, Arab Rep.",12/1/2005,0.024,0.543,167208,22,,62741,89685724889,0.051,64,504,0.026,0.128,0.131,72,67,0.19,1,0.325,0.62,0.055,71777678,0.43,Africa,7206000000,1932000000 Equatorial Guinea,12/1/2005,0.038,0.441,4712,137,,1249,6915849240,0.016,220,492,0.087,0.011,0.177,50,48,0.161,1,0.406,0.561,0.032,603648,0.389,Africa,, Eritrea,12/1/2005,0.04,0.845,766,76,,763,1098425900,0.028,6,216,0.047,,,61,56,0.008,1,0.435,0.545,0.02,4854066,0.189,Africa,66000000, Ethiopia,12/1/2005,0.039,0.303,5053,34,,28935,12173919387,0.041,7,212,0.07,0.002,0.07,58,56,0.005,1,0.462,0.507,0.031,76167240,0.157,Africa,533000000,77000000 Gabon,12/1/2005,0.033,0.451,2087,57,,1718,8665736618,0.03,187,488,0.05,0.049,0.177,61,59,0.534,1,0.395,0.549,0.056,1379465,0.834,Africa,13000000,346000000 "Gambia, The",12/1/2005,0.044,2.86,323,27,,108,624173996,0.045,20,376,0.057,0.038,0.349,58,56,0.172,1,0.46,0.515,0.025,1436549,0.523,Africa,59000000,7000000 Ghana,12/1/2005,0.034,0.398,6956,18,,8229,10731883141,0.07,35,304,0.058,0.018,,60,58,0.134,1,0.402,0.564,0.034,21384034,0.473,Africa,867000000,472000000 Guinea,12/1/2005,0.04,0.807,1181,40,,,2937072009,0.053,16,416,0.085,0.005,,53,52,0.02,1,0.436,0.531,0.032,9576331,0.328,Africa,,38000000 Guinea-Bissau,12/1/2005,0.04,0.542,213,259,,87,572853554,0.057,24,208,0.096,0.019,,53,51,0.07,1,0.429,0.542,0.029,1421515,0.409,Africa,1600000,18900000 Kenya,12/1/2005,0.039,0.498,8562,54,,16151,18737895401,0.044,23,372,0.061,0.031,0.129,56,54,0.129,1,0.428,0.545,0.027,35785718,0.217,Africa,969000000,124000000 Lesotho,12/1/2005,0.029,0.288,,93,,33,1368405301,0.063,45,564,0.085,0.026,0.117,44,44,0.13,1,0.397,0.557,0.046,1925844,0.222,Africa,27000000,271000000 Liberia,12/1/2005,0.04,,741,,,,542000000,0.08,13,,0.083,,0.17,56,54,0.049,1,0.433,0.537,0.03,3269786,0.461,Africa,67000000,33000000 Libya,12/1/2005,0.023,,52108,,,17670,44000000000,0.026,213,,0.02,0.039,0.061,75,72,0.357,1,0.306,0.651,0.043,5594450,0.769,Africa,301000000,920000000 Madagascar,12/1/2005,0.038,0.469,1742,38,,,5038577519,0.049,13,400,0.055,0.006,0.27,63,60,0.028,1,0.448,0.523,0.029,18290394,0.288,Africa,290000000,80000000 Malawi,12/1/2005,0.042,0.334,917,39,,,2754995877,0.082,17,370,0.073,0.004,0.331,49,49,0.033,1,0.461,0.508,0.031,12924746,0.151,Africa,48000000,84000000 Mali,12/1/2005,0.048,0.514,568,41,,,5305317555,0.063,29,270,0.097,0.005,,51,52,0.064,1,0.463,0.506,0.031,11941258,0.321,Africa,149000000,133000000 Mauritania,12/1/2005,0.037,0.947,1676,82,,,2184444849,0.05,29,696,0.075,0.007,0.231,62,59,0.237,1,0.416,0.553,0.031,3146164,0.531,Africa,, Mauritius,12/1/2005,0.015,0.262,3410,46,,1077,6283796155,0.045,239,161,0.014,0.152,0.21,76,69,0.542,1,0.242,0.692,0.066,1243253,0.416,Africa,1189000000,295000000 Morocco,12/1/2005,0.02,0.517,45771,12,,13327,59523857868,0.051,100,358,0.035,0.151,0.115,71,67,0.411,1,0.308,0.642,0.05,30125445,0.551,Africa,5426000000,999000000 Mozambique,12/1/2005,0.044,0.375,1822,153,,8489,6578515331,0.069,22,230,0.091,0.009,0.195,49,47,0.072,1,0.448,0.52,0.032,21010376,0.3,Africa,138000000,187000000 Namibia,12/1/2005,0.029,0.258,2310,95,,1294,7261366632,0.073,262,339,0.046,0.04,0.106,58,54,0.221,1,0.398,0.569,0.033,2027026,0.366,Africa,363000000,108000000 Niger,12/1/2005,0.051,0.423,829,35,,,3405134555,0.077,20,270,0.082,0.002,,54,54,0.025,1,0.49,0.485,0.025,13183798,0.167,Africa,44000000,42000000 Nigeria,12/1/2005,0.042,0.316,104697,35,,106509,112248000000,0.066,53,1120,0.097,0.035,0.179,49,48,0.133,1,0.436,0.537,0.027,139585891,0.391,Africa,139000000,501000000 Rwanda,12/1/2005,0.038,0.468,528,18,,,2581286407,0.061,17,168,0.067,0.006,0.161,56,54,0.024,1,0.442,0.532,0.025,9429457,0.193,Africa,67000000,75000000 Sao Tome and Principe,12/1/2005,0.038,0.469,77,144,,43,123258507,0.1,81,424,0.048,0.138,0.312,66,63,0.077,1,0.42,0.54,0.04,154615,0.58,Africa,7300000,500000 Senegal,12/1/2005,0.039,0.503,5860,59,,2791,8707015064,0.054,41,696,0.057,0.048,,62,59,0.154,1,0.441,0.527,0.032,11270826,0.411,Africa,334000000,144000000 Seychelles,12/1/2005,0.019,0.484,697,39,,228,919103262,0.04,423,76,0.012,0.254,0.098,77,67,0.675,1,0.243,0.681,0.075,82900,0.511,Africa,269000000,59000000 Sierra Leone,12/1/2005,0.042,2.72,546,26,,,1627853086,0.159,51,399,0.128,0.002,0.246,42,42,,1,0.427,0.549,0.024,5119895,0.368,Africa,64000000,34000000 Somalia,12/1/2005,0.047,,579,,,,,,,,0.105,0.011,,54,51,0.059,1,0.477,0.494,0.029,8466938,0.352,Africa,, South Africa,12/1/2005,0.023,0.376,396117,35,,128214,247052000000,0.088,450,350,0.051,0.075,0.106,53,50,0.704,1,0.308,0.648,0.044,47639556,0.595,Africa,8629000000,4812000000 South Sudan,12/1/2005,0.04,,,,,,,,,,0.087,,,52,50,,1,0.44,0.527,0.032,8039351,0.172,Africa,, Sudan,12/1/2005,0.038,0.497,10708,39,,14837,26524992225,0.041,35,180,0.061,0.013,,62,58,0.048,1,0.432,0.538,0.03,31585871,0.328,Africa,150000000,667000000 Swaziland,12/1/2005,0.032,0.363,1019,60,,399,2584077931,0.068,159,104,0.081,0.037,0.106,46,46,0.181,1,0.418,0.55,0.032,1104642,0.22,Africa,77000000,60000000 Tanzania,12/1/2005,0.042,0.438,5618,28,,17141,14141916592,0.04,15,172,0.057,0.011,0.152,54,53,0.076,1,0.446,0.524,0.03,38824384,0.248,Africa,835000000,577000000 Togo,12/1/2005,0.038,0.525,1338,65,,2372,2115154090,0.066,25,270,0.068,0.018,,55,53,0.078,1,0.428,0.544,0.028,5540214,0.352,Africa,27000000,42000000 Tunisia,12/1/2005,0.017,0.606,22801,11,,8314,32282960678,0.056,181,268,0.02,0.097,,76,72,0.565,1,0.258,0.675,0.067,10029000,0.651,Africa,2800000000,452000000 Uganda,12/1/2005,0.047,0.369,2285,34,,,9013834490,0.092,29,237,0.068,0.017,0.196,53,52,0.046,1,0.494,0.481,0.025,28724869,0.13,Africa,382000000,185000000 Zambia,12/1/2005,0.044,0.154,2274,35,,7213,7178556337,0.071,44,183,0.076,0.029,0.282,48,47,0.083,1,0.467,0.506,0.027,11470022,0.366,Africa,98000000,88000000 Zimbabwe,12/1/2005,0.032,0.323,10774,97,,9685,5755215232,,,216,0.057,0.08,2.357,43,44,0.051,1,0.415,0.548,0.037,12710589,0.341,Africa,99000000, Afghanistan,12/1/2005,0.045,0.363,1016,9,,,6275076016,0.092,21,275,0.084,0.012,,58,56,0.048,1,0.493,0.487,0.02,24860855,0.229,Asia,, Armenia,12/1/2005,0.014,0.366,4360,18,,2512,4900436759,0.053,85,580,0.021,0.053,0.18,77,70,0.105,1,0.219,0.665,0.116,3014917,0.642,Asia,240000000,284000000 Azerbaijan,12/1/2005,0.017,0.464,34338,113,,13427,13245421881,0.079,122,756,0.044,0.08,0.17,72,66,0.262,1,0.26,0.676,0.064,8391850,0.524,Asia,100000000,188000000 Bangladesh,12/1/2005,0.023,0.353,37554,50,,23868,60277560976,0.032,13,400,0.051,0.002,0.14,68,67,0.063,1,0.343,0.614,0.043,143135180,0.268,Asia,79000000,375000000 Bhutan,12/1/2005,0.023,0.408,396,62,,204,818869146,0.043,55,274,0.045,0.038,0.14,64,64,0.055,1,0.34,0.619,0.041,650417,0.31,Asia,19000000, Brunei Darussalam,12/1/2005,0.02,,5126,,,2217,9531402830,0.026,671,,0.007,0.365,0.055,79,75,0.633,1,0.289,0.679,0.032,367815,0.735,Asia,191000000,374000000 Cambodia,12/1/2005,0.026,0.215,2776,86,,3436,6293046162,0.069,33,137,0.052,0.003,,70,65,0.08,1,0.361,0.595,0.044,13356424,0.192,Asia,929000000,137000000 China,12/1/2005,0.012,0.8,5790017,48,,1775677,2256900000000,0.047,80,832,0.02,0.085,0.056,75,73,0.298,1,0.205,0.718,0.077,1303720000,0.425,Asia,31842000000,24721000000 Georgia,12/1/2005,0.013,0.57,5068,21,,2841,6411147323,0.086,123,448,0.022,0.061,0.176,77,69,0.262,1,0.184,0.67,0.146,4361400,0.525,Asia,287000000,237000000 "Hong Kong SAR, China",12/1/2005,0.008,0.241,40546,11,,12664,181570000000,,,80,,0.569,0.078,85,79,1.239,1,0.142,0.736,0.121,6813200,1,Asia,13588000000,13305000000 India,12/1/2005,0.023,0.666,1411128,71,,539388,834215000000,0.042,32,264,0.056,0.024,0.108,66,63,0.08,1,0.322,0.631,0.047,1127143548,0.292,Asia,7659000000,8277000000 Indonesia,12/1/2005,0.021,0.375,341992,151,,179461,285869000000,0.028,36,560,0.033,0.036,0.141,71,67,0.209,1,0.3,0.651,0.049,224480901,0.459,Asia,5094000000,4740000000 Japan,12/1/2005,0.008,0.525,1238181,30,,520541,4571870000000,0.082,2928,315,0.003,0.669,0.017,85,79,0.76,1,0.138,0.663,0.198,127773000,0.86,Asia,15555000000,48102000000 Kazakhstan,12/1/2005,0.018,0.441,176947,25,,50805,57123671734,0.041,154,271,0.029,0.03,,72,60,0.358,1,0.247,0.677,0.076,15147029,0.547,Asia,801000000,940000000 "Korea, Dem. Rep.",12/1/2005,0.016,,83014,,,21331,,,,,0.026,,,72,65,,1,0.247,0.678,0.074,23813333,0.598,Asia,, "Korea, Rep.",12/1/2005,0.009,0.354,462918,17,,210176,898134000000,0.056,988,290,0.005,0.735,0.056,82,75,0.815,1,0.191,0.716,0.093,48138077,0.813,Asia,8290000000,16924000000 Kyrgyz Republic,12/1/2005,0.021,0.681,5233,21,,2497,2459876152,0.058,28,202,0.034,0.105,0.266,72,64,0.107,1,0.313,0.631,0.056,5162600,0.353,Asia,94000000,94000000 Lao PDR,12/1/2005,0.028,0.352,1434,153,,,2735550177,0.043,20,672,0.07,0.009,0.268,66,63,0.114,1,0.404,0.559,0.037,5790646,0.274,Asia,143000000,10000000 "Macao SAR, China",12/1/2005,0.008,,1837,,,,11792570016,,,,,0.349,0.07,81,76,1.138,1,0.173,0.754,0.073,468149,1,Asia,8190000000,615000000 Malaysia,12/1/2005,0.019,0.36,177373,37,,63507,143533000000,0.032,179,190,0.007,0.486,0.06,76,72,0.756,1,0.302,0.654,0.044,25843466,0.666,Asia,10389000000,4339000000 Maldives,12/1/2005,0.021,0.093,700,9,,225,992473987,0.07,235,,0.019,0.069,0.13,75,73,0.684,1,0.343,0.611,0.046,297576,0.338,Asia,826000000,94000000 Mongolia,12/1/2005,0.02,0.398,8647,13,,2625,2523359941,0.06,60,204,0.037,,0.306,69,62,0.221,1,0.289,0.673,0.037,2526502,0.625,Asia,203000000,173000000 Myanmar,12/1/2005,0.019,,11613,,,14817,,0.021,5,,0.051,0.001,0.15,66,61,0.003,1,0.281,0.67,0.049,50181020,0.289,Asia,83000000,34000000 Nepal,12/1/2005,0.028,0.325,3242,31,,9132,8130258976,0.057,19,408,0.047,0.008,0.081,66,64,0.009,1,0.395,0.561,0.044,25292058,0.152,Asia,160000000,221000000 Pakistan,12/1/2005,0.028,0.431,136636,24,,76227,109502000000,0.032,22,560,0.08,0.063,0.091,66,64,0.081,1,0.382,0.577,0.041,157971415,0.347,Asia,828000000,1753000000 Philippines,12/1/2005,0.027,0.472,74832,47,,38756,103066000000,0.039,47,195,0.028,0.054,0.102,71,64,0.405,1,0.371,0.595,0.034,85821214,0.466,Asia,2755000000,1547000000 Singapore,12/1/2005,0.01,0.277,30359,6,,21947,127418000000,0.038,1058,80,0.002,0.61,0.053,83,78,0.975,1,0.191,0.726,0.082,4265800,1,Asia,6209000000,10071000000 Sri Lanka,12/1/2005,0.019,0.567,11643,48,,9001,24405791045,0.04,49,256,0.012,0.018,0.108,77,70,0.168,1,0.254,0.675,0.07,19644000,0.184,Asia,729000000,552000000 Tajikistan,12/1/2005,0.03,0.799,2439,80,,2342,2312319579,0.048,16,224,0.054,0.003,0.233,69,62,0.039,1,0.384,0.579,0.037,6805655,0.264,Asia,9100000,3800000 Thailand,12/1/2005,0.013,0.375,256169,33,,99166,176352000000,0.035,95,264,0.015,0.15,0.058,76,69,0.465,1,0.223,0.7,0.077,65559487,0.375,Asia,12102000000,4917000000 Timor-Leste,12/1/2005,0.038,0.484,176,167,,58,479100000,0.073,33,640,0.065,0.001,0.167,65,62,0.033,1,0.48,0.493,0.027,982889,0.263,Asia,, Turkmenistan,12/1/2005,0.023,,45375,,,19166,8104355717,0.03,107,,0.058,0.01,,69,60,0.022,1,0.327,0.627,0.046,4747839,0.47,Asia,, Uzbekistan,12/1/2005,0.02,0.967,111888,29,,46965,14307509839,0.051,28,196,0.047,0.033,,71,64,0.028,1,0.332,0.62,0.047,26167000,0.367,Asia,28000000, Vietnam,12/1/2005,0.017,0.399,97942,45,,41455,57633255739,0.059,36,1050,0.024,0.127,0.11,80,70,0.113,1,0.271,0.663,0.066,82393500,0.273,Asia,2300000000,900000000 Albania,12/1/2005,0.014,0.582,4254,41,,2172,8376483740,0.063,160,364,0.018,0.06,0.131,79,73,0.479,1,0.265,0.649,0.085,2992724,0.467,Europe,880000000,808000000 Andorra,12/1/2005,0.011,,576,,,,2539759286,0.058,2356,,0.003,0.376,,,,0.795,1,,,,81223,0.903,Europe,, Austria,12/1/2005,0.01,0.582,74238,25,,33792,304984000000,0.104,3863,170,0.004,0.58,,82,77,1.052,1,0.16,0.679,0.161,8227829,0.658,Europe,18471000000,11077000000 Belarus,12/1/2005,0.009,1.373,59064,79,,26874,30210091837,0.069,215,987,0.007,,0.114,75,63,0.424,1,0.155,0.698,0.147,9663000,0.724,Europe,346000000,516000000 Belgium,12/1/2005,0.011,0.595,108525,34,,58688,377350000000,0.1,3606,156,0.004,0.558,0.067,82,76,0.914,1,0.171,0.657,0.173,10478617,0.974,Europe,10881000000,16771000000 Bosnia and Herzegovina,12/1/2005,0.008,0.428,25618,63,,5042,10948051122,0.087,246,368,0.007,0.213,0.096,78,73,0.411,1,0.189,0.68,0.131,3879828,0.392,Europe,557000000,158000000 Bulgaria,12/1/2005,0.009,0.452,47909,32,,19898,28895083540,0.073,274,616,0.014,0.2,0.087,76,69,0.813,1,0.137,0.689,0.174,7739900,0.706,Europe,3063000000,1858000000 Croatia,12/1/2005,0.01,0.214,23106,29,,8905,44821408831,0.07,705,232,0.006,0.331,0.112,79,72,0.832,1,0.16,0.67,0.171,4442000,0.564,Europe,7625000000,786000000 Cyprus,12/1/2005,0.012,,7503,,,2219,16997801392,0.064,1434,,0.004,0.328,0.071,81,77,0.758,1,0.2,0.693,0.107,1032586,0.683,Europe,2644000000,1001000000 Czech Republic,12/1/2005,0.01,0.488,120736,40,,44941,130066000000,0.069,882,930,0.004,0.353,0.058,79,73,1.151,1,0.148,0.711,0.141,10211216,0.736,Europe,5772000000,2603000000 Denmark,12/1/2005,0.012,0.333,47099,6,,18888,257676000000,0.098,4652,135,0.004,0.827,,80,76,1.006,1,0.187,0.661,0.151,5419432,0.859,Europe,5293000000,6850000000 Estonia,12/1/2005,0.011,0.503,16780,35,,5164,13905561150,0.05,513,81,0.006,0.615,0.049,78,67,1.091,1,0.153,0.679,0.168,1354775,0.687,Europe,1229000000,530000000 Faeroe Islands,12/1/2005,,,766,,,,1730894295,,,,,0.679,,82,77,0.855,1,,,,49157,0.398,Europe,, Finland,12/1/2005,0.011,0.495,54646,14,,34263,195778000000,0.084,3151,269,0.003,0.745,,82,76,1.005,1,0.174,0.667,0.159,5246096,0.829,Europe,3069000000,3622000000 France,12/1/2005,0.013,0.651,392072,7,,270660,2136560000000,0.11,3750,132,0.004,0.429,,84,77,0.783,1,0.185,0.651,0.164,63176246,0.771,Europe,51691000000,38813000000 Germany,12/1/2005,0.008,0.477,806703,45,,335185,2766250000000,0.108,3624,196,0.004,0.687,,82,76,0.946,1,0.143,0.667,0.189,82469422,0.734,Europe,40531000000,84838000000 Greece,12/1/2005,0.01,0.54,98675,38,,30248,240076000000,0.097,2093,264,0.005,0.24,,82,77,0.929,1,0.144,0.671,0.186,11092913,0.745,Europe,13453000000,3045000000 Hungary,12/1/2005,0.01,0.566,57917,38,,27583,110322000000,0.084,923,340,0.007,0.39,0.085,77,69,0.923,1,0.155,0.688,0.157,10087065,0.664,Europe,4761000000,2721000000 Iceland,12/1/2005,0.014,0.264,2204,5,,3480,16286331747,0.096,5329,140,0.002,0.87,0.148,84,80,0.954,1,0.221,0.662,0.117,296734,0.93,Europe,635000000,991000000 Ireland,12/1/2005,0.015,0.253,43535,18,,14330,202578000000,0.076,3734,76,0.004,0.416,0.026,81,77,1.027,1,0.206,0.684,0.111,4159914,0.605,Europe,6780000000,6186000000 Isle of Man,12/1/2005,0.011,,,,,,2915710378,,,,,,,,,,1,,,,80345,0.519,Europe,, Italy,12/1/2005,0.01,0.768,473380,13,,183873,1786280000000,0.087,2672,340,0.004,0.35,0.053,84,78,1.219,1,0.141,0.663,0.196,57969484,0.677,Europe,38374000000,26774000000 Kosovo,12/1/2005,0.021,,,,,1946,3743116980,,,,,,0.14,71,67,,1,,,,1705780,,Europe,, Latvia,12/1/2005,0.01,0.364,7176,16,,4528,16041840426,0.064,442,320,0.011,0.46,0.061,77,66,0.84,1,0.148,0.681,0.172,2238799,0.68,Europe,446000000,655000000 Liechtenstein,12/1/2005,0.011,,,,,,3658356378,,,,,0.634,,84,77,0.792,1,,,,34740,0.147,Europe,, Lithuania,12/1/2005,0.009,0.512,13993,26,,8848,26085307222,0.058,446,166,0.008,0.362,0.053,77,65,1.325,1,0.167,0.681,0.151,3322528,0.666,Europe,975000000,757000000 Luxembourg,12/1/2005,0.012,,11544,,,4382,37643013481,0.079,6485,,0.003,0.7,,82,77,1.114,1,0.186,0.67,0.144,465158,0.866,Europe,3612000000,2977000000 "Macedonia, FYR",12/1/2005,0.011,0.203,11280,48,,2842,5985809060,0.081,231,192,0.012,0.265,0.121,77,72,0.541,1,0.198,0.69,0.112,2090044,0.575,Europe,116000000,97000000 Malta,12/1/2005,0.01,,2699,,,881,5980795756,0.091,1394,,0.006,0.412,0.055,81,77,0.781,1,0.173,0.694,0.133,403834,0.936,Europe,924000000,311000000 Moldova,12/1/2005,0.012,0.48,4895,30,,3500,2988172424,0.092,76,234,0.019,0.146,0.193,72,64,0.289,1,0.19,0.698,0.112,3595187,0.453,Europe,138000000,170000000 Monaco,12/1/2005,,,,,,,4280072626,0.04,4960,,0.004,0.555,,,,0.508,1,,,,33808,1,Europe,, Montenegro,12/1/2005,0.013,,2057,,,987,2257181943,0.087,319,,0.01,0.271,,76,71,0.882,1,0.201,0.67,0.129,615820,0.622,Europe,, Netherlands,12/1/2005,0.012,0.477,172228,9,,78824,638471000000,0.109,4261,250,0.005,0.81,0.028,82,77,0.971,1,0.184,0.675,0.14,16319868,0.826,Europe,16528000000,16621000000 Norway,12/1/2005,0.012,0.411,42438,8,,26771,304060000000,0.095,6293,87,0.003,0.82,0.04,83,78,1.028,1,0.196,0.656,0.147,4623291,0.775,Europe,4243000000,10400000000 Poland,12/1/2005,0.01,0.432,303598,31,,92377,303912000000,0.062,494,418,0.007,0.388,0.068,79,71,0.763,1,0.164,0.703,0.133,38165445,0.615,Europe,7128000000,5894000000 Portugal,12/1/2005,0.01,0.438,65309,54,,26467,191848000000,0.104,1886,328,0.004,0.35,,81,75,1.089,1,0.156,0.673,0.171,10503330,0.575,Europe,9008000000,3743000000 Romania,12/1/2005,0.01,0.558,95676,11,,38693,99172613716,0.055,251,190,0.018,0.215,0.196,76,68,0.604,1,0.155,0.697,0.148,21319685,0.532,Europe,1325000000,1073000000 Russian Federation,12/1/2005,0.01,0.6,1615688,29,,651712,764001000000,0.052,277,448,0.014,0.152,0.107,72,59,0.834,1,0.152,0.71,0.138,143113885,0.735,Europe,7806000000,18305000000 San Marino,12/1/2005,0.01,,,,,,1375416604,0.053,3399,,0.004,0.503,0.072,85,79,0.576,1,,,,29775,0.94,Europe,, Serbia,12/1/2005,0.01,0.358,,23,,16051,25234408773,0.091,307,279,0.008,0.263,0.168,75,70,0.67,1,0.181,0.679,0.14,7440769,0.545,Europe,308000000,260000000 Slovak Republic,12/1/2005,0.01,0.487,39175,27,,18830,61328471583,0.07,627,325,0.008,0.552,0.067,78,70,0.842,1,0.168,0.716,0.117,5372807,0.556,Europe,1282000000,1122000000 Slovenia,12/1/2005,0.009,0.392,15867,60,,7293,35717733757,0.084,1494,260,0.004,0.468,0.078,81,74,0.879,1,0.142,0.703,0.155,2000474,0.505,Europe,1894000000,1019000000 Spain,12/1/2005,0.011,0.619,353462,47,,141914,1130800000000,0.083,2178,298,0.005,0.479,,84,77,0.984,1,0.145,0.688,0.168,43653155,0.773,Europe,53066000000,18441000000 Sweden,12/1/2005,0.011,0.541,51562,16,,51569,370580000000,0.091,3726,122,0.003,0.848,0.033,83,78,1.008,1,0.174,0.653,0.173,9029572,0.843,Europe,7739000000,11380000000 Switzerland,12/1/2005,0.01,0.288,41375,18,,25941,384755000000,0.109,5637,63,0.004,0.701,0.031,84,79,0.922,1,0.163,0.679,0.158,7437115,0.735,Europe,11937000000,10579000000 Turkey,12/1/2005,0.019,0.528,237369,6,,84379,482980000000,0.054,366,254,0.026,0.155,,76,69,0.644,1,0.285,0.649,0.066,67743052,0.678,Europe,20760000000,3563000000 Ukraine,12/1/2005,0.009,0.573,333869,34,,142883,86142018069,0.064,117,2085,0.013,0.037,0.162,74,62,0.637,1,0.147,0.695,0.158,47105150,0.678,Europe,3542000000,3078000000 United Kingdom,12/1/2005,0.012,0.347,541986,13,,222638,2321360000000,0.083,3161,105,0.005,0.7,0.046,81,77,1.086,1,0.179,0.661,0.16,60401206,0.799,Europe,39411000000,72993000000 Bahrain,12/1/2005,0.019,,19208,,,7332,15969151306,0.037,573,,0.009,0.213,0.078,76,75,0.872,1,0.269,0.709,0.022,879534,0.884,Middle East,1603000000,574000000 "Iran, Islamic Rep.",12/1/2005,0.018,0.442,469328,28,,172442,192015000000,0.053,156,344,0.022,0.081,0.16,73,70,0.121,1,0.258,0.693,0.049,70152384,0.676,Middle East,1025000000,4112000000 Iraq,12/1/2005,0.034,0.242,114770,32,,26866,49954890353,0.041,55,312,0.033,0.009,0.137,72,67,0.056,1,0.419,0.546,0.035,27377045,0.688,Middle East,186000000,627000000 Israel,12/1/2005,0.021,0.391,60245,20,,18478,133959000000,0.077,1480,230,0.005,0.252,0.068,82,78,1.175,1,0.279,0.621,0.1,6930100,0.915,Middle East,3427000000,3780000000 Jordan,12/1/2005,0.03,0.311,21027,16,,6677,12582876895,0.089,213,136,0.02,0.129,0.076,74,71,0.599,1,0.379,0.589,0.032,5411000,0.812,Middle East,1759000000,653000000 Kuwait,12/1/2005,0.021,0.107,71547,35,,26399,80797945205,0.024,834,98,0.01,0.259,0.075,75,73,0.602,1,0.255,0.712,0.033,2296314,0.982,Middle East,413000000,4997000000 Lebanon,12/1/2005,0.014,0.354,16245,46,,5023,21287562189,0.078,420,180,0.012,0.101,0.106,79,75,0.249,1,0.279,0.646,0.075,3986865,0.866,Middle East,5969000000,3565000000 Oman,12/1/2005,0.022,0.195,29893,35,,10772,30905071771,0.026,331,52,0.011,0.067,0.071,77,72,0.529,1,0.351,0.624,0.025,2522325,0.724,Middle East,627000000,863000000 Qatar,12/1/2005,0.015,,51881,,,16638,44530493222,0.03,1634,,0.009,0.247,0.067,78,77,0.873,1,0.237,0.749,0.014,821159,0.974,Middle East,760000000,1759000000 Saudi Arabia,12/1/2005,0.023,0.145,397642,67,,145540,328460000000,0.035,466,69,0.017,0.127,,76,72,0.574,1,0.343,0.626,0.031,24690067,0.81,Middle East,4626000000,9087000000 Syrian Arab Republic,12/1/2005,0.027,0.433,50634,43,,20792,28858965517,0.041,63,336,0.016,0.056,0.08,77,73,0.162,1,0.386,0.58,0.034,18167367,0.538,Middle East,2035000000,584000000 United Arab Emirates,12/1/2005,0.016,0.144,116149,19,,43231,180617000000,0.023,1030,12,0.008,0.4,,77,75,1.093,1,0.2,0.791,0.008,4148883,0.823,Middle East,3218000000,6186000000 "Yemen, Rep.",12/1/2005,0.035,1.952,20044,63,,6589,16753787028,0.046,42,248,0.056,0.01,0.18,63,60,0.113,1,0.457,0.517,0.026,20139661,0.289,Middle East,181000000,224000000 American Samoa,12/1/2005,,,,,,,,,,,,,,,,,1,,,,59117,0.881,Oceania,, Australia,12/1/2005,0.013,0.521,362685,3,,113503,693663000000,0.085,3136,107,0.005,0.63,0.091,83,79,0.898,1,0.198,0.673,0.129,20394800,0.88,Oceania,19820000000,15656000000 Fiji,12/1/2005,0.023,0.415,1364,46,,578,3006725015,0.036,132,140,0.02,0.085,0.068,71,66,0.249,1,0.306,0.653,0.041,822484,0.499,Oceania,722000000,132000000 French Polynesia,12/1/2005,0.018,,851,,,,,,,,,0.215,,77,72,0.471,1,0.277,0.672,0.05,254884,0.564,Oceania,759000000,430000000 Guam,12/1/2005,0.019,,,,,,,,,,,0.386,,79,74,,1,0.295,0.641,0.064,158401,0.936,Oceania,, Kiribati,12/1/2005,0.025,0.318,62,31,,8,106147384,0.101,118,120,0.05,0.04,,69,64,0.007,1,0.371,0.593,0.036,90468,0.436,Oceania,3100000,9300000 Marshall Islands,12/1/2005,0.035,0.648,84,17,,29,137556823,0.173,462,128,0.033,0.039,,,,0.013,1,,,,52058,0.699,Oceania,5700000,400000 "Micronesia, Fed. Sts.",12/1/2005,0.026,0.596,117,16,,,249845593,0.121,285,128,0.037,0.119,0.164,69,67,0.133,1,0.388,0.572,0.04,106198,0.223,Oceania,21000000,7000000 New Caledonia,12/1/2005,0.017,,2838,,,,,,,,,0.324,,79,72,0.587,1,0.269,0.662,0.069,234393,0.64,Oceania,149000000,122000000 New Zealand,12/1/2005,0.014,0.366,33920,12,,16846,113791000000,0.084,2288,172,0.005,0.627,0.078,82,78,0.854,1,0.215,0.664,0.12,4133900,0.861,Oceania,5211000000,2671000000 Papua New Guinea,12/1/2005,0.033,0.416,4613,51,,,4901584516,0.04,32,207,0.056,0.017,0.115,63,59,0.012,1,0.4,0.574,0.026,6095959,0.131,Oceania,9400000,57000000 Samoa,12/1/2005,0.029,0.202,158,35,,57,412220560,0.05,114,224,0.017,0.034,0.114,74,68,0.133,1,0.396,0.556,0.048,179928,0.212,Oceania,74000000,20300000 Solomon Islands,12/1/2005,0.035,0.261,180,56,,58,413909879,0.078,69,80,0.029,0.008,0.141,67,64,0.013,1,0.413,0.557,0.03,469306,0.178,Oceania,6400000,11200000 Tonga,12/1/2005,0.029,0.275,158,32,,57,264812954,0.064,167,164,0.013,0.049,0.114,74,69,0.296,1,0.381,0.559,0.06,100960,0.232,Oceania,15000000,16000000 Vanuatu,12/1/2005,0.029,0.084,55,47,,30,394962552,0.033,61,120,0.018,0.051,0.075,71,67,0.061,1,0.397,0.57,0.033,209375,0.231,Oceania,104000000,13000000 Antigua and Barbuda,12/1/2005,0.019,0.515,411,31,,137,1001970945,0.045,544,184,0.011,0.27,0.114,77,72,1.042,1,0.283,0.644,0.073,82565,0.292,The Americas,309000000,40000000 Argentina,12/1/2005,0.018,1.075,160952,30,,66973,222908000000,0.083,395,453,0.015,0.177,0.062,79,71,0.573,1,0.263,0.634,0.102,38647854,0.901,The Americas,3209000000,3554000000 Aruba,12/1/2005,0.012,,2274,,,,2331005587,,,,,0.254,0.115,77,72,1.034,1,0.215,0.699,0.086,100031,0.449,The Americas,1097000000,250000000 "Bahamas, The",12/1/2005,0.015,,1599,,,696,7706222000,0.06,1394,,0.013,0.25,0.055,77,71,0.692,1,0.256,0.682,0.062,329088,0.823,The Americas,2081000000,528000000 Barbados,12/1/2005,0.013,,1353,,,390,3891500000,0.07,765,,0.015,0.525,0.092,76,72,0.754,1,0.206,0.686,0.108,273568,0.329,The Americas,1081000000,274000000 Belize,12/1/2005,0.027,0.347,396,45,,161,1114200000,0.044,182,147,0.018,0.092,0.143,75,69,0.353,1,0.379,0.58,0.041,271920,0.463,The Americas,214000000,45000000 Bermuda,12/1/2005,0.013,,444,,,,4868136000,,,,,0.654,,81,76,0.822,1,,,,64154,1,The Americas,429000000,239000000 Bolivia,12/1/2005,0.029,0.8,12325,50,,5183,9549196256,0.056,57,1080,0.044,0.052,0.166,67,63,0.259,1,0.383,0.573,0.044,9354709,0.642,The Americas,345000000,257000000 Brazil,12/1/2005,0.018,0.69,347309,152,,215332,882186000000,0.082,387,2600,0.02,0.21,0.554,76,68,0.463,1,0.276,0.663,0.062,186142403,0.828,The Americas,4168000000,5905000000 Canada,12/1/2005,0.011,0.475,563072,3,,272206,1164180000000,0.098,3452,119,0.005,0.717,0.044,83,78,0.528,1,0.177,0.692,0.131,32312000,0.801,The Americas,15887000000,22739000000 Cayman Islands,12/1/2005,,,513,,,,,,,,,0.38,,,,1.665,1,,,,48623,1,The Americas,356000000, Chile,12/1/2005,0.015,0.253,61730,27,,28352,124404000000,0.066,497,316,0.008,0.312,0.067,81,75,0.647,1,0.249,0.671,0.08,16337749,0.874,The Americas,1682000000,1355000000 Colombia,12/1/2005,0.021,0.837,60946,42,,27085,146520000000,0.058,197,456,0.018,0.11,0.146,76,69,0.506,1,0.308,0.642,0.051,43184026,0.736,The Americas,1574000000,1565000000 Costa Rica,12/1/2005,0.017,0.552,7088,77,,3865,19964893807,0.077,364,402,0.009,0.221,0.247,81,76,0.255,1,0.279,0.662,0.059,4320130,0.657,The Americas,1810000000,556000000 Cuba,12/1/2005,0.011,,26006,,,10758,42644200000,0.081,306,,0.005,0.097,,80,76,0.012,1,0.195,0.696,0.11,11292078,0.761,The Americas,2591000000, Curacao,12/1/2005,,,,,,,,,,,,,,,,,1,0.211,0.668,0.121,136708,0.905,The Americas,244000000,164000000 Dominica,12/1/2005,,0.37,114,14,,41,361615918,0.05,255,147,0.012,0.385,0.099,,,0.737,1,,,,70542,0.666,The Americas,57000000,10000000 Dominican Republic,12/1/2005,0.024,0.355,19651,74,,6840,33969724872,0.053,188,232,0.029,0.115,0.241,75,69,0.388,1,0.331,0.613,0.057,9343362,0.674,The Americas,3518000000,511000000 Ecuador,12/1/2005,0.024,0.353,29908,69,,11048,41507085000,0.063,190,600,0.024,0.06,0.096,78,72,0.453,1,0.327,0.617,0.056,13777131,0.617,The Americas,488000000,644000000 El Salvador,12/1/2005,0.021,0.347,6454,40,,4509,17093800000,0.072,202,320,0.02,0.042,,75,66,0.397,1,0.357,0.581,0.062,6072538,0.616,The Americas,656000000,288000000 Greenland,12/1/2005,0.016,,609,,,,1702543477,,,,,0.577,,72,67,0.816,1,,,,56935,0.829,The Americas,, Grenada,12/1/2005,0.019,0.453,216,20,,79,700431791,0.061,412,140,0.013,0.205,0.101,74,69,0.455,1,0.3,0.623,0.077,102951,0.359,The Americas,71000000,10000000 Guatemala,12/1/2005,0.035,0.387,12453,39,,7855,27211230374,0.065,138,344,0.033,0.057,0.13,73,66,0.356,1,0.432,0.526,0.043,12678919,0.472,The Americas,791000000,532000000 Guyana,12/1/2005,0.022,0.39,1434,42,,495,824880550,0.053,58,288,0.036,,0.145,68,62,0.37,1,0.366,0.596,0.038,760834,0.283,The Americas,35000000,40000000 Haiti,12/1/2005,0.029,0.404,2076,202,,2585,4154289832,0.044,20,184,0.066,0.064,0.41,61,58,0.054,1,0.381,0.578,0.042,9260879,0.441,The Americas,80000000,174000000 Honduras,12/1/2005,0.029,0.44,7554,62,,3997,9672006169,0.077,109,424,0.026,0.065,0.188,74,69,0.186,1,0.398,0.56,0.041,6898825,0.485,The Americas,465000000,321000000 Jamaica,12/1/2005,0.018,0.499,10645,8,,3717,11075778481,0.041,170,414,0.018,0.128,0.174,74,69,0.739,1,0.311,0.612,0.077,2643601,0.528,The Americas,1783000000,290000000 Mexico,12/1/2005,0.022,0.557,435046,58,,170263,866346000000,0.059,478,552,0.017,0.172,0.097,78,73,0.426,1,0.323,0.624,0.053,110731826,0.763,The Americas,12801000000,8951000000 Nicaragua,12/1/2005,0.025,0.635,4320,39,,2836,6322582497,0.061,71,240,0.026,0.026,0.121,75,69,0.205,1,0.378,0.581,0.041,5455219,0.559,The Americas,206000000,162000000 Panama,12/1/2005,0.022,0.439,6839,18,,2884,15464700000,0.075,344,560,0.019,0.115,0.087,79,73,0.52,1,0.307,0.632,0.061,3365929,0.637,The Americas,1108000000,388000000 Paraguay,12/1/2005,0.026,0.545,3832,74,,3954,8734651406,0.056,82,328,0.024,0.079,0.299,73,69,0.32,1,0.358,0.594,0.048,5904170,0.574,The Americas,96000000,130000000 Peru,12/1/2005,0.022,0.384,37136,102,,13646,74147754854,0.045,128,424,0.022,0.171,0.255,75,70,0.201,1,0.32,0.626,0.054,27723281,0.75,The Americas,1438000000,970000000 Puerto Rico,12/1/2005,0.013,0.576,,7,,,83914521341,,,140,,0.234,,82,74,0.53,1,0.222,0.657,0.122,3821362,0.941,The Americas,3239000000,1663000000 Sint Maarten (Dutch part),12/1/2005,,,,,,,,,,,,,,,,,1,,,,36936,1,The Americas,659000000,94000000 St. Kitts and Nevis,12/1/2005,,0.523,235,19,,79,536410666,0.036,389,172,0.011,0.34,0.1,,,1.038,1,,,,49139,0.32,The Americas,121000000,11000000 St. Lucia,12/1/2005,0.017,0.357,367,20,,123,908558307,0.063,348,71,0.015,0.216,0.106,75,71,0.639,1,0.285,0.643,0.072,165407,0.231,The Americas,382000000,39000000 St. Martin (French part),12/1/2005,0.018,,,,,,,,,,,,,81,75,,1,,,,27906,,The Americas,, St. Vincent and the Grenadines,12/1/2005,0.018,0.45,198,12,,67,551431645,0.037,185,76,0.019,0.092,0.096,74,69,0.649,1,0.285,0.643,0.072,108749,0.47,The Americas,104000000,15000000 Suriname,12/1/2005,0.02,0.279,2380,694,,696,1793557833,0.068,243,199,0.026,0.064,0.174,72,66,0.466,1,0.299,0.64,0.061,499523,0.667,The Americas,96000000,94000000 Trinidad and Tobago,12/1/2005,0.015,0.37,28581,43,,16880,16088526686,0.053,648,210,0.024,0.29,0.091,73,65,0.713,1,0.218,0.709,0.072,1296933,0.099,The Americas,593000000,234000000 Turks and Caicos Islands,12/1/2005,,,121,,,,,,,,,,,,,,1,,,,26450,0.877,The Americas,, United States,12/1/2005,0.014,0.458,5826394,6,,2318861,13095400000000,0.158,6732,325,0.007,0.68,0.062,80,75,0.683,1,0.205,0.671,0.123,295516599,0.799,The Americas,127237000000, Uruguay,12/1/2005,0.015,0.713,5776,45,,2957,17362872710,0.082,430,304,0.012,0.201,0.136,79,72,0.347,1,0.238,0.627,0.135,3325155,0.933,The Americas,699000000,331000000 "Venezuela, RB",12/1/2005,0.022,0.502,181630,141,,66558,145513000000,0.054,296,864,0.016,0.126,0.168,76,70,0.468,1,0.313,0.637,0.05,26725897,0.886,The Americas,722000000,1843000000 Virgin Islands (U.S.),12/1/2005,0.015,,,,,,,,,,,0.273,,82,76,0.745,1,0.224,0.67,0.106,107863,0.937,The Americas,1432000000, Algeria,12/1/2006,0.022,0.769,103963,25,,34658,117027000000,0.031,106,451,0.028,0.074,0.08,72,68,0.609,1,0.282,0.673,0.045,34507214,0.646,Africa,393000000,414000000 Angola,12/1/2006,0.049,0.521,22266,119,,10006,41789494462,0.045,111,272,0.12,0.019,0.195,50,48,0.178,1,0.478,0.497,0.024,17122409,0.369,Africa,91000000,393000000 Benin,12/1/2006,0.04,0.757,3876,31,,2949,4705087452,0.048,26,270,0.072,0.015,,59,56,0.125,1,0.443,0.529,0.028,8443671,0.403,Africa,122000000,71000000 Botswana,12/1/2006,0.025,0.171,4646,107,,1956,10126990488,0.049,263,140,0.043,0.043,0.165,47,46,0.434,1,0.354,0.613,0.033,1895944,0.553,Africa,539000000,285000000 Burkina Faso,12/1/2006,0.044,0.476,1360,34,,,5844669738,0.074,28,270,0.083,0.006,,54,52,0.074,1,0.464,0.51,0.025,13822257,0.223,Africa,55000000,84000000 Burundi,12/1/2006,0.044,2.797,187,13,,,1273180655,0.116,18,140,0.072,0.007,0.171,52,49,0.025,1,0.449,0.524,0.027,8042579,0.096,Africa,1600000,126000000 Cameroon,12/1/2006,0.04,0.508,3828,45,,6723,17953103009,0.048,46,654,0.076,0.02,0.153,53,51,0.168,1,0.441,0.526,0.033,18611937,0.491,Africa,231000000,521000000 Central African Republic,12/1/2006,0.037,2.038,227,22,,,1473721521,0.04,15,504,0.109,0.003,0.153,47,44,0.027,1,0.417,0.544,0.04,4032102,0.382,Africa,10200000,47000000 Chad,12/1/2006,0.049,0.74,407,64,,,7422102520,0.04,24,732,0.1,0.006,0.153,49,47,0.045,1,0.492,0.482,0.026,10356822,0.218,Africa,, Comoros,12/1/2006,0.039,2.179,121,22,,42,403179474,0.046,30,100,0.069,0.022,0.105,61,58,0.06,1,0.417,0.553,0.03,616526,0.279,Africa,27000000,11000000 "Congo, Dem. Rep.",12/1/2006,0.046,2.865,2417,133,,20715,14296505933,0.055,9,308,0.102,0.003,0.464,50,46,0.079,1,0.461,0.511,0.028,55590838,0.38,Africa,3100000,93000000 "Congo, Rep.",12/1/2006,0.039,0.649,1338,37,,1154,7731261169,0.024,50,606,0.057,0.02,0.153,56,53,0.252,1,0.422,0.543,0.035,3646653,0.614,Africa,45000000,132000000 Cote d'Ivoire,12/1/2006,0.036,0.473,6997,45,,9537,17367303156,0.06,59,270,0.087,0.015,,49,47,0.23,1,0.423,0.547,0.03,17662417,0.475,Africa,104000000,583000000 Djibouti,12/1/2006,0.029,0.378,488,37,,143,768873684,0.071,66,66,0.069,0.013,,60,57,0.057,1,0.365,0.601,0.034,787544,0.768,Africa,9800000,15000000 "Egypt, Arab Rep.",12/1/2006,0.024,0.464,178616,19,,66269,107484000000,0.052,75,596,0.024,0.137,0.126,72,67,0.247,1,0.322,0.624,0.055,72990754,0.431,Africa,8133000000,2156000000 Equatorial Guinea,12/1/2006,0.038,0.441,4752,135,,1503,8081982438,0.023,287,492,0.085,0.013,0.153,51,48,0.193,1,0.403,0.566,0.032,621517,0.389,Africa,, Eritrea,12/1/2006,0.04,0.845,561,76,,697,1211161880,0.032,8,216,0.046,,,61,57,0.012,1,0.432,0.548,0.02,5035036,0.192,Africa,60000000, Ethiopia,12/1/2006,0.038,0.303,5420,18,,29705,15000803171,0.042,8,212,0.065,0.003,0.07,59,57,0.011,1,0.46,0.509,0.031,78290649,0.159,Africa,639000000,97000000 Gabon,12/1/2006,0.033,0.447,1977,57,,1768,9545982814,0.032,216,488,0.049,0.055,0.153,61,59,0.636,1,0.393,0.551,0.056,1412907,0.84,Africa,, "Gambia, The",12/1/2006,0.044,2.921,337,27,,114,655068112,0.047,21,376,0.056,0.052,0.298,58,56,0.273,1,0.46,0.515,0.025,1482324,0.532,Africa,69000000,8000000 Ghana,12/1/2006,0.034,0.359,9289,18,,9062,20410239313,0.054,48,304,0.057,0.027,,60,58,0.237,1,0.399,0.566,0.034,21947779,0.48,Africa,910000000,575000000 Guinea,12/1/2006,0.04,0.807,1181,40,,,2821346684,0.055,16,416,0.082,0.006,,54,53,,1,0.435,0.533,0.032,9798963,0.332,Africa,,41000000 Guinea-Bissau,12/1/2006,0.04,0.459,216,259,,90,578517349,0.059,24,208,0.094,0.021,,54,52,0.108,1,0.427,0.544,0.029,1452659,0.417,Africa,2800000,17800000 Kenya,12/1/2006,0.038,0.498,9575,54,,16896,22504136042,0.045,28,432,0.059,0.075,0.136,57,55,0.2,1,0.427,0.546,0.027,36757498,0.22,Africa,1181000000,178000000 Lesotho,12/1/2006,0.029,0.288,,73,,19,1428842600,0.071,52,564,0.084,0.03,0.122,44,44,0.184,1,0.393,0.561,0.046,1940413,0.228,Africa,29000000,263000000 Liberia,12/1/2006,0.04,0.429,759,68,,,604028582,0.109,18,158,0.077,,0.155,57,55,0.083,1,0.434,0.536,0.03,3384791,0.464,Africa,124000000,41000000 Libya,12/1/2006,0.023,,53788,,,17899,56484375000,0.025,237,,0.019,0.043,0.063,76,72,0.691,1,0.303,0.654,0.043,5686475,0.77,Africa,244000000,915000000 Madagascar,12/1/2006,0.037,0.465,1683,21,,,5515236338,0.05,15,304,0.052,0.006,0.295,63,60,0.056,1,0.446,0.525,0.029,18826126,0.294,Africa,386000000,86000000 Malawi,12/1/2006,0.042,0.334,953,39,,,3116789658,0.09,21,370,0.068,0.004,0.323,50,50,0.047,1,0.461,0.508,0.03,13307535,0.151,Africa,45000000,85000000 Mali,12/1/2006,0.048,0.514,568,41,,,6122644015,0.066,33,270,0.093,0.007,,52,52,0.123,1,0.464,0.506,0.03,12325545,0.328,Africa,175000000,196000000 Mauritania,12/1/2006,0.037,0.947,1676,82,,,3040718541,0.035,30,696,0.074,0.01,0.24,62,59,0.327,1,0.413,0.555,0.031,3237713,0.539,Africa,, Mauritius,12/1/2006,0.014,0.26,3777,46,,1173,6731536244,0.048,269,161,0.014,0.167,0.211,76,69,0.635,1,0.236,0.696,0.068,1252698,0.414,Africa,1302000000,347000000 Morocco,12/1/2006,0.02,0.517,47425,12,,13648,65637107776,0.052,113,358,0.034,0.198,,71,68,0.527,1,0.302,0.648,0.05,30395097,0.556,Africa,6900000000,1113000000 Mozambique,12/1/2006,0.043,0.375,1980,113,,8742,7095910828,0.065,21,230,0.087,0.008,0.186,49,47,0.108,1,0.45,0.519,0.032,21587317,0.302,Africa,145000000,196000000 Namibia,12/1/2006,0.029,0.258,2329,95,,1294,7978609422,0.072,280,339,0.044,0.044,0.112,60,55,0.297,1,0.395,0.571,0.033,2052931,0.376,Africa,473000000,118000000 Niger,12/1/2006,0.051,0.423,807,24,,,3646727993,0.079,21,270,0.079,0.003,,55,55,0.035,1,0.492,0.483,0.025,13679705,0.169,Africa,39000000,42000000 Nigeria,12/1/2006,0.042,0.322,98514,35,,107005,145430000000,0.057,59,1120,0.094,0.055,0.169,50,49,0.226,1,0.436,0.536,0.027,143314909,0.399,Africa,209000000,3536000000 Rwanda,12/1/2006,0.038,0.369,528,16,,,3110327823,0.1,32,168,0.061,,0.161,58,56,0.033,1,0.442,0.533,0.024,9660946,0.202,Africa,148000000,84000000 Sao Tome and Principe,12/1/2006,0.038,0.487,84,144,,44,135181862,0.078,68,424,0.046,0.142,0.293,67,63,0.116,1,0.418,0.542,0.039,158806,0.588,Africa,6700000,1100000 Senegal,12/1/2006,0.039,0.455,4789,59,,2798,9358710763,0.054,44,696,0.055,0.056,,63,60,0.258,1,0.44,0.529,0.032,11582925,0.413,Africa,329000000,139000000 Seychelles,12/1/2006,0.017,0.484,744,39,,243,1016419769,0.038,438,76,0.012,0.35,0.1,76,69,0.797,1,0.238,0.688,0.075,84600,0.513,Africa,323000000,56000000 Sierra Leone,12/1/2006,0.041,2.72,733,26,,,1887429109,0.142,51,399,0.125,0.002,0.24,43,43,,1,0.426,0.549,0.025,5280909,0.371,Africa,23000000,15000000 Somalia,12/1/2006,0.047,,576,,,,,,,,0.105,0.011,,54,51,0.063,1,0.478,0.493,0.029,8687671,0.356,Africa,, South Africa,12/1/2006,0.023,0.371,424844,35,,127255,261007000000,0.085,455,350,0.05,0.076,0.112,53,50,0.811,1,0.305,0.649,0.046,48269753,0.601,Africa,9211000000,5230000000 South Sudan,12/1/2006,0.039,,,,,,,,,,0.083,,,53,50,,1,0.438,0.529,0.033,8376893,0.173,Africa,, Sudan,12/1/2006,0.037,0.361,11503,39,,15917,35159250985,0.05,54,180,0.06,,,62,59,0.119,1,0.43,0.539,0.031,32397535,0.328,Africa,252000000,1414000000 Swaziland,12/1/2006,0.031,0.363,1016,60,,406,2947922183,0.068,180,104,0.076,0.037,0.112,46,46,0.224,1,0.412,0.556,0.032,1118253,0.219,Africa,75000000,54000000 Tanzania,12/1/2006,0.042,0.438,5959,27,,17809,14331231239,0.065,23,172,0.054,0.013,0.157,56,54,0.14,1,0.447,0.523,0.03,39942347,0.255,Africa,986000000,571000000 Togo,12/1/2006,0.038,0.525,1221,64,,2368,2202809211,0.064,25,270,0.067,0.02,,55,54,0.125,1,0.426,0.546,0.028,5685845,0.356,Africa,23000000,42000000 Tunisia,12/1/2006,0.017,0.606,23128,11,,8752,34378437265,0.056,194,268,0.019,0.13,,76,72,0.722,1,0.252,0.681,0.068,10127900,0.653,Africa,2999000000,498000000 Uganda,12/1/2006,0.046,0.352,2655,28,,,9942597753,0.096,32,237,0.064,0.025,0.187,54,53,0.068,1,0.493,0.482,0.025,29711397,0.133,Africa,347000000,196000000 Zambia,12/1/2006,0.044,0.154,2226,35,,7396,10702200822,0.064,58,183,0.073,0.042,0.232,49,48,0.141,1,0.468,0.505,0.027,11781612,0.37,Africa,110000000,97000000 Zimbabwe,12/1/2006,0.032,0.323,10345,97,,9714,5443896500,,,216,0.057,0.098,4.965,44,46,0.067,1,0.415,0.548,0.038,12724308,0.339,Africa,338000000, Afghanistan,12/1/2006,0.044,0.363,1338,9,,,7057597615,0.091,23,275,0.082,0.021,0.18,59,56,0.098,1,0.493,0.487,0.02,25631282,0.232,Asia,, Armenia,12/1/2006,0.014,0.366,4382,17,,2559,6384457744,0.046,97,580,0.02,0.056,0.165,77,70,0.42,1,0.214,0.67,0.116,3002911,0.642,Asia,307000000,321000000 Azerbaijan,12/1/2006,0.018,0.422,39167,51,,13232,20982270733,0.062,149,1000,0.042,0.12,0.179,72,67,0.384,1,0.251,0.685,0.064,8484550,0.526,Asia,201000000,256000000 Bangladesh,12/1/2006,0.023,0.353,48137,50,,25332,61901116736,0.034,14,400,0.048,0.01,0.153,68,67,0.132,1,0.338,0.619,0.044,144868702,0.275,Asia,80000000,444000000 Bhutan,12/1/2006,0.022,0.408,392,62,,211,897672086,0.044,59,274,0.043,0.045,0.14,65,65,0.123,1,0.329,0.629,0.041,665568,0.317,Asia,36000000,22000000 Brunei Darussalam,12/1/2006,0.019,0.374,4822,116,,3152,11470703002,0.022,680,144,0.007,0.422,0.055,79,75,0.804,1,0.285,0.683,0.033,374697,0.739,Asia,224000000,408000000 Cambodia,12/1/2006,0.026,0.215,3000,86,,3429,7274424519,0.054,29,137,0.048,0.005,,71,65,0.127,1,0.351,0.604,0.045,13555054,0.193,Asia,1109000000,176000000 China,12/1/2006,0.012,0.807,6414463,35,,1938944,2712950000000,0.046,93,832,0.019,0.105,0.061,76,73,0.348,1,0.198,0.724,0.078,1311020000,0.439,Asia,37132000000,28242000000 Georgia,12/1/2006,0.013,0.386,6150,16,,3032,7761900179,0.084,146,387,0.02,0.075,0.171,77,70,0.383,1,0.179,0.674,0.147,4398000,0.525,Asia,361000000,257000000 "Hong Kong SAR, China",12/1/2006,0.01,0.241,38555,11,,13330,193536000000,,,80,,0.608,0.078,86,79,1.367,1,0.137,0.74,0.123,6857100,1,Asia,15541000000,14044000000 India,12/1/2006,0.023,0.74,1504365,35,,567182,949117000000,0.04,33,264,0.054,0.028,0.112,66,63,0.145,1,0.318,0.634,0.048,1143289350,0.296,Asia,8915000000,8738000000 Indonesia,12/1/2006,0.021,0.375,345120,97,,183726,364571000000,0.029,47,576,0.032,0.048,0.16,71,67,0.28,1,0.3,0.651,0.049,227709821,0.467,Asia,4890000000,5458000000 Japan,12/1/2006,0.009,0.525,1231302,22,,519807,4356750000000,0.082,2794,350,0.003,0.687,0.017,86,79,0.785,1,0.137,0.659,0.204,127756000,0.871,Asia,11490000000,37659000000 Kazakhstan,12/1/2006,0.02,0.442,192532,21,,61504,81003864916,0.039,210,271,0.027,0.033,,72,61,0.511,1,0.245,0.68,0.075,15308084,0.545,Asia,973000000,1060000000 "Korea, Dem. Rep.",12/1/2006,0.015,,84557,,,21544,,,,,0.026,,,72,65,,1,0.243,0.679,0.077,23969917,0.599,Asia,, "Korea, Rep.",12/1/2006,0.009,0.311,470806,17,,213600,1011800000000,0.061,1201,290,0.005,0.781,0.06,82,76,0.85,1,0.186,0.718,0.097,48371946,0.815,Asia,8508000000,20989000000 Kyrgyz Republic,12/1/2006,0.023,0.672,5145,21,,2450,2834168889,0.067,38,202,0.033,0.123,0.232,72,64,0.248,1,0.308,0.638,0.054,5218400,0.353,Asia,189000000,142000000 Lao PDR,12/1/2006,0.029,0.352,1580,123,,,3452895836,0.043,25,672,0.068,0.012,0.3,66,64,0.171,1,0.396,0.566,0.038,5895930,0.285,Asia,160000000,15000000 "Macao SAR, China",12/1/2006,0.008,,1632,,,,14568709574,,,,,0.464,0.088,81,77,1.326,1,0.161,0.766,0.072,479808,1,Asia,10055000000,648000000 Malaysia,12/1/2006,0.018,0.36,170648,37,,63715,162692000000,0.036,222,190,0.007,0.516,0.065,76,72,0.739,1,0.297,0.659,0.045,26327098,0.675,Asia,12280000000,5085000000 Maldives,12/1/2006,0.021,0.093,887,9,,288,1303375806,0.067,287,,0.017,0.11,0.13,76,74,0.895,1,0.332,0.621,0.047,302825,0.35,Asia,1235000000,106000000 Mongolia,12/1/2006,0.021,0.398,9498,13,,2925,3414053251,0.054,72,204,0.035,,0.269,70,62,0.303,1,0.282,0.681,0.037,2559496,0.635,Asia,261000000,212000000 Myanmar,12/1/2006,0.019,,12611,,,15015,,0.02,5,,0.049,0.002,0.161,66,62,0.004,1,0.277,0.674,0.05,50500070,0.294,Asia,59000000,40000000 Nepal,12/1/2006,0.027,0.325,2662,31,,9131,9043715356,0.056,20,408,0.044,0.011,0.08,66,64,0.045,1,0.391,0.564,0.045,25634043,0.155,Asia,157000000,261000000 Pakistan,12/1/2006,0.028,0.416,146075,24,,79345,137264000000,0.037,29,560,0.079,0.065,0.11,66,65,0.214,1,0.376,0.583,0.042,160905794,0.351,Asia,919000000,2029000000 Philippines,12/1/2006,0.027,0.476,67693,47,,38456,122211000000,0.04,55,195,0.027,0.057,0.098,71,64,0.491,1,0.367,0.598,0.035,87366573,0.463,Asia,4019000000,1558000000 Singapore,12/1/2006,0.01,0.238,30799,6,,23509,147794000000,0.037,1167,80,0.002,0.59,0.053,83,78,1.038,1,0.188,0.729,0.083,4401400,1,Asia,7536000000,11268000000 Sri Lanka,12/1/2006,0.019,0.598,11738,48,,9083,28267410543,0.04,57,256,0.011,0.025,0.129,77,70,0.269,1,0.253,0.675,0.072,19858000,0.184,Asia,733000000,666000000 Tajikistan,12/1/2006,0.03,0.799,2655,80,,2414,2830236054,0.048,19,224,0.052,0.038,0.144,70,63,0.309,1,0.376,0.587,0.037,6954522,0.265,Asia,11200000,6000000 Thailand,12/1/2006,0.012,0.374,261211,33,,101043,207089000000,0.035,110,264,0.015,0.172,0.074,76,69,0.609,1,0.218,0.703,0.079,65883961,0.388,Asia,16614000000,6173000000 Timor-Leste,12/1/2006,0.038,0.484,180,167,,59,462600000,0.106,46,640,0.062,0.001,0.165,65,62,0.048,1,0.478,0.494,0.028,999053,0.269,Asia,20000000,2000000 Turkmenistan,12/1/2006,0.022,,46256,,,19628,10277598152,0.022,98,,0.057,0.013,,69,61,0.045,1,0.319,0.636,0.045,4801595,0.473,Asia,, Uzbekistan,12/1/2006,0.021,1.121,116530,29,,48872,17030896203,0.055,35,196,0.045,0.064,,71,64,0.096,1,0.324,0.629,0.047,26488250,0.365,Asia,43000000, Vietnam,12/1/2006,0.017,0.399,102456,50,,42475,66371664817,0.065,46,1050,0.023,0.173,0.112,80,70,0.22,1,0.263,0.672,0.066,83313000,0.279,Asia,2850000000,1050000000 Albania,12/1/2006,0.014,0.565,3865,39,,2068,9132562332,0.06,168,364,0.017,0.096,0.129,80,73,0.601,1,0.258,0.654,0.089,2968028,0.478,Europe,1057000000,989000000 Andorra,12/1/2006,0.011,,546,,,,2823503853,0.06,2631,,0.003,0.489,,,,0.843,1,,,,81877,0.898,Europe,, Austria,12/1/2006,0.009,0.524,71565,25,,33799,324954000000,0.102,4016,170,0.004,0.636,,83,77,1.121,1,0.158,0.679,0.164,8268641,0.658,Europe,18886000000,11721000000 Belarus,12/1/2006,0.01,1.373,61829,69,,28621,36961918859,0.063,243,987,0.007,0.162,0.088,76,64,0.62,1,0.152,0.702,0.147,9604000,0.728,Europe,401000000,675000000 Belgium,12/1/2006,0.012,0.593,106834,27,,58111,399966000000,0.095,3608,156,0.004,0.597,0.075,82,77,0.93,1,0.17,0.658,0.172,10547958,0.974,Europe,11625000000,17891000000 Bosnia and Herzegovina,12/1/2006,0.008,0.427,27169,63,,5301,12400102623,0.085,275,368,0.007,0.251,0.08,78,73,0.487,1,0.186,0.678,0.136,3875157,0.392,Europe,658000000,210000000 Bulgaria,12/1/2006,0.01,0.416,48943,32,,20459,33209188739,0.069,297,616,0.013,0.271,0.089,76,69,1.083,1,0.135,0.69,0.176,7699020,0.709,Europe,3317000000,2099000000 Croatia,12/1/2006,0.009,0.214,23175,25,,8944,49855078905,0.07,790,196,0.006,0.38,0.099,79,73,1.004,1,0.158,0.67,0.172,4440000,0.566,Europe,8296000000,770000000 Cyprus,12/1/2006,0.012,,7789,,,2308,18435765910,0.063,1494,,0.004,0.358,0.067,81,77,0.828,1,0.195,0.697,0.109,1048314,0.681,Europe,2691000000,1031000000 Czech Republic,12/1/2006,0.01,0.482,122764,24,,45904,148374000000,0.067,969,930,0.004,0.479,0.056,80,74,1.207,1,0.145,0.712,0.143,10238905,0.735,Europe,6702000000,2874000000 Denmark,12/1/2006,0.012,0.315,55005,6,,20252,274377000000,0.099,5017,135,0.004,0.867,,80,76,1.071,1,0.186,0.66,0.154,5437272,0.861,Europe,5562000000,7486000000 Estonia,12/1/2006,0.011,0.491,16190,35,,5038,16798498860,0.05,620,81,0.005,0.635,0.05,78,67,1.258,1,0.151,0.679,0.17,1346810,0.686,Europe,1361000000,706000000 Faeroe Islands,12/1/2006,,,766,,,,1970135199,,,,,0.694,,82,77,1.011,1,,,,49414,0.401,Europe,, Finland,12/1/2006,0.011,0.477,66197,14,,37334,207949000000,0.083,3302,269,0.003,0.797,,83,76,1.076,1,0.172,0.667,0.161,5266268,0.83,Europe,3515000000,4099000000 France,12/1/2006,0.013,0.65,382582,7,,266793,2255710000000,0.11,3907,132,0.004,0.469,,85,77,0.835,1,0.185,0.651,0.165,63617975,0.774,Europe,54450000000,39331000000 Germany,12/1/2006,0.008,0.474,808860,24,,340492,2902750000000,0.106,3746,196,0.004,0.722,,82,76,1.023,1,0.141,0.665,0.194,82376451,0.735,Europe,45538000000,85974000000 Greece,12/1/2006,0.01,0.495,97286,38,,30223,261713000000,0.097,2293,264,0.005,0.323,,82,77,0.993,1,0.144,0.669,0.187,11127947,0.748,Europe,14495000000,3004000000 Hungary,12/1/2006,0.01,0.557,57235,38,,27330,112533000000,0.083,922,340,0.007,0.471,0.081,77,69,0.989,1,0.153,0.688,0.159,10071370,0.669,Europe,4998000000,2319000000 Iceland,12/1/2006,0.015,0.265,2277,5,,4159,16651492784,0.094,5205,140,0.002,0.895,0.179,83,80,1.004,1,0.218,0.664,0.118,303782,0.932,Europe,702000000,1084000000 Ireland,12/1/2006,0.015,0.253,43458,13,,14607,222763000000,0.075,3982,76,0.004,0.548,,82,77,1.11,1,0.206,0.683,0.111,4274137,0.608,Europe,7664000000,6978000000 Isle of Man,12/1/2006,,,,,,,3437450712,,,,,,,,,,1,,,,81068,0.519,Europe,, Italy,12/1/2006,0.01,0.754,469347,13,,181830,1872980000000,0.088,2818,340,0.004,0.38,0.056,84,79,1.361,1,0.141,0.661,0.198,58143979,0.679,Europe,41644000000,27437000000 Kosovo,12/1/2006,0.019,,,,,1966,3918176308,,,,,,0.146,71,67,,1,,,,1719536,,Europe,, Latvia,12/1/2006,0.01,0.364,7583,16,,4688,19935046397,0.068,590,320,0.01,0.536,0.073,77,66,0.994,1,0.144,0.681,0.175,2218357,0.68,Europe,622000000,788000000 Liechtenstein,12/1/2006,0.01,,,,,,3988775844,,,,,0.642,,83,79,0.821,1,,,,35028,0.147,Europe,, Lithuania,12/1/2006,0.01,0.476,14294,26,,8718,30246361657,0.062,552,166,0.008,0.439,0.051,77,65,1.457,1,0.163,0.685,0.153,3269909,0.667,Europe,1077000000,931000000 Luxembourg,12/1/2006,0.012,0.204,11357,26,,4329,42544677906,0.077,7029,59,0.003,0.725,,82,77,1.529,1,0.184,0.672,0.144,472637,0.87,Europe,3636000000,3138000000 "Macedonia, FYR",12/1/2006,0.011,0.203,10939,18,,2924,6560546900,0.078,246,192,0.012,0.286,0.113,77,72,0.604,1,0.192,0.694,0.113,2093801,0.574,Europe,156000000,110000000 Malta,12/1/2006,0.009,,2574,,,834,6390123590,0.09,1445,,0.006,0.404,0.057,82,77,0.832,1,0.168,0.696,0.136,405308,0.939,Europe,966000000,362000000 Moldova,12/1/2006,0.012,0.459,4994,30,,3441,3408454198,0.106,101,232,0.018,0.196,0.181,72,64,0.366,1,0.182,0.705,0.113,3585209,0.452,Europe,150000000,224000000 Monaco,12/1/2006,,,,,,,4663488363,0.038,5115,,0.004,0.615,,,,0.533,1,,,,34369,1,Europe,, Montenegro,12/1/2006,0.013,0.304,2384,24,,1118,2696020575,0.082,361,372,0.009,0.289,0.112,76,71,1.043,1,0.2,0.671,0.129,616854,0.624,Europe,, Netherlands,12/1/2006,0.011,0.446,167201,8,,76830,677692000000,0.107,4459,250,0.004,0.837,0.035,82,78,1.056,1,0.183,0.675,0.142,16346101,0.836,Europe,17529000000,17453000000 Norway,12/1/2006,0.013,0.411,44257,7,,27129,340042000000,0.092,6778,87,0.003,0.826,0.047,83,78,1.043,1,0.195,0.658,0.147,4660677,0.779,Europe,4289000000,11273000000 Poland,12/1/2006,0.01,0.432,320004,31,,97241,341670000000,0.062,554,418,0.006,0.446,0.055,80,71,0.962,1,0.16,0.707,0.133,38141267,0.613,Europe,8122000000,7654000000 Portugal,12/1/2006,0.01,0.438,59108,7,,24698,201790000000,0.1,1915,328,0.004,0.38,,82,75,1.16,1,0.155,0.672,0.173,10522288,0.581,Europe,10438000000,4142000000 Romania,12/1/2006,0.01,0.482,102595,11,,39936,122696000000,0.051,289,193,0.017,0.247,0.14,76,69,0.725,1,0.152,0.7,0.149,21193760,0.533,Europe,1676000000,1459000000 Russian Federation,12/1/2006,0.01,0.512,1669618,29,,670673,989931000000,0.053,365,448,0.013,0.18,0.104,73,60,1.048,1,0.149,0.713,0.138,142487260,0.735,Europe,9720000000,19478000000 San Marino,12/1/2006,0.01,,,,,,1469075398,0.051,3444,,0.004,0.502,0.067,85,79,0.577,1,,,,30130,0.94,Europe,, Serbia,12/1/2006,0.01,0.358,53766,23,,17064,29221081587,0.094,371,279,0.007,0.272,0.166,76,71,0.815,1,0.178,0.682,0.14,7411569,0.548,Europe,416000000,322000000 Slovak Republic,12/1/2006,0.01,0.473,38929,27,,18640,69002095095,0.073,761,325,0.008,0.561,0.077,78,70,0.907,1,0.163,0.719,0.118,5373054,0.554,Europe,1655000000,1230000000 Slovenia,12/1/2006,0.009,0.392,16245,60,,7321,38945146500,0.083,1610,260,0.003,0.54,0.074,82,75,0.906,1,0.14,0.702,0.158,2006868,0.504,Europe,2074000000,1058000000 Spain,12/1/2006,0.011,0.619,350037,47,,141748,1236350000000,0.084,2371,298,0.005,0.504,,84,78,1.038,1,0.145,0.687,0.168,44397319,0.775,Europe,57543000000,20348000000 Sweden,12/1/2006,0.012,0.541,49571,16,,50207,399076000000,0.089,3947,122,0.003,0.878,,83,79,1.057,1,0.172,0.655,0.174,9080505,0.844,Europe,10016000000,11685000000 Switzerland,12/1/2006,0.01,0.276,41877,18,,27084,405183000000,0.104,5643,63,0.004,0.757,0.03,84,79,0.994,1,0.16,0.68,0.16,7483934,0.735,Europe,12852000000,11199000000 Turkey,12/1/2006,0.019,0.524,261571,6,,93035,530900000000,0.058,422,254,0.024,0.182,,76,69,0.767,1,0.281,0.652,0.067,68626337,0.684,Europe,19137000000,3517000000 Ukraine,12/1/2006,0.01,0.57,326480,33,,137333,107753000000,0.064,147,2085,0.012,0.045,0.152,74,62,1.047,1,0.143,0.697,0.16,46787750,0.68,Europe,4018000000,3202000000 United Kingdom,12/1/2006,0.012,0.346,542041,13,,218961,2483010000000,0.084,3423,105,0.005,0.688,0.046,81,77,1.156,1,0.178,0.662,0.16,60846820,0.802,Europe,43803000000,77674000000 Bahrain,12/1/2006,0.018,,19497,,,8093,18505250857,0.036,599,,0.009,0.282,0.08,76,75,0.954,1,0.252,0.727,0.022,950951,0.884,Middle East,1786000000,639000000 "Iran, Islamic Rep.",12/1/2006,0.018,0.442,509889,28,,180242,222881000000,0.051,174,344,0.021,0.088,0.14,74,70,0.217,1,0.249,0.701,0.05,70976584,0.682,Middle East,1464000000,5066000000 Iraq,12/1/2006,0.034,0.278,99544,32,,21503,65141035028,0.03,58,312,0.033,0.01,0.145,72,66,0.333,1,0.418,0.547,0.034,28064095,0.688,Middle East,170000000,526000000 Israel,12/1/2006,0.021,0.382,65977,20,,20380,150986000000,0.074,1524,230,0.004,0.279,0.081,83,88,1.243,1,0.277,0.622,0.101,7053700,0.916,Middle East,3802000000,4085000000 Jordan,12/1/2006,0.03,0.311,20733,16,,6853,15056937190,0.081,224,136,0.02,0.139,0.082,74,71,0.8,1,0.374,0.594,0.032,5536000,0.814,Middle East,2426000000,956000000 Kuwait,12/1/2006,0.021,0.107,73769,35,,25780,101561000000,0.022,943,98,0.01,0.288,0.086,75,73,0.488,1,0.255,0.715,0.031,2417445,0.982,Middle East,508000000,6074000000 Lebanon,12/1/2006,0.014,0.354,14499,46,,4774,21796351575,0.081,443,180,0.011,0.15,0.103,80,76,0.271,1,0.274,0.65,0.076,4079823,0.867,Middle East,5457000000,3783000000 Oman,12/1/2006,0.022,0.203,39604,35,,15183,36803641389,0.023,346,52,0.011,0.083,0.074,77,73,0.712,1,0.34,0.635,0.025,2554905,0.73,Middle East,749000000,894000000 Qatar,12/1/2006,0.014,,56736,,,19606,60882141103,0.026,1625,,0.009,0.29,0.072,78,77,0.951,1,0.21,0.778,0.013,967602,0.978,Middle East,874000000,3751000000 Saudi Arabia,12/1/2006,0.023,0.145,432739,42,,158214,376900000000,0.037,537,79,0.016,0.195,,76,72,0.776,1,0.335,0.634,0.03,25371936,0.812,Middle East,4769000000,12979000000 Syrian Arab Republic,12/1/2006,0.027,0.433,53590,43,,21630,33332844575,0.038,66,336,0.015,0.078,0.08,77,73,0.249,1,0.38,0.585,0.034,18804914,0.542,Middle East,2113000000,585000000 United Arab Emirates,12/1/2006,0.016,0.144,123875,19,,45911,222106000000,0.023,1109,12,0.008,0.52,,77,75,1.132,1,0.18,0.813,0.007,4875639,0.826,Middle East,4972000000,8827000000 "Yemen, Rep.",12/1/2006,0.035,0.479,20796,63,,7054,19081726103,0.048,52,248,0.054,0.012,0.18,63,60,0.144,1,0.449,0.524,0.026,20661714,0.295,Middle East,181000000,225000000 American Samoa,12/1/2006,0.022,,,,,,,,,,,,,,,,1,,,,58652,0.88,Oceania,, Australia,12/1/2006,0.013,0.511,371214,3,,115020,747463000000,0.085,3330,107,0.005,0.66,0.094,84,79,0.947,1,0.195,0.674,0.13,20697900,0.882,Oceania,20726000000,16446000000 Fiji,12/1/2006,0.023,0.415,1360,46,,559,3103099942,0.038,144,140,0.02,0.096,0.073,72,66,0.344,1,0.3,0.657,0.042,828060,0.503,Oceania,684000000,123000000 French Polynesia,12/1/2006,0.018,,851,,,,,,,,,0.251,,77,72,0.59,1,0.269,0.678,0.053,257731,0.566,Oceania,463000000,122000000 Guam,12/1/2006,0.019,,,,,,,,,,,0.439,,80,74,,1,0.292,0.642,0.066,158429,0.937,Oceania,, Kiribati,12/1/2006,0.024,0.318,70,31,,10,104668675,0.11,124,120,0.05,0.045,,69,64,0.008,1,0.364,0.6,0.037,91953,0.436,Oceania,2300000,5600000 Marshall Islands,12/1/2006,0.035,0.648,92,17,,30,143352031,0.196,547,128,0.033,0.038,,,,,1,,,,52084,0.702,Oceania,6600000,400000 "Micronesia, Fed. Sts.",12/1/2006,0.025,0.596,103,16,,,252991205,0.119,285,128,0.036,0.128,0.156,69,67,0.176,1,0.385,0.575,0.04,105686,0.223,Oceania,23000000,7000000 New Caledonia,12/1/2006,0.018,,2780,,,,,,,,,0.335,,80,73,0.667,1,0.262,0.664,0.074,238459,0.646,Oceania,122000000,129000000 New Zealand,12/1/2006,0.014,0.354,33553,12,,16965,110205000000,0.088,2295,172,0.005,0.69,0.082,82,78,0.909,1,0.213,0.666,0.121,4184600,0.861,Oceania,4792000000,2534000000 Papua New Guinea,12/1/2006,0.032,0.415,4595,51,,,5598700444,0.035,31,207,0.055,0.018,0.106,63,59,0.016,1,0.399,0.575,0.026,6245797,0.131,Oceania,3900000,43000000 Samoa,12/1/2006,0.029,0.202,158,35,,57,453082900,0.052,129,224,0.016,0.045,0.117,75,68,0.251,1,0.393,0.558,0.049,181073,0.21,Oceania,87000000,21200000 Solomon Islands,12/1/2006,0.034,0.261,180,56,,59,456735445,0.067,63,80,0.029,0.016,0.139,67,65,0.015,1,0.412,0.557,0.03,480745,0.183,Oceania,35300000,26500000 Tonga,12/1/2006,0.029,0.275,176,32,,57,295998379,0.055,159,164,0.013,0.059,0.12,74,69,0.296,1,0.38,0.56,0.06,101617,0.232,Oceania,15700000,16400000 Vanuatu,12/1/2006,0.029,0.084,48,47,,31,437072934,0.031,64,120,0.017,0.059,0.083,72,68,0.07,1,0.394,0.572,0.034,214654,0.234,Oceania,109000000,11000000 Antigua and Barbuda,12/1/2006,0.018,0.476,425,21,,143,1141418340,0.045,607,184,0.01,0.3,0.109,77,72,1.32,1,0.28,0.647,0.073,83467,0.286,The Americas,327000000,45000000 Argentina,12/1/2006,0.018,1.076,174238,30,,73128,264490000000,0.083,454,453,0.015,0.209,0.086,79,71,0.808,1,0.26,0.637,0.103,38988923,0.903,The Americas,3899000000,4038000000 Aruba,12/1/2006,0.012,,2274,,,,2421474860,,,,,0.28,0.113,77,72,1.081,1,0.213,0.698,0.089,100830,0.445,The Americas,1064000000,241000000 "Bahamas, The",12/1/2006,0.015,,1522,,,706,7965588000,0.069,1645,,0.012,0.26,0.055,77,71,0.754,1,0.249,0.688,0.064,335622,0.823,The Americas,2066000000,541000000 Barbados,12/1/2006,0.013,,1371,,,398,4314050000,0.071,826,,0.014,0.553,0.103,77,72,0.862,1,0.203,0.69,0.107,274923,0.328,The Americas,1235000000,284000000 Belize,12/1/2006,0.026,0.348,407,45,,172,1217450000,0.044,192,147,0.018,0.104,0.142,75,69,0.423,1,0.374,0.585,0.04,278985,0.46,The Americas,260000000,43000000 Bermuda,12/1/2006,0.013,,521,,,,5414299000,,,,,0.699,,82,76,0.934,1,,,,64523,1,The Americas,495000000,394000000 Bolivia,12/1/2006,0.028,0.8,14910,50,,6439,11451845341,0.048,58,1080,0.042,0.062,0.119,67,63,0.302,1,0.379,0.576,0.045,9517395,0.647,The Americas,330000000,360000000 Brazil,12/1/2006,0.017,0.69,347668,149,,222818,1088920000000,0.085,491,2600,0.019,0.282,0.508,76,68,0.531,1,0.272,0.665,0.063,188134315,0.831,The Americas,4577000000,7501000000 Canada,12/1/2006,0.011,0.45,550233,3,,268302,1310800000000,0.1,3904,119,0.005,0.724,0.058,83,78,0.575,1,0.174,0.694,0.133,32570505,0.802,The Americas,16837000000,26067000000 Cayman Islands,12/1/2006,,,517,,,,,,,,,0.445,,,,1.85,1,,,,50026,1,The Americas,509000000,164000000 Chile,12/1/2006,0.015,0.251,64393,27,,29507,154671000000,0.062,587,316,0.008,0.345,0.08,81,75,0.754,1,0.243,0.675,0.082,16504530,0.877,The Americas,1891000000,1573000000 Colombia,12/1/2006,0.021,0.84,62940,43,,28568,162774000000,0.061,227,456,0.018,0.153,0.129,76,69,0.679,1,0.304,0.645,0.052,43841370,0.739,The Americas,2009000000,1799000000 Costa Rica,12/1/2006,0.017,0.552,7437,77,,4182,22526464409,0.078,410,402,0.009,0.251,0.222,81,76,0.329,1,0.272,0.668,0.06,4392493,0.669,The Americas,1865000000,577000000 Cuba,12/1/2006,0.011,,27407,,,10847,52742100000,0.077,360,,0.005,0.112,,80,76,0.014,1,0.19,0.698,0.112,11301100,0.762,The Americas,2414000000, Curacao,12/1/2006,0.014,,,,,,,,,,,,,79,71,,1,0.206,0.67,0.124,140217,0.904,The Americas,277000000,191000000 Dominica,12/1/2006,0.015,0.37,110,14,,42,382299140,0.05,271,147,0.012,0.394,0.095,,,1.011,1,,,,70690,0.669,The Americas,72000000,10000000 Dominican Republic,12/1/2006,0.023,0.358,20693,72,,7068,35965041793,0.052,197,286,0.028,0.148,0.195,75,69,0.486,1,0.327,0.616,0.057,9479269,0.687,The Americas,3917000000,495000000 Ecuador,12/1/2006,0.023,0.353,29688,65,,10255,46802044000,0.065,216,600,0.023,0.072,0.098,78,72,0.605,1,0.323,0.62,0.057,14023503,0.619,The Americas,492000000,706000000 El Salvador,12/1/2006,0.021,0.347,6846,26,,4735,18550700000,0.067,203,320,0.019,0.055,,76,66,0.632,1,0.35,0.586,0.064,6096692,0.622,The Americas,686000000,307000000 Greenland,12/1/2006,0.015,,627,,,,1738432116,,,,,0.594,,72,67,0.947,1,,,,56774,0.832,The Americas,, Grenada,12/1/2006,0.019,0.453,231,20,,81,704762536,0.064,435,140,0.013,0.214,0.099,74,69,0.447,1,0.293,0.631,0.076,103260,0.359,The Americas,94000000,16000000 Guatemala,12/1/2006,0.034,0.387,12526,30,,7940,30231130543,0.073,171,344,0.032,0.065,0.128,73,66,0.552,1,0.429,0.528,0.043,12995374,0.476,The Americas,919000000,655000000 Guyana,12/1/2006,0.022,0.39,1291,41,,500,1458449058,0.041,79,288,0.035,,0.145,68,62,0.523,1,0.369,0.594,0.037,765367,0.283,The Americas,37000000,49000000 Haiti,12/1/2006,0.028,0.404,2112,202,,2645,4879738636,0.057,30,184,0.064,0.068,0.264,62,58,0.128,1,0.377,0.581,0.042,9388642,0.458,The Americas,126000000,239000000 Honduras,12/1/2006,0.028,0.44,7008,44,,3993,10841723354,0.076,118,424,0.025,0.078,0.174,74,69,0.318,1,0.392,0.566,0.042,7037428,0.492,The Americas,516000000,425000000 Jamaica,12/1/2006,0.016,0.499,12020,8,,4176,11903020644,0.042,187,414,0.018,0.164,0.176,75,69,0.844,1,0.308,0.615,0.077,2653042,0.53,The Americas,2094000000,315000000 Mexico,12/1/2006,0.021,0.531,441796,25,,172307,966736000000,0.057,515,560,0.016,0.195,0.075,78,73,0.494,1,0.319,0.627,0.054,112116694,0.766,The Americas,13329000000,9387000000 Nicaragua,12/1/2006,0.025,0.635,4466,39,,2824,6786340353,0.063,78,240,0.025,0.028,0.116,75,69,0.331,1,0.371,0.587,0.042,5524927,0.562,The Americas,231000000,188000000 Panama,12/1/2006,0.022,0.441,7371,18,,3093,17137000000,0.07,350,560,0.019,0.173,0.084,79,73,0.634,1,0.305,0.633,0.062,3428509,0.64,The Americas,1425000000,403000000 Paraguay,12/1/2006,0.025,0.448,3986,74,,4076,10662013273,0.057,101,328,0.023,0.08,0.301,74,69,0.537,1,0.353,0.598,0.048,6014781,0.576,The Americas,112000000,144000000 Peru,12/1/2006,0.022,0.383,35064,72,,13248,87554128440,0.045,149,424,0.02,0.207,0.239,75,70,0.325,1,0.316,0.629,0.055,28030688,0.754,The Americas,1775000000,1047000000 Puerto Rico,12/1/2006,0.012,0.576,,7,,,87276164365,,,140,,0.254,,83,74,0.586,1,0.219,0.658,0.123,3805214,0.941,The Americas,3369000000,1752000000 Sint Maarten (Dutch part),12/1/2006,,,,,,,,,,,,,,,,,1,,,,38272,1,The Americas,651000000,86000000 St. Kitts and Nevis,12/1/2006,,0.523,235,19,,79,629511778,0.04,517,172,0.01,0.49,0.093,,,1.024,1,,,,49823,0.32,The Americas,132000000,14000000 St. Lucia,12/1/2006,0.017,0.34,367,20,,119,1018069267,0.065,393,71,0.015,0.245,0.108,76,71,0.63,1,0.277,0.649,0.074,167658,0.221,The Americas,294000000,39000000 St. Martin (French part),12/1/2006,0.018,,,,,,,,,,,,,81,75,,1,,,,28414,,The Americas,, St. Vincent and the Grenadines,12/1/2006,0.018,0.45,202,12,,70,611040126,0.039,218,76,0.019,0.12,0.097,74,69,0.805,1,0.281,0.648,0.071,108908,0.474,The Americas,113000000,16000000 Suriname,12/1/2006,0.02,0.279,2442,694,,714,2626093294,0.062,323,199,0.025,0.095,0.156,73,66,0.633,1,0.297,0.641,0.062,505186,0.666,The Americas,109000000,33000000 Trinidad and Tobago,12/1/2006,0.015,0.372,32152,43,,19585,18460905284,0.044,625,210,0.023,0.3,0.109,73,66,1.165,1,0.214,0.712,0.074,1303478,0.097,The Americas,517000000,146000000 Turks and Caicos Islands,12/1/2006,,,143,,,,,,,,,,,,,,1,,,,27642,0.883,The Americas,, United States,12/1/2006,0.014,0.474,5737616,6,,2296686,13857900000000,0.159,7110,325,0.007,0.689,0.08,80,75,0.763,1,0.204,0.672,0.124,298379912,0.801,The Americas,133393000000, Uruguay,12/1/2006,0.015,0.713,6648,43,,3183,19579479147,0.083,491,304,0.012,0.294,0.093,80,72,0.7,1,0.235,0.628,0.136,3330217,0.936,The Americas,711000000,305000000 "Venezuela, RB",12/1/2006,0.022,0.498,171825,141,,63705,183478000000,0.057,387,864,0.015,0.152,0.155,76,71,0.691,1,0.309,0.64,0.051,27190882,0.886,The Americas,843000000,1807000000 Virgin Islands (U.S.),12/1/2006,0.013,,,,,,,,,,,0.273,,82,76,,1,0.219,0.67,0.111,107700,0.939,The Americas,1467000000, Algeria,12/1/2007,0.023,0.742,112339,25,,36793,134978000000,0.035,135,451,0.026,0.095,0.08,72,69,0.785,1,0.277,0.677,0.046,35097043,0.653,Africa,332000000,504000000 Angola,12/1/2007,0.048,0.521,25152,119,,10697,60448890972,0.034,115,272,0.117,0.032,0.177,51,48,0.28,1,0.479,0.497,0.024,17712824,0.377,Africa,236000000,473000000 Benin,12/1/2007,0.039,0.732,4499,31,,3206,5506275948,0.045,29,270,0.069,0.018,,59,57,0.236,1,0.441,0.531,0.028,8707490,0.407,Africa,206000000,107000000 Botswana,12/1/2007,0.025,0.171,4701,107,,2033,10939028155,0.047,269,140,0.043,0.053,0.162,46,46,0.601,1,0.351,0.616,0.033,1915187,0.555,Africa,548000000,284000000 Burkina Faso,12/1/2007,0.044,0.476,1646,18,,,6755823933,0.077,32,270,0.079,0.008,,54,53,0.131,1,0.463,0.511,0.025,14235075,0.232,Africa,61000000,93000000 Burundi,12/1/2007,0.044,2.797,191,13,,,1356078300,0.1,16,140,0.069,0.007,0.168,53,50,0.032,1,0.445,0.529,0.026,8328312,0.099,Africa,2300000,106000000 Cameroon,12/1/2007,0.04,0.508,5834,38,,6340,20431779034,0.047,50,654,0.073,0.029,0.15,53,52,0.238,1,0.439,0.528,0.033,19097676,0.497,Africa,254000000,466000000 Central African Republic,12/1/2007,0.036,2.038,235,22,,,1698125680,0.043,18,504,0.108,0.004,0.15,48,45,0.083,1,0.415,0.546,0.039,4106897,0.383,Africa,10800000,54000000 Chad,12/1/2007,0.049,0.74,462,64,,,8638711757,0.042,27,732,0.099,0.008,0.15,49,48,0.086,1,0.492,0.482,0.026,10694366,0.219,Africa,, Comoros,12/1/2007,0.039,2.179,121,22,,41,464948879,0.049,36,100,0.068,0.025,0.105,61,58,0.098,1,0.418,0.552,0.03,632736,0.279,Africa,30000000,15000000 "Congo, Dem. Rep.",12/1/2007,0.045,2.881,2604,133,,21459,16364027647,0.059,10,308,0.1,0.004,0.47,50,47,0.115,1,0.46,0.512,0.028,57187942,0.384,Africa,700000,109000000 "Congo, Rep.",12/1/2007,0.039,0.649,1437,37,,1209,8394688589,0.025,57,606,0.053,0.028,0.15,57,54,0.343,1,0.422,0.543,0.035,3758858,0.619,Africa,54000000,168000000 Cote d'Ivoire,12/1/2007,0.036,0.446,6883,40,,10233,19795705245,0.066,72,270,0.084,0.018,,49,47,0.416,1,0.422,0.548,0.03,17949061,0.483,Africa,115000000,606000000 Djibouti,12/1/2007,0.029,0.378,488,37,,143,847918929,0.077,78,66,0.067,0.016,0.112,60,57,0.087,1,0.357,0.608,0.035,798690,0.769,Africa,6800000,14200000 "Egypt, Arab Rep.",12/1/2007,0.024,0.451,192382,10,,71189,130478000000,0.049,85,711,0.023,0.16,0.125,72,68,0.405,1,0.319,0.626,0.054,74229577,0.431,Africa,10327000000,2886000000 Equatorial Guinea,12/1/2007,0.038,0.441,4796,135,,1759,10197937673,0.024,380,492,0.082,0.016,0.15,51,49,0.235,1,0.4,0.569,0.031,639618,0.39,Africa,, Eritrea,12/1/2007,0.04,0.845,579,84,,721,1317974493,0.033,8,216,0.044,0.004,,62,57,0.016,1,0.431,0.549,0.02,5209846,0.195,Africa,61000000, Ethiopia,12/1/2007,0.037,0.303,5915,18,,30536,19346646117,0.048,11,198,0.061,0.004,0.075,60,58,0.015,1,0.457,0.511,0.032,80440708,0.161,Africa,790000000,107000000 Gabon,12/1/2007,0.033,0.447,2332,57,,1832,11570860872,0.033,262,488,0.048,0.058,0.15,62,60,0.808,1,0.391,0.554,0.055,1447388,0.844,Africa,, "Gambia, The",12/1/2007,0.044,2.921,396,32,,133,798869805,0.041,21,376,0.055,0.062,0.279,59,56,0.523,1,0.46,0.514,0.025,1529406,0.54,Africa,87000000,8000000 Ghana,12/1/2007,0.033,0.327,9578,15,,9064,24757608488,0.06,66,304,0.057,0.039,,61,59,0.338,1,0.397,0.568,0.035,22525659,0.487,Africa,990000000,816000000 Guinea,12/1/2007,0.039,0.807,1210,40,,,4134173271,0.063,26,416,0.079,0.008,,55,53,0.199,1,0.433,0.534,0.032,10046967,0.336,Africa,1100000,96000000 Guinea-Bissau,12/1/2007,0.04,0.459,231,259,,95,690721769,0.061,29,208,0.091,0.022,,54,52,0.2,1,0.425,0.546,0.029,1484337,0.426,Africa,28400000,40700000 Kenya,12/1/2007,0.038,0.493,9831,44,,17230,27236739896,0.044,32,432,0.058,0.08,0.133,58,55,0.301,1,0.426,0.547,0.027,37752304,0.224,Africa,1514000000,265000000 Lesotho,12/1/2007,0.028,0.224,7,73,,19,1597484736,0.085,69,342,0.082,0.034,0.141,45,45,0.247,1,0.389,0.566,0.045,1955784,0.233,Africa,31000000,276000000 Liberia,12/1/2007,0.039,0.429,678,68,,,739026892,0.102,21,158,0.072,0.006,0.15,58,56,0.16,1,0.434,0.535,0.03,3522294,0.467,Africa,131000000,48000000 Libya,12/1/2007,0.023,,54209,,,17525,71803278689,0.025,276,,0.017,0.047,0.06,76,72,0.778,1,0.3,0.656,0.044,5782108,0.772,Africa,99000000,1010000000 Madagascar,12/1/2007,0.037,0.465,1815,7,,,7342905883,0.05,19,238,0.049,0.007,0.45,63,61,0.114,1,0.443,0.528,0.029,19371023,0.3,Africa,506000000,94000000 Malawi,12/1/2007,0.042,0.33,953,39,,,3647817219,0.067,18,370,0.064,0.01,0.277,51,51,0.077,1,0.461,0.509,0.03,13713758,0.152,Africa,43000000,79000000 Mali,12/1/2007,0.048,0.514,579,25,,,7145394015,0.07,39,270,0.09,0.008,,52,53,0.199,1,0.464,0.506,0.03,12725629,0.336,Africa,227000000,201000000 Mauritania,12/1/2007,0.036,0.947,1914,65,,,3356758534,0.044,37,696,0.073,0.014,0.235,62,59,0.425,1,0.411,0.557,0.031,3330037,0.546,Africa,, Mauritius,12/1/2007,0.014,0.242,3887,7,,1194,7792063567,0.05,316,161,0.014,0.202,0.219,76,69,0.761,1,0.23,0.7,0.07,1260403,0.412,Africa,1663000000,384000000 Morocco,12/1/2007,0.02,0.444,50267,12,,14457,75226318359,0.055,134,358,0.033,0.215,,71,68,0.653,1,0.295,0.654,0.05,30667086,0.562,Africa,8307000000,1418000000 Mozambique,12/1/2007,0.043,0.375,2391,29,,9144,8035635713,0.06,22,230,0.082,0.009,0.195,49,47,0.139,1,0.451,0.517,0.032,22171404,0.304,Africa,182000000,209000000 Namibia,12/1/2007,0.028,0.258,2409,99,,1345,8836063690,0.069,294,339,0.042,0.048,0.129,62,56,0.385,1,0.391,0.575,0.034,2080700,0.386,Africa,542000000,132000000 Niger,12/1/2007,0.051,0.424,821,23,,,4291363547,0.074,22,270,0.075,0.004,,55,55,0.063,1,0.494,0.481,0.025,14197289,0.17,Africa,44000000,48000000 Nigeria,12/1/2007,0.042,0.322,95210,27,,107683,166451000000,0.072,81,1120,0.091,0.068,0.169,50,49,0.274,1,0.437,0.536,0.027,147187353,0.408,Africa,337000000,6664000000 Rwanda,12/1/2007,0.038,0.335,557,16,,,3707800459,0.1,38,168,0.055,0.021,0.161,60,57,0.064,1,0.445,0.532,0.024,9928143,0.211,Africa,177000000,98000000 Sao Tome and Principe,12/1/2007,0.038,0.487,84,144,,44,144259257,0.071,66,424,0.044,0.146,0.324,67,63,0.184,1,0.417,0.544,0.039,163390,0.597,Africa,5000000,700000 Senegal,12/1/2007,0.039,0.455,5335,59,,3000,11284603481,0.047,45,696,0.052,0.077,,63,60,0.305,1,0.439,0.53,0.031,11904974,0.415,Africa,622000000,352000000 Seychelles,12/1/2007,0.018,0.484,653,39,,205,1033635773,0.034,393,76,0.012,0.384,0.109,78,69,0.867,1,0.233,0.693,0.075,85033,0.515,Africa,60000000,11000000 Sierra Leone,12/1/2007,0.04,2.352,634,26,,,2158653216,0.14,56,399,0.122,0.002,0.25,44,43,0.143,1,0.425,0.55,0.025,5416015,0.374,Africa,22000000,17000000 Somalia,12/1/2007,0.046,,605,,,,,,,,0.104,0.011,,55,51,0.067,1,0.478,0.493,0.029,8910851,0.36,Africa,, South Africa,12/1/2007,0.022,0.365,443648,31,,136604,286172000000,0.078,449,350,0.047,0.081,0.132,53,51,0.853,1,0.303,0.65,0.048,48910248,0.606,Africa,10226000000,6103000000 South Sudan,12/1/2007,0.039,,,,,,,,,,0.079,,,53,51,,1,0.436,0.531,0.033,8736736,0.174,Africa,, Sudan,12/1/2007,0.036,0.361,12541,39,,15294,45456460335,0.062,85,180,0.059,0.087,,62,59,0.204,1,0.428,0.541,0.031,33218250,0.329,Africa,262000000,1477000000 Swaziland,12/1/2007,0.031,0.363,1063,60,,423,3053823329,0.07,190,104,0.075,0.041,0.132,47,47,0.335,1,0.406,0.562,0.032,1134977,0.218,Africa,32000000,63000000 Tanzania,12/1/2007,0.042,0.439,6150,26,,18306,16825547176,0.057,23,172,0.05,0.016,0.161,57,55,0.201,1,0.447,0.522,0.03,41119693,0.261,Africa,1215000000,616000000 Togo,12/1/2007,0.038,0.526,1316,62,,2458,2523462649,0.065,28,270,0.065,0.022,,55,54,0.204,1,0.425,0.548,0.028,5834806,0.361,Africa,38000000,59000000 Tunisia,12/1/2007,0.017,0.606,23869,11,,9039,38920218579,0.056,217,268,0.018,0.171,,76,72,0.763,1,0.246,0.686,0.068,10225100,0.654,Africa,3373000000,530000000 Uganda,12/1/2007,0.046,0.368,3128,28,,,12292813801,0.094,37,237,0.061,0.037,0.191,55,54,0.137,1,0.492,0.483,0.025,30728747,0.136,Africa,402000000,220000000 Zambia,12/1/2007,0.044,0.15,1654,33,,7399,11541420981,0.06,57,183,0.07,0.049,0.189,51,49,0.218,1,0.469,0.504,0.027,12109620,0.375,Africa,138000000,98000000 Zimbabwe,12/1/2007,0.032,0.514,10213,97,,9438,5291950101,,,256,0.058,0.109,,46,47,0.096,1,0.415,0.546,0.038,12740160,0.337,Africa,365000000, Afghanistan,12/1/2007,0.042,0.363,1991,9,,,9843851009,0.1,30,275,0.08,0.019,0.181,59,57,0.177,1,0.492,0.487,0.021,26349243,0.236,Asia,, Armenia,12/1/2007,0.014,0.388,5068,17,,2853,9206301700,0.043,133,581,0.019,0.06,0.175,77,70,0.628,1,0.211,0.676,0.114,2989882,0.641,Asia,343000000,345000000 Azerbaijan,12/1/2007,0.018,0.409,41426,36,,12113,33050343783,0.051,192,952,0.039,0.145,0.191,73,67,0.515,1,0.243,0.693,0.063,8581300,0.528,Asia,317000000,381000000 Bangladesh,12/1/2007,0.022,0.37,48467,74,,26626,68415421373,0.035,16,400,0.046,0.018,0.16,69,68,0.235,1,0.333,0.623,0.044,146457067,0.282,Asia,76000000,530000000 Bhutan,12/1/2007,0.022,0.408,392,48,,244,1196091806,0.05,88,274,0.041,0.059,0.14,66,65,0.22,1,0.32,0.638,0.042,679365,0.325,Asia,47000000,26000000 Brunei Darussalam,12/1/2007,0.018,0.374,10176,116,,3227,12247694247,0.023,738,144,0.008,0.447,0.055,79,76,0.96,1,0.28,0.686,0.033,381440,0.743,Asia,233000000,430000000 Cambodia,12/1/2007,0.026,0.215,3484,86,,3482,8639164917,0.045,28,137,0.045,0.005,,72,66,0.188,1,0.341,0.612,0.046,13747288,0.194,Asia,1169000000,194000000 China,12/1/2007,0.012,0.812,6791805,35,,2044606,3494060000000,0.044,113,832,0.017,0.16,0.075,76,73,0.41,1,0.192,0.729,0.079,1317885000,0.452,Asia,41126000000,33269000000 Georgia,12/1/2007,0.013,0.386,6190,11,,3341,10172260738,0.082,188,387,0.019,0.083,0.171,77,70,0.587,1,0.176,0.678,0.146,4388400,0.526,Asia,440000000,277000000 "Hong Kong SAR, China",12/1/2007,0.01,0.241,39963,11,,14338,211597000000,,,80,,0.648,0.068,85,79,1.55,1,0.132,0.744,0.124,6916300,1,Asia,18237000000,15042000000 India,12/1/2007,0.022,0.727,1611404,33,,604659,1238700000000,0.039,40,271,0.052,0.04,0.13,66,63,0.202,1,0.314,0.638,0.049,1159095250,0.299,Asia,11234000000,10690000000 Indonesia,12/1/2007,0.021,0.375,375545,105,,182885,432217000000,0.031,58,266,0.031,0.058,0.139,71,67,0.404,1,0.3,0.651,0.049,230972808,0.475,Asia,5831000000,6578000000 Japan,12/1/2007,0.009,0.525,1251136,22,,515198,4356350000000,0.082,2801,350,0.003,0.743,0.019,86,79,0.844,1,0.136,0.654,0.21,127770750,0.88,Asia,12422000000,37261000000 Kazakhstan,12/1/2007,0.021,0.414,220313,21,,66231,104850000000,0.034,233,271,0.025,0.04,,73,61,0.8,1,0.244,0.682,0.073,15484192,0.543,Asia,1213000000,1396000000 "Korea, Dem. Rep.",12/1/2007,0.015,,70370,,,18300,,,,,0.026,,,72,65,,1,0.239,0.681,0.08,24111989,0.6,Asia,, "Korea, Rep.",12/1/2007,0.01,0.302,495837,17,,222147,1122680000000,0.064,1379,290,0.004,0.788,0.066,83,76,0.933,1,0.18,0.72,0.1,48597652,0.816,Asia,9288000000,24449000000 Kyrgyz Republic,12/1/2007,0.023,0.614,5871,21,,2726,3802566171,0.069,51,202,0.032,0.14,0.253,72,64,0.422,1,0.304,0.644,0.052,5268400,0.353,Asia,392000000,215000000 Lao PDR,12/1/2007,0.029,0.352,1668,93,,,4222945530,0.042,29,672,0.065,0.016,0.285,67,64,0.246,1,0.389,0.574,0.037,6013278,0.297,Asia,190000000,14000000 "Macao SAR, China",12/1/2007,0.008,,1404,,,,18054684854,,,,,0.473,0.078,82,77,1.611,1,0.15,0.778,0.071,493206,1,Asia,13733000000,777000000 Malaysia,12/1/2007,0.018,0.36,205308,31,,69970,193553000000,0.035,256,166,0.007,0.557,0.064,76,72,0.871,1,0.292,0.663,0.045,26813819,0.684,Asia,17948000000,6600000000 Maldives,12/1/2007,0.022,0.093,917,9,,299,1541978559,0.063,315,,0.015,0.163,0.13,77,74,1.017,1,0.322,0.63,0.048,308239,0.363,Asia,1515000000,152000000 Mongolia,12/1/2007,0.022,0.398,10092,13,,3114,4234894168,0.057,93,204,0.033,0.09,0.218,70,62,0.46,1,0.276,0.686,0.038,2595068,0.646,Asia,354000000,227000000 Myanmar,12/1/2007,0.019,,12636,,,15595,,0.019,7,,0.048,0.002,0.17,66,62,0.005,1,0.272,0.678,0.05,50828959,0.299,Asia,97000000,39000000 Nepal,12/1/2007,0.026,0.328,2699,31,,9308,10325618017,0.055,23,408,0.042,0.014,0.08,67,65,0.126,1,0.387,0.566,0.046,25950022,0.158,Asia,234000000,402000000 Pakistan,12/1/2007,0.028,0.402,158895,24,,83538,152386000000,0.035,31,560,0.078,0.068,0.118,66,65,0.383,1,0.37,0.588,0.042,163928329,0.354,Asia,912000000,2083000000 Philippines,12/1/2007,0.026,0.491,69669,47,,38514,149360000000,0.039,65,195,0.027,0.06,0.087,71,64,0.645,1,0.364,0.601,0.035,88875548,0.461,Asia,5520000000,2055000000 Singapore,12/1/2007,0.01,0.232,17866,5,,21819,179981000000,0.035,1333,80,0.002,0.699,0.053,83,78,1.252,1,0.184,0.731,0.085,4588600,1,Asia,9066000000,13409000000 Sri Lanka,12/1/2007,0.019,0.617,12457,40,,9261,32351184234,0.037,59,256,0.011,0.039,0.171,77,70,0.393,1,0.252,0.675,0.073,20039000,0.184,Asia,750000000,709000000 Tajikistan,12/1/2007,0.031,0.8,3223,62,,2583,3719497371,0.053,28,224,0.05,0.072,0.227,70,63,0.3,1,0.37,0.594,0.036,7111025,0.265,Asia,16500000,6600000 Thailand,12/1/2007,0.012,0.374,262205,33,,104886,246977000000,0.036,133,264,0.014,0.2,0.071,76,70,0.802,1,0.212,0.707,0.082,66076927,0.401,Asia,20623000000,6887000000 Timor-Leste,12/1/2007,0.037,0.484,183,158,,61,558700000,0.08,41,640,0.059,0.001,0.15,66,63,0.076,1,0.477,0.494,0.029,1015482,0.276,Asia,26000000,5000000 Turkmenistan,12/1/2007,0.022,,53516,,,22367,12664165103,0.021,113,,0.055,0.014,,69,61,0.079,1,0.311,0.645,0.044,4858236,0.476,Asia,, Uzbekistan,12/1/2007,0.023,0.903,116944,15,,48718,22311393928,0.054,46,196,0.044,0.075,,71,64,0.213,1,0.317,0.637,0.046,26868000,0.364,Asia,51000000, Vietnam,12/1/2007,0.017,0.399,113651,39,,45777,77414425532,0.071,58,1050,0.022,0.208,0.112,80,70,0.52,1,0.254,0.68,0.066,84221100,0.285,Asia,3750000000,1220000000 Albania,12/1/2007,0.013,0.459,4056,36,,2025,10701011856,0.064,218,364,0.017,0.15,0.141,80,73,0.734,1,0.25,0.658,0.092,2940880,0.489,Europe,1479000000,1331000000 Andorra,12/1/2007,0.01,,539,,,,3245411584,0.062,3012,,0.003,0.709,,,,0.781,1,,,,81292,0.894,Europe,, Austria,12/1/2007,0.009,0.524,69141,25,,33393,375042000000,0.103,4636,170,0.004,0.694,,83,77,1.193,1,0.155,0.678,0.167,8300788,0.658,Europe,21088000000,12825000000 Belarus,12/1/2007,0.011,1.208,60282,48,,28039,45275711996,0.064,304,987,0.006,0.197,0.086,76,65,0.726,1,0.15,0.705,0.145,9560000,0.733,Europe,479000000,724000000 Belgium,12/1/2007,0.012,0.573,103215,4,,57019,459619000000,0.095,4136,156,0.004,0.644,0.086,83,77,1.006,1,0.169,0.659,0.172,10625700,0.975,Europe,12371000000,19215000000 Bosnia and Herzegovina,12/1/2007,0.008,0.428,27884,63,,5305,15280615815,0.086,341,368,0.007,0.279,0.072,78,73,0.633,1,0.184,0.676,0.14,3868665,0.392,Europe,804000000,264000000 Bulgaria,12/1/2007,0.01,0.358,52812,32,,20117,42113656147,0.068,375,616,0.012,0.336,0.1,76,69,1.309,1,0.133,0.689,0.177,7545338,0.713,Europe,4181000000,2142000000 Croatia,12/1/2007,0.009,0.214,24389,22,,9325,59319390298,0.075,1008,196,0.005,0.414,0.093,79,72,1.152,1,0.157,0.67,0.173,4436000,0.568,Europe,9601000000,1025000000 Cyprus,12/1/2007,0.012,,8196,,,2437,21841815681,0.061,1691,,0.004,0.408,0.067,81,77,0.93,1,0.19,0.7,0.11,1063095,0.68,Europe,3108000000,1554000000 Czech Republic,12/1/2007,0.011,0.477,123948,17,,45845,180479000000,0.065,1144,808,0.004,0.519,0.058,80,74,1.28,1,0.143,0.712,0.145,10298828,0.735,Europe,7775000000,3704000000 Denmark,12/1/2007,0.012,0.32,50253,6,,19763,311418000000,0.1,5710,135,0.004,0.85,,81,76,1.154,1,0.185,0.659,0.156,5461438,0.863,Europe,5978000000,8830000000 Estonia,12/1/2007,0.012,0.484,18845,7,,5624,21993674015,0.051,835,81,0.005,0.662,0.065,79,67,1.281,1,0.151,0.678,0.172,1340680,0.685,Europe,1416000000,804000000 Faeroe Islands,12/1/2007,0.014,,774,,,,2278229880,,,,,0.76,,83,78,1.053,1,,,,49554,0.403,Europe,, Finland,12/1/2007,0.011,0.478,63982,14,,36803,246128000000,0.08,3751,269,0.003,0.808,,83,76,1.149,1,0.17,0.668,0.163,5288720,0.832,Europe,4287000000,4812000000 France,12/1/2007,0.013,0.65,375882,7,,263542,2582390000000,0.109,4413,132,0.004,0.661,,85,78,0.89,1,0.184,0.651,0.165,64012572,0.776,Europe,63701000000,46029000000 Germany,12/1/2007,0.008,0.49,784016,18,,330719,3323810000000,0.105,4231,196,0.004,0.752,,82,77,1.151,1,0.139,0.662,0.198,82266372,0.737,Europe,49332000000,96549000000 Greece,12/1/2007,0.01,0.489,98246,38,,30217,305432000000,0.098,2682,264,0.004,0.359,,82,77,1.111,1,0.144,0.668,0.188,11163002,0.752,Europe,15687000000,3430000000 Hungary,12/1/2007,0.01,0.553,55859,16,,26729,136102000000,0.077,1038,340,0.007,0.533,0.091,77,69,1.096,1,0.151,0.689,0.161,10055780,0.674,Europe,5628000000,3088000000 Iceland,12/1/2007,0.015,0.262,2310,5,,4836,20428232684,0.093,6182,140,0.002,0.906,0.193,83,80,1.069,1,0.215,0.666,0.118,311566,0.933,Europe,848000000,1336000000 Ireland,12/1/2007,0.016,0.253,44583,13,,15120,259574000000,0.079,4733,76,0.004,0.612,,82,77,1.159,1,0.208,0.681,0.111,4398942,0.61,Europe,9263000000,8785000000 Isle of Man,12/1/2007,0.011,,,,,,4075664785,,,,,,,,,,1,,,,81812,0.519,Europe,, Italy,12/1/2007,0.01,0.754,462676,13,,179599,2127180000000,0.085,3058,340,0.004,0.408,0.063,84,79,1.51,1,0.141,0.66,0.199,58438310,0.68,Europe,46144000000,32754000000 Kosovo,12/1/2007,0.019,,,,,2045,4743437689,,,,,,0.141,71,67,,1,,,,1733404,,Europe,, Latvia,12/1/2007,0.011,0.364,7928,16,,4796,28765687042,0.07,883,279,0.01,0.592,0.109,77,66,1.023,1,0.142,0.68,0.178,2200325,0.679,Europe,881000000,1021000000 Liechtenstein,12/1/2007,0.01,,,,,,4602346923,,,,,0.651,,84,79,0.907,1,,,,35308,0.146,Europe,, Lithuania,12/1/2007,0.01,0.462,15137,26,,9460,39325985931,0.062,725,166,0.007,0.499,0.069,77,65,1.54,1,0.159,0.688,0.154,3231294,0.668,Europe,1192000000,1168000000 Luxembourg,12/1/2007,0.011,0.2,10869,26,,4209,51320661751,0.068,7326,59,0.002,0.789,,82,77,1.437,1,0.182,0.675,0.143,479993,0.874,Europe,4032000000,3476000000 "Macedonia, FYR",12/1/2007,0.011,0.203,11379,15,,3045,8159825620,0.07,272,192,0.011,0.363,0.102,77,72,0.856,1,0.187,0.699,0.114,2096620,0.572,Europe,219000000,147000000 Malta,12/1/2007,0.009,,2725,,,878,7513834700,0.085,1580,,0.006,0.469,0.062,82,78,0.88,1,0.164,0.698,0.138,406724,0.941,Europe,1185000000,284000000 Moldova,12/1/2007,0.012,0.425,4686,23,,3342,4402495921,0.109,134,234,0.017,0.205,0.188,72,64,0.513,1,0.177,0.71,0.113,3576910,0.451,Europe,229000000,290000000 Monaco,12/1/2007,,,,,,,5974371696,0.034,5671,,0.004,0.644,,,,0.583,1,,,,35013,1,Europe,, Montenegro,12/1/2007,0.013,0.304,2252,24,,1086,3673382212,0.07,414,372,0.008,0.308,0.092,76,72,1.457,1,0.199,0.673,0.128,617800,0.626,Europe,660000000,58000000 Netherlands,12/1/2007,0.011,0.418,171766,8,,79350,782567000000,0.108,5150,180,0.004,0.858,0.046,82,78,1.173,1,0.181,0.674,0.144,16381696,0.845,Europe,19922000000,19477000000 Norway,12/1/2007,0.012,0.411,45089,7,,27547,393479000000,0.095,7978,87,0.003,0.869,0.066,83,78,1.067,1,0.193,0.66,0.147,4709153,0.782,Europe,5322000000,13256000000 Poland,12/1/2007,0.01,0.434,315637,31,,96824,425322000000,0.063,706,418,0.006,0.486,,80,71,1.084,1,0.156,0.71,0.133,38120560,0.612,Europe,11686000000,8342000000 Portugal,12/1/2007,0.01,0.429,60865,6,,25302,231742000000,0.1,2185,328,0.003,0.421,,82,75,1.277,1,0.154,0.671,0.175,10542964,0.587,Europe,12917000000,4864000000 Romania,12/1/2007,0.01,0.456,100960,9,,39757,170617000000,0.052,414,202,0.015,0.283,0.133,76,69,0.927,1,0.15,0.701,0.149,20882982,0.534,Europe,2073000000,1725000000 Russian Federation,12/1/2007,0.011,0.512,1667598,29,,672591,1299710000000,0.054,487,448,0.012,0.247,0.1,74,61,1.192,1,0.147,0.716,0.137,142114903,0.736,Europe,12427000000,23248000000 San Marino,12/1/2007,0.009,,,,,,1687653983,0.05,3872,,0.003,0.504,0.076,85,80,0.576,1,,,,30377,0.94,Europe,, Serbia,12/1/2007,0.009,0.358,52251,23,,16602,38952093544,0.104,547,279,0.007,0.332,0.111,76,71,1.045,1,0.176,0.686,0.139,7381579,0.551,Europe,1016000000,1202000000 Slovak Republic,12/1/2007,0.01,0.473,36600,27,,17850,84108560088,0.078,1078,325,0.008,0.618,0.08,78,71,1.123,1,0.159,0.722,0.119,5374622,0.553,Europe,2352000000,1825000000 Slovenia,12/1/2007,0.01,0.384,16212,60,,7321,47349639895,0.079,1850,260,0.003,0.567,0.059,82,75,0.955,1,0.14,0.7,0.16,2018122,0.503,Europe,2465000000,1260000000 Spain,12/1/2007,0.011,0.621,358237,47,,143836,1441430000000,0.085,2752,298,0.004,0.551,,84,78,1.084,1,0.146,0.686,0.168,45226803,0.777,Europe,65020000000,24355000000 Sweden,12/1/2007,0.012,0.537,48060,16,,50060,462513000000,0.089,4526,122,0.003,0.82,,83,79,1.105,1,0.169,0.656,0.175,9148092,0.846,Europe,12259000000,14336000000 Switzerland,12/1/2007,0.01,0.279,38019,18,,25760,450530000000,0.102,6126,63,0.004,0.772,0.032,84,79,1.085,1,0.157,0.681,0.162,7551117,0.736,Europe,14721000000,12298000000 Turkey,12/1/2007,0.019,0.443,284658,6,,100005,647155000000,0.06,558,223,0.023,0.286,,77,70,0.892,1,0.278,0.655,0.068,69496513,0.69,Europe,21662000000,4254000000 Ukraine,12/1/2007,0.01,0.566,327595,27,,137343,142719000000,0.064,194,2085,0.012,0.066,0.139,74,63,1.184,1,0.141,0.698,0.161,46509350,0.681,Europe,5320000000,4022000000 United Kingdom,12/1/2007,0.013,0.345,528906,13,,210993,2857080000000,0.085,3953,105,0.005,0.751,0.055,82,77,1.211,1,0.177,0.662,0.161,61322463,0.805,Europe,48193000000,86747000000 Bahrain,12/1/2007,0.018,0.147,22398,9,,8962,21730590263,0.036,648,36,0.009,0.329,0.083,77,75,1.081,1,0.233,0.746,0.021,1032353,0.884,Middle East,1854000000,671000000 "Iran, Islamic Rep.",12/1/2007,0.019,0.442,539790,28,,190620,286058000000,0.051,220,344,0.019,0.095,0.12,74,70,0.415,1,0.242,0.707,0.051,71809219,0.689,Middle East,1950000000,7335000000 Iraq,12/1/2007,0.034,0.278,62834,32,,23696,88837727881,0.037,95,312,0.032,0.009,0.195,72,66,0.488,1,0.417,0.548,0.034,28740630,0.689,Middle East,555000000,705000000 Israel,12/1/2007,0.021,0.352,66424,20,,20700,174968000000,0.075,1730,230,0.004,0.481,0.069,82,88,1.285,1,0.275,0.623,0.102,7180100,0.916,Middle East,4405000000,4669000000 Jordan,12/1/2007,0.03,0.311,21540,13,,7209,17110610000,0.083,252,136,0.019,0.2,0.087,75,71,0.844,1,0.368,0.6,0.033,5661000,0.817,Middle East,2754000000,1024000000 Kuwait,12/1/2007,0.021,0.107,75236,35,,26389,114722000000,0.021,954,98,0.01,0.348,0.085,75,73,0.558,1,0.254,0.718,0.028,2554920,0.982,Middle East,530000000,7267000000 Lebanon,12/1/2007,0.013,0.354,14972,46,,4206,24577114428,0.08,480,180,0.011,0.187,0.103,80,76,0.304,1,0.266,0.655,0.078,4139813,0.868,Middle East,5796000000,3914000000 Oman,12/1/2007,0.022,0.12,44587,35,,17583,41901170689,0.025,403,62,0.01,0.167,0.073,77,73,0.973,1,0.327,0.649,0.024,2569739,0.735,Middle East,905000000,952000000 Qatar,12/1/2007,0.013,0.113,67242,7,,22790,79712085615,0.023,1600,36,0.008,0.37,0.074,79,77,1.097,1,0.183,0.805,0.012,1152459,0.98,Middle East,, Saudi Arabia,12/1/2007,0.022,0.145,393535,20,,144109,415909000000,0.037,566,79,0.016,0.3,,76,73,1.096,1,0.328,0.642,0.03,25915624,0.814,Middle East,6907000000,21031000000 Syrian Arab Republic,12/1/2007,0.026,0.433,57429,43,,22803,40405006007,0.038,79,336,0.015,0.115,0.102,77,73,0.319,1,0.373,0.592,0.035,19561477,0.545,Middle East,2972000000,710000000 United Arab Emirates,12/1/2007,0.016,0.144,139405,18,,51975,257916000000,0.025,1184,12,0.008,0.61,,77,75,1.334,1,0.162,0.833,0.005,5797347,0.83,Middle East,6072000000,11273000000 "Yemen, Rep.",12/1/2007,0.034,0.479,21712,63,,7014,25633674564,0.049,57,248,0.052,0.05,0.18,63,61,0.205,1,0.442,0.532,0.026,21182162,0.3,Middle East,425000000,247000000 American Samoa,12/1/2007,,,,,,,,,,,,,,,,,1,,,,57919,0.879,Oceania,, Australia,12/1/2007,0.014,0.501,377235,3,,118655,853855000000,0.086,3956,107,0.005,0.695,0.082,84,79,1.001,1,0.193,0.676,0.131,20827600,0.883,Oceania,25624000000,20429000000 Fiji,12/1/2007,0.023,0.415,1203,46,,524,3405050612,0.037,152,140,0.02,0.109,0.09,72,66,0.634,1,0.296,0.66,0.044,835392,0.507,Oceania,725000000,130000000 French Polynesia,12/1/2007,0.018,,843,,,,,,,,,0.286,,77,73,0.672,1,0.26,0.683,0.057,260361,0.568,Oceania,537000000,153000000 Guam,12/1/2007,0.019,,,,,,,,,,,0.462,,80,75,,1,0.288,0.645,0.067,158331,0.938,Oceania,, Kiribati,12/1/2007,0.024,0.318,51,31,,11,123005090,0.121,160,120,0.05,0.06,,70,64,0.008,1,0.357,0.606,0.037,93401,0.436,Oceania,4000000,9100000 Marshall Islands,12/1/2007,0.035,0.648,99,17,,32,149739017,0.196,587,128,0.032,0.04,,,,,1,,,,52150,0.705,Oceania,4500000, "Micronesia, Fed. Sts.",12/1/2007,0.025,0.587,99,16,,,255890836,0.12,292,128,0.035,0.136,0.14,69,67,0.261,1,0.382,0.579,0.039,105097,0.223,Oceania,25000000,7000000 New Caledonia,12/1/2007,0.017,,2945,,,,,,,,,0.351,,80,72,0.748,1,0.255,0.665,0.08,242400,0.653,Oceania,142000000,149000000 New Zealand,12/1/2007,0.015,0.355,33648,12,,17123,135295000000,0.085,2694,172,0.005,0.698,0.086,82,78,1.004,1,0.211,0.666,0.123,4228300,0.861,Oceania,5413000000,3077000000 Papua New Guinea,12/1/2007,0.032,0.415,4903,51,,,6329292929,0.042,41,207,0.054,0.018,0.098,63,59,0.047,1,0.397,0.576,0.027,6397623,0.131,Oceania,4500000,81000000 Samoa,12/1/2007,0.029,0.198,161,35,,58,490916835,0.059,164,224,0.016,0.047,0.127,75,68,0.472,1,0.39,0.56,0.049,182240,0.208,Oceania,102000000,19800000 Solomon Islands,12/1/2007,0.034,0.261,198,56,,64,516209150,0.056,67,80,0.029,0.02,0.141,68,65,0.022,1,0.411,0.558,0.031,492148,0.187,Oceania,37800000,35600000 Tonga,12/1/2007,0.028,0.275,154,32,,58,301064027,0.069,205,164,0.013,0.072,0.122,75,69,0.455,1,0.379,0.561,0.06,102289,0.232,Oceania,15200000,19200000 Vanuatu,12/1/2007,0.028,0.084,95,47,,35,526425740,0.037,88,120,0.017,0.068,0.082,72,68,0.118,1,0.391,0.573,0.036,220001,0.237,Oceania,142000000,13000000 Antigua and Barbuda,12/1/2007,0.018,0.462,444,21,,146,1289259236,0.046,698,184,0.01,0.34,0.104,77,72,1.332,1,0.276,0.651,0.073,84397,0.28,The Americas,338000000,52000000 Argentina,12/1/2007,0.017,1.076,180416,30,,73673,329761000000,0.082,548,453,0.014,0.259,0.111,79,71,1.027,1,0.257,0.639,0.104,39331357,0.904,The Americas,4984000000,5063000000 Aruba,12/1/2007,0.012,,2358,,,,2623726257,,,,,0.309,0.11,77,72,1.122,1,0.212,0.696,0.092,101219,0.441,The Americas,1213000000,270000000 "Bahamas, The",12/1/2007,0.015,0.449,1547,31,,709,8318996000,0.071,1721,58,0.012,0.27,0.055,77,71,1.093,1,0.242,0.693,0.065,342049,0.824,The Americas,2198000000,538000000 Barbados,12/1/2007,0.013,,1426,,,401,4513250000,0.075,928,,0.014,0.582,0.108,77,72,0.932,1,0.2,0.694,0.106,276277,0.326,The Americas,1224000000,290000000 Belize,12/1/2007,0.026,0.348,425,44,,178,1290500000,0.048,215,147,0.017,0.109,0.143,76,70,0.413,1,0.37,0.59,0.04,286196,0.458,The Americas,289000000,46000000 Bermuda,12/1/2007,0.013,,517,,,,5895048000,,,,,0.744,,82,76,1.07,1,,,,64888,1,The Americas,569000000,453000000 Bolivia,12/1/2007,0.028,0.8,12757,50,,5372,13120183157,0.047,64,1080,0.04,0.105,0.129,68,63,0.336,1,0.374,0.58,0.045,9676456,0.651,The Americas,326000000,385000000 Brazil,12/1/2007,0.017,0.69,363213,149,,235460,1366820000000,0.085,609,2600,0.018,0.309,0.437,76,69,0.637,1,0.268,0.668,0.064,189996976,0.834,The Americas,5284000000,10434000000 Canada,12/1/2007,0.011,0.443,560802,3,,271728,1457870000000,0.1,4330,119,0.005,0.732,0.061,83,78,0.615,1,0.171,0.695,0.134,32887928,0.804,The Americas,17961000000,31099000000 Cayman Islands,12/1/2007,0.014,,612,,,,,,,,,0.52,,,,1.972,1,,,,51472,1,The Americas,481000000,132000000 Chile,12/1/2007,0.015,0.251,71154,27,,30565,173006000000,0.064,665,316,0.008,0.359,0.087,82,76,0.837,1,0.237,0.678,0.085,16668892,0.879,The Americas,2226000000,2042000000 Colombia,12/1/2007,0.021,0.842,63439,42,,27919,207520000000,0.063,291,268,0.017,0.218,0.154,77,69,0.763,1,0.3,0.648,0.052,44498390,0.742,The Americas,2262000000,2093000000 Costa Rica,12/1/2007,0.017,0.552,8573,77,,4508,26321999607,0.084,525,402,0.009,0.284,0.128,81,76,0.338,1,0.266,0.673,0.061,4463226,0.682,The Americas,2221000000,751000000 Cuba,12/1/2007,0.011,,26736,,,10137,58603500000,0.104,587,,0.005,0.117,,80,76,0.018,1,0.186,0.699,0.115,11301674,0.763,The Americas,2415000000, Curacao,12/1/2007,0.013,,,,,,,,,,,,,79,72,,1,0.203,0.671,0.126,143026,0.903,The Americas,329000000,223000000 Dominica,12/1/2007,,0.37,150,14,,43,412592593,0.051,298,147,0.012,0.403,0.092,,,1.257,1,,,,70795,0.672,The Americas,74000000,11000000 Dominican Republic,12/1/2007,0.023,0.395,21430,22,,7058,41320673508,0.05,212,286,0.028,0.177,0.158,75,69,0.573,1,0.323,0.619,0.058,9615015,0.7,The Americas,4064000000,531000000 Ecuador,12/1/2007,0.023,0.353,30759,65,,11332,51007777000,0.067,241,600,0.023,0.108,,78,72,0.697,1,0.32,0.622,0.058,14268397,0.621,The Americas,626000000,733000000 El Salvador,12/1/2007,0.021,0.347,6898,22,,4479,20104900000,0.063,207,320,0.018,0.061,,76,66,1.002,1,0.343,0.592,0.065,6122952,0.627,The Americas,793000000,363000000 Greenland,12/1/2007,0.015,,616,,,,2121759848,,,,,0.611,,72,68,1.169,1,,,,56555,0.835,The Americas,, Grenada,12/1/2007,0.019,0.453,238,20,,81,758888875,0.061,448,140,0.012,0.223,0.098,74,69,0.496,1,0.287,0.638,0.075,103586,0.358,The Americas,129000000,16000000 Guatemala,12/1/2007,0.034,0.365,12636,34,,8528,34113106486,0.072,184,344,0.031,0.073,0.128,74,67,0.893,1,0.426,0.531,0.043,13317931,0.48,The Americas,1055000000,737000000 Guyana,12/1/2007,0.022,0.39,1566,37,,500,1740334782,0.039,89,288,0.034,0.138,0.146,68,62,0.699,1,0.372,0.592,0.035,770407,0.282,The Americas,50000000,58000000 Haiti,12/1/2007,0.028,0.404,2391,202,,2509,5885325590,0.054,34,184,0.063,0.072,0.231,62,59,0.263,1,0.373,0.584,0.043,9513714,0.474,The Americas,190000000,331000000 Honduras,12/1/2007,0.028,0.44,8779,21,,4692,12275491273,0.079,136,424,0.024,0.094,0.166,74,70,0.583,1,0.386,0.572,0.042,7178436,0.498,The Americas,547000000,309000000 Jamaica,12/1/2007,0.016,0.499,13480,8,,4200,12820055025,0.049,230,414,0.017,0.211,0.172,75,69,0.991,1,0.304,0.618,0.077,2662481,0.532,The Americas,2142000000,340000000 Mexico,12/1/2007,0.021,0.523,455845,25,,176711,1043390000000,0.058,565,485,0.016,0.208,0.076,78,74,0.586,1,0.314,0.63,0.056,113529819,0.769,The Americas,14055000000,9918000000 Nicaragua,12/1/2007,0.025,0.635,4595,39,,2871,7458167331,0.069,92,240,0.024,0.039,0.13,76,70,0.447,1,0.364,0.592,0.043,5595533,0.564,The Americas,255000000,279000000 Panama,12/1/2007,0.021,0.447,7125,18,,3024,21121900000,0.067,382,482,0.018,0.223,0.083,79,74,0.862,1,0.302,0.635,0.063,3491034,0.643,The Americas,1806000000,457000000 Paraguay,12/1/2007,0.025,0.351,4136,35,,4225,13794909537,0.06,135,328,0.023,0.112,0.25,74,70,0.766,1,0.349,0.602,0.049,6125285,0.578,The Americas,121000000,184000000 Peru,12/1/2007,0.021,0.383,43208,72,,14334,102173000000,0.051,192,424,0.019,0.252,0.229,76,70,0.544,1,0.312,0.632,0.056,28328410,0.758,The Americas,2007000000,1243000000 Puerto Rico,12/1/2007,0.012,0.576,,7,,,89524131617,,,140,,0.279,,83,74,0.65,1,0.215,0.66,0.125,3782995,0.94,The Americas,3414000000,1743000000 Sint Maarten (Dutch part),12/1/2007,,,,,,,,,,,,,,77,72,,1,,,,39464,1,The Americas,665000000,83000000 St. Kitts and Nevis,12/1/2007,,0.523,249,19,,83,684074062,0.041,551,172,0.01,0.52,0.093,,,1.278,1,,,,50478,0.319,The Americas,125000000,12000000 St. Lucia,12/1/2007,0.017,0.34,385,20,,128,1145555535,0.068,452,71,0.014,0.279,0.101,76,71,0.864,1,0.27,0.653,0.077,170149,0.211,The Americas,302000000,42000000 St. Martin (French part),12/1/2007,0.017,,,,,,,,,,,,,82,75,,1,,,,28905,,The Americas,, St. Vincent and the Grenadines,12/1/2007,0.018,0.45,202,12,,70,684074074,0.039,246,76,0.019,0.16,0.096,74,70,1.013,1,0.276,0.653,0.07,109045,0.477,The Americas,110000000,20000000 Suriname,12/1/2007,0.019,0.279,2442,694,,714,2936612022,0.059,341,199,0.024,0.141,0.138,73,66,0.744,1,0.295,0.643,0.062,510433,0.665,The Americas,73000000,28000000 Trinidad and Tobago,12/1/2007,0.015,0.331,46461,43,,20331,21830397705,0.048,790,210,0.023,0.323,0.118,73,66,1.152,1,0.211,0.713,0.076,1310040,0.096,The Americas,621000000,155000000 Turks and Caicos Islands,12/1/2007,,,158,,,,,,,,,,,,,,1,,,,28638,0.888,The Americas,, United States,12/1/2007,0.014,0.461,5828697,6,,2337014,14480300000000,0.161,7486,325,0.007,0.75,0.081,80,75,0.821,1,0.202,0.673,0.125,301231207,0.803,The Americas,148846000000, Uruguay,12/1/2007,0.015,0.713,5999,44,,3172,23410536914,0.08,560,304,0.012,0.34,0.089,80,73,0.9,1,0.233,0.63,0.137,3338384,0.938,The Americas,928000000,354000000 "Venezuela, RB",12/1/2007,0.022,0.536,175785,141,,62934,230364000000,0.06,497,864,0.015,0.208,0.171,77,71,0.861,1,0.305,0.643,0.052,27655937,0.886,The Americas,972000000,2249000000 Virgin Islands (U.S.),12/1/2007,0.013,,,,,,,,,,,0.273,,82,76,,1,0.214,0.669,0.117,107423,0.941,The Americas,1512000000, Algeria,12/1/2008,0.024,0.738,114619,25,,37425,171000000000,0.038,183,451,0.025,0.102,0.08,72,69,0.757,1,0.274,0.68,0.047,35725377,0.661,Africa,474000000,617000000 Angola,12/1/2008,0.048,0.521,26597,68,,11584,84178086999,0.038,177,272,0.115,0.046,0.125,51,48,0.37,1,0.479,0.497,0.024,18314441,0.385,Africa,293000000,447000000 Benin,12/1/2008,0.039,0.732,4492,31,,3278,6633561835,0.042,31,270,0.066,0.019,,60,57,0.404,1,0.439,0.533,0.029,8973293,0.411,Africa,236000000,102000000 Botswana,12/1/2008,0.025,0.171,4980,77,,2151,11113042238,0.053,307,140,0.043,0.063,0.165,46,46,0.768,1,0.348,0.618,0.034,1933719,0.558,Africa,59000000,54000000 Burkina Faso,12/1/2008,0.044,0.445,1698,16,,,8350710389,0.086,39,270,0.076,0.009,,55,54,0.206,1,0.462,0.512,0.025,14659646,0.24,Africa,82000000,110000000 Burundi,12/1/2008,0.045,2.797,249,13,,,1611634286,0.079,15,140,0.066,0.008,0.165,53,50,0.056,1,0.442,0.532,0.026,8624280,0.101,Africa,1600000,151000000 Cameroon,12/1/2008,0.039,0.504,5545,38,,6395,23735537026,0.05,60,654,0.071,0.034,,54,52,0.314,1,0.438,0.53,0.033,19595026,0.503,Africa,167000000,563000000 Central African Republic,12/1/2008,0.036,2.038,235,22,,,1985370255,0.043,20,504,0.107,0.01,,48,45,0.136,1,0.412,0.549,0.039,4185106,0.385,Africa,11800000,56000000 Chad,12/1/2008,0.048,0.713,510,64,,,10351933632,0.036,27,732,0.097,0.012,,50,48,0.145,1,0.491,0.484,0.026,11030628,0.219,Africa,, Comoros,12/1/2008,0.038,2.179,125,22,,,530131963,0.052,42,100,0.066,0.03,0.105,61,58,0.141,1,0.42,0.55,0.03,649291,0.279,Africa,37000000,15000000 "Congo, Dem. Rep.",12/1/2008,0.045,2.881,2820,133,,22246,19206060075,0.073,15,308,0.097,0.004,0.432,50,47,0.169,1,0.458,0.514,0.028,58819038,0.389,Africa,700000,127000000 "Congo, Rep.",12/1/2008,0.039,0.659,1474,161,,1260,11859015181,0.021,64,606,0.049,0.043,,57,55,0.466,1,0.422,0.544,0.034,3876475,0.623,Africa,, Cote d'Ivoire,12/1/2008,0.036,0.446,6872,40,,10278,23414253328,0.065,83,270,0.082,0.019,,50,48,0.572,1,0.421,0.549,0.03,18260044,0.49,Africa,129000000,612000000 Djibouti,12/1/2008,0.029,0.378,524,37,,,999105339,0.08,92,66,0.066,0.023,0.116,61,58,0.139,1,0.351,0.614,0.035,810100,0.769,Africa,7800000,15500000 "Egypt, Arab Rep.",12/1/2008,0.024,0.44,196797,8,,72050,162818000000,0.048,101,711,0.021,0.18,0.123,72,68,0.547,1,0.318,0.628,0.054,75491922,0.431,Africa,12104000000,3390000000 Equatorial Guinea,12/1/2008,0.037,0.441,4503,135,,,15419096232,0.034,792,492,0.08,0.018,,52,49,0.274,1,0.397,0.572,0.03,658025,0.39,Africa,, Eritrea,12/1/2008,0.039,0.845,414,84,,677,1380188800,0.034,9,216,0.042,0.005,,63,58,0.02,1,0.43,0.549,0.02,5382163,0.199,Africa,46000000, Ethiopia,12/1/2008,0.036,0.303,6370,18,,31482,26571320718,0.043,14,198,0.057,0.005,0.08,61,59,0.024,1,0.453,0.515,0.032,82621190,0.165,Africa,1184000000,156000000 Gabon,12/1/2008,0.033,0.447,1566,57,,1880,15685389827,0.027,283,488,0.046,0.062,,62,60,0.877,1,0.389,0.556,0.055,1482843,0.849,Africa,, "Gambia, The",12/1/2008,0.044,2.921,411,27,,,965771303,0.041,25,376,0.054,0.069,0.27,59,56,0.739,1,0.46,0.514,0.025,1577984,0.548,Africa,80000000,8000000 Ghana,12/1/2008,0.033,0.325,8529,13,,8958,28528016511,0.056,69,224,0.056,0.043,,61,59,0.501,1,0.394,0.571,0.035,23110139,0.494,Africa,970000000,870000000 Guinea,12/1/2008,0.039,0.807,1214,40,,,4515824643,0.06,26,416,0.077,0.009,,55,54,0.267,1,0.432,0.536,0.032,10314678,0.34,Africa,2400000,30000000 Guinea-Bissau,12/1/2008,0.039,0.459,227,259,,,842890956,0.06,34,208,0.089,0.024,,55,52,0.33,1,0.423,0.548,0.029,1516920,0.435,Africa,38200000,46100000 Kenya,12/1/2008,0.038,0.493,10242,30,,17806,30465489796,0.042,33,417,0.056,0.087,0.14,59,56,0.42,1,0.426,0.547,0.026,38773277,0.228,Africa,1398000000,266000000 Lesotho,12/1/2008,0.028,0.196,18,40,,,1630667593,0.089,73,324,0.082,0.036,0.162,46,46,0.301,1,0.385,0.571,0.044,1972199,0.238,Africa,30000000,248000000 Liberia,12/1/2008,0.038,0.429,576,31,,,850040459,0.118,27,158,0.067,0.005,0.144,59,57,0.233,1,0.434,0.535,0.031,3672714,0.471,Africa,158000000,58000000 Libya,12/1/2008,0.022,,60392,,,17738,93167701863,0.022,318,,0.016,0.09,0.06,76,73,1.256,1,0.297,0.658,0.044,5876805,0.773,Africa,99000000,1339000000 Madagascar,12/1/2008,0.036,0.426,1944,7,,,9413002737,0.043,20,238,0.047,0.017,0.45,64,61,0.243,1,0.44,0.531,0.029,19926785,0.307,Africa,620000000,143000000 Malawi,12/1/2008,0.042,0.322,1155,39,,,4276769712,0.084,25,292,0.059,0.007,0.253,52,52,0.107,1,0.46,0.509,0.03,14138207,0.153,Africa,43000000,86000000 Mali,12/1/2008,0.048,0.514,594,25,,,8737687353,0.067,45,270,0.088,0.016,,53,53,0.262,1,0.465,0.505,0.03,13138299,0.344,Africa,286000000,228000000 Mauritania,12/1/2008,0.036,0.858,2021,19,,,3790240831,0.043,46,696,0.072,0.019,0.203,62,59,0.611,1,0.409,0.559,0.031,3422901,0.553,Africa,, Mauritius,12/1/2008,0.013,0.258,3953,6,,,9641077098,0.046,362,161,0.014,0.218,0.115,76,69,0.845,1,0.224,0.704,0.072,1268565,0.41,Africa,1823000000,489000000 Morocco,12/1/2008,0.021,0.529,49934,12,,14933,88882967742,0.054,156,358,0.031,0.331,,71,68,0.737,1,0.289,0.66,0.05,30955151,0.567,Africa,8885000000,1910000000 Mozambique,12/1/2008,0.042,0.375,2340,26,,9264,9891003405,0.055,24,230,0.078,0.016,0.183,50,47,0.194,1,0.452,0.516,0.032,22762525,0.305,Africa,213000000,235000000 Namibia,12/1/2008,0.028,0.228,3579,66,,1455,8493167843,0.069,287,339,0.041,0.053,0.137,63,57,0.498,1,0.387,0.579,0.034,2110791,0.396,Africa,484000000,114000000 Niger,12/1/2008,0.05,0.423,917,19,,,5403364454,0.071,26,270,0.072,0.007,,56,56,0.129,1,0.496,0.479,0.026,14737895,0.172,Africa,86000000,98000000 Nigeria,12/1/2008,0.042,0.322,92621,25,,111225,208065000000,0.065,88,938,0.088,0.159,0.155,51,50,0.417,1,0.438,0.535,0.027,151208080,0.417,Africa,959000000,11009000000 Rwanda,12/1/2008,0.038,0.334,543,14,,,4674053754,0.101,47,160,0.05,0.045,0.165,61,59,0.129,1,0.447,0.53,0.023,10222961,0.22,Africa,224000000,146000000 Sao Tome and Principe,12/1/2008,0.037,0.472,84,144,,,183464986,0.063,75,424,0.043,0.155,0.324,67,64,0.3,1,0.416,0.546,0.038,168253,0.604,Africa,7700000,300000 Senegal,12/1/2008,0.039,0.455,5442,9,,3036,13386346543,0.049,54,666,0.051,0.106,,64,61,0.44,1,0.438,0.531,0.031,12238791,0.417,Africa,637000000,276000000 Seychelles,12/1/2008,0.018,0.466,708,39,,,967211975,0.027,289,76,0.012,0.404,0.118,79,68,1.04,1,0.229,0.696,0.075,86956,0.518,Africa,46000000,7000000 Sierra Leone,12/1/2008,0.04,2.352,664,17,,,2505620416,0.142,64,399,0.12,0.003,0.245,44,44,0.182,1,0.424,0.551,0.025,5532139,0.376,Africa,34000000,24000000 Somalia,12/1/2008,0.046,,609,,,,,,,,0.102,0.011,,55,52,0.069,1,0.478,0.493,0.029,9140259,0.364,Africa,, South Africa,12/1/2008,0.022,0.337,465023,22,,146768,273142000000,0.08,437,200,0.046,0.084,0.151,54,51,0.895,1,0.3,0.65,0.049,49561256,0.612,Africa,9178000000,6905000000 South Sudan,12/1/2008,0.038,,,,,,16382632812,0.02,34,,0.076,,,53,51,,1,0.434,0.533,0.033,9118386,0.176,Africa,, Sudan,12/1/2008,0.036,0.361,12589,39,,15539,54082389393,0.075,118,180,0.058,,,63,59,0.29,1,0.426,0.543,0.031,34040065,0.329,Africa,331000000,1188000000 Swaziland,12/1/2008,0.031,0.363,1093,60,,,3019770680,0.082,214,104,0.074,0.069,0.148,47,48,0.461,1,0.399,0.568,0.033,1153929,0.217,Africa,26000000,59000000 Tanzania,12/1/2008,0.041,0.444,6538,26,,18921,20715086119,0.054,26,172,0.047,0.019,0.15,58,56,0.307,1,0.448,0.522,0.031,42353790,0.268,Africa,1293000000,746000000 Togo,12/1/2008,0.038,0.526,1456,62,,2563,3163416556,0.065,34,270,0.064,0.024,,56,54,0.259,1,0.423,0.549,0.028,5987491,0.366,Africa,44000000,68000000 Tunisia,12/1/2008,0.018,0.586,25013,11,,9427,44856586316,0.056,246,228,0.017,0.275,,76,72,0.828,1,0.241,0.69,0.069,10328900,0.656,Africa,3909000000,555000000 Uganda,12/1/2008,0.046,0.34,3161,25,,,14239026768,0.088,39,222,0.057,0.079,0.205,56,55,0.269,1,0.491,0.484,0.025,31778799,0.139,Africa,536000000,315000000 Zambia,12/1/2008,0.043,0.15,1845,18,,7641,14640792100,0.066,78,183,0.067,0.056,0.191,52,51,0.284,1,0.47,0.504,0.027,12456527,0.379,Africa,148000000,107000000 Zimbabwe,12/1/2008,0.032,0.684,8148,97,,8678,4415702801,,,256,0.058,0.114,,49,49,0.129,1,0.416,0.545,0.039,12784041,0.336,Africa,294000000, Afghanistan,12/1/2008,0.041,0.363,3927,9,,,10190534636,0.097,35,275,0.079,0.018,0.149,60,57,0.292,1,0.492,0.487,0.021,27032197,0.239,Asia,43000000,58000000 Armenia,12/1/2008,0.014,0.386,5556,17,,3004,11662040714,0.038,149,581,0.018,0.062,0.17,77,71,0.484,1,0.208,0.681,0.111,2977488,0.64,Asia,377000000,383000000 Azerbaijan,12/1/2008,0.017,0.409,45702,10,,13322,48852482960,0.044,241,376,0.037,0.171,0.198,73,67,0.738,1,0.237,0.701,0.062,8763400,0.53,Asia,382000000,456000000 Bangladesh,12/1/2008,0.022,0.361,46435,73,,27873,79554350678,0.035,19,302,0.043,0.025,0.164,69,68,0.302,1,0.327,0.628,0.045,147969967,0.29,Asia,75000000,735000000 Bhutan,12/1/2008,0.021,0.408,422,46,,,1258193519,0.052,95,274,0.038,0.066,0.138,66,66,0.366,1,0.312,0.645,0.043,692159,0.332,Asia,46000000,66000000 Brunei Darussalam,12/1/2008,0.018,0.374,10583,116,,3542,14393099069,0.022,821,144,0.008,0.46,0.055,80,76,1.028,1,0.275,0.691,0.034,388017,0.747,Asia,242000000,459000000 Cambodia,12/1/2008,0.026,0.215,3975,102,,3514,10351829066,0.055,41,137,0.042,0.005,,72,67,0.304,1,0.332,0.62,0.048,13940518,0.195,Asia,1280000000,180000000 China,12/1/2008,0.012,0.799,7035444,41,,2120814,4521830000000,0.046,155,464,0.016,0.226,0.053,76,73,0.478,1,0.187,0.732,0.081,1324655000,0.465,Asia,44130000000,40987000000 Georgia,12/1/2008,0.014,0.386,6238,3,,3005,12799337250,0.09,261,387,0.017,0.1,0.18,77,70,0.624,1,0.174,0.682,0.145,4383800,0.526,Asia,505000000,337000000 "Hong Kong SAR, China",12/1/2008,0.011,0.241,38573,11,,14139,219280000000,,,80,,0.667,0.05,86,79,1.662,1,0.128,0.747,0.125,6957800,1,Asia,20236000000,16095000000 India,12/1/2008,0.022,0.703,1811289,30,,632956,1224100000000,0.039,43,271,0.05,0.044,0.133,67,63,0.295,1,0.31,0.641,0.049,1174662334,0.302,Asia,12462000000,12083000000 Indonesia,12/1/2008,0.021,0.375,412387,77,,186605,510245000000,0.028,61,266,0.03,0.079,0.136,72,68,0.6,1,0.3,0.65,0.049,234243489,0.483,Asia,8150000000,8801000000 Japan,12/1/2008,0.009,0.55,1206916,22,,495352,4849180000000,0.086,3259,355,0.003,0.754,0.019,86,79,0.867,1,0.135,0.649,0.216,127704040,0.889,Asia,13781000000,38976000000 Kazakhstan,12/1/2008,0.023,0.415,230438,21,,69983,133442000000,0.039,332,271,0.023,0.11,,72,62,0.958,1,0.245,0.684,0.071,15674000,0.541,Asia,1255000000,1361000000 "Korea, Dem. Rep.",12/1/2008,0.015,,78081,,,20164,,,,,0.026,,,72,65,,1,0.235,0.682,0.083,24243894,0.6,Asia,, "Korea, Rep.",12/1/2008,0.009,0.325,508052,17,,226946,1002220000000,0.066,1253,250,0.004,0.81,0.072,83,77,0.953,1,0.174,0.722,0.104,48948698,0.817,Asia,13479000000,21456000000 Kyrgyz Republic,12/1/2008,0.024,0.614,5680,15,,2846,5139957785,0.061,60,202,0.03,0.157,0.199,73,65,0.653,1,0.302,0.649,0.049,5318700,0.353,Asia,569000000,451000000 Lao PDR,12/1/2008,0.029,0.334,1742,93,,,5443930125,0.041,36,560,0.063,0.036,0.24,67,65,0.329,1,0.381,0.581,0.037,6139127,0.308,Asia,280000000,51000000 "Macao SAR, China",12/1/2008,0.009,,1192,,,,20731022857,,,,,0.492,0.054,82,77,1.838,1,0.141,0.788,0.071,507528,1,Asia,17297000000,902000000 Malaysia,12/1/2008,0.018,0.345,213221,20,,73006,230988000000,0.034,288,145,0.007,0.558,0.061,77,72,1.015,1,0.287,0.667,0.046,27302348,0.692,Asia,18553000000,7724000000 Maldives,12/1/2008,0.022,0.093,1008,9,,,1891633531,0.079,475,,0.014,0.232,0.13,77,75,1.388,1,0.313,0.637,0.049,313843,0.376,Asia,1559000000,211000000 Mongolia,12/1/2008,0.022,0.338,10029,13,,3156,5623236708,0.064,136,204,0.032,0.098,0.206,70,62,0.67,1,0.273,0.689,0.038,2632834,0.656,Asia,272000000,249000000 Myanmar,12/1/2008,0.018,,9028,,,15033,,0.02,10,,0.046,0.002,0.17,66,62,0.007,1,0.268,0.681,0.05,51174018,0.304,Asia,80000000,50000000 Nepal,12/1/2008,0.025,0.341,3047,31,,9634,12545438605,0.061,27,408,0.04,0.017,0.08,67,65,0.16,1,0.383,0.57,0.047,26249412,0.162,Asia,353000000,545000000 Pakistan,12/1/2008,0.027,0.288,156676,24,,82046,170078000000,0.033,29,560,0.076,0.07,0.129,67,65,0.527,1,0.365,0.593,0.043,167008083,0.358,Asia,986000000,2163000000 Philippines,12/1/2008,0.026,0.471,75944,41,,40009,173603000000,0.038,74,195,0.026,0.062,0.088,71,65,0.754,1,0.36,0.604,0.036,90371287,0.458,Asia,3024000000,2553000000 Singapore,12/1/2008,0.01,0.279,19637,4,,25162,192231000000,0.04,1577,84,0.002,0.69,0.054,83,78,1.323,1,0.181,0.733,0.086,4839400,1,Asia,10714000000,16340000000 Sri Lanka,12/1/2008,0.019,0.617,11892,40,,8942,40715240469,0.034,68,256,0.01,0.058,0.189,77,71,0.542,1,0.252,0.674,0.074,20217000,0.183,Asia,803000000,777000000 Tajikistan,12/1/2008,0.031,0.834,3033,62,,2473,5161336170,0.056,40,224,0.048,0.088,0.237,70,63,0.505,1,0.365,0.6,0.035,7275252,0.265,Asia,23700000,10800000 Thailand,12/1/2008,0.012,0.375,261838,33,,107656,272578000000,0.039,162,264,0.013,0.182,0.07,77,70,0.934,1,0.205,0.711,0.084,66185340,0.414,Asia,22497000000,6700000000 Timor-Leste,12/1/2008,0.037,0.326,191,157,,,693800000,0.086,55,640,0.056,0.002,0.131,66,63,0.119,1,0.477,0.494,0.03,1032182,0.282,Asia,14000000,51000000 Turkmenistan,12/1/2008,0.022,,55093,,,22669,19271523179,0.019,81,,0.054,0.018,,69,61,0.231,1,0.304,0.653,0.043,4917543,0.478,Asia,, Uzbekistan,12/1/2008,0.024,0.898,120039,15,,50512,27934030937,0.052,53,205,0.043,0.091,,71,64,0.458,1,0.31,0.645,0.046,27302800,0.363,Asia,64000000, Vietnam,12/1/2008,0.017,0.399,127164,39,,48984,99130304099,0.06,63,1050,0.022,0.239,0.158,80,70,0.857,1,0.247,0.688,0.066,85122300,0.291,Asia,3930000000,1300000000 Albania,12/1/2008,0.013,0.462,4129,9,,2061,12881352688,0.061,251,368,0.016,0.239,0.13,80,74,0.589,1,0.243,0.662,0.095,2912559,0.5,Europe,1848000000,1644000000 Andorra,12/1/2008,0.01,,539,,,,3712034267,0.062,3105,,0.003,0.7,,,,0.803,1,,,,79969,0.889,Europe,, Austria,12/1/2008,0.009,0.524,68269,25,,33545,414171000000,0.105,5211,170,0.004,0.729,,83,78,1.297,1,0.152,0.677,0.171,8336926,0.658,Europe,24346000000,13993000000 Belarus,12/1/2008,0.011,1.175,62816,31,,28098,60763483146,0.059,378,987,0.006,0.23,0.086,77,65,0.851,1,0.148,0.708,0.143,9528000,0.737,Europe,585000000,860000000 Belgium,12/1/2008,0.012,0.552,103882,4,,58600,507379000000,0.099,4715,156,0.004,0.66,0.092,83,77,1.053,1,0.168,0.661,0.171,10709973,0.975,Europe,13106000000,21445000000 Bosnia and Herzegovina,12/1/2008,0.008,0.428,30997,69,,5954,18543289395,0.088,425,428,0.007,0.347,0.07,78,73,0.823,1,0.181,0.674,0.144,3861201,0.392,Europe,913000000,345000000 Bulgaria,12/1/2008,0.01,0.339,50792,49,,19815,51824892678,0.07,474,616,0.012,0.397,0.109,77,70,1.39,1,0.133,0.688,0.179,7492561,0.716,Europe,4852000000,2602000000 Croatia,12/1/2008,0.01,0.214,23366,22,,9084,69595512099,0.078,1224,196,0.005,0.442,0.101,80,72,1.045,1,0.156,0.671,0.173,4434508,0.57,Europe,11681000000,1156000000 Cyprus,12/1/2008,0.012,0.206,8555,8,,2574,25321517504,0.069,2182,149,0.003,0.423,,81,77,0.944,1,0.186,0.703,0.112,1077089,0.678,Europe,3231000000,1895000000 Czech Republic,12/1/2008,0.012,0.477,117014,20,,44870,225427000000,0.068,1481,808,0.004,0.63,0.063,80,74,1.324,1,0.142,0.711,0.147,10384603,0.734,Europe,8871000000,4797000000 Denmark,12/1/2008,0.012,0.292,46960,6,,19200,343881000000,0.102,6395,135,0.004,0.85,,81,76,1.193,1,0.183,0.657,0.159,5493621,0.865,Europe,6281000000,9698000000 Estonia,12/1/2008,0.012,0.479,17492,7,,5440,23781549758,0.06,1060,81,0.004,0.706,0.085,79,69,1.242,1,0.151,0.676,0.173,1337090,0.684,Europe,1643000000,939000000 Faeroe Islands,12/1/2008,,,719,,,,2412859693,,,,,0.756,,83,78,1.106,1,,,,49601,0.405,Europe,, Finland,12/1/2008,0.011,0.478,56593,14,,35284,271974000000,0.083,4262,269,0.003,0.837,,83,76,1.284,1,0.168,0.668,0.165,5313399,0.833,Europe,4873000000,5579000000 France,12/1/2008,0.013,0.645,372564,7,,264803,2831800000000,0.11,4877,132,0.004,0.707,,85,78,0.927,1,0.184,0.651,0.165,64371099,0.779,Europe,67779000000,50021000000 Germany,12/1/2008,0.008,0.494,783359,18,,334634,3623690000000,0.107,4718,196,0.004,0.78,,82,77,1.266,1,0.137,0.66,0.202,82110097,0.739,Europe,53398000000, Greece,12/1/2008,0.011,0.467,97810,19,,30419,341594000000,0.101,3085,224,0.004,0.382,,83,78,1.245,1,0.144,0.668,0.188,11186439,0.756,Europe,17586000000,3946000000 Hungary,12/1/2008,0.01,0.566,54657,5,,26458,154234000000,0.075,1146,330,0.006,0.61,0.102,78,70,1.217,1,0.149,0.688,0.163,10038188,0.679,Europe,7113000000,3833000000 Iceland,12/1/2008,0.015,0.258,2120,5,,5354,16832076487,0.093,4959,140,0.002,0.91,0.201,83,80,1.089,1,0.213,0.668,0.119,317414,0.934,Europe,881000000,1103000000 Ireland,12/1/2008,0.017,0.254,43021,13,,14903,264034000000,0.091,5393,76,0.004,0.653,,82,78,1.16,1,0.21,0.679,0.111,4489544,0.613,Europe,9967000000,10539000000 Isle of Man,12/1/2008,,,,,,,,,,,,,,,,,1,,,,82561,0.52,Europe,, Italy,12/1/2008,0.01,0.725,447187,10,,176004,2307310000000,0.089,3441,314,0.004,0.445,0.068,85,79,1.509,1,0.14,0.66,0.2,58826731,0.681,Europe,48757000000,37807000000 Kosovo,12/1/2008,0.019,,,,,2216,5771473142,,,,,,0.138,72,67,,1,,,,1747383,,Europe,, Latvia,12/1/2008,0.011,0.368,7591,16,,4586,33669367720,0.066,979,279,0.009,0.634,0.119,78,67,1.075,1,0.141,0.679,0.18,2177322,0.678,Europe,1134000000,1250000000 Liechtenstein,12/1/2008,0.01,,,,,,4929414915,,,,,0.7,,86,80,0.956,1,,,,35582,0.146,Europe,, Lithuania,12/1/2008,0.011,0.456,15115,26,,9520,47438363056,0.066,934,166,0.007,0.552,0.084,78,66,1.598,1,0.156,0.69,0.154,3198231,0.668,Europe,1316000000,1567000000 Luxembourg,12/1/2008,0.012,0.2,10792,26,,4204,54742763112,0.073,8305,59,0.002,0.822,,83,78,1.451,1,0.18,0.679,0.141,488650,0.878,Europe,4486000000,3801000000 "Macedonia, FYR",12/1/2008,0.011,0.174,11848,9,,3012,9834034351,0.069,325,150,0.01,0.46,0.097,77,72,0.937,1,0.182,0.703,0.115,2098769,0.571,Europe,262000000,190000000 Malta,12/1/2008,0.01,,2560,,,837,8554293727,0.082,1596,,0.006,0.501,0.059,82,77,0.916,1,0.162,0.699,0.139,409379,0.943,Europe,1336000000,361000000 Moldova,12/1/2008,0.012,0.42,4774,15,,3363,6054806101,0.114,193,234,0.016,0.234,0.211,72,64,0.666,1,0.172,0.715,0.112,3570108,0.45,Europe,293000000,359000000 Monaco,12/1/2008,,,,,,,6919241412,0.036,6623,,0.003,0.673,,,,0.616,1,,,,35686,1,Europe,, Montenegro,12/1/2008,0.012,0.31,2750,21,,1177,4538345345,0.063,466,372,0.007,0.329,0.092,76,72,1.872,1,0.198,0.676,0.126,618649,0.627,Europe,859000000,80000000 Netherlands,12/1/2008,0.011,0.382,173845,8,,79550,870812000000,0.11,5834,180,0.004,0.874,0.046,82,78,1.25,1,0.179,0.674,0.147,16445593,0.854,Europe,20523000000,22217000000 Norway,12/1/2008,0.013,0.407,50326,7,,29805,453885000000,0.09,8626,87,0.003,0.906,0.073,83,78,1.091,1,0.191,0.661,0.148,4768212,0.785,Europe,5702000000,15118000000 Poland,12/1/2008,0.011,0.451,316125,31,,97892,529432000000,0.069,956,418,0.006,0.531,,80,71,1.15,1,0.154,0.713,0.133,38125759,0.611,Europe,12837000000,10689000000 Portugal,12/1/2008,0.01,0.425,58357,5,,24430,251925000000,0.102,2425,328,0.003,0.441,,82,76,1.329,1,0.153,0.67,0.176,10558177,0.594,Europe,14047000000,5283000000 Romania,12/1/2008,0.011,0.454,94645,9,,39617,204339000000,0.054,516,202,0.014,0.324,0.15,76,69,1.114,1,0.15,0.702,0.149,20537875,0.536,Europe,2625000000,2409000000 Russian Federation,12/1/2008,0.012,0.483,1715639,29,,688483,1660840000000,0.051,594,448,0.012,0.268,0.122,74,62,1.389,1,0.147,0.718,0.135,141956409,0.736,Europe,15821000000,26401000000 San Marino,12/1/2008,0.011,,,,,,1899809580,0.05,4069,,0.003,0.545,0.079,86,80,0.799,1,,,,30549,0.941,Europe,, Serbia,12/1/2008,0.009,0.34,51881,23,,16808,47760580366,0.104,673,279,0.007,0.356,0.161,76,71,1.198,1,0.173,0.689,0.138,7350221,0.551,Europe,1133000000,1468000000 Slovak Republic,12/1/2008,0.011,0.465,37557,18,,18321,97908891167,0.08,1400,325,0.007,0.661,0.058,79,71,1.019,1,0.156,0.724,0.12,5379233,0.551,Europe,3004000000,2596000000 Slovenia,12/1/2008,0.011,0.358,17180,19,,7740,54554616826,0.083,2265,260,0.003,0.58,0.067,82,75,1.011,1,0.139,0.698,0.162,2021316,0.502,Europe,2954000000,1610000000 Spain,12/1/2008,0.011,0.603,329286,47,,139013,1593420000000,0.089,3146,234,0.004,0.596,,84,78,1.097,1,0.147,0.684,0.169,45954106,0.78,Europe,70434000000,27157000000 Sweden,12/1/2008,0.012,0.537,49105,16,,49601,486159000000,0.092,4886,122,0.003,0.9,,83,79,1.084,1,0.167,0.656,0.177,9219637,0.847,Europe,12060000000,15447000000 Switzerland,12/1/2008,0.01,0.278,40392,18,,26773,524289000000,0.103,7104,63,0.004,0.792,0.033,84,80,1.163,1,0.155,0.681,0.164,7647675,0.736,Europe,17570000000,13346000000 Turkey,12/1/2008,0.018,0.443,285274,6,,98502,730337000000,0.061,628,223,0.022,0.344,,77,70,0.935,1,0.274,0.657,0.069,70363511,0.696,Europe,26446000000,4509000000 Ukraine,12/1/2008,0.011,0.572,323459,27,,134562,179992000000,0.066,257,848,0.011,0.11,0.175,74,63,1.198,1,0.139,0.7,0.16,46258200,0.683,Europe,6722000000,4585000000 United Kingdom,12/1/2008,0.013,0.342,522467,13,,208209,2687800000000,0.09,3875,105,0.005,0.784,0.046,82,78,1.222,1,0.176,0.661,0.162,61806995,0.808,Europe,46285000000,83584000000 Bahrain,12/1/2008,0.017,0.135,24301,9,,9771,25711147929,0.041,727,36,0.008,0.52,0.082,77,75,1.291,1,0.217,0.763,0.021,1116038,0.885,Middle East,1927000000,704000000 "Iran, Islamic Rep.",12/1/2008,0.019,0.442,570574,28,,204312,355988000000,0.064,313,344,0.018,0.102,0.12,74,71,0.592,1,0.239,0.71,0.051,72660887,0.695,Middle East,1978000000,8270000000 Iraq,12/1/2008,0.033,0.278,94444,32,,28806,131612000000,0.039,142,312,0.031,0.01,0.195,72,65,0.596,1,0.416,0.549,0.034,29429829,0.689,Middle East,867000000,813000000 Israel,12/1/2008,0.022,0.33,70938,20,,22868,213126000000,0.076,2076,230,0.004,0.594,0.066,83,79,1.264,1,0.274,0.624,0.103,7308800,0.917,Middle East,5509000000,4693000000 Jordan,12/1/2008,0.03,0.311,20763,13,,7069,21971835256,0.088,326,136,0.019,0.23,0.09,75,72,0.899,1,0.362,0.605,0.033,5786000,0.82,Middle East,3539000000,1140000000 Kuwait,12/1/2008,0.021,0.107,79959,35,,28843,147402000000,0.019,1049,98,0.01,0.42,0.076,75,73,0.555,1,0.254,0.721,0.025,2702221,0.982,Middle East,610000000,8341000000 Lebanon,12/1/2008,0.013,0.36,16656,11,,5426,28829850746,0.075,529,180,0.01,0.225,0.1,81,76,0.341,1,0.257,0.662,0.081,4186088,0.869,Middle East,6317000000,4297000000 Oman,12/1/2008,0.022,0.216,41067,14,,18679,60743823637,0.021,473,62,0.01,0.2,0.071,78,73,1.241,1,0.311,0.665,0.024,2593523,0.741,Middle East,1105000000,1197000000 Qatar,12/1/2008,0.013,0.113,67997,7,,23642,115270000000,0.019,1590,36,0.008,0.443,0.068,79,77,1.052,1,0.161,0.827,0.012,1359114,0.983,Middle East,, Saudi Arabia,12/1/2008,0.022,0.145,418240,20,,154076,519797000000,0.031,566,79,0.016,0.36,,76,73,1.365,1,0.32,0.65,0.03,26366358,0.816,Middle East,6775000000,16005000000 Syrian Arab Republic,12/1/2008,0.026,0.398,67700,16,,23052,,0.034,90,336,0.014,0.14,0.102,77,73,0.347,1,0.367,0.598,0.036,20346056,0.549,Middle East,3176000000,912000000 United Arab Emirates,12/1/2008,0.016,0.144,158935,18,,58347,315475000000,0.027,1353,12,0.008,0.63,,77,75,1.376,1,0.149,0.847,0.004,6798635,0.834,Middle East,7162000000,13288000000 "Yemen, Rep.",12/1/2008,0.033,0.478,22207,13,,7208,30397203369,0.051,69,248,0.05,0.069,0.18,63,61,0.297,1,0.434,0.539,0.027,21703571,0.306,Middle East,886000000,246000000 American Samoa,12/1/2008,,,,,,,,,,,,,,,,,1,,,,57053,0.878,Oceania,, Australia,12/1/2008,0.014,0.499,387635,3,,122519,1055510000000,0.088,4237,107,0.004,0.717,0.089,84,79,1.022,1,0.192,0.677,0.132,21249200,0.884,Oceania,28306000000,24689000000 Fiji,12/1/2008,0.022,0.415,1078,46,,,3629936625,0.036,154,140,0.02,0.13,0.08,72,66,0.711,1,0.294,0.661,0.045,843851,0.511,Oceania,938000000,112000000 French Polynesia,12/1/2008,0.017,,869,,,,,,,,,0.339,,78,73,0.712,1,0.251,0.688,0.061,262877,0.567,Oceania,522000000,159000000 Guam,12/1/2008,0.018,,,,,,,,,,,0.484,,80,75,,1,0.284,0.647,0.069,158310,0.939,Oceania,, Kiribati,12/1/2008,0.024,0.318,55,31,,,135044456,0.132,183,120,0.049,0.07,,70,64,0.011,1,0.35,0.613,0.037,94832,0.436,Oceania,2900000,12700000 Marshall Islands,12/1/2008,,0.648,99,17,,,152565763,0.179,569,128,0.032,0.046,,,,,1,,,,52245,0.708,Oceania,3000000, "Micronesia, Fed. Sts.",12/1/2008,0.024,0.587,99,16,,,261339642,0.129,323,128,0.034,0.145,0.144,69,68,0.263,1,0.378,0.583,0.039,104498,0.223,Oceania,27000000,7000000 New Caledonia,12/1/2008,0.016,,3282,,,,,,,,,0.345,,81,72,0.821,1,0.248,0.667,0.086,243985,0.66,Oceania,152000000,168000000 New Zealand,12/1/2008,0.015,0.36,34264,1,,17412,130459000000,0.093,2820,172,0.005,0.72,0.089,82,78,1.08,1,0.208,0.666,0.125,4268900,0.861,Oceania,5152000000,3006000000 Papua New Guinea,12/1/2008,0.031,0.415,3476,51,,,8010370370,0.046,56,194,0.053,0.012,0.092,64,60,0.133,1,0.395,0.578,0.027,6550877,0.131,Oceania,3800000,75000000 Samoa,12/1/2008,0.029,0.189,161,35,,,573939144,0.051,153,224,0.016,0.05,0.127,75,69,,1,0.388,0.563,0.05,183444,0.205,Oceania,112000000,21600000 Solomon Islands,12/1/2008,0.034,0.261,198,56,,,608292552,0.056,72,80,0.028,0.03,0.144,68,65,0.06,1,0.41,0.558,0.032,503541,0.191,Oceania,40600000,40500000 Tonga,12/1/2008,0.028,0.275,161,25,,,346850176,0.063,207,164,0.012,0.081,0.125,75,69,0.49,1,0.377,0.563,0.059,102947,0.233,Oceania,19500000,25100000 Vanuatu,12/1/2008,0.028,0.084,92,47,,,607983815,0.037,99,120,0.017,0.073,0.053,72,68,0.16,1,0.388,0.574,0.037,225398,0.24,Oceania,188000000,32000000 Antigua and Barbuda,12/1/2008,0.018,0.462,458,21,,,1347407407,0.044,702,207,0.009,0.38,0.104,77,73,1.6,1,0.271,0.656,0.073,85349,0.274,The Americas,334000000,58000000 Argentina,12/1/2008,0.017,1.076,190057,31,,77794,406004000000,0.083,686,453,0.014,0.281,0.195,79,72,1.172,1,0.254,0.641,0.104,39676083,0.906,The Americas,5295000000,5962000000 Aruba,12/1/2008,0.011,,2288,,,,2791960894,,,,,0.52,0.112,77,72,1.192,1,0.212,0.693,0.096,101344,0.438,The Americas,1353000000,273000000 "Bahamas, The",12/1/2008,0.016,0.449,1045,31,,,8246650000,0.073,1729,58,0.012,0.315,0.055,77,71,1.028,1,0.236,0.698,0.066,348340,0.824,The Americas,2155000000,460000000 Barbados,12/1/2008,0.013,,1635,,,,4541550000,0.075,996,,0.014,0.614,0.1,77,72,1.04,1,0.198,0.698,0.105,277634,0.324,The Americas,1244000000,279000000 Belize,12/1/2008,0.025,0.332,407,44,,,1369500000,0.051,237,147,0.017,0.113,0.141,76,70,0.545,1,0.365,0.596,0.039,293544,0.455,The Americas,278000000,44000000 Bermuda,12/1/2008,0.013,,389,,,,6109928000,,,,,0.823,,82,77,1.222,1,,,,65273,1,The Americas,431000000,459000000 Bolivia,12/1/2008,0.027,0.8,13773,50,,5973,16674324634,0.049,84,1080,0.038,0.125,0.139,68,64,0.512,1,0.37,0.585,0.046,9834098,0.656,The Americas,302000000,381000000 Brazil,12/1/2008,0.016,0.684,387675,149,,248594,1653510000000,0.083,714,2600,0.017,0.338,0.473,76,69,0.786,1,0.264,0.671,0.066,191765567,0.837,The Americas,6109000000,13269000000 Canada,12/1/2008,0.011,0.441,544975,5,,264724,1542560000000,0.103,4623,119,0.005,0.767,0.047,83,78,0.662,1,0.168,0.695,0.136,33245773,0.806,The Americas,18191000000,33844000000 Cayman Islands,12/1/2008,,,631,,,,,,,,,0.61,,,,1.858,1,,,,52912,1,The Americas,518000000,130000000 Chile,12/1/2008,0.015,0.251,71224,27,,30310,179858000000,0.068,732,316,0.008,0.373,0.133,82,76,0.879,1,0.231,0.682,0.087,16831184,0.882,The Americas,2537000000,1789000000 Colombia,12/1/2008,0.02,0.801,66439,36,,29208,244057000000,0.066,358,256,0.017,0.256,0.172,77,69,0.916,1,0.295,0.651,0.054,45153037,0.745,The Americas,2438000000,2337000000 Costa Rica,12/1/2008,0.016,0.552,8647,60,,4586,29831167681,0.09,593,282,0.009,0.323,0.158,81,77,0.416,1,0.26,0.678,0.062,4532711,0.694,The Americas,2533000000,718000000 Cuba,12/1/2008,0.01,,30443,,,10566,60806200000,0.108,584,,0.005,0.129,,80,76,0.029,1,0.181,0.7,0.118,11296355,0.764,The Americas,2347000000, Curacao,12/1/2008,0.014,,,,,,,,,,,,,79,72,,1,0.201,0.671,0.128,144971,0.902,The Americas,383000000,229000000 Dominica,12/1/2008,,0.37,128,13,,,452222222,0.049,316,117,0.012,0.412,0.091,,,1.284,1,,,,70883,0.675,The Americas,76000000,11000000 Dominican Republic,12/1/2008,0.023,0.352,21019,19,,7104,45796187338,0.053,244,480,0.027,0.208,0.199,76,69,0.74,1,0.319,0.622,0.059,9750195,0.713,The Americas,4166000000,532000000 Ecuador,12/1/2008,0.022,0.349,29670,65,,10973,61762635000,0.063,268,600,0.022,0.188,,78,72,0.805,1,0.316,0.624,0.059,14512402,0.623,The Americas,745000000,790000000 El Salvador,12/1/2008,0.021,0.347,6546,17,,4499,21431000000,0.062,216,320,0.017,0.101,,76,67,1.13,1,0.336,0.598,0.066,6151776,0.633,The Americas,711000000,326000000 Greenland,12/1/2008,0.015,,638,,,,1739579594,,,,,0.628,,73,68,0.985,1,,,,56328,0.838,The Americas,, Grenada,12/1/2008,0.019,0.453,260,20,,,825925911,0.06,474,140,0.012,0.232,0.095,74,70,0.578,1,0.282,0.643,0.074,103932,0.358,The Americas,127000000,11000000 Guatemala,12/1/2008,0.033,0.409,11441,34,,8157,39136441799,0.069,199,344,0.03,0.083,0.134,74,67,1.095,1,0.422,0.534,0.044,13648307,0.484,The Americas,1068000000,741000000 Guyana,12/1/2008,0.022,0.39,1558,39,,,1922598121,0.066,165,288,0.034,0.182,0.146,68,63,0.577,1,0.375,0.591,0.034,775739,0.282,The Americas,59000000,52000000 Haiti,12/1/2008,0.027,0.404,2428,195,,2927,6548530572,0.055,36,184,0.061,0.076,0.178,63,59,0.332,1,0.369,0.587,0.044,9638255,0.49,The Americas,276000000,383000000 Honduras,12/1/2008,0.028,0.441,8672,20,,4648,13789720387,0.084,159,224,0.023,0.096,0.179,75,70,0.848,1,0.38,0.578,0.042,7322368,0.504,The Americas,620000000,385000000 Jamaica,12/1/2008,0.016,0.499,11947,8,,4078,13676837630,0.054,272,414,0.017,0.236,0.168,75,70,1.002,1,0.3,0.622,0.078,2671934,0.534,The Americas,2222000000,312000000 Mexico,12/1/2008,0.02,0.515,471444,26,,181876,1099070000000,0.058,598,549,0.015,0.217,0.087,79,74,0.655,1,0.31,0.633,0.057,114968039,0.772,The Americas,14726000000,10246000000 Nicaragua,12/1/2008,0.025,0.632,4386,39,,2903,8491371523,0.072,105,240,0.024,0.053,0.132,76,70,0.548,1,0.358,0.598,0.044,5667983,0.567,The Americas,301000000,332000000 Panama,12/1/2008,0.021,0.438,7576,12,,3053,24884000000,0.073,473,482,0.018,0.338,0.082,80,74,1.102,1,0.299,0.636,0.065,3553480,0.645,The Americas,2208000000,560000000 Paraguay,12/1/2008,0.025,0.35,4353,35,,4348,18504128632,0.056,167,328,0.022,0.143,0.258,74,70,0.929,1,0.344,0.606,0.05,6236005,0.58,The Americas,128000000,208000000 Peru,12/1/2008,0.021,0.381,41279,65,,15044,121383000000,0.057,255,424,0.017,0.306,0.237,76,71,0.732,1,0.308,0.635,0.057,28625628,0.762,The Americas,2396000000,1432000000 Puerto Rico,12/1/2008,0.012,0.606,,7,,,93639316000,,,218,,0.38,,83,75,0.682,1,0.212,0.662,0.126,3760866,0.939,The Americas,3535000000,1761000000 Sint Maarten (Dutch part),12/1/2008,0.013,,,,,,,,,,,,,77,72,,1,,,,40459,1,The Americas,667000000,88000000 St. Kitts and Nevis,12/1/2008,,0.525,249,19,,,734814815,0.042,603,172,0.009,0.6,0.087,,,1.458,1,,,,51110,0.318,The Americas,110000000,15000000 St. Lucia,12/1/2008,0.017,0.34,396,20,,,1184074074,0.075,503,61,0.014,0.32,0.101,77,71,1.013,1,0.264,0.656,0.08,172734,0.201,The Americas,311000000,45000000 St. Martin (French part),12/1/2008,0.017,,,,,,,,,,,,,82,75,,1,,,,29376,,The Americas,, St. Vincent and the Grenadines,12/1/2008,0.018,0.426,202,12,,,695555556,0.047,299,117,0.019,0.21,0.095,74,70,1.192,1,0.273,0.659,0.069,109158,0.481,The Americas,96000000,18000000 Suriname,12/1/2008,0.019,0.279,2442,694,,,3532969035,0.059,406,199,0.024,0.211,0.122,73,67,1.275,1,0.293,0.644,0.063,515372,0.665,The Americas,83000000,35000000 Trinidad and Tobago,12/1/2008,0.015,0.331,42541,43,,19563,28165793618,0.044,924,210,0.022,0.348,0.124,73,66,1.372,1,0.209,0.712,0.078,1316449,0.094,The Americas,557000000,102000000 Turks and Caicos Islands,12/1/2008,,,158,,,,,,,,,,,,,,1,,,,29481,0.893,The Americas,, United States,12/1/2008,0.014,0.464,5656839,5,,2277034,14720300000000,0.165,7769,187,0.007,0.74,0.051,81,76,0.852,1,0.201,0.673,0.127,304093966,0.804,The Americas,170524000000, Uruguay,12/1/2008,0.015,0.43,8331,44,,4153,30366148205,0.08,722,336,0.011,0.393,0.124,80,73,1.047,1,0.23,0.632,0.137,3348898,0.94,The Americas,1195000000,466000000 "Venezuela, RB",12/1/2008,0.021,0.556,186812,141,,69597,315600000000,0.056,633,864,0.014,0.259,0.224,77,71,0.975,1,0.302,0.645,0.053,28120312,0.887,The Americas,1097000000,2594000000 Virgin Islands (U.S.),12/1/2008,0.012,,,,,,,,,,,0.274,,82,76,,1,0.211,0.666,0.123,107091,0.942,The Americas,1157000000, Algeria,12/1/2009,0.024,0.72,124586,25,,40823,137212000000,0.046,174,451,0.024,0.112,0.08,72,69,0.9,1,0.272,0.681,0.047,36383302,0.668,Africa,381000000,574000000 Angola,12/1/2009,0.047,0.521,27836,68,,12586,75492417649,0.044,174,272,0.112,0.06,0.157,52,49,0.428,1,0.479,0.497,0.024,18926650,0.393,Africa,554000000,270000000 Benin,12/1/2009,0.038,0.732,4756,31,,3439,6585134688,0.044,32,270,0.064,0.022,,60,57,0.545,1,0.436,0.535,0.029,9240783,0.415,Africa,131000000,88000000 Botswana,12/1/2009,0.025,0.17,4397,60,,2023,10106837286,0.061,318,140,0.041,0.062,0.138,46,47,0.96,1,0.345,0.621,0.034,1951715,0.56,Africa,53000000,80000000 Burkina Faso,12/1/2009,0.043,0.449,1665,14,,,8348156389,0.073,41,270,0.073,0.011,,55,54,0.253,1,0.461,0.514,0.025,15094967,0.248,Africa,99000000,111000000 Burundi,12/1/2009,0.045,2.797,180,13,,,1739781536,0.07,14,140,0.063,0.009,0.141,54,51,0.103,1,0.44,0.535,0.026,8926687,0.104,Africa,1700000,71000000 Cameroon,12/1/2009,0.039,0.488,6674,35,,6914,22165009363,0.051,56,654,0.069,0.038,,54,52,0.398,1,0.436,0.532,0.033,20103945,0.509,Africa,271000000,476000000 Central African Republic,12/1/2009,0.035,2.038,235,23,,,1981728179,0.036,17,504,0.105,0.018,,49,46,0.202,1,0.409,0.552,0.039,4266247,0.386,Africa,6000000,61000000 Chad,12/1/2009,0.048,0.713,444,64,,,9253484290,0.045,28,732,0.095,0.015,,50,49,0.201,1,0.49,0.485,0.025,11371325,0.219,Africa,, Comoros,12/1/2009,0.038,2.179,125,22,,,535199686,0.038,31,100,0.065,0.035,0.105,61,59,0.184,1,0.421,0.549,0.029,666097,0.279,Africa,32000000,17000000 "Congo, Dem. Rep.",12/1/2009,0.044,2.927,2721,127,,22925,18262773766,0.091,17,308,0.095,0.006,0.654,50,47,0.156,1,0.456,0.515,0.028,60486276,0.394,Africa,24000000,121000000 "Congo, Rep.",12/1/2009,0.039,0.659,1885,161,,1416,9593536719,0.023,54,606,0.045,0.045,,58,55,0.738,1,0.422,0.544,0.034,3995146,0.628,Africa,, Cote d'Ivoire,12/1/2009,0.036,0.444,5856,40,,9489,23041633638,0.068,84,270,0.079,0.02,,50,48,0.709,1,0.42,0.55,0.031,18601342,0.498,Africa,164000000,589000000 Djibouti,12/1/2009,0.029,0.378,532,37,,,1198997305,0.083,100,66,0.064,0.04,0.111,61,58,0.157,1,0.345,0.618,0.036,821865,0.769,Africa,16000000,17500000 "Egypt, Arab Rep.",12/1/2009,0.024,0.43,197871,8,,71465,188984000000,0.05,118,480,0.021,0.257,0.12,73,68,0.721,1,0.316,0.629,0.055,76775023,0.43,Africa,11757000000,2941000000 Equatorial Guinea,12/1/2009,0.037,0.441,4620,135,,,9380412630,0.056,861,492,0.078,0.021,,52,50,0.295,1,0.395,0.575,0.03,676851,0.391,Africa,, Eritrea,12/1/2009,0.039,0.845,513,84,,726,1856695550,0.031,10,216,0.041,0.005,,63,58,0.025,1,0.43,0.549,0.021,5557889,0.202,Africa,26000000, Ethiopia,12/1/2009,0.035,0.303,6659,15,,32378,31843357840,0.045,15,198,0.054,0.005,,62,59,0.048,1,0.449,0.518,0.033,84838032,0.169,Africa,1119000000,139000000 Gabon,12/1/2009,0.033,0.447,81,57,,1925,12031268402,0.037,291,488,0.045,0.067,,63,61,0.954,1,0.388,0.559,0.054,1519155,0.853,Africa,, "Gambia, The",12/1/2009,0.043,2.921,436,27,,,900629373,0.045,25,376,0.053,0.076,0.27,59,57,0.806,1,0.46,0.515,0.025,1628332,0.556,Africa,64000000,9000000 Ghana,12/1/2009,0.033,0.325,7444,12,,9320,25978563316,0.051,56,224,0.056,0.054,,61,59,0.638,1,0.392,0.573,0.035,23691533,0.5,Africa,849000000,948000000 Guinea,12/1/2009,0.039,0.807,1228,40,,,4609923720,0.063,28,416,0.074,0.009,,56,54,0.329,1,0.43,0.538,0.032,10593248,0.344,Africa,4900000,28000000 Guinea-Bissau,12/1/2009,0.039,0.459,235,216,,,832530157,0.068,36,208,0.087,0.023,,55,52,0.361,1,0.421,0.55,0.03,1550905,0.443,Africa,12000000,26000000 Kenya,12/1/2009,0.037,0.493,12350,34,,18897,30716343757,0.046,36,417,0.054,0.1,0.148,60,57,0.486,1,0.426,0.548,0.026,39824734,0.232,Africa,1124000000,227000000 Lesotho,12/1/2009,0.028,0.199,26,40,,,1708772782,0.098,84,324,0.08,0.037,0.13,47,46,0.332,1,0.381,0.576,0.043,1989873,0.243,Africa,30000000,247000000 Liberia,12/1/2009,0.038,0.429,528,20,,,1155146230,0.144,43,158,0.064,0.005,0.142,60,58,0.284,1,0.434,0.535,0.031,3821440,0.474,Africa,123000000,51000000 Libya,12/1/2009,0.022,,67674,,,20286,62360446571,0.035,349,,0.015,0.108,0.06,77,73,1.599,1,0.295,0.659,0.045,5964325,0.775,Africa,159000000,1683000000 Madagascar,12/1/2009,0.036,0.384,1822,7,,,8550363829,0.045,19,201,0.045,0.016,0.45,64,61,0.307,1,0.437,0.534,0.029,20495695,0.313,Africa,518000000,123000000 Malawi,12/1/2009,0.041,0.263,1060,39,,,5030639934,0.083,29,157,0.055,0.011,0.253,53,53,0.171,1,0.459,0.51,0.031,14573338,0.154,Africa,46000000,91000000 Mali,12/1/2009,0.048,0.514,612,8,,,8964480570,0.068,45,270,0.085,0.018,,53,54,0.329,1,0.467,0.504,0.029,13559296,0.352,Africa,290000000,231000000 Mauritania,12/1/2009,0.036,0.858,2211,19,,,3027032864,0.054,46,696,0.071,0.023,0.195,62,59,0.621,1,0.407,0.561,0.031,3516077,0.56,Africa,, Mauritius,12/1/2009,0.012,0.26,3865,6,,,8834661043,0.05,357,161,0.014,0.225,0.093,77,69,0.886,1,0.217,0.708,0.075,1275032,0.408,Africa,1390000000,384000000 Morocco,12/1/2009,0.021,0.493,49541,12,,15054,90908402631,0.057,165,358,0.03,0.413,,72,68,0.809,1,0.285,0.665,0.05,31276564,0.572,Africa,7980000000,1713000000 Mozambique,12/1/2009,0.041,0.375,2574,26,,9554,9674037707,0.06,25,230,0.074,0.027,0.157,50,48,0.256,1,0.453,0.515,0.032,23361025,0.307,Africa,217000000,247000000 Namibia,12/1/2009,0.027,0.223,3183,66,,1497,8724107049,0.079,326,339,0.039,0.065,0.111,64,59,0.761,1,0.382,0.584,0.034,2143498,0.406,Africa,511000000,120000000 Niger,12/1/2009,0.05,0.465,1085,17,,,5397121962,0.077,27,270,0.069,0.008,,57,56,0.17,1,0.497,0.477,0.026,15302948,0.174,Africa,69000000,84000000 Nigeria,12/1/2009,0.042,0.322,71719,25,,109255,169481000000,0.068,74,938,0.085,0.2,0.184,51,51,0.48,1,0.439,0.534,0.027,155381020,0.426,Africa,791000000,6236000000 Rwanda,12/1/2009,0.037,0.31,576,3,,,5208687775,0.1,50,160,0.047,0.077,0.161,63,60,0.231,1,0.448,0.529,0.023,10529668,0.23,Africa,223000000,148000000 Sao Tome and Principe,12/1/2009,0.037,0.472,92,144,,,196473839,0.075,94,424,0.041,0.164,0.311,68,64,0.467,1,0.416,0.547,0.037,173240,0.612,Africa,8300000,400000 Senegal,12/1/2009,0.039,0.455,5849,9,,3270,12812994670,0.048,49,666,0.049,0.145,,64,61,0.548,1,0.437,0.532,0.031,12586827,0.42,Africa,474000000,258000000 Seychelles,12/1/2009,0.018,0.441,755,39,,,847424852,0.027,250,76,0.012,,0.153,78,68,1.222,1,0.225,0.699,0.076,87298,0.52,Africa,27000000,5000000 Sierra Leone,12/1/2009,0.039,2.352,653,12,,,2453972797,0.169,74,357,0.117,0.003,0.222,45,44,0.206,1,0.423,0.551,0.025,5641182,0.379,Africa,25000000,22000000 Somalia,12/1/2009,0.046,,594,,,,,,,,0.1,0.012,,55,52,0.068,1,0.478,0.494,0.028,9380854,0.368,Africa,, South Africa,12/1/2009,0.022,0.298,503941,22,,142761,284183000000,0.087,484,200,0.04,0.1,0.117,55,52,0.912,1,0.299,0.651,0.051,50222996,0.617,Africa,8684000000,6420000000 South Sudan,12/1/2009,0.038,,,,,,13298986925,0.024,30,,0.073,,,54,52,,1,0.431,0.535,0.034,9520571,0.177,Africa,, Sudan,12/1/2009,0.035,0.361,14056,36,,16297,52839990731,0.074,112,180,0.056,,,63,60,0.361,1,0.423,0.546,0.031,34853178,0.33,Africa,299000000,868000000 Swaziland,12/1/2009,0.031,0.363,1023,60,,,3144680749,0.084,227,104,0.068,0.089,0.114,48,48,0.566,1,0.393,0.574,0.033,1173678,0.216,Africa,40000000,98000000 Tanzania,12/1/2009,0.041,0.444,6447,26,,19345,21368165400,0.056,28,172,0.044,0.024,0.15,59,57,0.4,1,0.448,0.521,0.031,43639752,0.274,Africa,1192000000,806000000 Togo,12/1/2009,0.038,0.525,1503,84,,2628,3163000591,0.072,37,270,0.062,0.026,,56,54,0.356,1,0.422,0.551,0.027,6144457,0.371,Africa,73000000,94000000 Tunisia,12/1/2009,0.018,0.623,24807,11,,9193,43454935940,0.062,259,228,0.016,0.341,,77,73,0.932,1,0.238,0.693,0.069,10439600,0.658,Africa,3526000000,478000000 Uganda,12/1/2009,0.045,0.35,3366,25,,,14824492062,0.093,42,161,0.054,0.098,0.21,57,56,0.286,1,0.49,0.486,0.025,32864328,0.142,Africa,683000000,351000000 Zambia,12/1/2009,0.043,0.15,2156,18,,7842,12805029522,0.064,64,183,0.065,0.063,0.221,54,52,0.344,1,0.47,0.504,0.027,12825031,0.383,Africa,98000000,83000000 Zimbabwe,12/1/2009,0.032,0.382,8735,97,,8747,8157077422,,,270,0.059,0.114,,51,51,0.31,1,0.415,0.546,0.04,12888918,0.334,Africa,523000000, Afghanistan,12/1/2009,0.039,0.363,6524,7,,,12486950469,0.087,35,275,0.077,0.036,0.15,60,58,0.379,1,0.49,0.489,0.021,27708187,0.243,Asia,96000000,61000000 Armenia,12/1/2009,0.014,0.386,4353,14,,2610,8647936748,0.045,132,581,0.017,0.153,0.188,78,71,0.738,1,0.206,0.686,0.108,2968154,0.638,Asia,374000000,379000000 Azerbaijan,12/1/2009,0.017,0.409,42629,10,,11937,44291490421,0.059,288,376,0.035,0.274,0.2,73,67,0.863,1,0.231,0.708,0.061,8947243,0.532,Asia,545000000,488000000 Bangladesh,12/1/2009,0.021,0.35,52328,43,,29131,89356650349,0.037,22,302,0.041,0.031,0.146,70,68,0.344,1,0.322,0.632,0.046,149503100,0.297,Asia,77000000,651000000 Bhutan,12/1/2009,0.021,0.408,389,46,,,1264758198,0.046,82,274,0.036,0.072,0.138,67,66,0.481,1,0.305,0.651,0.044,704542,0.34,Asia,51000000,34000000 Brunei Darussalam,12/1/2009,0.017,0.303,9094,116,,3043,10732366286,0.028,766,144,0.008,0.49,0.055,80,76,1.047,1,0.271,0.694,0.035,394400,0.751,Asia,254000000,477000000 Cambodia,12/1/2009,0.026,0.217,4052,102,,4907,10401935532,0.063,46,173,0.039,0.005,,73,68,0.443,1,0.324,0.627,0.049,14144225,0.197,Asia,1208000000,163000000 China,12/1/2009,0.012,0.638,7692211,38,,2286137,4990230000000,0.051,189,464,0.015,0.289,0.053,76,73,0.553,1,0.184,0.734,0.082,1331260000,0.479,Asia,42632000000,47108000000 Georgia,12/1/2009,0.014,0.153,6058,3,,3096,10766836277,0.102,249,387,0.016,0.201,0.179,77,70,0.645,1,0.173,0.684,0.143,4410900,0.527,Asia,537000000,311000000 "Hong Kong SAR, China",12/1/2009,0.012,0.23,36996,6,,14933,214046000000,,,80,,0.694,0.05,86,80,1.798,1,0.124,0.749,0.127,6972800,1,Asia,20291000000,15669000000 India,12/1/2009,0.022,0.66,1982263,30,,698360,1365370000000,0.039,44,271,0.048,0.051,0.122,67,64,0.441,1,0.306,0.644,0.05,1190138069,0.306,Asia,11136000000,9310000000 Indonesia,12/1/2009,0.02,0.378,453106,63,,199782,539580000000,0.028,64,266,0.029,0.069,0.145,72,68,0.689,1,0.3,0.651,0.05,237486894,0.491,Asia,6053000000,6908000000 Japan,12/1/2009,0.009,0.553,1100650,22,,472174,5035140000000,0.095,3746,355,0.002,0.78,0.017,86,80,0.913,1,0.134,0.643,0.223,127557958,0.897,Asia,12537000000,34788000000 Kazakhstan,12/1/2009,0.022,0.347,214087,20,,63417,115309000000,0.045,328,271,0.021,0.182,,74,64,1.084,1,0.247,0.685,0.068,16092701,0.539,Asia,1185000000,1319000000 "Korea, Dem. Rep.",12/1/2009,0.014,,74686,,,19358,,,,,0.025,,,72,65,0.003,1,0.231,0.684,0.085,24371865,0.601,Asia,, "Korea, Rep.",12/1/2009,0.009,0.31,509376,14,,229178,901935000000,0.071,1204,250,0.004,0.816,0.056,84,77,0.995,1,0.168,0.725,0.107,49182038,0.818,Asia,13304000000,16360000000 Kyrgyz Republic,12/1/2009,0.025,0.594,6480,11,,2484,4690062255,0.068,61,202,0.029,0.17,0.23,73,65,0.852,1,0.301,0.653,0.046,5383300,0.353,Asia,506000000,393000000 Lao PDR,12/1/2009,0.029,0.323,1811,93,,,5832882922,0.036,34,362,0.061,0.06,0.248,68,65,0.516,1,0.374,0.588,0.037,6267968,0.32,Asia,271000000,91000000 "Macao SAR, China",12/1/2009,0.009,,1302,,,,21313263933,,,,,0.54,0.053,82,77,1.989,1,0.133,0.796,0.071,521617,1,Asia,18445000000,983000000 Malaysia,12/1/2009,0.018,0.342,203882,18,,69858,202251000000,0.039,285,145,0.007,0.559,0.051,77,72,1.085,1,0.282,0.671,0.047,27790324,0.701,Asia,17231000000,7196000000 Maldives,12/1/2009,0.022,0.093,1067,9,,,1984639641,0.076,475,,0.012,0.248,0.13,77,75,1.432,1,0.306,0.644,0.05,319660,0.388,Asia,1473000000,212000000 Mongolia,12/1/2009,0.023,0.243,11052,13,,3252,4583834427,0.064,111,192,0.03,0.1,0.217,71,63,0.842,1,0.271,0.691,0.038,2672223,0.666,Asia,253000000,242000000 Myanmar,12/1/2009,0.018,,10392,,,14246,,0.021,13,,0.045,0.002,0.17,66,62,0.01,1,0.265,0.685,0.051,51540490,0.309,Asia,75000000,52000000 Nepal,12/1/2009,0.024,0.325,3506,31,,9986,12899651884,0.06,29,338,0.038,0.02,0.08,68,66,0.211,1,0.377,0.574,0.048,26544943,0.165,Asia,439000000,572000000 Pakistan,12/1/2009,0.027,0.309,157890,21,,83197,167875000000,0.03,28,560,0.075,0.075,0.145,67,65,0.555,1,0.36,0.597,0.043,170093999,0.362,Asia,950000000,1098000000 Philippines,12/1/2009,0.025,0.471,74785,42,,38102,168334000000,0.043,78,195,0.026,0.09,0.086,72,65,0.823,1,0.357,0.607,0.037,91886400,0.455,Asia,2853000000,3251000000 Singapore,12/1/2009,0.01,0.278,24767,3,,28262,192406000000,0.045,1704,84,0.002,0.69,0.054,84,79,1.387,1,0.177,0.735,0.088,4987600,1,Asia,9403000000,15685000000 Sri Lanka,12/1/2009,0.019,0.617,12831,40,,9082,42067974595,0.033,68,256,0.01,0.088,0.157,77,71,0.791,1,0.251,0.673,0.076,20450000,0.183,Asia,754000000,735000000 Tajikistan,12/1/2009,0.032,0.838,2893,38,,2333,4979481980,0.059,40,224,0.046,0.101,0.226,70,64,0.658,1,0.362,0.604,0.034,7447396,0.265,Asia,19500000,5800000 Thailand,12/1/2009,0.011,0.369,276587,32,,107300,263711000000,0.041,164,264,0.013,0.201,0.06,77,70,0.995,1,0.199,0.715,0.086,66277335,0.427,Asia,19814000000,5749000000 Timor-Leste,12/1/2009,0.037,0.11,183,157,,,826700000,0.068,50,276,0.054,0.002,0.112,67,64,0.33,1,0.476,0.494,0.03,1049156,0.289,Asia,16000000,69000000 Turkmenistan,12/1/2009,0.022,,48525,,,19873,20214385965,0.021,86,,0.052,0.02,,69,61,0.428,1,0.297,0.661,0.042,4978962,0.481,Asia,, Uzbekistan,12/1/2009,0.023,0.948,116607,15,,44831,32816828373,0.054,64,205,0.041,0.171,,71,65,0.599,1,0.303,0.652,0.045,27767400,0.362,Asia,99000000, Vietnam,12/1/2009,0.017,0.399,140057,39,,53450,106015000000,0.065,72,1050,0.021,0.266,0.101,80,71,1.114,1,0.24,0.694,0.065,86025000,0.298,Asia,3050000000,1100000000 Albania,12/1/2009,0.013,0.37,3880,6,,2068,12044212904,0.06,230,368,0.015,0.412,0.127,80,74,0.782,1,0.236,0.666,0.098,2884303,0.511,Europe,2014000000,1693000000 Andorra,12/1/2009,0.01,,517,,,,,0.062,2762,,0.003,0.785,,,,0.821,1,,,,78659,0.884,Europe,, Austria,12/1/2009,0.009,0.534,62262,25,,31963,383734000000,0.112,5125,170,0.004,0.735,,83,77,1.366,1,0.15,0.675,0.175,8365275,0.658,Europe,21220000000,12767000000 Belarus,12/1/2009,0.011,0.997,60293,10,,26737,49208656976,0.061,314,900,0.005,0.274,0.117,76,65,1.017,1,0.148,0.711,0.141,9507000,0.742,Europe,563000000,752000000 Belgium,12/1/2009,0.012,0.545,104194,4,,57096,473254000000,0.106,4664,156,0.004,0.7,0.095,83,77,1.084,1,0.168,0.661,0.171,10796493,0.976,Europe,11500000000,22292000000 Bosnia and Herzegovina,12/1/2009,0.009,0.259,30590,69,,6161,17082889410,0.099,440,422,0.007,0.377,0.079,78,73,0.845,1,0.178,0.674,0.148,3853446,0.392,Europe,753000000,285000000 Bulgaria,12/1/2009,0.011,0.304,42805,18,,17512,48568714012,0.072,463,616,0.012,0.45,0.113,77,70,1.404,1,0.133,0.686,0.181,7444443,0.72,Europe,4273000000,1955000000 Croatia,12/1/2009,0.01,0.214,21555,22,,8722,62202619240,0.078,1095,196,0.005,0.506,0.116,80,73,1.075,1,0.154,0.672,0.174,4429078,0.573,Europe,9308000000,1041000000 Cyprus,12/1/2009,0.012,0.206,8141,8,,2525,23542650736,0.074,2115,149,0.003,0.498,,81,77,0.896,1,0.181,0.705,0.114,1090553,0.677,Europe,2474000000,1638000000 Czech Republic,12/1/2009,0.011,0.464,108121,20,,42044,197187000000,0.08,1498,613,0.004,0.644,0.06,80,74,1.246,1,0.142,0.708,0.15,10443936,0.733,Europe,7936000000,4158000000 Denmark,12/1/2009,0.011,0.282,44503,6,,18358,310545000000,0.115,6464,135,0.004,0.868,,81,77,1.237,1,0.181,0.656,0.163,5523095,0.867,Europe,5617000000,8968000000 Estonia,12/1/2009,0.012,0.481,14745,7,,4749,19406617022,0.068,968,81,0.004,0.725,0.094,80,70,1.205,1,0.153,0.674,0.174,1334515,0.682,Europe,1445000000,696000000 Faeroe Islands,12/1/2009,,,667,,,,2198138372,,,,,0.752,,84,78,1.149,1,,,,49600,0.407,Europe,, Finland,12/1/2009,0.011,0.477,53168,14,,33259,239383000000,0.092,4121,243,0.003,0.825,,83,77,1.441,1,0.166,0.666,0.167,5338871,0.834,Europe,4104000000,5226000000 France,12/1/2009,0.013,0.648,356924,7,,253469,2619690000000,0.117,4776,132,0.004,0.716,,85,78,0.921,1,0.184,0.65,0.166,64702921,0.781,Europe,58857000000,45806000000 Germany,12/1/2009,0.008,0.439,732249,18,,313249,3298220000000,0.118,4727,196,0.004,0.79,,83,77,1.262,1,0.136,0.659,0.206,81902307,0.741,Europe,47466000000,93112000000 Greece,12/1/2009,0.011,0.467,94902,19,,29436,321016000000,0.1,2861,224,0.004,0.424,,83,78,1.198,1,0.145,0.667,0.189,11187085,0.759,Europe,14796000000,3401000000 Hungary,12/1/2009,0.01,0.566,48676,4,,24859,126632000000,0.077,977,330,0.006,0.62,0.11,78,70,1.176,1,0.147,0.687,0.165,10022650,0.684,Europe,6740000000,3233000000 Iceland,12/1/2009,0.016,0.243,2054,5,,5384,12115441517,0.097,3696,140,0.002,0.93,0.19,84,80,1.083,1,0.211,0.669,0.12,318499,0.935,Europe,550000000,534000000 Ireland,12/1/2009,0.017,0.255,40623,13,,14364,225443000000,0.1,5040,76,0.004,0.674,,83,78,1.067,1,0.212,0.676,0.112,4535375,0.616,Europe,8458000000,7934000000 Isle of Man,12/1/2009,,,,,,,,,,,,,,,,,1,,,,83293,0.52,Europe,, Italy,12/1/2009,0.01,0.677,401592,10,,164858,2111150000000,0.094,3306,314,0.004,0.488,0.048,85,79,1.495,1,0.14,0.658,0.201,59095365,0.682,Europe,41938000000,34399000000 Kosovo,12/1/2009,0.019,0.283,,52,,2435,5620572910,,,163,,,0.141,72,68,,1,,,,1761474,,Europe,, Latvia,12/1/2009,0.01,0.377,6824,16,,4403,25875781250,0.068,784,279,0.009,0.668,0.162,78,68,1.091,1,0.141,0.677,0.182,2141669,0.678,Europe,1013000000,906000000 Liechtenstein,12/1/2009,0.011,,,,,,4826167676,,,,,0.75,,84,80,0.976,1,,,,35851,0.145,Europe,, Lithuania,12/1/2009,0.012,0.436,12578,26,,8766,37050081723,0.075,836,166,0.006,0.598,0.084,79,68,1.599,1,0.154,0.692,0.155,3162916,0.668,Europe,1063000000,1170000000 Luxembourg,12/1/2009,0.011,0.2,10249,24,,3956,49420751774,0.08,8127,59,0.002,0.873,,83,78,1.445,1,0.178,0.682,0.14,497783,0.882,Europe,4148000000,3612000000 "Macedonia, FYR",12/1/2009,0.011,0.146,11408,4,,2811,9313573965,0.069,306,150,0.01,0.518,0.101,77,72,0.925,1,0.178,0.707,0.115,2100558,0.57,Europe,232000000,150000000 Malta,12/1/2009,0.01,,2497,,,777,8099400961,0.083,1669,,0.006,0.589,0.045,83,78,0.998,1,0.159,0.699,0.141,412477,0.945,Europe,1117000000,362000000 Moldova,12/1/2009,0.012,0.31,4547,10,,3171,5439422031,0.125,190,228,0.016,0.275,0.205,72,65,0.593,1,0.169,0.719,0.112,3565604,0.449,Europe,240000000,307000000 Monaco,12/1/2009,,,,,,,5557579883,0.043,6458,,0.003,0.701,,,,0.633,1,,,,36314,1,Europe,, Montenegro,12/1/2009,0.012,0.263,1822,12,,994,4158135026,0.063,424,372,0.007,0.351,0.094,77,72,2.089,1,0.196,0.679,0.125,619408,0.629,Europe,792000000,76000000 Netherlands,12/1/2009,0.011,0.385,169650,8,,78175,796333000000,0.119,5740,164,0.004,0.896,0.02,83,79,1.217,1,0.177,0.673,0.15,16530388,0.862,Europe,17868000000,21080000000 Norway,12/1/2009,0.013,0.407,47077,7,,29775,378849000000,0.101,7944,87,0.003,0.921,0.043,83,79,1.107,1,0.189,0.662,0.149,4828726,0.788,Europe,4949000000,13221000000 Poland,12/1/2009,0.011,0.422,298787,32,,94002,430917000000,0.072,813,395,0.005,0.59,,80,72,1.173,1,0.152,0.715,0.134,38151603,0.61,Europe,9843000000,7888000000 Portugal,12/1/2009,0.009,0.423,57411,5,,24152,234119000000,0.108,2382,328,0.003,0.483,,82,76,1.115,1,0.153,0.669,0.178,10568247,0.6,Europe,12315000000,4604000000 Romania,12/1/2009,0.011,0.451,80307,9,,34882,164344000000,0.056,431,202,0.013,0.366,0.173,77,70,1.145,1,0.15,0.702,0.148,20367487,0.537,Europe,1687000000,1769000000 Russian Federation,12/1/2009,0.012,0.483,1574368,29,,646915,1222640000000,0.062,525,320,0.011,0.29,0.153,75,63,1.601,1,0.148,0.72,0.133,141909244,0.736,Europe,12369000000,23785000000 San Marino,12/1/2009,0.011,,,,,,,0.051,3548,,0.003,0.542,0.057,86,80,0.976,1,,,,30698,0.941,Europe,, Serbia,12/1/2009,0.01,0.34,46127,13,,15177,40249472482,0.105,577,279,0.007,0.381,0.118,76,71,1.244,1,0.171,0.692,0.137,7320807,0.552,Europe,989000000,1107000000 Slovak Republic,12/1/2009,0.011,0.475,33890,18,,16735,87239747152,0.092,1475,257,0.007,0.7,,79,71,1.013,1,0.153,0.726,0.121,5386406,0.55,Europe,2539000000,2249000000 Slovenia,12/1/2009,0.011,0.367,15310,6,,7097,49208375314,0.092,2235,260,0.003,0.64,0.059,82,76,1.027,1,0.14,0.696,0.165,2039669,0.501,Europe,2735000000,1456000000 Spain,12/1/2009,0.011,0.571,288237,47,,127732,1454340000000,0.096,3058,213,0.004,0.624,,85,79,1.116,1,0.148,0.682,0.17,46362946,0.782,Europe,59743000000,22787000000 Sweden,12/1/2009,0.012,0.539,43744,16,,45407,405783000000,0.099,4357,122,0.003,0.91,,83,79,1.121,1,0.166,0.655,0.179,9298515,0.849,Europe,10100000000,12791000000 Switzerland,12/1/2009,0.01,0.287,41598,18,,26968,509466000000,0.11,7277,63,0.004,0.813,0.028,84,80,1.204,1,0.152,0.681,0.167,7743831,0.736,Europe,16665000000,13058000000 Turkey,12/1/2009,0.018,0.433,277845,6,,97661,614554000000,0.067,580,223,0.021,0.364,,77,70,0.881,1,0.271,0.66,0.069,71241080,0.701,Europe,26331000000,5061000000 Ukraine,12/1/2009,0.011,0.572,261813,27,,114420,117228000000,0.078,198,736,0.011,0.179,0.209,75,64,1.188,1,0.139,0.702,0.159,46053300,0.685,Europe,4349000000,3751000000 United Kingdom,12/1/2009,0.013,0.349,475108,12,,196485,2208000000000,0.099,3512,110,0.005,0.836,0.006,82,78,1.24,1,0.176,0.66,0.164,62276270,0.81,Europe,38564000000,61133000000 Bahrain,12/1/2009,0.017,0.135,24169,9,,9340,22938464723,0.045,729,36,0.007,0.53,0.079,77,75,1.177,1,0.205,0.775,0.02,1191539,0.885,Middle East,1873000000,597000000 "Iran, Islamic Rep.",12/1/2009,0.019,0.442,577483,9,,213423,362661000000,0.072,357,344,0.017,0.111,0.12,75,71,0.715,1,0.237,0.712,0.051,73542954,0.7,Middle East,2259000000,8503000000 Iraq,12/1/2009,0.033,0.278,106651,32,,32846,111660000000,0.046,143,312,0.031,0.011,0.156,72,65,0.667,1,0.415,0.551,0.034,30163199,0.69,Middle East,1432000000,1221000000 Israel,12/1/2009,0.022,0.319,67029,20,,21463,205790000000,0.076,1973,230,0.004,0.631,0.042,83,80,1.24,1,0.272,0.624,0.104,7485600,0.918,Middle East,5067000000,4241000000 Jordan,12/1/2009,0.029,0.311,21254,12,,7458,23818322918,0.095,368,136,0.018,0.26,0.092,75,72,0.973,1,0.356,0.61,0.034,5915000,0.822,Middle East,3472000000,1202000000 Kuwait,12/1/2009,0.021,0.107,81869,35,,30815,105911000000,0.039,1463,98,0.01,0.508,0.062,75,73,0.919,1,0.253,0.724,0.023,2850102,0.982,Middle East,660000000,6799000000 Lebanon,12/1/2009,0.013,0.302,20917,9,,6652,35139635158,0.074,604,180,0.009,0.301,0.096,81,77,0.563,1,0.247,0.67,0.083,4246924,0.871,Middle East,7157000000,4928000000 Oman,12/1/2009,0.022,0.216,40264,12,,18279,48242913263,0.03,511,62,0.01,0.268,0.074,78,74,1.491,1,0.292,0.683,0.024,2663224,0.746,Middle East,1092000000,1295000000 Qatar,12/1/2009,0.012,0.113,66120,7,,24942,97798348830,0.026,1647,36,0.008,0.531,0.07,79,77,1.246,1,0.146,0.843,0.011,1564082,0.985,Middle East,, Saudi Arabia,12/1/2009,0.021,0.145,431027,21,,175675,429098000000,0.041,582,79,0.015,0.38,,77,73,1.674,1,0.313,0.657,0.03,26796375,0.819,Middle East,6744000000,21312000000 Syrian Arab Republic,12/1/2009,0.025,0.397,62112,15,,21233,,0.035,95,336,0.014,0.173,0.1,77,73,0.477,1,0.361,0.602,0.036,21031546,0.553,Middle East,3781000000,980000000 United Arab Emirates,12/1/2009,0.016,0.141,162602,15,,60672,254803000000,0.034,1336,12,0.008,0.64,,77,75,1.383,1,0.141,0.855,0.004,7718319,0.837,Middle East,7352000000,10347000000 "Yemen, Rep.",12/1/2009,0.033,0.478,23058,12,,7764,27838718233,0.053,65,248,0.048,0.1,0.18,64,61,0.374,1,0.427,0.547,0.027,22229625,0.312,Middle East,899000000,277000000 American Samoa,12/1/2009,,,,,,,,,,,,,,,,,1,,,,56245,0.877,Oceania,, Australia,12/1/2009,0.014,0.476,395094,3,,122108,926710000000,0.09,4118,107,0.004,0.743,0.06,84,79,1.007,1,0.19,0.677,0.133,21691700,0.886,Oceania,28022000000,21891000000 Fiji,12/1/2009,0.022,0.412,847,46,,,2925499821,0.042,143,150,0.02,0.17,0.079,72,66,0.751,1,0.292,0.662,0.047,852479,0.514,Oceania,724000000,110000000 French Polynesia,12/1/2009,0.017,,873,,,,,,,,,0.446,,78,73,0.785,1,0.244,0.692,0.065,265412,0.566,Oceania,440000000,164000000 Guam,12/1/2009,0.018,,,,,,,,,,,0.506,,81,75,,1,0.279,0.65,0.071,158621,0.94,Oceania,, Kiribati,12/1/2009,0.024,0.318,40,31,,,127125253,0.115,143,120,0.049,0.09,,70,65,0.103,1,0.343,0.619,0.038,96272,0.437,Oceania,2700000,10900000 Marshall Islands,12/1/2009,,0.648,103,17,,,151560778,0.175,551,128,0.032,0.056,,,,,1,,,,52341,0.711,Oceania,3500000, "Micronesia, Fed. Sts.",12/1/2009,0.024,0.587,99,16,,,277510923,0.134,357,128,0.033,0.154,0.154,69,68,0.264,1,0.374,0.588,0.039,103983,0.223,Oceania,27000000,8000000 New Caledonia,12/1/2009,0.016,,2849,,,,,,,,,0.34,,81,72,0.863,1,0.241,0.668,0.091,245580,0.666,Oceania,141000000,170000000 New Zealand,12/1/2009,0.014,0.332,32325,1,,17469,118953000000,0.1,2702,172,0.005,0.797,0.067,83,79,1.087,1,0.207,0.666,0.127,4315800,0.861,Oceania,4591000000,2580000000 Papua New Guinea,12/1/2009,0.031,0.421,3333,51,,,7914594203,0.042,50,194,0.052,0.016,0.101,64,60,0.211,1,0.393,0.579,0.027,6704829,0.13,Oceania,2100000,132000000 Samoa,12/1/2009,0.028,0.189,161,9,,,501065927,0.057,160,224,0.016,0.06,0.121,75,69,,1,0.385,0.565,0.05,184704,0.203,Oceania,115000000,20000000 Solomon Islands,12/1/2009,0.033,0.261,198,56,,,597765363,0.078,91,80,0.028,0.04,0.153,68,66,0.097,1,0.409,0.559,0.032,514964,0.196,Oceania,50000000,37700000 Tonga,12/1/2009,0.028,0.275,172,25,,,318522296,0.046,145,164,0.012,0.1,0.125,75,69,0.512,1,0.376,0.565,0.059,103557,0.233,Oceania,16800000,19100000 Vanuatu,12/1/2009,0.028,0.084,117,47,,,610075807,0.039,103,120,0.016,0.075,0.055,73,69,0.57,1,0.385,0.576,0.039,230833,0.243,Oceania,214000000,28000000 Antigua and Barbuda,12/1/2009,0.017,0.41,499,21,,,1206296296,0.046,638,207,0.009,0.42,0.101,78,73,1.563,1,0.267,0.661,0.073,86300,0.268,The Americas,305000000,54000000 Argentina,12/1/2009,0.017,1.076,179639,26,,76075,378496000000,0.094,726,453,0.013,0.34,0.157,79,72,1.311,1,0.251,0.643,0.105,40023641,0.908,The Americas,4476000000,5766000000 Aruba,12/1/2009,0.011,,2296,,,,2498932961,,,,,0.58,0.108,77,72,1.262,1,0.21,0.69,0.099,101418,0.434,The Americas,1224000000,265000000 "Bahamas, The",12/1/2009,0.016,0.449,1643,31,,,7820420000,0.074,1640,58,0.012,0.339,0.055,78,71,1.012,1,0.23,0.702,0.068,354492,0.825,The Americas,2025000000,386000000 Barbados,12/1/2009,0.013,,1624,,,,4592650000,0.08,1025,,0.014,0.647,0.092,77,72,1.208,1,0.195,0.701,0.104,279006,0.322,The Americas,1122000000,293000000 Belize,12/1/2009,0.025,0.332,414,44,,,1338500000,0.058,259,147,0.016,0.117,0.141,76,70,0.537,1,0.36,0.601,0.039,301016,0.452,The Americas,256000000,43000000 Bermuda,12/1/2009,0.012,,466,,,,5806378000,,,,,0.833,,82,77,1.311,1,,,,65636,1,The Americas,366000000,407000000 Bolivia,12/1/2009,0.027,0.8,14408,50,,6203,17339992165,0.058,100,1080,0.036,0.168,0.124,68,64,0.647,1,0.365,0.589,0.046,9993406,0.66,The Americas,306000000,388000000 Brazil,12/1/2009,0.016,0.656,367147,119,,240464,1620190000000,0.088,733,2600,0.016,0.392,0.447,77,69,0.875,1,0.259,0.673,0.067,193490922,0.84,The Americas,5635000000,12897000000 Canada,12/1/2009,0.011,0.423,513937,5,,251326,1370840000000,0.114,4528,119,0.005,0.803,0.024,83,79,0.705,1,0.166,0.695,0.139,33628571,0.808,The Americas,15568000000,30065000000 Cayman Islands,12/1/2009,0.016,,587,,,,,,,,,0.645,,,,2.003,1,,,,54275,1,The Americas,458000000,120000000 Chile,12/1/2009,0.014,0.248,67267,27,,29484,172323000000,0.075,760,316,0.008,0.416,0.073,82,76,0.968,1,0.226,0.685,0.089,16991729,0.884,The Americas,2350000000,1504000000 Colombia,12/1/2009,0.02,0.803,70850,20,,30815,233822000000,0.07,358,208,0.016,0.3,0.13,77,70,0.92,1,0.291,0.654,0.055,45802561,0.747,The Americas,2609000000,2301000000 Costa Rica,12/1/2009,0.016,0.552,7818,60,,4561,29382692643,0.097,619,282,0.009,0.343,0.197,81,77,0.424,1,0.255,0.682,0.064,4601424,0.706,The Americas,2001000000,462000000 Cuba,12/1/2009,0.01,,29901,,,12346,62078610000,0.117,651,,0.005,0.143,,81,77,0.055,1,0.177,0.701,0.121,11288826,0.765,The Americas,2082000000, Curacao,12/1/2009,0.013,,,,,,,,,,,,,80,72,1.402,1,0.2,0.67,0.13,145890,0.9,The Americas,378000000,258000000 Dominica,12/1/2009,,0.37,128,13,,,482592593,0.05,342,117,0.011,0.42,0.1,,,1.387,1,,,,70996,0.678,The Americas,79000000,13000000 Dominican Republic,12/1/2009,0.022,0.384,20323,13,,6941,46484962937,0.054,256,324,0.026,0.277,0.181,76,70,0.873,1,0.315,0.625,0.059,9884265,0.725,The Americas,4049000000,523000000 Ecuador,12/1/2009,0.022,0.349,30473,64,,12678,62519686000,0.071,302,600,0.022,0.246,,78,73,0.897,1,0.313,0.627,0.061,14756424,0.625,The Americas,674000000,806000000 El Salvador,12/1/2009,0.021,0.348,6476,17,,4214,20661000000,0.068,228,320,0.016,0.121,,76,67,1.224,1,0.328,0.604,0.068,6183484,0.638,The Americas,549000000,253000000 Greenland,12/1/2009,0.016,,557,,,,1267711816,,,,,0.628,,73,68,0.945,1,,,,56323,0.841,The Americas,, Grenada,12/1/2009,0.019,0.453,253,20,,,771481468,0.062,462,140,0.012,0.241,0.11,75,70,1.097,1,0.279,0.648,0.073,104296,0.357,The Americas,112000000,10000000 Guatemala,12/1/2009,0.033,0.409,11844,37,,9318,37733606156,0.071,190,344,0.029,0.093,0.138,74,67,1.237,1,0.419,0.537,0.044,13988988,0.489,The Americas,1179000000,862000000 Guyana,12/1/2009,0.022,0.388,1555,30,,,2025565089,0.064,165,288,0.033,0.239,0.145,68,63,0.625,1,0.376,0.591,0.033,781055,0.282,The Americas,35000000,52000000 Haiti,12/1/2009,0.027,0.404,2263,195,,2732,6584649419,0.065,43,184,0.06,0.081,0.173,63,60,0.374,1,0.365,0.59,0.044,9765153,0.505,The Americas,312000000,433000000 Honduras,12/1/2009,0.027,0.441,7866,14,,4453,14587485644,0.091,173,224,0.022,0.098,0.194,75,70,1.123,1,0.374,0.584,0.043,7469844,0.511,The Americas,616000000,361000000 Jamaica,12/1/2009,0.016,0.499,8592,8,,3022,12125023181,0.052,229,414,0.016,0.243,0.164,75,70,1.083,1,0.296,0.626,0.078,2681386,0.536,The Americas,2070000000,259000000 Mexico,12/1/2009,0.02,0.51,446237,11,,175752,895313000000,0.064,526,517,0.015,0.263,0.071,79,74,0.715,1,0.305,0.636,0.058,116422752,0.775,The Americas,12542000000,8737000000 Nicaragua,12/1/2009,0.024,0.632,4496,39,,2903,8380736990,0.077,109,240,0.023,0.073,0.14,77,70,0.582,1,0.351,0.604,0.045,5743329,0.57,The Americas,334000000,300000000 Panama,12/1/2009,0.021,0.438,8636,12,,3367,25925100000,0.081,541,482,0.017,0.391,0.082,80,74,1.678,1,0.296,0.638,0.066,3615846,0.648,The Americas,2280000000,503000000 Paraguay,12/1/2009,0.025,0.35,4518,35,,4476,15929903100,0.075,187,328,0.021,0.189,0.283,74,70,0.885,1,0.34,0.61,0.051,6347383,0.583,The Americas,225000000,229000000 Peru,12/1/2009,0.021,0.372,47356,41,,17200,121204000000,0.053,234,380,0.016,0.314,0.21,76,71,0.854,1,0.304,0.637,0.059,28934303,0.766,The Americas,2440000000,1404000000 Puerto Rico,12/1/2009,0.012,0.606,,7,,,96385638000,,,218,,0.415,,82,74,0.729,1,0.208,0.664,0.128,3740410,0.939,The Americas,3176000000,1386000000 Sint Maarten (Dutch part),12/1/2009,,,,,,,,,,,,,,78,73,,1,,,,39133,1,The Americas,619000000,104000000 St. Kitts and Nevis,12/1/2009,,0.525,260,19,,,708888889,0.05,686,155,0.009,0.69,0.088,,,1.459,1,,,,51731,0.318,The Americas,83000000,11000000 St. Lucia,12/1/2009,0.017,0.344,385,14,,,1180000000,0.081,537,92,0.014,0.36,0.106,77,72,1.083,1,0.258,0.66,0.083,175200,0.192,The Americas,296000000,47000000 St. Martin (French part),12/1/2009,0.017,,,,,,,,,,,,,82,75,,1,,,,29820,,The Americas,, St. Vincent and the Grenadines,12/1/2009,0.017,0.41,202,11,,,674814815,0.051,317,111,0.019,0.31,0.092,74,70,1.109,1,0.269,0.663,0.068,109249,0.484,The Americas,88000000,14000000 Suriname,12/1/2009,0.019,0.279,2468,694,,,3875409836,0.061,457,199,0.023,0.314,0.117,73,67,1.469,1,0.29,0.647,0.064,520173,0.664,The Americas,70000000,35000000 Trinidad and Tobago,12/1/2009,0.015,0.331,48177,43,,20277,19332270662,0.061,887,210,0.021,0.443,0.119,73,66,1.396,1,0.208,0.711,0.081,1322518,0.092,The Americas,548000000,136000000 Turks and Caicos Islands,12/1/2009,,,161,,,,,,,,,,,,,,1,,,,30247,0.898,The Americas,, United States,12/1/2009,0.014,0.461,5311840,5,,2164458,14417900000000,0.177,8009,187,0.006,0.71,0.033,81,76,0.886,1,0.2,0.672,0.128,306771529,0.806,The Americas,149510000000, Uruguay,12/1/2009,0.015,0.419,7891,65,,4134,30461322555,0.089,803,336,0.011,0.418,0.153,80,73,1.224,1,0.228,0.634,0.138,3360431,0.942,The Americas,1460000000,442000000 "Venezuela, RB",12/1/2009,0.021,0.604,185341,141,,69597,329419000000,0.058,665,864,0.014,0.327,0.199,77,71,0.984,1,0.298,0.647,0.055,28583040,0.887,The Americas,1055000000,2275000000 Virgin Islands (U.S.),12/1/2009,0.012,,,,,,,,,,,0.274,,82,76,,1,0.208,0.662,0.13,106707,0.944,The Americas,1021000000, Algeria,12/1/2010,0.025,0.72,123475,25,,40105,161207000000,0.042,181,451,0.024,0.125,0.08,72,69,0.884,1,0.271,0.681,0.047,37062820,0.675,Africa,323000000,737000000 Angola,12/1/2010,0.046,0.521,30418,66,,13378,82470894868,0.034,144,282,0.11,0.1,0.225,52,49,0.481,1,0.478,0.498,0.024,19549124,0.401,Africa,726000000,275000000 Benin,12/1/2010,0.038,0.659,5189,31,,3653,6558416322,0.043,30,270,0.062,0.031,,60,57,0.744,1,0.434,0.537,0.029,9509798,0.419,Africa,149000000,91000000 Botswana,12/1/2010,0.024,0.195,5233,60,,2263,13746712706,0.056,394,152,0.04,0.06,0.115,46,47,1.2,1,0.343,0.623,0.035,1969341,0.562,Africa,80000000,89000000 Burkina Faso,12/1/2010,0.043,0.448,1683,14,,,9209288383,0.074,41,270,0.07,0.024,,56,54,0.367,1,0.46,0.515,0.025,15540284,0.257,Africa,105000000,110000000 Burundi,12/1/2010,0.045,1.545,308,13,,,2026864414,0.088,19,211,0.061,0.01,0.124,54,51,0.182,1,0.439,0.535,0.025,9232753,0.106,Africa,2100000,35000000 Cameroon,12/1/2010,0.039,0.488,7235,19,,6944,22493301699,0.053,57,654,0.066,0.043,,55,53,0.419,1,0.434,0.533,0.032,20624343,0.515,Africa,171000000,265000000 Central African Republic,12/1/2010,0.035,2.038,264,23,,,1986014759,0.039,18,504,0.103,0.02,,50,46,0.225,1,0.406,0.555,0.039,4349921,0.388,Africa,7200000,61000000 Chad,12/1/2010,0.047,0.758,469,64,,,10657705072,0.04,29,732,0.094,0.017,,51,49,0.245,1,0.488,0.487,0.025,11720781,0.22,Africa,, Comoros,12/1/2010,0.037,2.179,139,22,,,543376206,0.034,27,100,0.063,0.051,0.105,62,59,0.242,1,0.422,0.549,0.029,683081,0.279,Africa,35000000,19000000 "Congo, Dem. Rep.",12/1/2010,0.044,3.391,3040,84,,23766,20523286237,0.07,15,336,0.092,0.007,0.565,51,47,0.19,1,0.455,0.517,0.028,62191161,0.399,Africa,10700000,150000000 "Congo, Rep.",12/1/2010,0.039,0.663,2028,161,,1511,12007880067,0.023,67,606,0.042,0.05,,59,56,0.904,1,0.422,0.544,0.034,4111715,0.632,Africa,, Cote d'Ivoire,12/1/2010,0.037,0.442,5805,40,,9800,22920779598,0.069,83,270,0.077,0.021,,50,49,0.822,1,0.418,0.551,0.031,18976588,0.506,Africa,213000000,569000000 Djibouti,12/1/2010,0.028,0.378,539,37,,,1128611700,0.088,111,90,0.062,0.065,0.103,62,59,0.199,1,0.341,0.622,0.037,834036,0.77,Africa,18000000,20500000 "Egypt, Arab Rep.",12/1/2010,0.024,0.426,204776,8,,73575,218888000000,0.048,126,433,0.02,0.314,0.11,73,68,0.905,1,0.315,0.63,0.055,78075705,0.43,Africa,13633000000,2696000000 Equatorial Guinea,12/1/2010,0.037,0.441,4679,135,,,11586407487,0.043,757,492,0.076,0.06,,53,50,0.574,1,0.393,0.578,0.029,696167,0.392,Africa,, Eritrea,12/1/2010,0.038,0.845,513,84,,745,2117039511,0.032,12,216,0.039,0.006,,64,59,0.032,1,0.43,0.549,0.021,5741159,0.206,Africa,, Ethiopia,12/1/2010,0.035,0.303,6494,15,,33250,29385611867,0.047,14,198,0.051,0.008,,63,60,0.079,1,0.444,0.523,0.033,87095281,0.173,Africa,1434000000,143000000 Gabon,12/1/2010,0.033,0.435,2574,57,,1984,14569527125,0.035,322,488,0.043,0.072,,63,61,1.035,1,0.386,0.56,0.053,1556222,0.857,Africa,, "Gambia, The",12/1/2010,0.043,2.921,473,27,,,951805801,0.047,27,376,0.052,0.092,0.27,59,57,0.88,1,0.46,0.515,0.025,1680640,0.563,Africa,80000000,11000000 Ghana,12/1/2010,0.032,0.325,8999,12,,10011,32174210793,0.053,70,224,0.055,0.078,,62,60,0.719,1,0.39,0.575,0.035,24262901,0.507,Africa,706000000,882000000 Guinea,12/1/2010,0.038,0.879,1236,40,,,4735956476,0.062,27,416,0.071,0.01,,56,55,0.368,1,0.428,0.54,0.032,10876033,0.349,Africa,2000000,17000000 Guinea-Bissau,12/1/2010,0.039,0.459,238,216,,,835390893,0.071,38,208,0.085,0.025,,55,52,0.427,1,0.419,0.551,0.03,1586624,0.452,Africa,13600000,29500000 Kenya,12/1/2010,0.037,0.493,12427,33,,19719,32440133261,0.044,35,393,0.052,0.14,0.144,61,58,0.61,1,0.426,0.548,0.026,40909194,0.236,Africa,1620000000,212000000 Lesotho,12/1/2010,0.028,0.196,18,40,,,2175685681,0.108,118,324,0.077,0.039,0.112,48,47,0.492,1,0.376,0.581,0.043,2008921,0.248,Africa,25000000,278000000 Liberia,12/1/2010,0.037,0.429,799,20,,,1292696476,0.131,43,141,0.06,0.023,0.142,60,59,0.397,1,0.433,0.536,0.031,3957990,0.478,Africa,12000000,134000000 Libya,12/1/2010,0.022,,59035,,,21611,74755288917,0.033,389,,0.014,0.14,0.06,77,73,1.804,1,0.294,0.66,0.046,6040612,0.776,Africa,170000000,2184000000 Madagascar,12/1/2010,0.035,0.377,2013,7,,,8704983553,0.045,19,201,0.044,0.017,0.49,65,62,0.366,1,0.434,0.537,0.028,21079532,0.319,Africa,633000000,110000000 Malawi,12/1/2010,0.041,0.259,1239,39,,,5398616985,0.085,30,157,0.053,0.023,0.246,54,53,0.208,1,0.458,0.511,0.031,15013694,0.155,Africa,47000000,93000000 Mali,12/1/2010,0.048,0.514,623,8,,,9422267260,0.069,46,270,0.083,0.019,,54,54,0.532,1,0.468,0.503,0.029,13985961,0.36,Africa,296000000,235000000 Mauritania,12/1/2010,0.035,0.682,2215,19,,,3526946625,0.06,58,696,0.07,0.04,0.17,63,60,0.769,1,0.406,0.563,0.031,3609420,0.567,Africa,, Mauritius,12/1/2010,0.012,0.272,4118,6,,,9718331363,0.054,427,161,0.013,0.283,0.089,77,69,0.968,1,0.212,0.711,0.077,1280924,0.406,Africa,1585000000,423000000 Morocco,12/1/2010,0.022,0.496,50608,12,,16183,90770671432,0.059,168,358,0.029,0.52,,72,68,1.011,1,0.281,0.669,0.05,31642360,0.577,Africa,8176000000,1879000000 Mozambique,12/1/2010,0.041,0.375,2882,13,,9875,9274448732,0.057,22,230,0.072,0.042,0.163,50,48,0.301,1,0.453,0.514,0.032,23967265,0.31,Africa,224000000,260000000 Namibia,12/1/2010,0.027,0.223,3176,66,,1552,11141417478,0.082,416,339,0.038,0.116,0.097,65,60,0.895,1,0.377,0.589,0.034,2178967,0.416,Africa,560000000,145000000 Niger,12/1/2010,0.05,0.465,1412,17,,,5718589550,0.069,24,270,0.066,0.008,,57,57,0.231,1,0.498,0.476,0.026,15893746,0.176,Africa,86000000, Nigeria,12/1/2010,0.042,0.322,78910,25,,115138,369062000000,0.056,80,938,0.082,0.24,0.176,52,51,0.547,1,0.44,0.532,0.027,159707780,0.435,Africa,738000000,8379000000 Rwanda,12/1/2010,0.037,0.31,594,3,,,5624809049,0.108,56,148,0.044,0.08,0.167,64,61,0.327,1,0.447,0.53,0.023,10836732,0.24,Africa,224000000,120000000 Sao Tome and Principe,12/1/2010,0.036,0.333,99,144,,,201037917,0.071,86,424,0.04,0.188,0.289,68,64,0.576,1,0.416,0.548,0.036,178228,0.619,Africa,11100000,600000 Senegal,12/1/2010,0.039,0.455,7059,9,,3426,12932427724,0.048,48,666,0.047,0.16,,64,61,0.644,1,0.436,0.533,0.031,12950564,0.422,Africa,464000000,217000000 Seychelles,12/1/2010,0.017,0.441,704,39,,,973355738,0.037,394,76,0.012,0.41,0.127,78,69,1.289,1,0.223,0.701,0.076,89770,0.523,Africa,29000000,5000000 Sierra Leone,12/1/2010,0.038,2.352,689,12,,,2578159463,0.154,69,357,0.114,0.006,0.213,45,45,0.348,1,0.422,0.553,0.026,5751976,0.382,Africa,26000000,22000000 Somalia,12/1/2010,0.045,,609,,,,,,,,0.097,,,56,52,0.067,1,0.477,0.495,0.028,9636173,0.373,Africa,, South Africa,12/1/2010,0.022,0.3,460124,22,,142291,365208000000,0.087,615,200,0.035,0.24,0.098,56,53,0.979,1,0.297,0.651,0.052,50895698,0.622,Africa,10308000000,8139000000 South Sudan,12/1/2010,0.037,,,,,,16338510934,0.021,32,,0.071,,,54,52,,1,0.428,0.538,0.034,9940929,0.179,Africa,, Sudan,12/1/2010,0.035,0.361,14173,36,,16605,65632237471,0.065,119,180,0.055,0.167,,63,60,0.415,1,0.421,0.548,0.031,35652002,0.331,Africa,94000000,1116000000 Swaziland,12/1/2010,0.031,0.365,1023,56,,,3891563478,0.084,261,104,0.063,0.11,0.098,48,49,0.608,1,0.388,0.578,0.033,1193148,0.215,Africa,51000000,87000000 Tanzania,12/1/2010,0.041,0.444,6846,26,,20043,22915004297,0.072,37,172,0.041,0.029,0.145,60,58,0.467,1,0.448,0.52,0.031,44973330,0.281,Africa,1279000000,861000000 Togo,12/1/2010,0.037,0.503,1540,84,,2692,3172945506,0.075,37,270,0.061,0.03,,56,55,0.413,1,0.421,0.552,0.027,6306014,0.375,Africa,105000000,89000000 Tunisia,12/1/2010,0.019,0.623,25878,11,,9674,44054072936,0.067,282,144,0.015,0.368,,77,73,1.045,1,0.235,0.696,0.069,10549100,0.659,Africa,3477000000,611000000 Uganda,12/1/2010,0.045,0.35,3784,24,,,16030996179,0.092,43,161,0.051,0.125,0.202,58,56,0.377,1,0.489,0.487,0.024,33987213,0.145,Africa,802000000,464000000 Zambia,12/1/2010,0.043,0.143,2428,18,,8054,16190196832,0.061,75,183,0.064,0.1,0.209,56,53,0.412,1,0.469,0.504,0.027,13216985,0.387,Africa,125000000,128000000 Zimbabwe,12/1/2010,0.032,0.391,9428,90,,9000,9456808151,,,242,0.059,0.115,,54,53,0.589,1,0.412,0.548,0.04,13076978,0.332,Africa,634000000, Afghanistan,12/1/2010,0.038,0.363,8236,7,,,15936784436,0.087,43,275,0.075,0.04,0.157,61,58,0.458,1,0.486,0.492,0.022,28397812,0.247,Asia,138000000,86000000 Armenia,12/1/2010,0.014,0.386,4221,14,,2483,9260287416,0.046,143,581,0.016,0.25,0.192,78,71,1.304,1,0.205,0.689,0.105,2963496,0.636,Asia,456000000,466000000 Azerbaijan,12/1/2010,0.018,0.409,45731,8,,11586,52902703376,0.053,310,306,0.034,0.46,0.207,74,67,1.001,1,0.227,0.714,0.059,9054332,0.534,Asia,792000000,856000000 Bangladesh,12/1/2010,0.021,0.35,56153,19,,30756,100360000000,0.037,24,302,0.039,0.037,0.13,70,69,0.449,1,0.317,0.637,0.046,151125475,0.305,Asia,103000000,835000000 Bhutan,12/1/2010,0.021,0.408,477,46,,,1585396256,0.041,90,274,0.034,0.136,0.14,67,67,0.55,1,0.298,0.657,0.045,716939,0.348,Asia,64000000,43000000 Brunei Darussalam,12/1/2010,0.017,0.173,9160,105,,3240,12369708859,0.027,844,144,0.008,0.53,0.055,80,76,1.086,1,0.266,0.697,0.037,400569,0.755,Asia,, Cambodia,12/1/2010,0.026,0.214,4180,102,,5024,11242266334,0.058,46,173,0.037,0.013,,73,68,0.567,1,0.318,0.631,0.05,14364931,0.198,Asia,1332000000,268000000 China,12/1/2010,0.012,0.635,8286892,38,,2516731,5930500000000,0.05,216,358,0.014,0.343,0.058,76,74,0.632,1,0.181,0.735,0.084,1337705000,0.492,Asia,50154000000,59840000000 Georgia,12/1/2010,0.014,0.153,6241,3,,3122,11638536862,0.101,267,387,0.015,0.269,0.158,77,70,0.906,1,0.173,0.685,0.142,4452800,0.529,Asia,737000000,329000000 "Hong Kong SAR, China",12/1/2010,0.013,0.23,36289,6,,13838,228638000000,,,80,,0.72,0.05,86,80,1.957,1,0.121,0.75,0.129,7024200,1,Asia,27208000000,17503000000 India,12/1/2010,0.021,0.649,2008823,29,,723743,1708460000000,0.037,52,258,0.046,0.075,0.083,67,64,0.624,1,0.302,0.648,0.051,1205624648,0.309,Asia,14490000000,10490000000 Indonesia,12/1/2010,0.02,0.322,433989,50,,211296,709191000000,0.029,86,266,0.027,0.109,0.133,72,68,0.878,1,0.298,0.652,0.05,240676485,0.499,Asia,7618000000,8432000000 Japan,12/1/2010,0.009,0.476,1170715,22,,499092,5495390000000,0.096,4115,355,0.002,0.782,0.016,86,80,0.968,1,0.133,0.638,0.23,127450459,0.905,Asia,15356000000,39306000000 Kazakhstan,12/1/2010,0.023,0.286,248729,19,,74443,148047000000,0.043,398,271,0.019,0.316,,73,64,1.219,1,0.249,0.684,0.067,16321581,0.537,Asia,1236000000,1489000000 "Korea, Dem. Rep.",12/1/2010,0.014,,71624,,,18794,,,,,0.025,,,72,66,0.018,1,0.227,0.686,0.088,24500520,0.602,Asia,, "Korea, Rep.",12/1/2010,0.009,0.288,567567,14,,249964,1094500000000,0.073,1498,250,0.004,0.837,0.055,84,77,1.048,1,0.162,0.727,0.111,49410366,0.819,Asia,14398000000,20802000000 Kyrgyz Republic,12/1/2010,0.027,0.306,6399,10,,2805,4794357795,0.067,60,202,0.027,0.184,0.315,74,65,0.989,1,0.3,0.655,0.044,5447900,0.353,Asia,336000000,398000000 Lao PDR,12/1/2010,0.028,0.323,1874,93,,,7181441152,0.026,29,362,0.059,0.07,0.226,68,66,0.626,1,0.368,0.595,0.037,6395713,0.331,Asia,385000000,215000000 "Macao SAR, China",12/1/2010,0.009,,1030,,,,28359706123,,,,,0.552,0.053,82,77,2.099,1,0.127,0.801,0.072,534626,1,Asia,28214000000,1237000000 Malaysia,12/1/2010,0.018,0.337,216804,17,,72645,247534000000,0.04,345,145,0.007,0.563,0.05,77,72,1.197,1,0.277,0.675,0.048,28275835,0.709,Asia,18152000000,8324000000 Maldives,12/1/2010,0.022,0.093,1074,9,,,2134104884,0.058,379,,0.011,0.265,0.104,78,76,1.518,1,0.3,0.65,0.05,325694,0.4,Asia,1713000000,252000000 Mongolia,12/1/2010,0.023,0.243,11511,13,,3454,6200357070,0.063,143,192,0.029,0.102,0.201,71,63,0.925,1,0.27,0.692,0.038,2712738,0.676,Asia,288000000,319000000 Myanmar,12/1/2010,0.018,,8995,,,13997,,0.019,15,,0.044,0.003,0.17,67,63,0.011,1,0.261,0.688,0.051,51931231,0.314,Asia,91000000,53000000 Nepal,12/1/2010,0.023,0.317,3755,31,,10218,15994094607,0.059,36,338,0.036,0.079,0.08,68,66,0.343,1,0.371,0.58,0.049,26846016,0.168,Asia,378000000,528000000 Pakistan,12/1/2010,0.027,0.309,161396,21,,84311,177166000000,0.03,30,560,0.073,0.08,0.14,67,65,0.573,1,0.354,0.602,0.043,173149306,0.366,Asia,998000000,1370000000 Philippines,12/1/2010,0.025,0.438,81591,37,,40512,199589000000,0.042,90,195,0.025,0.25,0.077,72,65,0.89,1,0.353,0.61,0.037,93444322,0.453,Asia,3228000000,4194000000 Singapore,12/1/2010,0.009,0.254,13520,3,,34280,236420000000,0.041,1893,84,0.002,0.71,0.054,84,79,1.454,1,0.173,0.736,0.09,5076700,1,Asia,14178000000,18700000000 Sri Lanka,12/1/2010,0.018,0.966,12710,37,,9844,49567521670,0.034,82,256,0.009,0.12,0.102,77,71,0.836,1,0.251,0.671,0.078,20653000,0.183,Asia,1044000000,828000000 Tajikistan,12/1/2010,0.033,0.84,2860,27,,2370,5642178580,0.06,44,224,0.045,0.116,0.242,70,64,0.779,1,0.359,0.608,0.033,7627326,0.265,Asia,32400000,17800000 Thailand,12/1/2010,0.011,0.369,295282,32,,117429,318908000000,0.038,183,264,0.013,0.224,0.059,77,71,1.08,1,0.193,0.718,0.089,66402316,0.441,Asia,23809000000,7151000000 Timor-Leste,12/1/2010,0.036,0.11,183,110,,,934300000,0.056,46,276,0.052,0.002,0.11,68,64,0.438,1,0.473,0.496,0.031,1066409,0.295,Asia,31000000,68000000 Turkmenistan,12/1/2010,0.022,,53054,,,22675,22148070175,0.021,95,,0.051,0.03,,69,61,0.634,1,0.292,0.666,0.041,5041995,0.484,Asia,, Uzbekistan,12/1/2010,0.023,0.956,104443,15,,43747,39332770929,0.054,75,205,0.04,0.2,,71,65,0.755,1,0.298,0.658,0.044,28562400,0.362,Asia,121000000, Vietnam,12/1/2010,0.016,0.329,150230,38,,58912,115932000000,0.069,83,941,0.021,0.307,0.131,80,71,1.253,1,0.235,0.7,0.065,86932500,0.304,Asia,4450000000,1470000000 Albania,12/1/2010,0.013,0.331,4283,6,,2059,11926953259,0.055,207,360,0.015,0.45,0.128,80,74,0.855,1,0.228,0.671,0.101,2856673,0.522,Europe,1780000000,1454000000 Andorra,12/1/2010,0.01,,517,,,,,0.072,2958,,0.002,0.81,,,,0.841,1,,,,77907,0.878,Europe,, Austria,12/1/2010,0.009,0.532,66897,25,,34228,377680000000,0.116,5272,170,0.004,0.752,,83,78,1.457,1,0.148,0.674,0.178,8389771,0.659,Europe,20980000000,12213000000 Belarus,12/1/2010,0.011,0.805,62222,10,,27686,55220932614,0.056,323,798,0.005,0.318,0.092,77,65,1.089,1,0.148,0.712,0.139,9490000,0.746,Europe,665000000,748000000 Belgium,12/1/2010,0.012,0.567,108947,4,,60892,471218000000,0.105,4570,156,0.004,0.75,,83,78,1.111,1,0.168,0.661,0.172,10920272,0.976,Europe,11624000000,20876000000 Bosnia and Herzegovina,12/1/2010,0.009,0.222,31125,64,,6451,16775919279,0.098,427,422,0.007,0.52,0.079,78,73,0.809,1,0.174,0.675,0.151,3845929,0.392,Europe,662000000,247000000 Bulgaria,12/1/2010,0.01,0.28,44679,18,,17897,47726575741,0.076,480,616,0.011,0.462,0.111,77,70,1.38,1,0.133,0.683,0.183,7395599,0.723,Europe,4035000000,1382000000 Croatia,12/1/2010,0.01,0.221,20884,9,,8564,58873994412,0.078,1051,196,0.005,0.566,0.104,80,74,1.136,1,0.153,0.672,0.175,4417781,0.575,Europe,8255000000,859000000 Cyprus,12/1/2010,0.012,0.223,7708,8,,2443,23132450331,0.074,2012,149,0.003,0.53,,81,77,0.937,1,0.178,0.707,0.116,1103685,0.676,Europe,2371000000,1457000000 Czech Republic,12/1/2010,0.011,0.48,111752,20,,44043,198494000000,0.074,1404,557,0.003,0.688,0.059,81,74,1.226,1,0.142,0.704,0.154,10474410,0.733,Europe,8017000000,4166000000 Denmark,12/1/2010,0.011,0.281,46303,6,,19307,312949000000,0.111,6266,135,0.003,0.887,,81,77,1.157,1,0.18,0.654,0.167,5547683,0.868,Europe,5704000000,9082000000 Estonia,12/1/2010,0.012,0.486,18339,7,,5568,19033475893,0.063,894,81,0.004,0.741,0.078,81,71,1.273,1,0.154,0.671,0.175,1331475,0.681,Europe,1412000000,723000000 Faeroe Islands,12/1/2010,,,711,,,,,,,,,0.752,,84,79,1.199,1,,,,49581,0.409,Europe,, Finland,12/1/2010,0.011,0.408,61844,14,,36429,236706000000,0.09,3978,243,0.003,0.869,,83,77,1.563,1,0.165,0.664,0.171,5363352,0.836,Europe,4510000000,5267000000 France,12/1/2010,0.013,0.648,361273,7,,261157,2565040000000,0.117,4634,132,0.004,0.773,,85,78,0.914,1,0.184,0.648,0.168,65023142,0.783,Europe,56139000000,46157000000 Germany,12/1/2010,0.008,0.47,745384,15,,329769,3304440000000,0.115,4668,215,0.004,0.82,,83,78,1.065,1,0.134,0.658,0.208,81776930,0.743,Europe,49108000000,91166000000 Greece,12/1/2010,0.01,0.467,86717,19,,27615,294223000000,0.094,2442,224,0.004,0.444,,83,78,1.106,1,0.145,0.665,0.19,11153454,0.763,Europe,12579000000,2874000000 Hungary,12/1/2010,0.009,0.546,50583,4,,25667,127503000000,0.08,1026,277,0.006,0.65,0.076,78,71,1.199,1,0.146,0.686,0.167,10000023,0.689,Europe,6338000000,2879000000 Iceland,12/1/2010,0.015,0.261,1962,5,,5369,12564705489,0.094,3730,140,0.002,0.934,0.103,84,80,1.072,1,0.209,0.669,0.121,318041,0.936,Europe,562000000,599000000 Ireland,12/1/2010,0.017,0.253,40000,13,,14219,209387000000,0.093,4320,76,0.004,0.699,,83,79,1.052,1,0.213,0.673,0.113,4560155,0.618,Europe,8187000000,7178000000 Isle of Man,12/1/2010,,,,,,,,,,,,,,,,,1,,,,83992,0.52,Europe,, Italy,12/1/2010,0.009,0.677,406307,6,,170239,2055360000000,0.094,3205,285,0.003,0.537,0.04,85,80,1.548,1,0.14,0.657,0.203,59277417,0.683,Europe,40058000000,33053000000 Kosovo,12/1/2010,0.019,0.165,,58,,2496,5740438192,,,163,,,0.143,72,68,,1,0.275,0.659,0.067,1775680,,Europe,, Latvia,12/1/2010,0.009,0.376,7616,16,,4644,24009680460,0.065,742,293,0.008,0.684,0.096,78,69,1.103,1,0.142,0.675,0.184,2097555,0.677,Europe,963000000,771000000 Liechtenstein,12/1/2010,0.009,,,,,,,,,,,0.8,,84,80,0.983,1,,,,36120,0.145,Europe,, Lithuania,12/1/2010,0.012,0.451,13561,22,,7052,36709511568,0.07,782,175,0.006,0.621,0.06,79,68,1.594,1,0.152,0.693,0.155,3097282,0.668,Europe,1034000000,936000000 Luxembourg,12/1/2010,0.012,0.2,10829,19,,4220,52053324635,0.072,7592,59,0.002,0.906,,84,78,1.431,1,0.176,0.684,0.14,506953,0.885,Europe,4115000000,3549000000 "Macedonia, FYR",12/1/2010,0.011,0.083,10873,3,,2883,9338674078,0.07,309,119,0.009,0.519,0.095,77,73,1.024,1,0.174,0.709,0.117,2102216,0.57,Europe,209000000,141000000 Malta,12/1/2010,0.009,,2589,,,848,8163841060,0.085,1707,,0.006,0.63,0.046,84,79,1.073,1,0.156,0.699,0.145,414508,0.947,Europe,1238000000,366000000 Moldova,12/1/2010,0.012,0.304,4855,10,,3426,5811604052,0.117,190,228,0.015,0.323,0.164,72,65,0.714,1,0.167,0.722,0.112,3562045,0.449,Europe,232000000,324000000 Monaco,12/1/2010,,,,,,,5350993377,0.044,6431,,0.003,0.75,,,,0.635,1,,,,36845,1,Europe,, Montenegro,12/1/2010,0.012,0.254,2582,10,,1174,4114881347,0.072,476,372,0.006,0.375,0.095,77,72,1.887,1,0.195,0.681,0.125,620078,0.631,Europe,765000000,72000000 Netherlands,12/1/2010,0.011,0.394,182078,8,,83426,777158000000,0.121,5676,134,0.004,0.907,0.018,83,79,1.154,1,0.175,0.671,0.154,16615394,0.871,Europe,18690000000,19772000000 Norway,12/1/2010,0.013,0.407,57187,7,,32338,420946000000,0.1,8694,87,0.003,0.934,,83,79,1.145,1,0.188,0.662,0.15,4889252,0.791,Europe,5299000000,14658000000 Poland,12/1/2010,0.011,0.401,317254,32,,101539,469799000000,0.07,860,325,0.005,0.623,,81,72,1.229,1,0.15,0.715,0.135,38183683,0.609,Europe,9986000000,9100000000 Portugal,12/1/2010,0.01,0.426,52361,5,,23541,228939000000,0.108,2324,298,0.003,0.533,,82,76,1.153,1,0.151,0.668,0.18,10573100,0.606,Europe,12969000000,4691000000 Romania,12/1/2010,0.011,0.435,78745,9,,35031,164792000000,0.059,457,222,0.012,0.399,0.141,77,70,1.114,1,0.15,0.701,0.148,20246871,0.538,Europe,1631000000,1896000000 Russian Federation,12/1/2010,0.013,0.465,1740776,29,,702292,1524920000000,0.063,669,320,0.01,0.43,0.108,75,63,1.655,1,0.149,0.72,0.131,142385523,0.737,Europe,13239000000,30169000000 San Marino,12/1/2010,0.011,,,,,,,0.053,3319,,0.003,,0.054,86,80,0.991,1,,,,30861,0.941,Europe,, Serbia,12/1/2010,0.009,0.34,45962,13,,15536,36990001284,0.107,546,279,0.007,0.409,0.173,77,71,1.253,1,0.169,0.694,0.137,7291436,0.552,Europe,951000000,1106000000 Slovak Republic,12/1/2010,0.011,0.474,36094,18,,17828,87077443709,0.09,1446,257,0.007,0.757,,79,72,1.09,1,0.151,0.726,0.123,5391428,0.547,Europe,2335000000,2146000000 Slovenia,12/1/2010,0.011,0.346,15328,6,,7230,46999407184,0.089,2044,260,0.003,0.7,,83,76,1.033,1,0.14,0.693,0.167,2048583,0.5,Europe,2721000000,1377000000 Spain,12/1/2010,0.01,0.568,269675,47,,127749,1384840000000,0.096,2902,197,0.004,0.658,,85,79,1.113,1,0.149,0.68,0.171,46576897,0.784,Europe,59042000000,22733000000 Sweden,12/1/2010,0.012,0.52,52515,16,,51315,463062000000,0.095,4694,122,0.003,0.9,,84,80,1.172,1,0.165,0.653,0.182,9378126,0.851,Europe,10991000000,14912000000 Switzerland,12/1/2010,0.01,0.288,38757,18,,26199,549105000000,0.109,7697,63,0.004,0.839,0.027,85,80,1.232,1,0.151,0.68,0.169,7824909,0.737,Europe,17614000000,13528000000 Turkey,12/1/2010,0.018,0.433,298002,6,,105133,731168000000,0.068,680,226,0.02,0.398,,78,71,0.856,1,0.267,0.662,0.071,72137546,0.707,Europe,26318000000,5817000000 Ukraine,12/1/2010,0.011,0.555,304805,27,,132308,136419000000,0.078,231,657,0.01,0.233,0.159,76,65,1.171,1,0.139,0.703,0.158,45870700,0.687,Europe,4696000000,4134000000 United Kingdom,12/1/2010,0.013,0.361,493505,12,,201829,2295520000000,0.096,3489,110,0.004,0.85,0.005,82,79,1.236,1,0.176,0.659,0.166,62766365,0.813,Europe,40746000000,61368000000 Bahrain,12/1/2010,0.016,0.135,24202,9,,9472,25713547869,0.043,747,36,0.007,0.55,0.072,77,76,1.252,1,0.199,0.781,0.02,1251513,0.885,Middle East,2163000000,684000000 "Iran, Islamic Rep.",12/1/2010,0.019,0.441,571612,11,,210678,422568000000,0.073,416,344,0.016,0.147,0.12,75,71,0.726,1,0.236,0.712,0.052,74462314,0.706,Middle East,2631000000,10570000000 Iraq,12/1/2010,0.032,0.278,114667,32,,37845,142815000000,0.031,141,312,0.03,0.025,0.133,73,65,0.751,1,0.412,0.554,0.034,30962380,0.69,Middle East,1736000000,1675000000 Israel,12/1/2010,0.022,0.311,70656,20,,23195,231674000000,0.076,2165,235,0.004,0.675,0.05,84,80,1.228,1,0.272,0.623,0.104,7623600,0.918,Middle East,5824000000,4725000000 Jordan,12/1/2010,0.029,0.312,20821,12,,7105,26425379367,0.085,361,136,0.018,0.272,0.09,75,72,1.026,1,0.351,0.615,0.034,6046000,0.825,Middle East,4390000000,1736000000 Kuwait,12/1/2010,0.021,0.107,93696,35,,32586,119935000000,0.028,1116,98,0.009,0.614,0.049,75,73,1.33,1,0.252,0.726,0.021,2991580,0.983,Middle East,574000000,7106000000 Lebanon,12/1/2010,0.013,0.302,20403,9,,6382,38009950249,0.072,620,180,0.009,0.437,0.083,81,77,0.66,1,0.237,0.678,0.084,4341092,0.872,Middle East,8026000000,4868000000 Oman,12/1/2010,0.022,0.216,57202,12,,23158,58813004375,0.028,582,62,0.01,0.358,0.068,78,74,1.643,1,0.274,0.701,0.025,2802768,0.752,Middle East,1246000000,1768000000 Qatar,12/1/2010,0.012,0.113,70531,10,,28973,125122000000,0.021,1496,36,0.008,0.69,0.073,79,77,1.25,1,0.137,0.852,0.011,1749713,0.987,Middle East,, Saudi Arabia,12/1/2010,0.021,0.145,464481,21,,192004,526811000000,0.04,663,79,0.015,0.41,,77,73,1.892,1,0.307,0.663,0.03,27258387,0.821,Middle East,7536000000,22076000000 Syrian Arab Republic,12/1/2010,0.025,0.397,61859,13,,21649,,0.034,97,336,0.013,0.207,0.099,78,72,0.543,1,0.357,0.605,0.037,21532647,0.557,Middle East,6308000000,1598000000 United Arab Emirates,12/1/2010,0.016,0.141,167597,15,,63099,287422000000,0.032,1283,12,0.008,0.68,,78,76,1.294,1,0.139,0.858,0.003,8441537,0.841,Middle East,8577000000,11818000000 "Yemen, Rep.",12/1/2010,0.032,0.478,21852,12,,8360,31743751169,0.051,66,248,0.046,0.124,0.238,64,61,0.487,1,0.42,0.553,0.027,22763008,0.317,Middle East,1161000000,252000000 American Samoa,12/1/2010,0.019,,,,,,,,,,,,,,,,1,,,,55636,0.876,Oceania,, Australia,12/1/2010,0.014,0.475,373081,3,,122512,1141790000000,0.089,5138,109,0.004,0.76,0.073,84,80,1.004,1,0.189,0.676,0.134,22031800,0.887,Oceania,32336000000,27534000000 Fiji,12/1/2010,0.022,0.393,1291,46,,,3225095136,0.042,154,163,0.02,0.2,0.075,72,66,0.811,1,0.29,0.661,0.048,860559,0.518,Oceania,809000000,100000000 French Polynesia,12/1/2010,0.017,,884,,,,,,,,,0.49,,78,73,0.805,1,0.238,0.695,0.068,268065,0.565,Oceania,405000000,160000000 Guam,12/1/2010,0.018,,,,,,,,,,,0.54,,81,75,,1,0.275,0.652,0.073,159440,0.941,Oceania,, Kiribati,12/1/2010,0.023,0.318,62,31,,,150431114,0.112,162,120,0.048,0.091,,71,65,0.108,1,0.336,0.626,0.039,97743,0.438,Oceania,, Marshall Islands,12/1/2010,,0.648,103,17,,,163200000,0.16,542,128,0.032,0.07,,,,,1,,,,52428,0.713,Oceania,3300000, "Micronesia, Fed. Sts.",12/1/2010,0.024,0.587,103,16,,,294117230,0.138,393,128,0.033,0.2,0.151,69,68,0.266,1,0.369,0.593,0.038,103619,0.223,Oceania,29000000,8000000 New Caledonia,12/1/2010,0.017,,3920,,,,,,,,,0.42,,79,73,0.896,1,0.235,0.67,0.095,250000,0.673,Oceania,129000000,179000000 New Zealand,12/1/2010,0.015,0.347,31551,1,,18287,143467000000,0.102,3260,172,0.005,0.805,0.063,83,79,1.078,1,0.205,0.665,0.13,4367800,0.862,Oceania,4904000000,3037000000 Papua New Guinea,12/1/2010,0.03,0.421,3135,51,,,9480047959,0.041,57,194,0.051,0.013,0.104,64,60,0.278,1,0.391,0.582,0.028,6858945,0.13,Oceania,2500000,138000000 Samoa,12/1/2010,0.028,0.189,161,9,,,572971727,0.064,201,224,0.016,0.07,0.107,76,69,,1,0.383,0.567,0.051,186029,0.201,Oceania,124000000,25200000 Solomon Islands,12/1/2010,0.033,0.262,202,56,,,681587105,0.074,95,80,0.027,0.05,0.144,68,66,0.219,1,0.408,0.56,0.033,526447,0.2,Oceania,65400000,51200000 Tonga,12/1/2010,0.027,0.254,158,25,,,369212477,0.048,172,164,0.012,0.16,0.115,75,69,0.522,1,0.375,0.567,0.059,104098,0.234,Oceania,, Vanuatu,12/1/2010,0.027,0.084,117,47,,,700804286,0.047,139,120,0.016,0.08,0.055,73,69,0.719,1,0.382,0.579,0.039,236299,0.246,Oceania,242000000,33000000 Antigua and Barbuda,12/1/2010,0.017,0.41,513,21,,,1135555556,0.057,736,207,0.009,0.47,0.11,78,73,1.926,1,0.262,0.665,0.072,87233,0.262,The Americas,298000000,52000000 Argentina,12/1/2010,0.017,1.076,180512,25,,78162,462704000000,0.082,751,453,0.013,0.45,0.106,79,72,1.414,1,0.249,0.645,0.106,40374224,0.91,The Americas,5629000000,6375000000 Aruba,12/1/2010,0.011,,2321,,,,2467703911,,,,,0.62,0.107,77,73,1.297,1,0.208,0.689,0.103,101597,0.431,The Americas,1256000000,264000000 "Bahamas, The",12/1/2010,0.016,0.449,2464,24,,,7888087000,0.074,1626,58,0.011,0.43,0.055,78,72,1.188,1,0.225,0.706,0.07,360498,0.825,The Americas,2159000000,369000000 Barbados,12/1/2010,0.013,,1503,,,,4433700000,0.067,978,,0.014,0.681,0.087,77,72,1.248,1,0.193,0.703,0.104,280396,0.321,The Americas,1074000000,351000000 Belize,12/1/2010,0.024,0.332,422,44,,,1398500000,0.058,265,147,0.016,0.14,0.139,76,70,0.629,1,0.355,0.606,0.039,308595,0.45,The Americas,264000000,39000000 Bermuda,12/1/2010,0.012,,477,,,,5744414000,,,,,0.842,,82,77,1.358,1,,,,65124,1,The Americas,442000000,417000000 Bolivia,12/1/2010,0.026,0.8,15456,49,,7341,19649631308,0.055,106,1080,0.035,0.224,0.099,69,64,0.707,1,0.36,0.593,0.047,10156601,0.664,The Americas,339000000,421000000 Brazil,12/1/2010,0.016,0.663,419754,119,,265887,2143070000000,0.09,989,2600,0.015,0.407,0.4,77,70,1.009,1,0.255,0.676,0.069,195210154,0.843,The Americas,6180000000,19340000000 Canada,12/1/2010,0.011,0.277,499137,5,,250992,1614070000000,0.114,5273,131,0.005,0.803,0.026,83,79,0.757,1,0.165,0.694,0.142,34005274,0.809,The Americas,18438000000,36975000000 Cayman Islands,12/1/2010,0.015,,590,,,,,,,,,0.66,,,,1.812,1,,,,55509,1,The Americas,465000000,129000000 Chile,12/1/2010,0.014,0.245,72258,22,,30920,217502000000,0.071,894,316,0.008,0.45,0.048,82,76,1.158,1,0.221,0.687,0.092,17150760,0.886,The Americas,2422000000,1808000000 Colombia,12/1/2010,0.02,0.803,75680,14,,32235,287018000000,0.068,418,208,0.016,0.365,0.094,77,70,0.958,1,0.288,0.656,0.056,46444798,0.75,The Americas,2727000000,2373000000 Costa Rica,12/1/2010,0.016,0.553,7770,60,,4646,36298327670,0.097,750,272,0.009,0.365,0.171,82,77,0.67,1,0.249,0.686,0.065,4669685,0.717,The Americas,2179000000,533000000 Cuba,12/1/2010,0.01,,38364,,,11308,64328220000,0.106,583,,0.005,0.159,,81,77,0.089,1,0.173,0.702,0.124,11281768,0.766,The Americas,2218000000, Curacao,12/1/2010,0.014,,,,,,,,,,,,,,,1.383,1,0.198,0.67,0.132,149311,0.899,The Americas,438000000,282000000 Dominica,12/1/2010,0.013,0.37,136,13,,,475185185,0.06,400,117,0.011,0.475,0.095,,,1.483,1,,,,71167,0.681,The Americas,95000000,13000000 Dominican Republic,12/1/2010,0.022,0.401,20964,19,,7178,50980167048,0.055,278,324,0.026,0.314,0.121,76,70,0.888,1,0.312,0.628,0.06,10016797,0.738,The Americas,4209000000,554000000 Ecuador,12/1/2010,0.022,0.353,32636,56,,12428,67513698000,0.072,335,654,0.021,0.29,,79,73,0.985,1,0.31,0.629,0.062,15001072,0.627,The Americas,786000000,863000000 El Salvador,12/1/2010,0.02,0.348,6249,17,,4210,21418300000,0.069,238,320,0.015,0.159,,76,67,1.238,1,0.321,0.61,0.069,6218195,0.643,The Americas,646000000,280000000 Greenland,12/1/2010,0.015,,634,,,,,,,,,0.63,,73,69,1.014,1,,,,56905,0.844,The Americas,, Grenada,12/1/2010,0.019,0.453,260,15,,,771111097,0.06,438,140,0.012,0.27,0.106,75,70,1.165,1,0.275,0.652,0.072,104677,0.357,The Americas,112000000,10000000 Guatemala,12/1/2010,0.032,0.409,11118,37,,10251,41338007893,0.069,198,344,0.028,0.105,0.133,75,68,1.26,1,0.415,0.541,0.044,14341576,0.493,The Americas,1379000000,1002000000 Guyana,12/1/2010,0.022,0.388,1701,24,,,2259288396,0.066,188,288,0.032,0.299,0.145,68,63,0.713,1,0.376,0.592,0.033,786126,0.282,The Americas,80000000,73000000 Haiti,12/1/2010,0.027,0.404,2120,105,,2409,6622541529,0.067,45,184,0.073,0.084,0.175,64,60,0.404,1,0.362,0.594,0.045,9896400,0.52,The Americas,169000000,431000000 Honduras,12/1/2010,0.027,0.441,8108,14,,4567,15839344592,0.087,176,224,0.021,0.111,0.189,75,70,1.247,1,0.368,0.589,0.043,7621204,0.517,The Americas,627000000,406000000 Jamaica,12/1/2010,0.015,0.487,7158,8,,2830,13230844040,0.053,255,414,0.016,0.277,0.205,76,70,1.161,1,0.29,0.631,0.078,2690824,0.537,The Americas,2095000000,235000000 Mexico,12/1/2010,0.02,0.505,443674,7,,178924,1051630000000,0.063,603,404,0.014,0.311,0.053,79,74,0.775,1,0.3,0.64,0.06,117886404,0.778,The Americas,12628000000,9001000000 Nicaragua,12/1/2010,0.024,0.632,4547,39,,2951,8938210560,0.076,112,222,0.022,0.1,0.133,77,71,0.681,1,0.345,0.609,0.046,5822209,0.573,The Americas,309000000,329000000 Panama,12/1/2010,0.02,0.438,9633,9,,3710,28814100000,0.085,627,482,0.017,0.401,0.077,80,74,1.807,1,0.293,0.639,0.068,3678128,0.651,The Americas,2552000000,575000000 Paraguay,12/1/2010,0.024,0.35,5075,35,,4789,20030529733,0.087,271,311,0.021,0.198,0.26,74,70,0.917,1,0.335,0.613,0.052,6459721,0.585,The Americas,243000000,269000000 Peru,12/1/2010,0.021,0.371,57579,26,,19207,148510000000,0.049,257,380,0.015,0.348,0.19,77,71,0.995,1,0.3,0.64,0.06,29262830,0.769,The Americas,2475000000,1640000000 Puerto Rico,12/1/2010,0.011,0.636,,7,,,98381268000,,,218,,0.453,,82,74,0.791,1,0.205,0.665,0.13,3721208,0.938,The Americas,3211000000,1180000000 Sint Maarten (Dutch part),12/1/2010,,,,,,,,,,,,,,,,,1,,,,37850,1,The Americas,681000000,105000000 St. Kitts and Nevis,12/1/2010,,0.525,249,19,,,692222222,0.054,739,155,0.009,0.76,0.086,,,1.528,1,,,,52352,0.318,The Americas,90000000,13000000 St. Lucia,12/1/2010,0.016,0.34,403,14,,,1252222222,0.078,525,92,0.014,0.433,0.106,77,72,1.117,1,0.253,0.663,0.085,177397,0.185,The Americas,309000000,48000000 St. Martin (French part),12/1/2010,0.017,,,,,,,,,,,,,82,76,,1,,,,30235,,The Americas,, St. Vincent and the Grenadines,12/1/2010,0.017,0.387,209,10,,,681481481,0.047,293,111,0.019,0.385,0.092,74,70,1.206,1,0.265,0.668,0.067,109316,0.488,The Americas,86000000,15000000 Suriname,12/1/2010,0.018,0.279,2384,694,,,4368033802,0.058,483,199,0.022,0.316,0.116,74,67,0.993,1,0.286,0.649,0.064,524960,0.663,The Americas,69000000,41000000 Trinidad and Tobago,12/1/2010,0.015,0.331,50682,41,,21370,20758191858,0.052,805,210,0.021,0.485,0.093,73,66,1.426,1,0.207,0.71,0.083,1328095,0.091,The Americas,630000000,97000000 Turks and Caicos Islands,12/1/2010,,,161,,,,,,,,,,,,,,1,,,,30993,0.902,The Americas,, United States,12/1/2010,0.013,0.465,5433057,5,,2215504,14958300000000,0.177,8254,187,0.006,0.717,0.033,81,76,0.913,1,0.198,0.671,0.131,309326295,0.808,The Americas,164606000000, Uruguay,12/1/2010,0.015,0.419,6645,65,,4174,38881102075,0.087,998,336,0.011,0.464,0.103,80,73,1.316,1,0.225,0.636,0.139,3371982,0.944,The Americas,1669000000,549000000 "Venezuela, RB",12/1/2010,0.021,0.519,201747,141,,75502,393802000000,0.047,639,864,0.014,0.374,0.183,77,71,0.96,1,0.295,0.649,0.056,29043283,0.888,The Americas,794000000,2238000000 Virgin Islands (U.S.),12/1/2010,0.011,,,,,,,,,,,0.312,,82,76,,1,0.207,0.656,0.137,106267,0.946,The Americas,1013000000, Algeria,12/1/2011,0.025,0.72,,25,,41852,199071000000,0.044,233,451,0.023,0.14,0.08,72,69,0.943,1,0.272,0.681,0.047,37762962,0.682,Africa,300000000,571000000 Angola,12/1/2011,0.046,0.521,,66,,13576,104116000000,0.034,178,282,0.107,0.148,0.188,53,50,0.53,1,0.477,0.499,0.024,20180490,0.409,Africa,653000000,323000000 Benin,12/1/2011,0.037,0.659,,29,,3761,7294900431,0.045,34,270,0.06,0.041,,60,58,0.794,1,0.432,0.539,0.029,9779795,0.423,Africa,188000000, Botswana,12/1/2011,0.024,0.195,,60,,2215,15292424757,0.052,404,152,0.039,0.08,0.11,46,47,1.46,1,0.34,0.625,0.035,1986701,0.565,Africa,36000000,82000000 Burkina Faso,12/1/2011,0.042,0.435,,13,,,10395757480,0.064,39,270,0.068,0.03,,56,55,0.48,1,0.458,0.517,0.025,15995313,0.265,Africa,, Burundi,12/1/2011,0.045,0.516,,13,,,2355652064,0.09,21,274,0.059,0.011,0.132,55,51,0.201,1,0.44,0.535,0.025,9540362,0.109,Africa,3700000,49000000 Cameroon,12/1/2011,0.038,0.488,,15,,6720,25486923059,0.054,64,654,0.064,0.05,,55,53,0.496,1,0.432,0.535,0.032,21156272,0.521,Africa,423000000,622000000 Central African Republic,12/1/2011,0.035,0.546,,22,,,2195599491,0.039,19,504,0.1,0.022,,51,47,0.224,1,0.404,0.558,0.039,4436217,0.39,Africa,, Chad,12/1/2011,0.047,0.758,,55,,,12156380062,0.028,25,732,0.092,0.019,,51,49,0.303,1,0.487,0.488,0.025,12080037,0.22,Africa,, Comoros,12/1/2011,0.036,2.179,,22,,,610372697,0.036,31,100,0.061,0.055,0.105,62,59,0.309,1,0.422,0.549,0.029,700216,0.28,Africa,42000000,20000000 "Congo, Dem. Rep.",12/1/2011,0.044,3.391,,65,,24497,23831631365,0.061,15,336,0.09,0.012,0.438,51,48,0.245,1,0.453,0.519,0.028,63931512,0.404,Africa,11400000,298000000 "Congo, Rep.",12/1/2011,0.038,0.653,,161,,1659,14425606793,0.025,85,606,0.039,0.056,,59,56,0.919,1,0.423,0.543,0.034,4225359,0.637,Africa,, Cote d'Ivoire,12/1/2011,0.037,0.44,,32,,11233,24074553674,0.068,84,270,0.075,0.022,,51,49,0.894,1,0.417,0.552,0.031,19389954,0.513,Africa,, Djibouti,12/1/2011,0.028,0.378,,37,,,1239144502,0.087,119,82,0.061,0.07,0.106,62,59,0.228,1,0.339,0.623,0.038,846646,0.771,Africa,19200000,33500000 "Egypt, Arab Rep.",12/1/2011,0.024,0.436,,8,,77649,236001000000,0.049,137,433,0.019,0.398,0.11,73,68,1.051,1,0.314,0.631,0.056,79392466,0.43,Africa,9333000000,2575000000 Equatorial Guinea,12/1/2011,0.036,0.441,,135,,,15715842151,0.045,1051,492,0.073,0.115,,54,51,0.669,1,0.391,0.58,0.029,715996,0.393,Africa,, Eritrea,12/1/2011,0.038,0.845,,84,,765,2607739837,0.027,12,216,0.038,0.007,,64,59,0.041,1,0.431,0.548,0.022,5932852,0.21,Africa,, Ethiopia,12/1/2011,0.034,0.303,,15,,34064,31367606700,0.041,14,198,0.048,0.011,,64,61,0.158,1,0.439,0.528,0.033,89393063,0.177,Africa,1998000000,170000000 Gabon,12/1/2011,0.032,0.435,,57,,1997,18796191833,0.034,401,488,0.042,0.08,,64,62,1.487,1,0.385,0.562,0.053,1594034,0.86,Africa,, "Gambia, The",12/1/2011,0.043,2.832,,27,,,898282866,0.047,24,376,0.051,0.109,0.28,60,57,0.808,1,0.459,0.516,0.025,1734966,0.57,Africa,92000000,11000000 Ghana,12/1/2011,0.032,0.334,,12,,10550,39564970070,0.053,83,224,0.054,0.141,,62,60,0.853,1,0.388,0.577,0.035,24820706,0.514,Africa,797000000,1026000000 Guinea,12/1/2011,0.038,0.912,,40,,,5067360041,0.06,27,416,0.069,0.013,,56,55,0.435,1,0.427,0.542,0.031,11161530,0.353,Africa,2100000,49000000 Guinea-Bissau,12/1/2011,0.038,0.459,,9,,,967762549,0.063,35,208,0.082,0.027,,55,52,0.451,1,0.417,0.553,0.029,1624228,0.461,Africa,, Kenya,12/1/2011,0.036,0.493,,33,,20179,34313315840,0.044,35,393,0.05,0.28,0.15,62,59,0.668,1,0.425,0.549,0.026,42027891,0.24,Africa,1844000000,197000000 Lesotho,12/1/2011,0.028,0.16,,40,,,2487352968,0.117,146,324,0.073,0.042,0.104,48,48,0.607,1,0.372,0.586,0.042,2029516,0.253,Africa,29000000,300000000 Liberia,12/1/2011,0.037,0.429,,6,,,1537753885,0.156,59,158,0.058,0.03,0.138,61,59,0.498,1,0.432,0.537,0.031,4079697,0.482,Africa,232000000,132000000 Libya,12/1/2011,0.022,,,,,13342,34699395524,0.039,211,,0.014,0.14,0.06,77,73,1.638,1,0.294,0.659,0.046,6103233,0.778,Africa,, Madagascar,12/1/2011,0.035,0.371,,8,,,9853981624,0.041,19,201,0.042,0.019,0.525,65,62,0.4,1,0.431,0.541,0.028,21678934,0.326,Africa,, Malawi,12/1/2011,0.04,0.29,,39,,,5627898037,0.083,30,157,0.049,0.033,0.238,54,54,0.256,1,0.456,0.512,0.031,15457531,0.157,Africa,39000000,97000000 Mali,12/1/2011,0.048,0.511,,8,,,10647545670,0.068,51,270,0.081,0.02,,54,54,0.751,1,0.47,0.502,0.029,14416737,0.368,Africa,274000000,224000000 Mauritania,12/1/2011,0.035,0.682,,19,,,4136083856,0.059,51,696,0.069,0.045,0.17,63,60,0.895,1,0.404,0.565,0.031,3702763,0.573,Africa,, Mauritius,12/1/2011,0.011,0.277,,6,,,11252405860,0.049,450,161,0.013,0.35,0.089,77,70,1.048,1,0.206,0.713,0.08,1286051,0.404,Africa,1808000000,427000000 Morocco,12/1/2011,0.022,0.496,,12,,17283,99211339029,0.063,195,238,0.028,0.461,,72,69,1.14,1,0.279,0.671,0.05,32059424,0.582,Africa,9101000000,2260000000 Mozambique,12/1/2011,0.04,0.375,,13,,10202,12547888400,0.064,33,230,0.068,0.043,0.191,50,49,0.32,1,0.454,0.514,0.032,24581367,0.312,Africa,266000000,256000000 Namibia,12/1/2011,0.027,0.218,,66,,1589,12451760766,0.086,486,339,0.036,0.12,0.087,66,61,0.99,1,0.371,0.594,0.035,2217618,0.426,Africa,645000000,207000000 Niger,12/1/2011,0.05,0.438,,17,,,6411842066,0.068,25,270,0.064,0.013,,58,57,0.287,1,0.499,0.475,0.026,16511462,0.178,Africa,86000000, Nigeria,12/1/2011,0.042,0.327,,28,,118325,411744000000,0.057,85,938,0.079,0.284,0.16,52,51,0.58,1,0.441,0.531,0.027,164192925,0.444,Africa,688000000,9534000000 Rwanda,12/1/2011,0.036,0.31,,3,,,6406727020,0.11,62,148,0.041,0.07,,65,61,0.399,1,0.442,0.535,0.023,11144315,0.249,Africa,298000000,147000000 Sao Tome and Principe,12/1/2011,0.036,0.325,,10,,,248286778,0.076,108,424,0.039,0.202,0.27,68,64,0.628,1,0.416,0.549,0.035,183177,0.626,Africa,15900000,1400000 Senegal,12/1/2011,0.038,0.455,,6,,3515,14440676498,0.05,54,666,0.046,0.175,,65,62,0.702,1,0.436,0.534,0.031,13330737,0.425,Africa,, Seychelles,12/1/2011,0.019,0.322,,39,,,1059593023,0.036,413,76,0.012,0.432,0.112,78,68,1.379,1,0.222,0.702,0.076,87441,0.526,Africa,31000000,5000000 Sierra Leone,12/1/2011,0.038,0.324,,12,,,2932273988,0.163,82,357,0.112,0.009,0.21,45,45,0.364,1,0.42,0.554,0.026,5865491,0.386,Africa,44000000,29000000 Somalia,12/1/2011,0.045,,,,,,,,,,0.095,0.013,,56,53,0.182,1,0.475,0.496,0.028,9907903,0.377,Africa,, South Africa,12/1/2011,0.021,0.324,,19,,141372,403894000000,0.087,670,200,0.034,0.34,0.09,57,53,1.232,1,0.296,0.651,0.053,51579599,0.627,Africa,10707000000,8397000000 South Sudan,12/1/2011,0.037,,,,,,20782116982,0.017,32,,0.068,,,55,53,0.173,1,0.426,0.54,0.034,10381110,0.18,Africa,, Sudan,12/1/2011,0.034,0.361,,36,,16622,67320812663,0.067,119,180,0.054,0.173,,63,60,0.688,1,0.418,0.551,0.032,36430923,0.332,Africa,185000000,937000000 Swaziland,12/1/2011,0.031,0.365,,56,,,4145772237,0.083,270,104,0.058,0.181,0.09,48,49,0.632,1,0.384,0.582,0.034,1212159,0.214,Africa,, Tanzania,12/1/2011,0.04,0.449,,26,,20747,23874165047,0.074,38,172,0.039,0.035,0.15,61,59,0.554,1,0.449,0.52,0.031,46354607,0.288,Africa,1383000000,928000000 Togo,12/1/2011,0.037,0.489,,84,,2764,3756023048,0.08,43,270,0.059,0.035,,57,55,0.416,1,0.42,0.553,0.027,6472304,0.38,Africa,, Tunisia,12/1/2011,0.019,0.624,,11,,9504,45951129422,0.07,304,144,0.014,0.391,,77,73,1.152,1,0.233,0.697,0.07,10673800,0.661,Africa,2529000000,678000000 Uganda,12/1/2011,0.044,0.35,,33,,,15493320082,0.093,41,213,0.049,0.13,0.218,59,57,0.475,1,0.487,0.489,0.024,35148064,0.148,Africa,967000000,528000000 Zambia,12/1/2011,0.043,0.144,,18,,8462,19201691493,0.062,87,183,0.059,0.115,0.188,57,54,0.599,1,0.468,0.505,0.026,13633796,0.392,Africa,146000000,140000000 Zimbabwe,12/1/2011,0.032,0.343,,90,,9312,10956226611,,,242,0.058,0.157,,56,55,0.689,1,0.408,0.552,0.04,13358738,0.33,Africa,664000000, Afghanistan,12/1/2011,0.037,0.363,,7,,,17870159082,0.084,48,275,0.074,0.05,0.151,61,59,0.603,1,0.481,0.497,0.022,29105480,0.251,Asia,137000000,127000000 Armenia,12/1/2011,0.014,0.388,,8,,2716,10142342770,0.037,127,500,0.015,0.32,0.178,78,71,1.083,1,0.204,0.692,0.104,2964120,0.634,Asia,486000000,546000000 Azerbaijan,12/1/2011,0.019,0.4,,8,,12561,65951627200,0.05,359,225,0.032,0.5,0.19,74,68,1.1,1,0.224,0.718,0.058,9173082,0.536,Asia,1500000000,1778000000 Bangladesh,12/1/2011,0.021,0.35,,19,,31294,111906000000,0.038,27,302,0.037,0.05,0.133,71,69,0.552,1,0.311,0.642,0.047,152862431,0.312,Asia,97000000,819000000 Bhutan,12/1/2011,0.02,0.408,,36,,,1840841618,0.037,94,274,0.033,0.21,0.14,68,67,0.664,1,0.291,0.663,0.046,729429,0.356,Asia,76000000,58000000 Brunei Darussalam,12/1/2011,0.016,0.168,,101,,3832,16691360399,0.022,917,96,0.008,0.56,0.055,80,76,1.09,1,0.262,0.7,0.038,406512,0.759,Asia,, Cambodia,12/1/2011,0.026,0.214,,102,,5333,12829541141,0.056,49,173,0.036,0.031,,74,68,0.942,1,0.314,0.634,0.051,14605862,0.2,Asia,1790000000,333000000 China,12/1/2011,0.012,0.635,,38,,2727728,7321890000000,0.051,274,358,0.013,0.383,0.066,76,74,0.721,1,0.18,0.735,0.085,1344130000,0.506,Asia,53313000000,79010000000 Georgia,12/1/2011,0.014,0.165,,2,,3543,14434619972,0.094,310,387,0.014,0.315,0.15,78,70,1.013,1,0.174,0.684,0.142,4483350,0.53,Asia,1069000000,384000000 "Hong Kong SAR, China",12/1/2011,0.014,0.23,,3,,14894,248514000000,,,80,,0.722,0.05,87,80,2.155,1,0.119,0.749,0.132,7071600,1,Asia,33169000000,19172000000 India,12/1/2011,0.021,0.629,,29,,749447,1880100000000,0.039,62,254,0.045,0.101,0.102,68,64,0.732,1,0.298,0.651,0.051,1221156319,0.313,Asia,17708000000,13699000000 Indonesia,12/1/2011,0.02,0.322,,48,,209009,845932000000,0.029,99,266,0.026,0.111,0.124,72,68,1.025,1,0.296,0.653,0.051,243801639,0.507,Asia,9038000000,8653000000 Japan,12/1/2011,0.008,0.484,,22,,461468,5905630000000,0.1,4641,330,0.002,0.791,0.015,86,79,1.02,1,0.132,0.631,0.237,127817277,0.912,Asia,12534000000,39760000000 Kazakhstan,12/1/2011,0.023,0.286,,19,,78101,188049000000,0.039,458,188,0.018,0.506,,74,64,1.568,1,0.252,0.683,0.066,16556600,0.536,Asia,1524000000,1831000000 "Korea, Dem. Rep.",12/1/2011,0.014,,,,,19037,,,,,0.024,,,73,66,0.041,1,0.223,0.687,0.09,24631291,0.603,Asia,, "Korea, Rep.",12/1/2011,0.009,0.287,,6,,260440,1202460000000,0.074,1652,225,0.003,0.838,0.058,84,78,1.077,1,0.157,0.728,0.114,49779440,0.82,Asia,17467000000,22209000000 Kyrgyz Republic,12/1/2011,0.027,0.334,,10,,3097,6197766119,0.062,71,210,0.025,0.2,0.402,74,66,1.162,1,0.301,0.656,0.043,5514600,0.353,Asia,689000000,566000000 Lao PDR,12/1/2011,0.028,0.319,,93,,,8254088067,0.028,35,362,0.057,0.09,,69,66,0.84,1,0.362,0.601,0.037,6521314,0.343,Asia,413000000,248000000 "Macao SAR, China",12/1/2011,0.01,,,,,,36634742799,,,,,0.602,0.053,82,78,2.477,1,0.124,0.802,0.074,546278,1,Asia,38976000000,1476000000 Malaysia,12/1/2011,0.018,0.34,,6,,75907,289259000000,0.038,384,133,0.007,0.61,0.049,77,72,1.275,1,0.272,0.678,0.05,28758968,0.717,Asia,19649000000,10180000000 Maldives,12/1/2011,0.022,0.093,,9,,,2162990126,0.081,525,,0.01,0.34,0.102,78,76,1.598,1,0.294,0.655,0.05,331964,0.412,Asia,1868000000,256000000 Mongolia,12/1/2011,0.023,0.246,,13,,3607,8761426371,0.06,190,192,0.028,0.125,0.166,71,63,1.068,1,0.27,0.692,0.038,2754209,0.685,Asia,258000000,404000000 Myanmar,12/1/2011,0.018,,,,,14056,,0.018,19,,0.042,0.01,0.163,67,63,0.024,1,0.257,0.692,0.051,52350763,0.319,Asia,293000000,132000000 Nepal,12/1/2011,0.022,0.315,,29,,10391,18850351853,0.061,41,326,0.035,0.09,,69,66,0.492,1,0.364,0.586,0.05,27156367,0.172,Asia,415000000,420000000 Pakistan,12/1/2011,0.026,0.346,,21,,84845,213686000000,0.03,36,560,0.072,0.09,0.144,67,65,0.618,1,0.349,0.608,0.043,176166353,0.37,Asia,1123000000,1851000000 Philippines,12/1/2011,0.025,0.445,,36,,40452,224095000000,0.044,105,195,0.025,0.29,0.067,72,65,0.991,1,0.349,0.613,0.038,95053437,0.45,Asia,4026000000,5807000000 Singapore,12/1/2011,0.01,0.271,,3,,33447,274065000000,0.042,2144,84,0.002,0.71,0.054,84,80,1.501,1,0.169,0.737,0.093,5183700,1,Asia,18082000000,21437000000 Sri Lanka,12/1/2011,0.018,1.129,,37,,10421,59178013928,0.033,93,256,0.009,0.15,0.094,77,71,0.875,1,0.251,0.669,0.08,20869000,0.183,Asia,1421000000,926000000 Tajikistan,12/1/2011,0.033,0.845,,24,,2395,6522732203,0.058,48,224,0.043,0.13,0.248,71,64,0.809,1,0.358,0.61,0.032,7814850,0.265,Asia,39800000,8400000 Thailand,12/1/2011,0.011,0.369,,29,,119147,345672000000,0.041,214,264,0.012,0.237,0.069,77,71,1.163,1,0.189,0.72,0.091,66576332,0.454,Asia,30926000000,7320000000 Timor-Leste,12/1/2011,0.036,0.11,,94,,,1128300000,0.046,46,276,0.05,0.009,0.11,68,65,0.56,1,0.469,0.5,0.032,1120392,0.302,Asia,24000000,63000000 Turkmenistan,12/1/2011,0.022,,,,,24710,29233333333,0.021,114,,0.05,0.05,,69,61,1.038,1,0.289,0.671,0.041,5106668,0.487,Asia,, Uzbekistan,12/1/2011,0.022,0.975,,14,,47755,45324319955,0.056,91,205,0.039,0.302,,71,65,0.904,1,0.293,0.664,0.043,29339400,0.362,Asia,, Vietnam,12/1/2011,0.016,0.4,,38,,61210,135539000000,0.068,93,941,0.02,0.351,0.17,80,71,1.416,1,0.231,0.703,0.065,87840000,0.31,Asia,5710000000,1710000000 Albania,12/1/2011,0.013,0.315,,6,,2173,12890867763,0.06,243,371,0.014,0.49,0.124,80,74,0.983,1,0.221,0.676,0.103,2829337,0.532,Europe,1833000000,1678000000 Andorra,12/1/2011,,,,,,,,0.072,3053,,0.002,0.81,,,,0.835,1,,,,77865,0.873,Europe,, Austria,12/1/2011,0.009,0.523,,25,,33019,415984000000,0.113,5643,170,0.003,0.787,,84,78,1.544,1,0.146,0.673,0.181,8406187,0.659,Europe,22453000000,12920000000 Belarus,12/1/2011,0.012,0.623,,10,,29501,59734593905,0.049,311,654,0.004,0.396,0.136,77,65,1.132,1,0.149,0.712,0.138,9473000,0.75,Europe,747000000,729000000 Belgium,12/1/2011,0.012,0.57,,4,,59094,513318000000,0.105,4914,156,0.004,0.816,,83,78,1.135,1,0.168,0.658,0.174,11047744,0.977,Europe,13008000000,24215000000 Bosnia and Herzegovina,12/1/2011,0.009,0.237,,40,,7095,18252896439,0.099,471,422,0.006,0.6,0.074,79,73,0.826,1,0.169,0.678,0.153,3839322,0.393,Europe,734000000,238000000 Bulgaria,12/1/2011,0.01,0.272,,18,,19216,53542780661,0.073,522,500,0.011,0.48,0.106,78,71,1.428,1,0.134,0.68,0.186,7348328,0.726,Europe,4554000000,1498000000 Croatia,12/1/2011,0.01,0.219,,8,,8439,61520901516,0.068,992,196,0.004,0.578,0.097,80,74,1.183,1,0.151,0.671,0.177,4280622,0.578,Europe,9638000000,919000000 Cyprus,12/1/2011,0.012,0.22,,8,,2368,24851264943,0.074,2123,149,0.003,0.569,,82,77,0.977,1,0.174,0.708,0.118,1116513,0.674,Europe,2751000000,1721000000 Czech Republic,12/1/2011,0.01,0.481,,20,,43429,216061000000,0.075,1545,557,0.003,0.705,0.057,81,75,1.241,1,0.143,0.699,0.158,10496088,0.732,Europe,8503000000,4660000000 Denmark,12/1/2011,0.011,0.264,,6,,17997,333744000000,0.109,6521,135,0.003,0.898,,82,78,1.287,1,0.178,0.651,0.171,5570572,0.87,Europe,6366000000,9840000000 Estonia,12/1/2011,0.011,0.576,,7,,5603,22542967739,0.058,928,81,0.003,0.765,0.061,81,71,1.439,1,0.155,0.668,0.176,1327439,0.68,Europe,1683000000,939000000 Faeroe Islands,12/1/2011,0.012,,,,,,,,,,,0.807,,84,79,1.18,1,,,,49551,0.411,Europe,, Finland,12/1/2011,0.011,0.39,,14,,34749,262379000000,0.09,4411,93,0.002,0.887,,84,77,1.659,1,0.164,0.659,0.177,5388272,0.837,Europe,5591000000,6009000000 France,12/1/2011,0.013,0.647,,7,,252827,2782210000000,0.116,4968,132,0.004,0.778,,86,79,0.941,1,0.183,0.646,0.171,65343588,0.786,Europe,65959000000,53914000000 Germany,12/1/2011,0.008,0.456,,15,,311770,3628110000000,0.113,4996,221,0.003,0.813,,83,78,1.097,1,0.133,0.657,0.21,81797673,0.745,Europe,53399000000, Greece,12/1/2011,0.01,0.459,,11,,26723,289887000000,0.09,2304,224,0.004,0.516,,84,78,1.091,1,0.146,0.663,0.192,11123213,0.766,Europe,14984000000,3197000000 Hungary,12/1/2011,0.009,0.52,,4,,24964,137452000000,0.079,1096,277,0.006,0.68,0.083,79,71,1.169,1,0.146,0.685,0.169,9971727,0.693,Europe,6929000000,3028000000 Iceland,12/1/2011,0.014,0.296,,5,,5731,14042801904,0.092,4051,140,0.002,0.948,0.077,84,81,1.068,1,0.208,0.669,0.123,319014,0.937,Europe,751000000,740000000 Ireland,12/1/2011,0.016,0.254,,13,,13216,226035000000,0.088,4306,76,0.003,0.749,,83,79,1.085,1,0.215,0.67,0.115,4576794,0.621,Europe,9526000000,6837000000 Isle of Man,12/1/2011,,,,,,,,,,,,,,,,,1,,,,84654,0.52,Europe,, Italy,12/1/2011,0.009,0.677,,6,,167416,2196340000000,0.092,3339,285,0.003,0.544,0.046,85,80,1.581,1,0.14,0.654,0.205,59379449,0.684,Europe,45368000000,35724000000 Kosovo,12/1/2011,0.018,0.154,,58,,2528,6630214452,,,164,,,0.139,72,68,,1,,,,1790957,,Europe,, Latvia,12/1/2011,0.009,0.371,,16,,4371,28480338368,0.06,826,290,0.008,0.697,0.064,79,69,1.114,1,0.143,0.672,0.185,2059709,0.676,Europe,1102000000,920000000 Liechtenstein,12/1/2011,0.011,,,,,,,,,,,0.85,,84,80,1.016,1,,,,36388,0.144,Europe,, Lithuania,12/1/2011,0.011,0.431,,22,,7287,43083067994,0.067,887,175,0.005,0.636,,79,68,1.622,1,0.151,0.693,0.155,3028115,0.667,Europe,1417000000,874000000 Luxembourg,12/1/2011,0.011,0.198,,19,,4171,58009863403,0.067,7751,59,0.002,0.9,,84,79,1.482,1,0.175,0.685,0.14,518347,0.889,Europe,4825000000,3822000000 "Macedonia, FYR",12/1/2011,0.011,0.084,,3,,3122,10395222334,0.069,344,119,0.008,0.567,0.089,77,73,1.052,1,0.171,0.71,0.118,2103890,0.57,Europe,242000000,159000000 Malta,12/1/2011,0.01,0.41,,40,,857,9302057270,0.087,1900,139,0.005,0.68,0.047,83,79,1.224,1,0.153,0.697,0.15,416268,0.948,Europe,1465000000,401000000 Moldova,12/1/2011,0.012,0.308,,9,,3331,7016162818,0.114,224,228,0.014,0.38,0.144,73,65,0.908,1,0.165,0.723,0.112,3559986,0.449,Europe,262000000,374000000 Monaco,12/1/2011,,,,,,,6074506533,0.044,7180,,0.003,0.803,,,,0.853,1,,,,37261,1,Europe,, Montenegro,12/1/2011,0.012,0.209,,10,,1179,4501753898,0.072,522,372,0.006,0.356,0.097,77,72,1.868,1,0.193,0.682,0.126,620644,0.633,Europe,926000000,70000000 Netherlands,12/1/2011,0.011,0.396,,8,,77419,832755000000,0.119,5997,127,0.004,0.914,0.02,83,79,1.19,1,0.173,0.667,0.159,16693074,0.878,Europe,20970000000,20884000000 Norway,12/1/2011,0.012,0.407,,7,,28137,490807000000,0.099,9908,87,0.003,0.935,,84,79,1.158,1,0.187,0.661,0.152,4953088,0.794,Europe,6301000000,16833000000 Poland,12/1/2011,0.01,0.395,,32,,101313,515771000000,0.068,915,296,0.005,0.619,,81,73,1.313,1,0.149,0.713,0.137,38534157,0.608,Europe,11598000000,8882000000 Portugal,12/1/2011,0.009,0.427,,4,,23084,237888000000,0.102,2302,275,0.003,0.552,,84,77,1.164,1,0.15,0.667,0.182,10557560,0.612,Europe,14882000000,4948000000 Romania,12/1/2011,0.01,0.431,,14,,35830,182611000000,0.056,480,222,0.012,0.4,0.121,78,71,1.074,1,0.15,0.701,0.149,20147528,0.54,Europe,2018000000,2295000000 Russian Federation,12/1/2011,0.013,0.469,,29,,730970,1904790000000,0.061,803,290,0.01,0.49,0.085,76,64,1.42,1,0.151,0.718,0.13,142956460,0.737,Europe,16961000000,37343000000 San Marino,12/1/2011,0.01,,,,,,,0.055,3553,,0.003,0.496,0.059,86,80,1.142,1,,,,31048,0.941,Europe,, Serbia,12/1/2011,0.009,0.34,,13,,16185,43749934551,0.103,622,279,0.006,0.422,0.172,77,72,1.302,1,0.167,0.695,0.138,7234099,0.553,Europe,1149000000,1263000000 Slovak Republic,12/1/2011,0.011,0.476,,18,,17349,95877536836,0.079,1415,231,0.007,0.744,,80,72,1.1,1,0.15,0.725,0.125,5398384,0.544,Europe,2514000000,2449000000 Slovenia,12/1/2011,0.011,0.339,,6,,7249,50250147802,0.089,2171,260,0.003,0.673,,83,77,1.052,1,0.141,0.691,0.169,2052843,0.499,Europe,2953000000,1315000000 Spain,12/1/2011,0.01,0.387,,28,,125570,1454530000000,0.093,2978,187,0.004,0.676,,86,80,1.131,1,0.151,0.677,0.173,46742697,0.787,Europe,67698000000,23583000000 Sweden,12/1/2011,0.012,0.52,,16,,49045,536001000000,0.095,5419,122,0.002,0.928,,84,80,1.212,1,0.166,0.649,0.185,9449213,0.852,Europe,12777000000,17187000000 Switzerland,12/1/2011,0.01,0.289,,18,,25375,658867000000,0.11,9248,63,0.004,0.852,0.027,85,81,1.274,1,0.149,0.679,0.172,7912398,0.737,Europe,20640000000,16612000000 Turkey,12/1/2011,0.017,0.4,,6,,112459,774754000000,0.061,644,226,0.019,0.431,,78,71,0.894,1,0.264,0.665,0.072,73058638,0.713,Europe,30093000000,5372000000 Ukraine,12/1/2011,0.011,0.571,,24,,126438,163422000000,0.073,262,657,0.01,0.287,0.159,76,66,1.213,1,0.14,0.704,0.156,45706100,0.689,Europe,5406000000,4829000000 United Kingdom,12/1/2011,0.013,0.361,,12,,188074,2462480000000,0.094,3659,110,0.004,0.854,0.005,83,79,1.236,1,0.175,0.656,0.169,63258918,0.816,Europe,45940000000,64627000000 Bahrain,12/1/2011,0.016,0.135,,9,,9506,29044378668,0.038,766,36,0.006,0.77,0.068,77,76,1.31,1,0.198,0.781,0.021,1292764,0.886,Middle East,1766000000,899000000 "Iran, Islamic Rep.",12/1/2011,0.019,0.441,,11,,212145,528426000000,0.068,483,344,0.016,0.21,0.11,75,72,0.743,1,0.236,0.712,0.052,75424285,0.712,Middle East,2574000000,10881000000 Iraq,12/1/2011,0.032,0.278,,32,,40220,191177000000,0.027,160,312,0.029,0.05,0.136,73,65,0.802,1,0.409,0.558,0.033,31760020,0.691,Middle East,1557000000,1879000000 Israel,12/1/2011,0.021,0.302,,20,,23254,258217000000,0.076,2373,235,0.003,0.689,0.06,84,80,1.22,1,0.273,0.622,0.105,7765800,0.919,Middle East,6029000000,4937000000 Jordan,12/1/2011,0.028,0.277,,12,,7064,28840197019,0.088,386,151,0.017,0.349,0.087,75,72,1.112,1,0.346,0.62,0.034,6181000,0.827,Middle East,3860000000,1280000000 Kuwait,12/1/2011,0.021,0.107,,32,,32523,160600000000,0.026,1349,98,0.009,0.658,0.052,75,73,1.579,1,0.251,0.728,0.021,3124705,0.983,Middle East,644000000,9179000000 Lebanon,12/1/2011,0.013,0.302,,9,,6349,40078938640,0.074,646,180,0.009,0.52,0.075,82,77,0.772,1,0.227,0.688,0.085,4382790,0.873,Middle East,6797000000,4440000000 Oman,12/1/2011,0.022,0.22,,8,,25276,69971912138,0.024,610,62,0.01,0.48,0.062,79,74,1.59,1,0.257,0.717,0.026,3024774,0.757,Middle East,1612000000,1982000000 Qatar,12/1/2011,0.011,0.113,,9,,33285,169805000000,0.019,1738,36,0.007,0.69,0.055,79,77,1.205,1,0.134,0.856,0.01,1910902,0.988,Middle East,4463000000,7813000000 Saudi Arabia,12/1/2011,0.02,0.145,,21,,187070,669507000000,0.035,721,79,0.014,0.475,,77,74,1.935,1,0.302,0.669,0.029,27761728,0.823,Middle East,9317000000,18202000000 Syrian Arab Republic,12/1/2011,0.025,0.397,,13,,19986,,0.034,102,336,0.013,0.225,,78,72,0.592,1,0.355,0.607,0.038,21961676,0.561,Middle East,, United Arab Emirates,12/1/2011,0.016,0.141,,13,,66108,348595000000,0.031,1375,12,0.007,0.78,,78,76,1.314,1,0.14,0.857,0.003,8925096,0.844,Middle East,, "Yemen, Rep.",12/1/2011,0.032,0.327,,12,,7260,29207296703,0.05,63,248,0.044,0.149,0.25,64,61,0.501,1,0.413,0.559,0.028,23304206,0.323,Middle East,780000000,258000000 American Samoa,12/1/2011,,,,,,,,,,,,,,,,,1,,,,55274,0.875,Oceania,, Australia,12/1/2011,0.014,0.473,,3,,122888,1386890000000,0.092,6114,109,0.004,0.795,0.077,84,80,1.046,1,0.189,0.674,0.137,22340000,0.889,Oceania,34207000000,33328000000 Fiji,12/1/2011,0.021,0.383,,45,,,3753485389,0.038,167,163,0.02,0.28,0.075,73,67,0.838,1,0.289,0.661,0.05,867921,0.522,Oceania,933000000,115000000 French Polynesia,12/1/2011,0.017,,,,,,,,,,,0.49,,78,74,0.823,1,0.233,0.698,0.07,270874,0.563,Oceania,384000000,168000000 Guam,12/1/2011,0.018,,,,,,,,,,,0.577,,81,76,,1,0.271,0.654,0.075,160858,0.942,Oceania,, Kiribati,12/1/2011,0.023,0.318,,31,,,172253739,0.108,181,120,0.047,0.1,,71,65,0.139,1,0.33,0.631,0.039,99250,0.439,Oceania,, Marshall Islands,12/1/2011,,0.648,,17,,,170700000,0.16,567,128,0.032,0.081,,,,,1,,,,52495,0.716,Oceania,, "Micronesia, Fed. Sts.",12/1/2011,0.024,0.59,,16,,,310287519,0.137,412,128,0.032,0.228,0.144,70,68,0.267,1,0.364,0.597,0.039,103424,0.223,Oceania,26000000,8000000 New Caledonia,12/1/2011,0.016,,,,,,,,,,,0.5,,79,73,0.91,1,0.231,0.671,0.098,254000,0.679,Oceania,153000000,176000000 New Zealand,12/1/2011,0.014,0.344,,1,,18167,163841000000,0.103,3715,172,0.005,0.812,0.061,83,79,1.092,1,0.204,0.663,0.133,4405200,0.862,Oceania,5546000000,3462000000 Papua New Guinea,12/1/2011,0.03,0.421,,51,,,12393604089,0.042,74,194,0.05,0.02,0.108,64,60,0.342,1,0.387,0.584,0.028,7012977,0.13,Oceania,3500000, Samoa,12/1/2011,0.027,0.189,,9,,,631791993,0.07,245,224,0.016,0.11,0.1,76,70,,1,0.381,0.569,0.051,187429,0.199,Oceania,135000000,22200000 Solomon Islands,12/1/2011,0.032,0.262,,42,,,868574141,0.077,124,80,0.026,0.06,0.132,69,66,0.511,1,0.406,0.561,0.033,537997,0.205,Oceania,86700000,66000000 Tonga,12/1/2011,0.027,0.254,,16,,,423038017,0.05,219,164,0.011,0.25,0.114,75,69,0.526,1,0.374,0.568,0.058,104554,0.234,Oceania,, Vanuatu,12/1/2011,0.027,0.084,,35,,,785745262,0.038,125,120,0.015,0.092,0.055,73,69,0.644,1,0.378,0.582,0.04,241778,0.249,Oceania,252000000,39000000 Antigua and Barbuda,12/1/2011,0.017,0.41,,21,,,1127037037,0.055,703,207,0.008,0.53,0.109,78,73,1.997,1,0.258,0.67,0.072,88152,0.257,The Americas,312000000,50000000 Argentina,12/1/2011,0.017,1.077,,25,,80112,557727000000,0.079,866,415,0.013,0.51,0.141,80,72,1.491,1,0.246,0.646,0.107,40728738,0.911,The Americas,6060000000,7477000000 Aruba,12/1/2011,0.011,,,,,,2584463687,,,,,0.69,0.097,78,73,,1,0.204,0.689,0.107,101932,0.427,The Americas,1360000000,289000000 "Bahamas, The",12/1/2011,0.015,0.466,,24,,,7872584000,0.075,1622,58,0.011,0.65,0.051,78,72,0.816,1,0.22,0.708,0.072,366331,0.826,The Americas,2223000000,347000000 Barbados,12/1/2011,0.013,0.411,,18,,,4368900000,0.072,935,245,0.014,0.718,0.087,77,73,1.235,1,0.191,0.704,0.105,281804,0.319,The Americas,, Belize,12/1/2011,0.024,0.332,,44,,,1489000000,0.058,264,147,0.015,0.187,0.134,77,71,0.703,1,0.349,0.612,0.039,316280,0.447,The Americas,248000000,37000000 Bermuda,12/1/2011,0.012,,,,,,5550771000,,,,,0.883,,82,77,,1,,,,64564,1,The Americas,472000000,413000000 Bolivia,12/1/2011,0.026,0.8,,49,,7704,23948541156,0.05,115,1080,0.033,0.3,0.109,69,65,0.809,1,0.356,0.596,0.048,10324445,0.669,The Americas,499000000,410000000 Brazil,12/1/2011,0.015,0.663,,119,,270028,2476690000000,0.089,1119,2600,0.014,0.457,0.439,77,70,1.19,1,0.25,0.679,0.071,196935134,0.846,The Americas,6830000000,25070000000 Canada,12/1/2011,0.011,0.261,,5,,251845,1778630000000,0.109,5656,131,0.005,0.83,0.03,83,79,0.794,1,0.164,0.691,0.145,34342780,0.811,The Americas,19989000000,41234000000 Cayman Islands,12/1/2011,0.015,,,,,,,,,,,0.695,,,,1.71,1,,,,56601,1,The Americas,472000000,145000000 Chile,12/1/2011,0.014,0.245,,8,,33574,251162000000,0.071,1022,316,0.007,0.522,0.09,82,76,1.289,1,0.217,0.688,0.094,17308449,0.888,The Americas,2751000000,2047000000 Colombia,12/1/2011,0.019,0.764,,14,,31613,335415000000,0.065,466,193,0.015,0.404,0.112,77,70,0.981,1,0.284,0.658,0.058,47078792,0.753,The Americas,2992000000,2842000000 Costa Rica,12/1/2011,0.016,0.553,,60,,4655,41237296807,0.102,883,246,0.009,0.392,0.161,82,77,0.877,1,0.244,0.689,0.067,4737680,0.729,The Americas,2375000000,522000000 Cuba,12/1/2011,0.01,,,,,11187,68233900000,0.106,648,,0.006,0.16,,81,77,0.117,1,0.169,0.703,0.127,11276053,0.767,The Americas,2503000000, Curacao,12/1/2011,0.013,,,,,,,,,,,,,81,74,1.361,1,0.197,0.669,0.134,150612,0.898,The Americas,540000000,321000000 Dominica,12/1/2011,,0.371,,12,,,491481481,0.06,402,117,0.011,0.513,0.088,,,1.526,1,,,,71401,0.684,The Americas,113000000,12000000 Dominican Republic,12/1/2011,0.022,0.412,,19,,7382,55433248935,0.054,293,324,0.025,0.38,0.156,76,70,0.864,1,0.308,0.631,0.061,10147598,0.749,The Americas,4436000000,545000000 Ecuador,12/1/2011,0.021,0.353,,56,,12942,76769729000,0.069,362,654,0.02,0.314,,79,73,1.006,1,0.306,0.631,0.063,15246481,0.629,The Americas,849000000,917000000 El Salvador,12/1/2011,0.02,0.348,,17,,4319,23139000000,0.068,252,320,0.015,0.189,,77,67,1.329,1,0.313,0.617,0.07,6256242,0.648,The Americas,729000000,244000000 Greenland,12/1/2011,0.014,,,,,,,,,,,0.64,,,,1.037,1,,,,56890,0.848,The Americas,, Grenada,12/1/2011,0.019,0.453,,15,,,778518505,0.065,481,140,0.011,0.3,0.107,75,70,1.15,1,0.272,0.656,0.072,105074,0.356,The Americas,117000000,10000000 Guatemala,12/1/2011,0.032,0.409,,37,,10163,47654789735,0.067,215,344,0.028,0.123,0.134,75,68,1.325,1,0.412,0.544,0.045,14706578,0.498,The Americas,1350000000,935000000 Guyana,12/1/2011,0.021,0.359,,20,,,2576602497,0.068,221,263,0.032,0.31,0.145,69,63,0.669,1,0.373,0.595,0.033,790882,0.283,The Americas,95000000,79000000 Haiti,12/1/2011,0.026,0.404,,105,,3211,7516834160,0.085,62,184,0.057,0.09,0.116,64,61,0.419,1,0.358,0.598,0.045,10032864,0.535,The Americas,162000000,458000000 Honduras,12/1/2011,0.026,0.436,,14,,4740,17710325578,0.084,187,224,0.02,0.159,0.186,76,71,1.037,1,0.362,0.594,0.043,7776669,0.523,The Americas,642000000,446000000 Jamaica,12/1/2011,0.015,0.443,,7,,3066,14433926129,0.052,273,414,0.015,0.374,0.195,76,71,1.069,1,0.284,0.637,0.079,2699838,0.539,The Americas,2055000000,213000000 Mexico,12/1/2011,0.019,0.527,,6,,186171,1170090000000,0.06,609,347,0.014,0.372,0.049,79,75,0.792,1,0.295,0.643,0.061,119361233,0.781,The Americas,12458000000,9704000000 Nicaragua,12/1/2011,0.024,0.669,,39,,3038,9898547558,0.076,124,207,0.021,0.106,0.105,77,71,0.817,1,0.339,0.615,0.046,5905146,0.575,The Americas,378000000,380000000 Panama,12/1/2011,0.02,0.436,,8,,4058,33270500000,0.079,664,482,0.016,0.427,0.069,80,74,1.801,1,0.29,0.641,0.069,3740282,0.654,The Americas,2925000000,665000000 Paraguay,12/1/2011,0.024,0.35,,35,,4858,25071193102,0.089,352,387,0.02,0.248,0.174,74,70,0.993,1,0.331,0.616,0.053,6573097,0.587,The Americas,281000000,309000000 Peru,12/1/2011,0.02,0.366,,25,,20582,170564000000,0.047,283,309,0.014,0.36,0.187,77,72,1.096,1,0.296,0.643,0.061,29614887,0.773,The Americas,2912000000,1764000000 Puerto Rico,12/1/2011,0.011,0.631,,6,,,100352000000,,,218,,0.48,,82,75,0.84,1,0.201,0.666,0.132,3686580,0.938,The Americas,3143000000,1196000000 Sint Maarten (Dutch part),12/1/2011,,,,,,,,,,,,,,,,,1,,,,38486,1,The Americas,729000000,112000000 St. Kitts and Nevis,12/1/2011,,0.525,,19,,,728148148,0.058,820,203,0.008,0.776,0.094,,,1.454,1,,,,52971,0.318,The Americas,94000000,14000000 St. Lucia,12/1/2011,0.016,0.344,,15,,,1295925926,0.076,513,92,0.013,0.45,0.1,77,72,1.208,1,0.248,0.666,0.086,179271,0.185,The Americas,321000000,48000000 St. Martin (French part),12/1/2011,0.017,,,,,,,,,,,,,82,76,,1,,,,30615,,The Americas,, St. Vincent and the Grenadines,12/1/2011,0.017,0.387,,10,,,677037037,0.049,310,111,0.018,0.43,0.091,74,70,1.205,1,0.261,0.671,0.068,109357,0.491,The Americas,92000000,13000000 Suriname,12/1/2011,0.018,0.279,,694,,,4363219094,0.06,490,199,0.022,0.32,0.118,74,67,1.007,1,0.283,0.652,0.065,529761,0.663,The Americas,69000000,49000000 Trinidad and Tobago,12/1/2011,0.015,0.291,,41,,20918,23676348287,0.053,935,210,0.02,0.552,0.08,73,66,1.37,1,0.207,0.708,0.085,1333082,0.089,The Americas,650000000,192000000 Turks and Caicos Islands,12/1/2011,,,,,,,,,,,,,,,,,1,,,,31726,0.907,The Americas,, United States,12/1/2011,0.013,0.465,,5,,2191193,15533800000000,0.177,8467,187,0.006,0.697,0.033,81,76,0.944,1,0.197,0.669,0.133,311582564,0.809,The Americas,184536000000, Uruguay,12/1/2011,0.015,0.419,,7,,4430,47236710623,0.088,1213,336,0.01,0.514,0.098,80,73,1.406,1,0.223,0.638,0.139,3383486,0.946,The Americas,2401000000,797000000 "Venezuela, RB",12/1/2011,0.02,0.628,,141,,70198,316482000000,0.045,487,864,0.014,0.402,0.172,77,71,0.976,1,0.291,0.651,0.058,29500625,0.888,The Americas,805000000,2922000000 Virgin Islands (U.S.),12/1/2011,0.011,,,,,,,,,,,0.356,,83,76,,1,0.206,0.649,0.145,105784,0.948,The Americas,, Algeria,12/1/2012,0.025,0.719,,25,151,,204331000000,0.052,279,451,0.022,0.152,0.08,73,69,0.975,1,0.274,0.679,0.047,38481705,0.689,Africa,295000000,559000000 Angola,12/1/2012,0.045,0.521,,66,178,,115332000000,0.035,190,282,0.104,0.169,0.167,53,50,0.614,1,0.476,0.5,0.024,20820525,0.417,Africa,711000000,292000000 Benin,12/1/2012,0.037,0.659,,26,175,,7543183759,0.045,33,270,0.058,0.045,,61,58,0.837,1,0.43,0.542,0.029,10050702,0.427,Africa,192000000, Botswana,12/1/2012,0.024,0.254,,60,65,,14537490553,0.053,384,152,0.037,0.115,0.11,46,48,1.538,1,0.338,0.627,0.036,2003910,0.567,Africa,30000000,100000000 Burkina Faso,12/1/2012,0.041,0.435,,13,154,,10726305450,0.062,38,270,0.066,0.037,,56,55,0.606,1,0.457,0.519,0.024,16460141,0.273,Africa,, Burundi,12/1/2012,0.045,0.516,,8,157,,2472384813,0.081,20,274,0.057,0.012,0.143,56,52,0.228,1,0.442,0.534,0.024,9849569,0.112,Africa,2700000,41000000 Cameroon,12/1/2012,0.038,0.488,,15,162,,26472637887,0.051,59,654,0.062,0.057,,56,54,0.604,1,0.431,0.537,0.032,21699631,0.527,Africa,377000000,668000000 Central African Republic,12/1/2012,0.034,0.674,,22,187,,2169706411,0.038,18,483,0.098,0.03,,51,48,0.253,1,0.401,0.561,0.039,4525209,0.393,Africa,, Chad,12/1/2012,0.046,0.757,,62,189,,12887072082,0.028,25,732,0.09,0.021,,52,50,0.354,1,0.485,0.49,0.024,12448175,0.221,Africa,, Comoros,12/1/2012,0.036,2.179,,20,160,,595898770,0.045,38,100,0.059,0.06,0.105,62,59,0.395,1,0.422,0.55,0.029,717503,0.28,Africa,, "Congo, Dem. Rep.",12/1/2012,0.043,3.391,,58,183,,27452795398,0.056,15,336,0.088,0.017,0.284,51,48,0.306,1,0.451,0.52,0.028,65705093,0.41,Africa,6900000,108000000 "Congo, Rep.",12/1/2012,0.038,0.649,,161,186,,13677929162,0.032,100,606,0.037,0.061,,60,57,0.988,1,0.424,0.542,0.034,4337051,0.641,Africa,, Cote d'Ivoire,12/1/2012,0.037,0.394,,32,173,,24680372724,0.071,88,270,0.073,0.024,,51,50,0.912,1,0.415,0.554,0.031,19839750,0.52,Africa,, Djibouti,12/1/2012,0.028,0.378,,37,172,,1353632942,0.088,129,82,0.059,0.083,,63,60,0.247,1,0.337,0.624,0.039,859652,0.771,Africa,20500000,29600000 "Egypt, Arab Rep.",12/1/2012,0.024,0.426,,8,127,,262832000000,0.05,152,392,0.019,0.44,0.12,73,69,1.199,1,0.312,0.631,0.056,80721874,0.43,Africa,10823000000,3037000000 Equatorial Guinea,12/1/2012,0.036,0.441,,135,164,,16486743747,0.047,1138,492,0.071,0.139,,54,51,0.681,1,0.39,0.582,0.028,736296,0.395,Africa,, Eritrea,12/1/2012,0.037,0.845,,84,185,,3091967480,0.026,15,216,0.037,0.008,,65,60,0.05,1,0.431,0.547,0.022,6130922,0.214,Africa,, Ethiopia,12/1/2012,0.034,0.325,,15,124,,42805215879,0.038,18,306,0.046,0.015,,65,61,0.224,1,0.433,0.533,0.034,91728849,0.182,Africa,1980000000,181000000 Gabon,12/1/2012,0.032,0.435,,57,169,,17843815459,0.035,397,488,0.04,0.086,,64,62,1.795,1,0.385,0.563,0.052,1632572,0.864,Africa,, "Gambia, The",12/1/2012,0.043,2.832,,27,148,,914109100,0.05,26,376,0.05,0.124,0.28,60,57,0.852,1,0.459,0.517,0.024,1791225,0.577,Africa,99000000,8000000 Ghana,12/1/2012,0.031,0.334,,12,62,,41740897827,0.052,83,224,0.053,0.123,,62,60,1.01,1,0.386,0.579,0.035,25366462,0.521,Africa,1154000000,979000000 Guinea,12/1/2012,0.037,0.912,,35,179,,5651088170,0.063,32,416,0.067,0.015,,57,55,0.488,1,0.425,0.544,0.031,11451273,0.357,Africa,1700000,41000000 Guinea-Bissau,12/1/2012,0.038,0.459,,9,181,,822320638,0.059,30,208,0.08,0.029,,56,53,0.631,1,0.416,0.555,0.029,1663558,0.469,Africa,, Kenya,12/1/2012,0.036,0.442,,32,122,,40264403585,0.047,45,340,0.049,0.321,0.197,63,59,0.712,1,0.424,0.55,0.026,43178141,0.244,Africa,2004000000,174000000 Lesotho,12/1/2012,0.028,0.16,,29,139,,2328196275,0.116,138,324,0.074,0.046,0.101,49,49,0.753,1,0.368,0.591,0.042,2051545,0.258,Africa,46000000,256000000 Liberia,12/1/2012,0.036,0.266,,6,149,,1733828405,0.155,65,158,0.056,0.038,0.135,61,59,0.571,1,0.431,0.539,0.03,4190435,0.485,Africa,, Libya,12/1/2012,0.021,0.316,,35,188,,81873662519,0.039,578,889,0.013,,0.06,77,73,1.558,1,0.295,0.658,0.047,6154623,0.78,Africa,,2654000000 Madagascar,12/1/2012,0.035,0.364,,8,144,,9880703883,0.041,18,201,0.041,0.021,0.6,66,63,0.394,1,0.427,0.545,0.028,22293914,0.332,Africa,, Malawi,12/1/2012,0.04,0.324,,40,161,,4240492849,0.092,25,175,0.046,0.044,0.323,55,55,0.292,1,0.454,0.514,0.031,15906483,0.158,Africa,38000000,101000000 Mali,12/1/2012,0.047,0.511,,8,153,,10340794110,0.058,42,270,0.079,0.022,,54,55,0.984,1,0.471,0.5,0.028,14853572,0.376,Africa,, Mauritania,12/1/2012,0.034,0.682,,19,171,,3958701369,0.064,52,696,0.068,0.054,0.17,63,60,1.06,1,0.402,0.566,0.032,3796141,0.58,Africa,, Mauritius,12/1/2012,0.011,0.275,,6,20,,11442063228,0.048,444,161,0.013,0.354,0.087,77,70,1.199,1,0.202,0.715,0.084,1291167,0.402,Africa,1778000000,394000000 Morocco,12/1/2012,0.023,0.496,,12,95,,95981572517,0.064,190,238,0.027,0.554,,72,69,1.2,1,0.278,0.672,0.05,32521143,0.587,Africa,8491000000,2095000000 Mozambique,12/1/2012,0.039,0.375,,13,142,,14376457305,0.064,37,230,0.064,0.048,0.168,51,49,0.349,1,0.454,0.514,0.033,25203395,0.314,Africa,289000000,230000000 Namibia,12/1/2012,0.026,0.218,,66,94,,13399386550,0.083,473,314,0.036,0.129,0.087,67,61,0.95,1,0.366,0.599,0.035,2259393,0.437,Africa,, Niger,12/1/2012,0.05,0.438,,17,174,,6773185511,0.072,25,270,0.062,0.014,,58,58,0.314,1,0.5,0.474,0.026,17157042,0.18,Africa,, Nigeria,12/1/2012,0.042,0.338,,28,138,,462979000000,0.061,94,956,0.077,0.328,0.168,52,52,0.668,1,0.442,0.531,0.027,168833776,0.452,Africa,641000000,9280000000 Rwanda,12/1/2012,0.036,0.308,,3,54,,7133378888,0.107,66,134,0.039,0.08,,65,62,0.497,1,0.436,0.541,0.023,11457801,0.259,Africa,337000000,133000000 Sao Tome and Principe,12/1/2012,0.035,0.325,,5,166,,263328450,0.079,109,424,0.038,0.216,0.262,68,64,0.65,1,0.416,0.55,0.034,188098,0.633,Africa,15000000,1300000 Senegal,12/1/2012,0.038,0.455,,6,176,,14045680427,0.05,51,666,0.045,0.192,,65,62,0.836,1,0.435,0.534,0.03,13726021,0.428,Africa,, Seychelles,12/1/2012,0.019,0.257,,39,77,,1032199341,0.047,521,76,0.012,0.471,0.122,78,68,1.478,1,0.221,0.702,0.077,88303,0.529,Africa,26000000,4000000 Sierra Leone,12/1/2012,0.037,0.324,,12,137,,3787392596,0.151,96,357,0.11,0.013,0.21,46,45,0.37,1,0.417,0.556,0.026,5978727,0.389,Africa,41000000,25000000 Somalia,12/1/2012,0.044,,,,,,,,,,0.092,0.014,,56,53,0.226,1,0.473,0.498,0.028,10195134,0.382,Africa,, South Africa,12/1/2012,0.021,0.327,,19,41,,382338000000,0.088,645,200,0.034,0.41,0.088,58,54,1.306,1,0.295,0.65,0.054,52274945,0.633,Africa,11201000000,7144000000 South Sudan,12/1/2012,0.037,0.263,,17,184,,10560000000,0.026,27,218,0.066,,,56,54,0.212,1,0.423,0.543,0.035,10837527,0.182,Africa,, Sudan,12/1/2012,0.034,0.361,,36,143,,63029562337,0.072,115,180,0.053,0.21,,64,60,0.744,1,0.415,0.553,0.032,37195349,0.333,Africa,880000000,908000000 Swaziland,12/1/2012,0.03,0.365,,56,120,,4049589166,0.085,259,104,0.057,0.208,0.088,48,49,0.654,1,0.38,0.585,0.034,1230985,0.214,Africa,, Tanzania,12/1/2012,0.04,0.449,,26,136,,28248631876,0.07,41,172,0.038,0.04,0.155,62,60,0.57,1,0.449,0.52,0.032,47783107,0.295,Africa,1605000000,1003000000 Togo,12/1/2012,0.037,0.489,,38,159,,3915754216,0.086,41,270,0.057,0.04,,57,55,0.499,1,0.419,0.554,0.027,6642928,0.385,Africa,, Tunisia,12/1/2012,0.019,0.624,,11,49,,45238491581,0.07,297,144,0.014,0.414,,77,73,1.181,1,0.232,0.697,0.071,10777500,0.663,Africa,2931000000,673000000 Uganda,12/1/2012,0.044,0.366,,33,126,,20032237910,0.08,44,213,0.045,0.147,0.263,60,58,0.45,1,0.485,0.49,0.024,36345860,0.151,Africa,1105000000,604000000 Zambia,12/1/2012,0.043,0.151,,17,90,,20596424325,0.065,96,183,0.057,0.135,0.121,59,55,0.748,1,0.467,0.506,0.026,14075099,0.396,Africa,155000000,154000000 Zimbabwe,12/1/2012,0.032,0.345,,90,168,,12472416688,,,242,0.055,0.171,,59,57,0.919,1,0.402,0.558,0.039,13724317,0.328,Africa,749000000, Afghanistan,12/1/2012,0.035,0.363,,7,170,,20506795254,0.086,51,275,0.072,0.055,0.15,62,59,0.655,1,0.474,0.503,0.023,29824536,0.255,Asia,116000000,80000000 Armenia,12/1/2012,0.014,0.388,,8,40,,9958217880,0.045,150,380,0.015,0.392,0.172,78,71,1.119,1,0.203,0.693,0.103,2969081,0.632,Asia,487000000,556000000 Azerbaijan,12/1/2012,0.019,0.4,,8,71,,68730906314,0.054,398,214,0.031,0.542,0.183,74,68,1.088,1,0.222,0.721,0.057,9295784,0.539,Asia,2634000000,2616000000 Bangladesh,12/1/2012,0.02,0.35,,19,132,,116034000000,0.036,26,302,0.035,0.058,0.13,71,70,0.628,1,0.306,0.647,0.047,154695368,0.32,Asia,110000000,829000000 Bhutan,12/1/2012,0.02,0.408,,36,146,,1861157558,0.038,90,274,0.031,0.254,0.14,68,68,0.756,1,0.285,0.668,0.047,741822,0.364,Asia,94000000,71000000 Brunei Darussalam,12/1/2012,0.016,0.168,,101,79,,16953952625,0.023,939,96,0.008,0.603,0.055,80,77,1.139,1,0.258,0.702,0.04,412238,0.762,Asia,, Cambodia,12/1/2012,0.026,0.214,,102,135,,14054443213,0.054,51,173,0.034,0.049,,74,69,1.285,1,0.312,0.635,0.053,14864646,0.201,Asia,2000000000,382000000 China,12/1/2012,0.012,0.637,,33,99,,8229490000000,0.054,322,338,0.012,0.423,0.06,77,74,0.808,1,0.18,0.733,0.087,1350695000,0.519,Asia,54937000000, Georgia,12/1/2012,0.014,0.165,,2,9,,15846484588,0.092,333,280,0.013,0.369,0.148,78,70,1.078,1,0.176,0.681,0.143,4490700,0.532,Asia,1565000000,471000000 "Hong Kong SAR, China",12/1/2012,0.013,0.23,,3,2,,262630000000,,,78,,0.729,0.05,86,81,2.292,1,0.118,0.747,0.136,7154600,1,Asia,38021000000,20246000000 India,12/1/2012,0.021,0.628,,27,131,,1858740000000,0.04,61,243,0.043,0.126,0.106,68,65,0.699,1,0.294,0.654,0.052,1236686732,0.316,Asia,18340000000,14107000000 Indonesia,12/1/2012,0.019,0.322,,48,116,,876719000000,0.03,108,259,0.025,0.147,0.118,73,69,1.142,1,0.293,0.656,0.051,246864191,0.515,Asia,9463000000,9498000000 Japan,12/1/2012,0.008,0.494,,22,23,451501,5937770000000,0.101,4752,330,0.002,0.863,0.014,86,80,1.087,1,0.131,0.625,0.244,127561489,0.919,Asia,16197000000,40967000000 Kazakhstan,12/1/2012,0.023,0.286,,19,53,,203517000000,0.042,521,188,0.016,0.533,,74,65,1.858,1,0.255,0.68,0.066,16791425,0.535,Asia,1572000000,2119000000 "Korea, Dem. Rep.",12/1/2012,0.014,,,,,,,,,,0.023,,,73,66,0.069,1,0.22,0.688,0.092,24763188,0.604,Asia,, "Korea, Rep.",12/1/2012,0.01,0.29,,6,6,263002,1222810000000,0.075,1703,207,0.003,0.841,0.054,85,78,1.094,1,0.153,0.729,0.118,50004441,0.821,Asia,19653000000,22386000000 Kyrgyz Republic,12/1/2012,0.028,0.334,,10,70,,6605133551,0.071,84,210,0.023,0.217,0.128,74,66,1.242,1,0.302,0.656,0.042,5607200,0.354,Asia,750000000,738000000 Lao PDR,12/1/2012,0.027,0.319,,92,163,,9386913253,0.029,40,362,0.055,0.107,,69,66,0.647,1,0.356,0.606,0.038,6645827,0.354,Asia,461000000,241000000 "Macao SAR, China",12/1/2012,0.01,,,,,,42981497744,,,,,0.613,0.053,82,78,2.898,1,0.122,0.8,0.077,556783,1,Asia,44455000000,1711000000 Malaysia,12/1/2012,0.018,0.245,,6,8,,305033000000,0.039,410,133,0.007,0.658,0.048,77,73,1.413,1,0.267,0.682,0.052,29239927,0.725,Asia,20251000000,11545000000 Maldives,12/1/2012,0.022,0.268,,9,81,,2113179304,0.085,558,252,0.009,0.389,0.105,79,77,1.656,1,0.29,0.66,0.05,338442,0.423,Asia,1873000000,270000000 Mongolia,12/1/2012,0.023,0.246,,12,80,,10321968595,0.063,232,192,0.027,0.164,0.181,71,63,1.207,1,0.271,0.691,0.038,2796484,0.695,Asia,480000000,420000000 Myanmar,12/1/2012,0.017,0.527,,72,182,,,0.018,20,155,0.041,0.011,0.13,67,63,0.071,1,0.253,0.696,0.052,52797319,0.325,Asia,, Nepal,12/1/2012,0.022,0.315,,29,103,,19206800719,0.055,36,326,0.033,0.111,,69,67,0.605,1,0.356,0.594,0.051,27474377,0.175,Asia,379000000,561000000 Pakistan,12/1/2012,0.026,0.346,,21,106,,224880000000,0.031,39,560,0.071,0.1,0.135,67,66,0.671,1,0.343,0.613,0.044,179160111,0.374,Asia,1014000000,1801000000 Philippines,12/1/2012,0.025,0.445,,36,133,,250182000000,0.046,119,193,0.024,0.362,0.057,72,65,1.055,1,0.345,0.616,0.038,96706764,0.448,Asia,4900000000,6839000000 Singapore,12/1/2012,0.01,0.276,,3,1,,286908000000,0.047,2426,82,0.002,0.72,0.054,85,80,1.521,1,0.165,0.738,0.097,5312400,1,Asia,19261000000,22412000000 Sri Lanka,12/1/2012,0.018,0.553,,8,83,,59393056426,0.031,89,254,0.009,0.183,0.133,77,71,0.916,1,0.252,0.666,0.082,20328000,0.183,Asia,1756000000,1219000000 Tajikistan,12/1/2012,0.033,0.845,,24,141,,7633049792,0.058,55,224,0.042,0.145,0.252,71,64,0.815,1,0.358,0.61,0.032,8008990,0.266,Asia,60400000,6800000 Thailand,12/1/2012,0.01,0.372,,29,18,,365966000000,0.039,215,264,0.012,0.265,0.071,78,71,1.273,1,0.185,0.721,0.094,66785001,0.467,Asia,37740000000,7864000000 Timor-Leste,12/1/2012,0.036,0.11,,94,167,,1355000000,0.043,50,276,0.048,0.009,0.122,69,66,0.557,1,0.463,0.505,0.032,1148958,0.308,Asia,21000000,80000000 Turkmenistan,12/1/2012,0.022,,,,,,35164210526,0.02,129,,0.048,0.072,,70,61,1.141,1,0.286,0.673,0.041,5172931,0.49,Asia,, Uzbekistan,12/1/2012,0.021,0.985,,12,156,,51183443225,0.059,105,205,0.038,0.365,,72,65,0.71,1,0.289,0.668,0.043,29774500,0.362,Asia,, Vietnam,12/1/2012,0.016,0.343,,34,98,,155820000000,0.066,102,872,0.02,0.395,0.135,80,71,1.477,1,0.229,0.706,0.066,88772900,0.317,Asia,6830000000,1856000000 Albania,12/1/2012,0.013,0.32,,5,82,,12344532541,0.06,228,357,0.014,0.547,0.109,80,74,1.107,1,0.213,0.681,0.106,2801681,0.543,Europe,1623000000,1374000000 Andorra,12/1/2012,0.01,,,,,,,0.083,3057,,0.002,0.864,,,,0.815,1,,,,78360,0.867,Europe,, Austria,12/1/2012,0.009,0.524,,25,28,32896,394458000000,0.115,5407,170,0.003,0.8,,84,78,1.605,1,0.145,0.672,0.182,8429991,0.659,Europe,21446000000,12352000000 Belarus,12/1/2012,0.012,0.605,,10,64,,63615445567,0.05,339,338,0.004,0.469,0.195,78,67,1.135,1,0.151,0.711,0.138,9464000,0.755,Europe,986000000,781000000 Belgium,12/1/2012,0.011,0.576,,4,32,57286,482918000000,0.108,4711,156,0.004,0.807,,83,78,1.113,1,0.169,0.655,0.176,11128246,0.977,Europe,12659000000,23784000000 Bosnia and Herzegovina,12/1/2012,0.009,0.237,,37,130,,16853238733,0.099,447,407,0.006,0.654,0.069,79,74,0.876,1,0.163,0.682,0.155,3833916,0.394,Europe,665000000,194000000 Bulgaria,12/1/2012,0.01,0.277,,18,57,,51303659418,0.074,516,454,0.011,0.519,0.097,78,71,1.481,1,0.135,0.675,0.189,7305888,0.73,Europe,4202000000,1475000000 Croatia,12/1/2012,0.01,0.218,,8,88,,56155732957,0.068,908,196,0.004,0.619,0.095,80,74,1.154,1,0.15,0.67,0.18,4267558,0.581,Europe,8865000000,962000000 Cyprus,12/1/2012,0.012,0.222,,8,38,,22766912960,0.073,1949,147,0.003,0.607,,82,78,0.984,1,0.172,0.708,0.12,1128994,0.673,Europe,2709000000,1637000000 Czech Republic,12/1/2012,0.01,0.481,,20,68,42823,196446000000,0.077,1432,413,0.003,0.734,0.054,81,75,1.268,1,0.146,0.692,0.162,10510785,0.731,Europe,7758000000,4379000000 Denmark,12/1/2012,0.01,0.27,,6,5,17041,315164000000,0.112,6304,130,0.003,0.923,,82,78,1.303,1,0.177,0.649,0.175,5591572,0.871,Europe,6135000000,9600000000 Estonia,12/1/2012,0.011,0.664,,7,21,5721,22376042498,0.059,1010,81,0.003,0.784,0.057,82,72,1.604,1,0.157,0.665,0.178,1325016,0.678,Europe,1588000000,958000000 Faeroe Islands,12/1/2012,0.013,,,,,,,,,,,0.853,,85,80,1.186,1,,,,49506,0.413,Europe,, Finland,12/1/2012,0.011,0.406,,14,12,33475,247143000000,0.091,4232,93,0.002,0.899,,84,78,1.723,1,0.164,0.653,0.183,5413971,0.838,Europe,5415000000,5839000000 France,12/1/2012,0.013,0.647,,7,35,251706,2611220000000,0.117,4690,132,0.004,0.814,,86,79,0.974,1,0.183,0.643,0.175,65676758,0.788,Europe,63530000000,47159000000 Germany,12/1/2012,0.008,0.459,,15,19,307381,3425960000000,0.113,4683,207,0.003,0.823,,83,79,1.116,1,0.132,0.657,0.211,80425823,0.747,Europe,51581000000,96361000000 Greece,12/1/2012,0.009,0.441,,12,89,25991,248424000000,0.093,2044,202,0.004,0.551,,83,78,1.201,1,0.146,0.66,0.194,11092771,0.77,Europe,13313000000,2392000000 Hungary,12/1/2012,0.009,0.495,,5,52,23499,124600000000,0.078,987,277,0.005,0.706,0.09,79,72,1.161,1,0.146,0.683,0.17,9920362,0.698,Europe,5923000000,2514000000 Iceland,12/1/2012,0.014,0.306,,5,13,6021,13586213061,0.091,3872,140,0.002,0.962,0.083,84,82,1.081,1,0.207,0.667,0.126,320716,0.938,Europe,865000000,780000000 Ireland,12/1/2012,0.016,0.255,,10,15,13350,210638000000,0.081,3708,80,0.003,0.769,,83,79,1.072,1,0.215,0.667,0.118,4586897,0.624,Europe,9064000000,6001000000 Isle of Man,12/1/2012,,,,,,,,,,,,,,,,,1,,,,85284,0.52,Europe,, Italy,12/1/2012,0.009,0.677,,6,67,158616,2013270000000,0.092,3032,269,0.003,0.558,0.052,86,80,1.597,1,0.14,0.651,0.208,59539717,0.686,Europe,43036000000,32798000000 Kosovo,12/1/2012,0.018,0.154,,52,96,,6445460830,,,164,,,0.129,73,68,,1,,,,1807106,,Europe,, Latvia,12/1/2012,0.01,0.359,,16,24,,28372577697,0.06,792,264,0.008,0.731,0.055,79,69,1.121,1,0.146,0.669,0.185,2034319,0.675,Europe,1068000000,863000000 Liechtenstein,12/1/2012,0.01,,,,,,,,,,,0.894,,85,80,0.974,1,,,,36656,0.144,Europe,, Lithuania,12/1/2012,0.01,0.43,,20,25,,42343559196,0.067,859,175,0.005,0.672,,80,68,1.651,1,0.151,0.693,0.156,2987773,0.666,Europe,1430000000,1058000000 Luxembourg,12/1/2012,0.011,0.2,,19,56,4080,55143457330,0.069,7452,59,0.002,0.919,,84,79,1.454,1,0.175,0.685,0.141,530946,0.892,Europe,4613000000,3582000000 "Macedonia, FYR",12/1/2012,0.011,0.082,,2,36,,9576482628,0.071,327,119,0.007,0.574,0.085,77,73,1.062,1,0.169,0.711,0.12,2105575,0.57,Europe,237000000,153000000 Malta,12/1/2012,0.01,0.409,,40,100,,8863076923,0.091,1835,139,0.005,0.682,0.047,83,79,1.244,1,0.15,0.694,0.156,419455,0.95,Europe,1451000000,408000000 Moldova,12/1/2012,0.012,0.308,,9,86,,7284686576,0.117,239,220,0.014,0.434,0.134,73,65,1.02,1,0.165,0.722,0.112,3559519,0.449,Europe,294000000,420000000 Monaco,12/1/2012,,,,,,,,0.044,6708,,0.003,0.87,,,,0.883,1,,,,37579,1,Europe,, Montenegro,12/1/2012,0.012,0.209,,10,50,,4045813953,0.076,493,320,0.005,0.568,0.096,77,72,1.595,1,0.19,0.682,0.128,621081,0.635,Europe,860000000,67000000 Netherlands,12/1/2012,0.011,0.392,,5,30,78220,770067000000,0.124,5737,127,0.004,0.929,0.016,83,79,1.18,1,0.172,0.663,0.164,16754962,0.886,Europe,20527000000,20346000000 Norway,12/1/2012,0.012,0.407,,7,7,29818,500030000000,0.09,9055,87,0.002,0.946,,84,80,1.167,1,0.186,0.659,0.155,5018573,0.797,Europe,5353000000,17559000000 Poland,12/1/2012,0.01,0.398,,32,48,96543,490213000000,0.067,854,286,0.005,0.623,,81,73,1.415,1,0.149,0.71,0.14,38535873,0.607,Europe,11835000000,9038000000 Portugal,12/1/2012,0.009,0.42,,4,29,21949,212140000000,0.094,1905,275,0.003,0.603,,84,77,1.14,1,0.149,0.666,0.185,10514844,0.618,Europe,14559000000,4490000000 Romania,12/1/2012,0.01,0.429,,10,73,,169396000000,0.051,420,216,0.011,0.459,0.113,78,71,1.05,1,0.15,0.7,0.15,20076727,0.541,Europe,1919000000,2112000000 Russian Federation,12/1/2012,0.013,0.541,,18,111,,2017470000000,0.063,887,177,0.009,0.638,0.091,76,65,1.453,1,0.154,0.716,0.13,143178000,0.738,Europe,17876000000,48096000000 San Marino,12/1/2012,0.01,0.422,,40,74,,,0.065,3792,52,0.003,0.509,,,,1.152,1,,,,31247,0.941,Europe,, Serbia,12/1/2012,0.009,0.34,,12,87,,38110737579,0.105,561,279,0.006,0.481,0.182,78,73,1.178,1,0.165,0.695,0.14,7199077,0.553,Europe,1066000000,1176000000 Slovak Republic,12/1/2012,0.01,0.471,,14,43,16676,91347809328,0.078,1326,207,0.006,0.767,,80,73,1.119,1,0.15,0.723,0.127,5407579,0.542,Europe,2365000000,2307000000 Slovenia,12/1/2012,0.011,0.339,,6,31,7143,45379174408,0.088,1942,260,0.002,0.683,,83,77,1.084,1,0.142,0.688,0.171,2057159,0.499,Europe,2841000000,1085000000 Spain,12/1/2012,0.01,0.387,,28,46,124679,1322480000000,0.096,2808,167,0.004,0.698,,85,80,1.084,1,0.152,0.673,0.175,46761264,0.789,Europe,63198000000,21749000000 Sweden,12/1/2012,0.012,0.52,,16,14,48877,523941000000,0.096,5319,122,0.002,0.932,,84,80,1.246,1,0.167,0.644,0.189,9519374,0.854,Europe,12415000000,17664000000 Switzerland,12/1/2012,0.01,0.291,,18,27,25500,631183000000,0.113,8980,63,0.004,0.852,0.027,85,81,1.321,1,0.148,0.678,0.174,7996861,0.737,Europe,19439000000,16675000000 Turkey,12/1/2012,0.017,0.4,,6,72,115701,788863000000,0.063,665,226,0.017,0.451,,78,72,0.915,1,0.26,0.667,0.073,73997128,0.718,Europe,32249000000,4604000000 Ukraine,12/1/2012,0.011,0.554,,22,140,,176603000000,0.076,293,491,0.009,0.353,0.184,76,66,1.303,1,0.142,0.705,0.153,45593300,0.691,Europe,5988000000,5536000000 United Kingdom,12/1/2012,0.013,0.35,,12,11,192381,2461770000000,0.094,3647,110,0.004,0.875,0.005,84,80,1.248,1,0.175,0.653,0.172,63695687,0.818,Europe,45966000000,66182000000 Bahrain,12/1/2012,0.016,0.135,,9,47,,30362317939,0.039,895,36,0.006,0.88,0.06,77,76,1.612,1,0.202,0.777,0.021,1317827,0.886,Middle East,1742000000,889000000 "Iran, Islamic Rep.",12/1/2012,0.019,0.441,,16,152,,502729000000,0.067,490,344,0.015,0.275,0.11,76,72,0.761,1,0.237,0.711,0.052,76424443,0.718,Middle East,, Iraq,12/1/2012,0.031,0.278,,29,155,,215838000000,0.036,226,312,0.029,0.071,0.13,73,66,0.816,1,0.405,0.562,0.033,32578209,0.692,Middle East,1640000000,2363000000 Israel,12/1/2012,0.022,0.29,,21,33,24079,257622000000,0.075,2289,235,0.003,0.708,0.056,84,80,1.207,1,0.275,0.619,0.105,7910500,0.919,Middle East,6225000000,4851000000 Jordan,12/1/2012,0.028,0.281,,12,119,,31015239496,0.098,388,151,0.017,0.41,0.088,75,72,1.282,1,0.341,0.624,0.035,6318000,0.83,Middle East,4485000000,1257000000 Kuwait,12/1/2012,0.021,0.124,,32,101,,183219000000,0.025,1428,98,0.009,0.705,0.05,75,73,1.569,1,0.249,0.729,0.022,3250496,0.983,Middle East,780000000,9821000000 Lebanon,12/1/2012,0.013,0.302,,9,105,,43205095854,0.076,675,180,0.008,0.612,0.072,82,78,0.808,1,0.216,0.698,0.086,4424888,0.874,Middle East,6298000000,4125000000 Oman,12/1/2012,0.021,0.22,,8,44,,78289467471,0.026,690,62,0.01,0.6,0.057,79,75,1.593,1,0.242,0.731,0.028,3314001,0.762,Middle East,1779000000,2184000000 Qatar,12/1/2012,0.011,0.113,,9,45,,189945000000,0.022,2029,48,0.007,0.693,0.054,79,78,1.269,1,0.133,0.857,0.01,2050514,0.989,Middle East,7220000000,10702000000 Saudi Arabia,12/1/2012,0.02,0.145,,21,22,,733956000000,0.032,795,72,0.014,0.54,,77,74,1.874,1,0.297,0.674,0.029,28287855,0.825,Middle East,8400000000,17986000000 Syrian Arab Republic,12/1/2012,0.024,0.397,,13,147,,,0.034,105,336,0.012,0.243,,78,72,0.593,1,0.354,0.607,0.039,22399254,0.565,Middle East,, United Arab Emirates,12/1/2012,0.015,0.149,,8,26,,383799000000,0.028,1343,12,0.007,0.85,,78,76,1.496,1,0.144,0.852,0.004,9205651,0.847,Middle East,, "Yemen, Rep.",12/1/2012,0.031,0.327,,40,129,,31992801303,0.055,71,248,0.042,0.174,0.245,64,62,0.583,1,0.407,0.565,0.028,23852409,0.329,Middle East,1057000000, American Samoa,12/1/2012,,,,,,,,,,,,,,,,,1,,,,55128,0.874,Oceania,, Australia,12/1/2012,0.014,0.472,,3,10,133681,1532410000000,0.091,6140,109,0.004,0.79,0.07,84,80,1.056,1,0.189,0.671,0.14,22723900,0.89,Oceania,34130000000,34704000000 Fiji,12/1/2012,0.021,0.376,,59,58,,4035420973,0.04,177,163,0.02,0.337,0.07,73,67,0.982,1,0.289,0.659,0.052,874742,0.526,Oceania,987000000,110000000 French Polynesia,12/1/2012,0.017,,,,,,,,,,,0.529,,78,74,0.825,1,0.229,0.7,0.071,273814,0.562,Oceania,, Guam,12/1/2012,0.017,,,,,,,,,,,0.615,,81,76,,1,0.266,0.656,0.078,162810,0.943,Oceania,, Kiribati,12/1/2012,0.023,0.318,,31,117,,174984469,0.107,187,120,0.046,0.107,,71,66,0.159,1,0.324,0.636,0.04,100786,0.439,Oceania,, Marshall Islands,12/1/2012,,0.648,,17,110,,173000000,0.156,590,128,0.031,0.1,,,,,1,,,,52555,0.719,Oceania,, "Micronesia, Fed. Sts.",12/1/2012,0.024,0.599,,16,150,,326160961,0.128,405,128,0.031,0.26,0.143,70,68,0.302,1,0.358,0.602,0.039,103395,0.223,Oceania,, New Caledonia,12/1/2012,0.016,,,,,,,,,,,0.58,,79,73,0.912,1,0.228,0.673,0.099,258000,0.685,Oceania,, New Zealand,12/1/2012,0.014,0.34,,1,3,18566,171461000000,0.103,3292,152,0.005,0.82,0.058,83,79,1.104,1,0.203,0.661,0.136,4433000,0.862,Oceania,5467000000,3718000000 Papua New Guinea,12/1/2012,0.029,0.421,,53,108,,15653921367,0.052,114,207,0.048,0.035,0.108,64,60,0.378,1,0.384,0.588,0.029,7167010,0.13,Oceania,, Samoa,12/1/2012,0.027,0.189,,9,55,,684273267,0.068,245,224,0.016,0.129,0.099,76,70,,1,0.379,0.57,0.051,188889,0.196,Oceania,148000000,22300000 Solomon Islands,12/1/2012,0.031,0.253,,9,92,,999972421,0.08,148,80,0.026,0.07,0.113,69,66,0.55,1,0.404,0.563,0.033,549598,0.21,Oceania,66900000,68000000 Tonga,12/1/2012,0.026,0.254,,16,60,,471575497,0.054,238,164,0.011,0.349,0.1,75,70,0.534,1,0.373,0.568,0.058,104941,0.235,Oceania,, Vanuatu,12/1/2012,0.027,0.084,,35,78,,786938335,0.036,116,120,0.015,0.106,0.061,73,69,0.591,1,0.374,0.586,0.04,247262,0.252,Oceania,288000000,43000000 Antigua and Barbuda,12/1/2012,0.017,0.41,,21,66,,1194074074,0.052,681,207,0.008,0.59,0.102,78,73,1.43,1,0.254,0.675,0.071,89069,0.251,The Americas,, Argentina,12/1/2012,0.017,1.078,,25,121,,603153000000,0.085,995,405,0.012,0.558,0.141,80,72,1.566,1,0.244,0.648,0.108,41086927,0.913,The Americas,5655000000,8213000000 Aruba,12/1/2012,0.01,,,,,,,,,,,0.74,0.092,78,73,1.319,1,0.199,0.69,0.11,102384,0.424,The Americas,1414000000,296000000 "Bahamas, The",12/1/2012,0.015,0.466,,24,76,,8149004000,0.075,1647,58,0.011,0.717,0.048,78,72,0.807,1,0.216,0.71,0.074,371960,0.827,The Americas,2415000000,384000000 Barbados,12/1/2012,0.013,0.408,,18,84,,4224850000,0.063,938,237,0.014,0.733,0.087,78,73,1.233,1,0.19,0.704,0.106,283221,0.318,The Americas,, Belize,12/1/2012,0.024,0.332,,44,104,,1572500000,0.058,259,147,0.015,0.25,0.124,77,71,0.532,1,0.344,0.617,0.039,324060,0.445,The Americas,299000000,40000000 Bermuda,12/1/2012,0.012,,,,,,5473536000,,,,,0.913,,82,77,1.395,1,,,,64798,1,The Americas,461000000,411000000 Bolivia,12/1/2012,0.026,0.834,,49,158,,27035110130,0.058,149,1025,0.032,0.355,0.111,69,65,0.904,1,0.352,0.599,0.048,10496285,0.673,The Americas,581000000,559000000 Brazil,12/1/2012,0.015,0.685,,119,118,,2248780000000,0.093,1056,2600,0.013,0.486,0.366,77,70,1.25,1,0.246,0.681,0.073,198656019,0.849,The Americas,6890000000,26202000000 Canada,12/1/2012,0.011,0.246,,5,17,252651,1821450000000,0.109,5741,131,0.005,0.83,0.03,83,79,0.801,1,0.164,0.688,0.148,34754312,0.813,The Americas,20696000000,43010000000 Cayman Islands,12/1/2012,0.013,,,,,,,,,,,0.741,,,,1.717,1,,,,57570,1,The Americas,, Chile,12/1/2012,0.014,0.277,,8,34,32720,266259000000,0.072,1103,291,0.007,0.614,0.101,82,77,1.371,1,0.214,0.689,0.097,17464814,0.89,The Americas,3180000000,2348000000 Colombia,12/1/2012,0.019,0.76,,15,42,,370328000000,0.068,530,203,0.015,0.49,0.126,78,70,1.029,1,0.28,0.66,0.06,47704427,0.756,The Americas,3257000000,3364000000 Costa Rica,12/1/2012,0.015,0.553,,60,109,,45374788701,0.101,951,226,0.009,0.475,0.182,82,78,1.119,1,0.239,0.692,0.068,4805295,0.739,The Americas,2544000000,567000000 Cuba,12/1/2012,0.01,,,,,,,0.086,558,,0.005,0.256,,81,77,0.149,1,0.166,0.704,0.13,11270957,0.768,The Americas,2614000000, Curacao,12/1/2012,0.013,,,,,,,,,,,,,,,1.318,1,0.195,0.668,0.137,152056,0.897,The Americas,676000000,357000000 Dominica,12/1/2012,,0.371,,12,69,,495555556,0.059,392,117,0.011,0.552,0.09,,,1.525,1,,,,71684,0.687,The Americas,110000000,13000000 Dominican Republic,12/1/2012,0.021,0.434,,19,112,,58920504571,0.054,310,324,0.024,0.412,0.155,76,70,0.869,1,0.305,0.633,0.062,10276621,0.76,The Americas,4736000000,545000000 Ecuador,12/1/2012,0.021,0.346,,56,134,,84039856000,0.064,361,654,0.02,0.351,,79,73,1.062,1,0.303,0.633,0.064,15492264,0.631,The Americas,1039000000,944000000 El Salvador,12/1/2012,0.02,0.348,,17,115,,23813600000,0.067,254,320,0.014,0.203,,77,68,1.373,1,0.306,0.623,0.071,6297394,0.653,The Americas,894000000,286000000 Greenland,12/1/2012,0.014,,,,,,,,,,,0.649,,,,1.047,1,,,,56810,0.852,The Americas,, Grenada,12/1/2012,0.019,0.453,,15,102,,801481467,0.064,478,140,0.011,0.32,0.097,75,70,1.232,1,0.27,0.659,0.071,105483,0.356,The Americas,110000000,10000000 Guatemala,12/1/2012,0.031,0.409,,40,93,,50388454861,0.067,226,332,0.027,0.16,0.135,75,68,1.378,1,0.408,0.547,0.045,15082831,0.502,The Americas,1419000000,914000000 Guyana,12/1/2012,0.021,0.359,,20,113,,2851154076,0.066,235,263,0.031,0.33,0.139,69,63,0.688,1,0.368,0.599,0.033,795369,0.283,The Americas,64000000,82000000 Haiti,12/1/2012,0.026,0.404,,105,177,,7890216508,0.064,53,184,0.056,0.098,0.089,65,61,0.599,1,0.354,0.601,0.045,10173775,0.548,The Americas,170000000,474000000 Honduras,12/1/2012,0.026,0.4,,14,125,,18564264545,0.086,195,224,0.02,0.181,0.185,76,71,0.929,1,0.357,0.599,0.044,7935846,0.529,The Americas,666000000,464000000 Jamaica,12/1/2012,0.015,0.443,,7,91,,14794802081,0.059,318,368,0.015,0.338,0.176,76,71,0.98,1,0.278,0.643,0.079,2707805,0.541,The Americas,2070000000,165000000 Mexico,12/1/2012,0.019,0.525,,6,51,191924,1186460000000,0.061,618,337,0.013,0.398,0.047,80,75,0.834,1,0.29,0.647,0.063,120847477,0.784,The Americas,13320000000,10735000000 Nicaragua,12/1/2012,0.023,0.649,,39,123,,10644973606,0.082,144,207,0.021,0.135,0.12,78,71,0.977,1,0.334,0.62,0.046,5991733,0.578,The Americas,422000000,372000000 Panama,12/1/2012,0.02,0.405,,7,61,,37956200000,0.076,723,431,0.016,0.403,0.069,80,75,1.634,1,0.286,0.643,0.071,3802281,0.657,The Americas,3784000000,605000000 Paraguay,12/1/2012,0.024,0.35,,35,107,,24611040343,0.103,392,387,0.019,0.293,0.172,74,70,1.016,1,0.328,0.619,0.054,6687361,0.589,The Americas,265000000,341000000 Peru,12/1/2012,0.02,0.364,,25,39,,192636000000,0.051,337,293,0.014,0.382,0.192,77,72,0.98,1,0.292,0.646,0.063,29987800,0.776,The Americas,3288000000,1950000000 Puerto Rico,12/1/2012,0.011,0.507,,6,37,,101081000000,,,218,,0.69,,82,75,0.826,1,0.198,0.667,0.135,3651545,0.937,The Americas,3193000000,1156000000 Sint Maarten (Dutch part),12/1/2012,,,,,,,,,,,,,,,,,1,,,,39088,1,The Americas,854000000,120000000 St. Kitts and Nevis,12/1/2012,,0.519,,19,97,,731851852,0.059,825,203,0.008,0.793,0.087,,,1.418,1,,,,53584,0.318,The Americas,94000000,14000000 St. Lucia,12/1/2012,0.016,0.346,,15,59,,1318148148,0.085,556,92,0.013,0.348,0.095,77,72,1.194,1,0.243,0.67,0.087,180870,0.185,The Americas,335000000,49000000 St. Martin (French part),12/1/2012,0.016,,,,,,,,,,,,,82,76,,1,,,,30959,,The Americas,, St. Vincent and the Grenadines,12/1/2012,0.017,0.387,,10,75,,694444444,0.052,340,111,0.018,0.475,0.094,75,70,1.161,1,0.257,0.675,0.068,109373,0.495,The Americas,93000000,14000000 Suriname,12/1/2012,0.018,0.279,,694,165,,5012121212,0.059,521,199,0.021,0.347,0.117,74,68,1.065,1,0.278,0.656,0.066,534541,0.662,The Americas,79000000,58000000 Trinidad and Tobago,12/1/2012,0.015,0.291,,41,63,,23436342520,0.054,972,210,0.02,0.595,0.077,74,66,1.408,1,0.207,0.705,0.088,1337439,0.088,The Americas,, Turks and Caicos Islands,12/1/2012,,,,,,,,,,,,,,,,,1,,,,32427,0.911,The Americas,, United States,12/1/2012,0.013,0.464,,5,4,2132446,16244600000000,0.179,8895,175,0.006,0.793,0.033,81,76,0.96,1,0.196,0.667,0.136,313873685,0.811,The Americas,200092000000, Uruguay,12/1/2012,0.015,0.419,,7,85,,50004354667,0.089,1308,310,0.01,0.545,0.112,80,74,1.471,1,0.22,0.639,0.14,3395253,0.948,The Americas,2222000000,1028000000 "Venezuela, RB",12/1/2012,0.02,0.619,,144,180,,381286000000,0.046,593,792,0.013,0.491,0.164,78,72,1.021,1,0.288,0.652,0.06,29954782,0.889,The Americas,904000000,3202000000 Virgin Islands (U.S.),12/1/2012,0.011,,,,,,,,,,,0.405,,83,76,,1,0.206,0.641,0.152,105275,0.949,The Americas,
STATE,Population in 2016 from census.gov,Non-insured percentage (percentage of people who do not have health insurance in 2016 from CDC.gov),Firearms Death RATE of death from firearms for every 100K population in 2016 from CDC.gov,Firearm Deaths totals in 2016,Drug Overdose death rates per 100K population 2016,Drug overdose deaths total,URL for state info: base url https://www.cdc.gov Alabama,4860545,10,21.5,1046,16.2,756,/nchs/pressroom/states/alabama/alabama.htm Alaska,741522,14,23.3,177,16.8,128,/nchs/pressroom/states/alaska/alaska.htm Arizona,6908642,11,15.2,1094,20.3,1382,/nchs/pressroom/states/arizona/arizona.htm Arkansas,2988231,7.1,17.8,541,14,401,/nchs/pressroom/states/arkansas/arkansas.htm California,39296476,7.1,7.9,3184,11.2,4654,/nchs/pressroom/states/california/california.htm Colorado,5530105,7.7,14.3,812,16.6,942,/nchs/pressroom/states/colorado/colorado.htm Connecticut,3587685,3.9,4.6,172,27.4,971,/nchs/pressroom/states/connecticut/connecticut.htm Delaware,952698,3.6,11,111,30.8,282,/nchs/pressroom/states/delaware/delaware.htm District of Columbia,684336,3.9,13.8,107,38.8,269,/nchs/pressroom/states/dc/dc.htm Florida,20656589,13.8,12.6,2704,23.7,4728,/nchs/pressroom/states/florida/florida.htm Georgia,10313620,12.9,15,1571,13.3,1394,/nchs/pressroom/states/georgia/georgia.htm Hawaii,1428683,2.7,4.5,66,12.8,191,/nchs/pressroom/states/hawaii/hawaii.htm Idaho,1680026,11.2,14.6,242,15.2,243,/nchs/pressroom/states/idaho/idaho.htm Illinois,12835726,5.7,11.7,1490,18.9,2411,/nchs/pressroom/states/illinois/illinois.htm Indiana,6634007,7.8,15,997,24,1526,/nchs/pressroom/states/indiana/indiana.htm Iowa,3130869,3.7,9.2,288,10.6,314,/nchs/pressroom/states/iowa/iowa.htm Kansas,2907731,7.9,13.4,383,11.1,313,/nchs/pressroom/states/kansas/kansas.htm Kentucky,4436113,6.8,17.5,772,33.5,1419,/nchs/pressroom/states/kentucky/kentucky.htm Louisiana,4686157,13.1,21.3,987,21.8,996,/nchs/pressroom/states/louisiana/louisiana.htm Maine,1330232,7.7,8.3,123,28.7,353,/nchs/pressroom/states/maine/maine.htm Maryland,6024752,5.6,11.9,707,33.2,2044,/nchs/pressroom/states/maryland/maryland.htm Massachusetts,6823721,2.6,3.4,242,33,2227,/nchs/pressroom/states/massachusetts/massachusetts.htm Michigan,9933445,6.7,12.3,1230,24.4,2347,/nchs/pressroom/states/michigan/michigan.htm Minnesota,5525050,5,7.6,432,12.5,672,/nchs/pressroom/states/minnesota/minnesota.htm Mississippi,2985415,12.3,19.9,587,12.1,352,/nchs/pressroom/states/mississippi/mississippi.htm Missouri,6091176,9.4,19,1144,23.6,1371,/nchs/pressroom/states/missouri/missouri.htm Montana,1038656,9.3,18.9,194,11.7,119,/nchs/pressroom/states/montana/montana.htm Nebraska,1907603,10.2,9.1,171,6.4,120,/nchs/pressroom/states/nebraska/nebraska.htm Nevada,2939254,11,16.8,498,21.7,665,/nchs/pressroom/states/nevada/nevada.htm New Hampshire,1335015,7.2,9.3,132,39,481,/nchs/pressroom/states/newhampshire/newhampshire.htm New Jersey,8978416,7.2,5.5,485,23.2,2056,/nchs/pressroom/states/newjersey/newjersey.htm New Mexico,2085432,11.3,18.1,383,25.2,500,/nchs/pressroom/states/newmexico/newmexico.htm New York,19836286,5.4,4.4,900,18,3638,/nchs/pressroom/states/newyork/newyork.htm North Carolina,10156689,11.4,13.7,1409,19.7,1956,/nchs/pressroom/states/northcarolina/northcarolina.htm North Dakota,755548,7,11.9,90,10.6,77,/nchs/pressroom/states/northdakota/northdakota.htm Ohio,11622554,6.3,12.9,1524,39.1,4329,/nchs/pressroom/states/ohio/ohio.htm Oklahoma,3921207,16.5,19.6,766,21.5,813,/nchs/pressroom/states/oklahoma/oklahoma.htm Oregon,4085989,8.3,11.9,513,11.9,506,/nchs/pressroom/states/oregon/oregon.htm Pennsylvania,12787085,7.2,12,1555,37.9,4627,/nchs/pressroom/states/pennsylvania/pennsylvania.htm Puerto Rico,3406520,,,,,, Rhode Island,1057566,4.2,4.1,49,30.8,326,/nchs/pressroom/states/rhodeisland/rhodeisland.htm South Carolina,4959822,10,17.7,891,18.1,879,/nchs/pressroom/states/southcarolina/southcarolina.htm South Dakota,861542,8.7,13.4,108,8.4,69,/nchs/pressroom/states/southdakota/southdakota.htm Tennessee,6649404,8.9,17.1,1148,24.5,1630,/nchs/pressroom/states/tenessee/tennessee.htm Texas,27904862,18.7,12.1,3353,10.1,2831,/nchs/pressroom/states/texas/texas.htm Utah,3044321,7.1,12.9,370,22.4,635,/nchs/pressroom/states/utah/utah.htm Vermont,623354,3.7,11.1,78,22.2,125,/nchs/pressroom/states/vermont/vermont.htm Virginia,8414380,9.3,12.1,1049,16.7,1405,/nchs/pressroom/states/virginia/virginia.htm Washington,7280934,5.7,9,686,14.5,1102,/nchs/pressroom/states/washington/washington.htm West Virginia,1828637,6.2,17.5,332,52,884,/nchs/pressroom/states/westvirginia/westvirginia.htm Wisconsin,5772917,6.5,11.4,664,19.3,1074,/nchs/pressroom/states/wisconsin/wisconsin.htm Wyoming,584910,11.5,17.4,101,17.6,99,/nchs/pressroom/states/wyoming/wyoming.ht
After you have chosen an input file, use the Pokemon exercise in the section above as a guide to:
Design a class for the input file that you have chosen. Choose at least 3 attributes that can be found in the file for your class. Write a constructor that takes in these attributes as parameters and saves them into instance variables. You may need to add some getters and a
toString
method as well.Declare an
ArrayList
of your class type.Read in the data from the file. You can use
Files.readAllLines
or theScanner
class.Inside a loop, split each line into its attributes and create an object for your class using its constructor. Add the object to the
ArrayList
.Do something interesting with the data using a loop, for example you could find the maximum or minimum value of an attribute or print out all the objects that have the same attribute value.
Input File Challenge: Design the class for your input file that has at least 3 attributes that can be found in the file. Then, read in the data from the file, split each line, and save the data in an ArrayList
of objects. Finally, do something interesting with the data using a loop, for example you could find the object with the max or min attribute value or print out all the objects of a certain attribute value.