Main > Free Download Search >

Free dictate software for windows

dictate

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 37
Pocket Dictate 1.3

Pocket Dictate 1.3


Pocket Dictate lets you dictate with a palm sized Pocket PC. You dictate directly on your Pocket PC using the buttons on the unit more>> Pocket Dictate lets you dictate with a palm sized Pocket PC. You dictate directly on your Pocket PC using the buttons on the unit. When done, tap send and the dictation will be compressed, encrypted and sent to your typist by email automatically. If you install Pocket Dictate you will quickly find it will replace your old dictaphone and, by using the internet to send dictations, will improve the turnaround on typing.<<less
Download (205k)
Added: 2008-11-03 License: Freeware Price:
1287 downloads
 
Other version of Pocket Dictate
Pocket Dictate 1.02NCH Swift Sound - Pocket Dictate lets you record dictation with your Pocket PC. Pocket Dictate. Pocket Dictate lets you dictate with
License:Freeware
Download (513KB)
2031 downloads
Added: 2006-10-18
DictaMail 499

DictaMail 499


FDictaMail is a comprehensive, user friendly offices Suite. more>>

FDictaMail 499 is a comprehensive, user friendly offices Suite. DictaMail-The brand new voice add-on for your e-mail system! This innovative freeware application enhances any desktop mail system (Outlook, Netscape, Lotus, etc.) with the ability to record, send and answer voice-mails. Many messages, particularly short ones, are now easier to complete. Dictating messages is up to ten times faster than typing. The DictaMail features a specialized professional multimedia kernel. In addition to ease of use, it also ensures digital voice quality. The multimedia kernel compresses the recording automatically using the Windows-standard GSM format, reducing the file to 1/10th of it's original size.

<<less
Download (5.8MB)
Added: 2003-02-26 License: Freeware Price:
downloads
Express Delegate 4.04

Express Delegate 4.04


Express Delegate is a brilliant tool which is able to manage audio files created by multiple users of Express Dictate, Dial Dictate and MSRS to send the recordings automatically or manually to multiple typists using Express Scribe more>> <<less
Download (920KB)
Added: 2009-10-09 License: Freeware Price: FREE
downloads
 
Other version of Express Delegate
Express Delegate 3.00NCH Software - Express Delegate will manage files created by multiple users of Express Dictate, DialDictate or the MSRS. Express Delegate. Express Delegate will manage files
License:Freeware
Download (341KB)
1571 downloads
Added: 2005-07-26
SDelete 1.4

SDelete 1.4


