public static void Load()
		{
			string idxPath = Path.Combine( "Saves/Custom", "Bounty.idx" );
			string binPath = Path.Combine( "Saves/Custom", "Bounty.bin" );

			if (File.Exists(idxPath) && File.Exists(binPath))
			{
				// Declare and initialize reader objects.
				FileStream idx = new FileStream(idxPath, FileMode.Open, FileAccess.Read, FileShare.Read);
				FileStream bin = new FileStream(binPath, FileMode.Open, FileAccess.Read, FileShare.Read);
				BinaryReader idxReader = new BinaryReader(idx);
				BinaryFileReader binReader = new BinaryFileReader(new BinaryReader(bin));

				// Start by reading the number of duels from an index file
				int orderCount = idxReader.ReadInt32();

				for (int i = 0; i < orderCount; ++i)
				{
					BountyEntry be = new BountyEntry();
					// Read start-position and length of current order from index file
					long startPos = idxReader.ReadInt64();
					int length = idxReader.ReadInt32();
					// Point the reading stream to the proper position
					binReader.Seek(startPos, SeekOrigin.Begin);

					try
					{
						be.Deserialize(binReader);

						if (binReader.Position != (startPos + length))
							throw new Exception(String.Format("***** Bad serialize on Bounty[{0}] *****", i));
					}
					catch
					{
						//handle
					}
					if ( be != null && be.Owner != null )
						Table.Add( be.Owner, be );
				}
				// Remember to close the streams
				idxReader.Close();
				binReader.Close();
			}

		}
		public static void Add( Mobile owner, int amount )
		{
			if ( owner == null )
				return;
			BountyEntry entry = Table[owner] as BountyEntry;
			if ( entry == null )
			{
				entry = new BountyEntry( owner );
				Table.Add( owner, entry );
			}
			entry.Add( amount );
		}