Securely overwrite your sensitive files and cleanse your free space of previously deleted files more>>
Securely overwrite your sensitive files and cleanse your free space of previously deleted files One feature of Windows NT/2000s (Win2K) C2-compliance is that it implements object reuse protection. This means that when an application allocates file space or virtual memory it is unable to view data that was previously stored in the resources Windows NT/2K allocates for it. Windows NT zero-fills memory and zeroes the sectors on disk where a file is placed before it presents either type of resource to an application. However, object reuse does not dictate that the space that a file occupies before it is deleted be zeroed. This is because Windows NT/2K is designed with the assumption that the operating system controls access to system resources. However, when the operating system is not active it is possible to use raw disk editors and recovery tools to view and recover data that the operating system has deallocated. Even when you encrypt files with Win2Ks Encrypting File System (EFS), a files original unencrypted file data is left on the disk after a new encrypted version of the file is created.
The only way to ensure that deleted files, as well as files that you encrypt with EFS, are safe from recovery is to use a secure delete application. Secure delete applications overwrite a deleted files on-disk data using techiques that are shown to make disk data unrecoverable, even using recovery technology that can read patterns in magnetic media that reveal weakly deleted files. SDelete (Secure Delete) is such an application. You can use SDelete both to securely delete existing files, as well as to securely erase any file data that exists in the unallocated portions of a disk (including files that you have already deleted or encrypted). SDelete implements the Department of Defense clearing and sanitizing standard DOD 5220.22-M, to give you confidence that once deleted with SDelete, your file data is gone forever. SDelete is presented with full source code so that you can verify yourself that it works as advertized. Note that SDelete securely deletes file data, but not file names located in free disk space.
SDelete is a command line application which takes a number of options. In any given use, it helps you delete one or more files and/or directories, or to cleanse the free space on a logical disk. SDelete accepts wild card characters as part of the directory or file specifier.
Usage: sdelete [-p passes] [-s] [-q]
sdelete [-p passes] -z [drive letter]
-p passes
Specifies number of overwrite passes
-s
Recurse subdirectories
-q
Dont print errors (quiet)
-z
Cleanse free space
Securely deleting a file that has no special attributes is relatively straight-forward: the secure delete program simply overwrites the file with the secure delete pattern. What is more tricky is securely deleting Windows NT/2K compressed, encrypted and sparse files, and securely cleansing disk free spaces.
Compressed, encrypted and sparse are managed by NTFS in 16-cluster blocks. If a program writes to an existing portion of such a file NTFS allocates new space on the disk to store the new data and after the new data has been written, deallocates the clusters previously occupied by the file. NTFS takes this conservative approach for reasons related to data integrity, and in the case of compressed and sparse files, in case a new allocation is larger than what exists (the new compressed data is bigger than the old compressed data). Thus, overwriting such a file will not succeed in deleting the files contents from the disk.
To handle these types of files SDelete relies on the defragmentation API. Using the defragmentation API SDelete can determine precisely which clusters on a disk are occupied by data belonging to compressed, sparse and encrypted files. Once SDelete knows which clusters contain the files data, it can open the disk for raw access and overwrite those clusters.
Cleaning free space presents another challenge. Since FAT and NTFS provide no means for an application to directly address free space, SDelete has one of two options. The first is that it can, like it does for compressed, sparse and encrypted files, open the disk for raw access and overwrite the free space. This approach suffers from a big problem: even if SDelete were coded to be fully capable of calculating the free space portions of NTFS and FAT drives (something thats not trivial), it would run the risk of collision with active file operations taking place on the system. For example, say SDelete determines that a cluster is free, and just at that moment the file system driver (FAT, NTFS) decides to allocate the cluster for a file that another application is modifying. The file system driver writes the new data to the cluster, and then SDelete comes along and overwrites the freshly written data: the files new data is gone. The problem is even worse if the cluster is allocated for file system metadata since SDelete will corrupt the file systems on-disk structures.
The second approach, and the one SDelete takes, is to indirectly overwrite free space. First, SDelete allocates the largest file it can. SDelete does this using non-cached file I/O so that the contents of the NT file system cache will not be thrown out and replaced with useless data associated with SDeletes space-hogging file. Because non-cached file I/O must be sector (512-byte) aligned, there might be some left over space that isnt allocated for the SDelete file even when SDelete cannot further grow the file. To grab any remaining space SDelete next allocates the largest cached file it can. For both of these files SDelete performs a secure overwrite, ensuring that all the disk space that was previously free becomes securely cleansed.
On NTFS drives SDeletes job isnt necessarily through after it allocates and overwrites the two files. SDelete must also fill any existing free portions of the NTFS MFT (Master File Table) with files that fit within an MFT record. An MFT record is typically 1KB in size, and every file or directory on a disk requires at least one MFT record. Small files are stored entirely within their MFT record, while files that dont fit within a record are allocated clusters outside the MFT. All SDelete has to do to take care of the free MFT space is allocate the largest file it can - when the file occupies all the available space in an MFT Record NTFS will prevent the file from getting larger, since there are no free clusters left on the disk (they are being held by the two files SDelete previously allocated). SDelete then repeats the process. When SDelete can no longer even create a new file, it knows that all the previously free records in the MFT have been completely filled with securely overwritten files.
To overwrite file names of a file that you delete, SDelete renames the file 26 times, each time replacing each character of the files name with a successive alphabetic character. For instance, the first rename of "foo.txt" would be to "AAA.AAA".
The reason that SDelete does not securely delete file names when cleaning disk free space is that deleting them would require direct manipulation of directory structures. Directory structures can have free space containing deleted file names, but the free directory space is not available for allocation to other files. Hence, SDelete has no way of allocating this free space so that it can securely overwrite it.
<<less
Download (24KB)
Added: 2006-05-27 License: Freeware Price:
912 downloads
Express Delegate Dictation File Manager 3.00

Express Delegate Dictation File Manager 3.00


Manage files created by ExpressDictate, DialDictate or MSRS to send to typists. more>> Express Delegate will manage files created by multiple users of Express Dictate, DialDictate or the MSRS to send the recordings automatically or manually to multiple typists using Express Scribe.
With Express Delegate, all users send their recordings to a single folder on your computer network or an Internet server. Express Delegate then will regularly scan these folders and automatically (or manually) forward the recordings to the correct typist depending on the sender. This gives much more control over the routing of recordings.
<<less
Download (341KB)
Added: 2007-02-03 License: Freeware Price: Free
1011 downloads
Galactic Gladiator Currently 1.0.1

Galactic Gladiator Currently 1.0.1


Galactic Gladiator is a scrolling space shooter inspired by several timeless classics. Beyond improved graphics and sound, modern technology allows the inclusion of new game-play mechanics that add st more>>
At its core, Galactic Gladiator is a top-down, vertically scrolling space shooter. The basic game play is similar to many classic shooters: destroy all of the attacking enemies utilizing your ship?s weaponry and defences, both of which can be improved by collecting various power-ups. The game is certainly a ?shooter?, although it isn?t exactly the typical ?arcade? type. While it still appeals to classic shooter fans, we?ve included several elements to make success more about skill, practice and strategy.
Missions in Galactic Gladiator are separated into three types: ?Levels?, ?Skirmishes? and ?Challenges?.
Levels use the classic shooter model: a sequence of missions interspersed with plot segments. These levels finish with large ?boss? battles that the shooter genre is famous for.
Skirmishes provide a better way to prove your skills: endless waves of enemies will be thrown at you, becoming denser and denser until you eventually die. The amount of damage that you can do to the attacking forces will dictate your score, and is highly related to the amount of time that you can survive.
Challenges are generally shorter, and concentrate on one particular skill. Some of these are set up like training missions: ?Lasers 1?, ?Lasers 2? and ?Lasers 3? are progressively harder challenges aimed at helping the player to become proficient with the ?lasers? weapon.
For the more competitive players, the web site includes an ?online high score database?. One can submit his/her scores to this database either via a web interface, or right from within the game. These scores are then available online (associated with the player?s online user name), and players can see who the top people are in each mission, or simply track their own progress. As well, all of your scores will give you ?ranking points? based on how well you do compared to other players. When summed, ranking points determine the overall ranking order of all players.
<<less
Download (5000K)
Added: 2008-09-07 License: Freeware Price: $0.00
411 downloads
AutoShred - PDF 3.1

AutoShred - PDF 3.1


Windows-based software for protecting Adobe (PDF) file attachments. more>> To conduct business today, you must routinely share digital files containing sensitive data with an extended network of collaborators. Such data may involve your intellectual property, business plans, employees, customers, partners, and even your financials. Sharing this type of information without any protection is an invitation for disaster. If it were to fall into the wrong hands or used unethically, this information could cause serious damage to your business. AutoShred - PDF is a simple-but-powerful application that allows you to share Adobe files and impose automatic shred dates. AutoShred ?PDF also encrypts the files for safe online transmission. You can use AutoShred - PDF interface from a desktop icon, the Start menu, and from Outlook and Lotus?f you wish to create a secure file and include it as an email attachment. With AutoShred - PDF you dictate the date when a shared file automatically self-destructs. In addition, AutoShred - PDF always blocks the recipient? ability to cut-and-paste, drag-and-drop, and perform screen captures. To view content secured by AutoShred ?PDF, a recipient uses Pinion Receiver. Pinion Receiver is a FREE client application that lets recipients view and work with secured files, controls access to the files, enforces assigned permissions, and removes the files upon the expiration date. Pinion Receiver allows recipients to view and work with files that are secured with any Pinion Software product (AutoShred - Doc, AutoShred ?PDF, Pinion Desktop Packager, SecureMail, SecureCD, or SecureShare). When used from Outlook or Notes, AutoShred ?PDF inserts a link for your recipients to obtain the free Pinion Receiver. If used, in stand-alone mode, you must direct your recipients to www.pinionsoftware.com so that they can get the free Pinion Receiver.<<less
Download (8.53MB)
Added: 2008-07-21 License: Freeware Price: Free
466 downloads
Macrobiotic Diet 1.0

Macrobiotic Diet 1.0


The Macrobiotic Diet is considered to help men and women achieve a natural balance in their lives, allowing them to live longer more>>
The Macrobiotic Diet is considered to help men and women achieve a natural balance in their lives, allowing them to live longer The macrobiotic diet is part of an overall health and wellness philosophy originating in the Far East.
The Macrobiotic Diet is considered to help men and women achieve a natural balance in their lives, allowing them to live longer and more actively.
The term macrobiotics was first used by the Ancient Greek philosopher Hippocrates, and literally means "great life." Proponents of the macrobiotic lifestyle emphasize consuming a simple and natural diet.
In the 1920s, the Japanese philosopher, George Ohsawa created the first macrobiotic diet. In an attempt to cure himself of disease, Ohsawa began consuming a strict diet, made up of brown rice, sea vegetables, and water.
Ohsawa soon believed that this diet helped to cure him of his disease, and began creating ten different versions of his macrobiotic diet, which focused on consumption of whole grains, low-fat foods, and certain fruits and vegetables.
The Concept of Yin and Yang: George Ohsawa?s macrobiotic diet is based on the Japanese concept of yin and yang. This concept dictates that all parts of life are governed by two oppositional forces, known as yin and yang.
In order to maintain a natural balance in life, these two forces must be kept in balance, particularly through diet.
The macrobiotic diet focuses on eliminating foods that have large amounts of either yin or yang in them, in favor of foods with more balanced levels of these two forces. All foods are classified according to their taste and texture: yin foods tend to be more sweet, while yang foods tend to be salty.
Followers are then asked to eat only those foods that have the greatest balance of yin and yang.
<<less
Download (622KB)
Added: 2007-07-04 License: Freeware Price:
869 downloads
FreeUndelete 2.0.0745

FreeUndelete 2.0.0745


Gets back files in case of accidental deletion more>>
Gets back files in case of accidental deletion FreeUndelete is a useful and helpful file recuperator utility. FreeUndelete is a freeware data recovery program for deleted files. In case of accidental deletion of files on a NTFS file system (used by default in Windows XP, 2000 and NT) FreeUndelete is the utility to help.
It is our pleasure to emphasize that FreeUndelete is free. There is no charge, direct or hidden, to download and use a fully functional copy of the program. The program does not install any spyware or adware along with it. It does not populate users desktop with pop-up ads or forcefully subscribe user to mailing lists.
A deleted file is essentially an area on disk designated as free and ready to accept data (such as contents of some other file). Luckily, unless the area has already been overwritten, it still holds the contents of the deleted file. Due to this fact it is possible to undelete files.
There are just a few things we ask FreeUndelete users to do:
- Read the Proper Usage Techniques section prior to downloading and using the program. This is important for avoiding further damage to the lost data;
- Comment on the software and make feature requests at FreeUndelete Customer Support page;
- If happy with the utility, share the information about FreeUndelete with others, place a link to FreeUndelete home page, etc.
Proper Usage Techniques
A deleted file is essentially an area on disk designated as free and ready to accept data (such as contents of some other file). Luckily, unless the area has already been overwritten, it still holds the contents of the deleted file. Due to this fact it is possible to undelete files.
This fact also dictates the following procedure for using FreeUndelete:
Minimize (and whenever possible, stop) any activity on the disk you are going to undelete files from! Remember that writing to that disk can damage the contents of the deleted files. Examples of disastrous activity include: copying files to the disk, installing programs there or running programs that use the disk as their swap media.
Download and install FreeUndelete. Whenever possible, save the setup executable and install the program to a disk that does not hold files you need to undelete. Run and use FreeUndelete.
<<less
Download (858KB)
Added: 2007-11-08 License: Freeware Price:
5055 downloads
How-to Install A Water Heater 1.0

How-to Install A Water Heater 1.0


There are two types of conventional water heaters, gas and electric. An electric water heater can be used almost anywhere more>>
The conventional water heaters are the gas and the electric type ones. An electric water heater can be used almost anywhere. A gas water heater is most likely to be installed in a home that already uses gas for another appliance such as a furnace or stove.
Building codes may dictate the placement of gas water heaters, restricting them to areas outside of normal home activity.
It is likely that if you are replacing a water heater, youll simply replace it with the same type of unit that was already there. There may be exceptions to this rule, however, for a variety of reasons. In any case, if you choose to replace an electric unit for a gas unit?or vise versa?bring in a professional to do the job. Installing or removing gas lines is not a project for the do-it-yourselfer.
<<less
Download (1.62MB)
Added: 2006-11-30 License: Freeware Price:
1063 downloads
Hotspots Word Game 1.5.3

Hotspots Word Game 1.5.3


Hotspots is a word game that allows the user real control over the game options. Play against a computer opponent with a vast vocabulary more>> Hotspots is a word game that allows the user real control over the game options. Play against a computer opponent with a vast vocabulary. The computer analyses the board efficiently using sophisticated algorithms to find the most competitive move. The level of difficulty can be set to thrash you mercilessly or to make the computer behave like a dunce. Save and re-play games, analysing each move to see where you went wrong. Create a game report, showing the words on the board, the top ten moves and the move that was played at each stage of the game. Decide on the placement of premium and penalty squares on the board, allowing Scrabble or Yahoo Literati to be played. Set the value of letters and dictate the frequency with which they are allowed to appear in the game. Enjoy a user interface free of irritating animations and sounds, respecting the abstract nature of the game and the need to concentrate on the board<<less
Download (1.0M)
Added: 2008-10-26 License: Freeware Price:
364 downloads
Microsoft Exchange 2000 System Attendant Incorrect 1.0

Microsoft Exchange 2000 System Attendant Incorrect 1.0


The Microsoft Exchange System Attendant is one of the core services in Microsoft Exchange. It performs a variety of functions related to the on-going maintenance of the Exchange system more>> The Microsoft Exchange System Attendant is one of the core services in Microsoft Exchange. It performs a variety of functions related to the on-going maintenance of the Exchange system. To allow remote administration of an Exchange Server using the Exchange System Manager Microsoft Management Console (MMC) snap in, the System Attendant makes changes to the permissions on the Windows Registry to allow Exchange Administrators to remotely update configuration settings stored in the Registry.

There is a flaw in how the System Attendant makes these Registry configuration changes. This flaw could allow an unprivileged user to remotely access configuration information on the server. Specifically, this flaw inappropriately gives the "Everyone" group privileges to the WinReg key. This key controls the ability of users and groups to remotely connect to the Registry. By default, only Administrators are given the ability to remotely connect to the Registry, by granting permissions on this key.

The flaw does not grant any abilities beyond the ability to connect remotely. However, an attacker?s ability to make changes to the Registry once they have successfully connected would be dictated by the permissions on the specific keys within the Registry itself. Thus, while this vulnerability does not itself give an attacker the ability to change Registry settings, it could be used in conjunction with inappropriately permissive registry settings to gain access to, and make changes to a systems Registry.

<<less
Download (5.6M)
Added: 2008-10-24 License: Update Price:
364 downloads
DEGMA Audio Handler FREE VERSION 0.5

DEGMA Audio Handler FREE VERSION 0.5


Cut, Merge, Convert, Record, Rip more>> DEGMA Audio Handler version 0.5 Free is freeware.
Coded BY me (Mostafa Mohamed El-Sayed 3rd CSE Alex,Egypt).
* THIS SOFTWARE IS DISTRIBUTED AS IS WITHOUT WARRANTY AS TO PERFORMANCE OR MERCHANTABILITY OR ANY OTHER WARRANTIES WHETHER EXPRESSED OR IMPLIED. BECAUSE OF THE VARIOUS HARDWARE AND SOFTWARE ENVIRONMENTS INTO WHICH THIS PROGRAM MAY BE PUT, NO WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE IS OFFERED. GOOD DATA PROCESSING PROCEDURE DICTATES THAT ANY PROGRAM BE THOROUGHLY TESTED WITH NON-CRITICAL DATA BEFORE RELYING ON IT. THE USER MUST ASSUME THE ENTIRE RISK OF USING THE PROGRAM.
* DEGMA Audio Handler version 0.5 Free may not be sold nor be used with in any other program, with the exception that the software may be distributed freely via media intended to make DEGMA Audio Handler version 0.5 Free available to the public but you must refer to this web site:
http://lordms12.googlepages.com/degma
* You are not allowed to reverse engineer or change the contents of the program files and this setup program.
Features:
* Minimize to tray.
* Change the program theme, background, button shapes, and more by click on its icon in the title bar.
* Play the following audio types: AIFF, AU, AVI, GSM, MIDI, MP2, MP3, QT, RMF, WAV.
* Cut multi pieces from the following supported formats to one file:
1- audio: mp3, wav, avi, the following are supposed to work(did not tested)AIFF, AU, GSM, MP2, QT, RMF
2- video(will not be shown or heared because it is not the program goal): AVI, MPEG-1, QT, H.261, H.263
* Merge many MP3(bit rate
<<less
Download (11.9MB)
Added: 2008-10-28 License: Freeware Price:
370 downloads
VoPorta Doc 1.03

VoPorta Doc 1.03


VoPorta Doc is a free and interactive voice response system which makes the practice of medicine easier and more profitable more>> VoPorta Doc is a free and interactive voice response system which makes the practice of medicine easier and more profitable

VoPorta Doc is a free and interactive voice response system which makes the practice of medicine easier and more profitable. Presently, VoPorta Doc allows you to bill, dictate, memo, and email using any phone, 24 hours a day. VoPorta Doc is flexible enough to adapt to your individual practice method.
As long as your front and back office can receive email, youre in business! With many more exciting features on the way such as prescription writing, CPT code look-up, and voice ordering, VoPorta Doc can help move your practice into the future.

<<less
Download (3.9MB)
Added: 2008-10-06 License: Freeware Price: FREE
382 downloads
Spyware Terminator 2.6.1.239

Spyware Terminator 2.6.1.239


Spyware Terminator is such an effective tool that includes Real-Time Protection, HIPS, and antivirus, designed to remove spyware, adware, trojans, keyloggers, home page hijackers, and malware threats even dangerous threats like Conficker, Mail Skinner or Trojan Vundo. more>>

Spyware Terminator 2.6.1.239 is such an effective tool that includes Real-Time Protection, HIPS, and antivirus, designed to remove spyware, adware, trojans, keyloggers, home page hijackers, and malware threats even dangerous threats like Conficker, Mail Skinner or Trojan Vundo.

Spyware Terminator is easy-to-use, requires minimal PC resources, and performs ultra fast scans. Protect your computer with powerful real-time protection shield, advanced system scanning and safe quarantine for found spyware. Scan your computer manually or schedule full system sweeps.

Perform in-depth scans of your computer's hard drives, memory, process, registry and cookies to seek out and remove all known spyware threats. Includes optional Web Security Guard which displays website reviews and threat level to help identify potentially dangerous Web sites.

Major Features:

  1. Free Spyware Removal
    • Spyware Terminator will scan your computer for known threats and report findings in a manner that is easy to read and interpret. Every entry is given a rating and a classification, which makes it very easy to decide if a detected item should be removed. Unlike some free software titles, Spyware Terminator will remove all threats for free.
  2. Free Automatic Updates
    • Spyware Terminator offers the ability to download and install updates automatically. Users are free to dictate how often Spyware Terminator checks for updates and how they are applied.
  3. Free Scheduled Scans
    • Spyware Terminator gives users the ability to schedule spyware scans on a regular basis to ensure computer integrity. Scans can be scheduled on either a daily or a weekly basis at any hour of the day.
  4. Free AntiVirus Integration
    • Spyware Terminator has included the popular award winning open-source antivirus, Clam AntiVirus (ClamAV), for optional integration to achieve a higher level of security. ClamAV can be integrated into spyware scans, updates and the real-time protection.
  5. Free Support
    • Not only is the Spyware Terminator free, but support is included for free as well. Support is provided through e-mail and the public forum. Our highly qualified support team responds to all issues in a timely manner.
  6. Free for Personal & Commercial Use
    • Spyware Terminator is licensed for free for both home and business use.

Enhancements: Adds recommend tips after Spyware Terminator startup and new Web Security Guard for Firefox.


<<less
Download (631.7KB)
Added: 2009-09-20 License: Freeware Price: Notavailable
downloads
 
Other version of Spyware Terminator
Spyware Terminator 2.2.3.444Users are free to dictate how often Spyware Terminator checks for updates and how they are applied Spyware Terminator gives users the ability to schedule spyware scans on a regular basis to ensure
License:Freeware
Download (9.37MB)
109956 downloads
Added: 2008-07-15
Secleted [ 0 ] software to compare
  • Page: 1 of 3
  • 1
  • 2
  • 3