
Language lt_LT
===============

``faker.providers.address``
---------------------------

::

	fake.longitude()
	# Decimal('10.773563')

	fake.building_number()
	# u'056'

	fake.street_address()
	# u'7448 Stankevi\u010dius Groves Suite 443'

	fake.postalcode_plus4()
	# u'87147-6066'

	fake.city_prefix()
	# u'East'

	fake.military_ship()
	# u'USNS'

	fake.city()
	# u'Pociusberg'

	fake.zipcode_plus4()
	# u'67914-7927'

	fake.state_abbr()
	# u'HI'

	fake.latitude()
	# Decimal('-24.812508')

	fake.street_suffix()
	# u'Ford'

	fake.city_suffix()
	# u'view'

	fake.military_dpo()
	# u'Unit 7953 Box 3088'

	fake.country_code(representation="alpha-2")
	# u'ER'

	fake.country()
	# u'Gabon'

	fake.secondary_address()
	# u'Suite 558'

	fake.geo_coordinate(center=None, radius=0.001)
	# Decimal('-75.672222')

	fake.postalcode()
	# u'24771'

	fake.address()
	# u'128 Dainius Crescent\nEidvil\u0117burgh, ME 16640'

	fake.state()
	# u'Oregon'

	fake.military_state()
	# u'AE'

	fake.street_name()
	# u'Dainius Plains'

	fake.zipcode()
	# u'09602'

	fake.postcode()
	# u'81262'

	fake.military_apo()
	# u'PSC 3294, Box 5525'

``faker.providers.automotive``
------------------------------

::

	fake.license_plate()
	# u'008 8KT'

``faker.providers.bank``
------------------------

::

	fake.bban()
	# 'VMCU9841937264839'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB55WPET4099634599801'

``faker.providers.barcode``
---------------------------

::

	fake.ean(length=13)
	# u'5706793262773'

	fake.ean13()
	# u'6550534319931'

	fake.ean8()
	# u'89361450'

``faker.providers.color``
-------------------------

::

	fake.rgb_css_color()
	# u'rgb(161,202,60)'

	fake.color_name()
	# u'DarkCyan'

	fake.rgb_color()
	# u'129,191,234'

	fake.safe_hex_color()
	# u'#ccee00'

	fake.safe_color_name()
	# u'olive'

	fake.hex_color()
	# u'#c600e7'

``faker.providers.company``
---------------------------

::

	fake.company()
	# u'Kalvelis Inc'

	fake.company_suffix()
	# u'Ltd'

	fake.catch_phrase()
	# u'Ergonomic zero administration Graphic Interface'

	fake.bs()
	# u'optimize rich solutions'

``faker.providers.credit_card``
-------------------------------

::

	fake.credit_card_security_code(card_type=None)
	# u'818'

	fake.credit_card_provider(card_type=None)
	# u'Mastercard'

	fake.credit_card_full(card_type=None)
	# u'VISA 16 digit\nMartynas Vsiliauskas\n4328735942539121 12/22\nCVC: 785\n'

	fake.credit_card_expire(start="now", end="+10y", date_format="%m/%y")
	# '10/22'

	fake.credit_card_number(card_type=None)
	# u'3581697434978007'

``faker.providers.currency``
----------------------------

::

	fake.cryptocurrency_code()
	# 'DASH'

	fake.currency_code()
	# 'COP'

	fake.currency_name()
	# 'Aruban florin'

	fake.cryptocurrency_name()
	# 'Litecoin'

	fake.cryptocurrency()
	# ('BCN', 'Bytecoin')

	fake.currency()
	# ('CLP', 'Chilean peso')

``faker.providers.date_time``
-----------------------------

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 9, 10, 8, 9, 12)

	fake.time_series(start_date="-30d", end_date="now", precision=None, distrib=None, tzinfo=None)
	# <generator object time_series at 0x7f6bca1d49b0>

	fake.date_between_dates(date_start=None, date_end=None)
	# datetime.date(2018, 8, 16)

	fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
	# datetime.datetime(2017, 11, 17, 10, 42, 58)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2013, 4, 22)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 14, 17, 32, 54)

	fake.past_date(start_date="-30d", tzinfo=None)
	# datetime.date(2018, 7, 17)

	fake.day_of_week()
	# 'Monday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2015, 1, 23, 23, 37, 37)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(1994, 6, 9)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2000, 3, 20, 0, 47, 57)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '2009-03-26'

	fake.am_pm()
	# 'PM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2018, 8, 16, 9, 28, 16)

	fake.date_object(end_datetime=None)
	# datetime.date(1996, 6, 7)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 6, 12)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1990-04-01T11:21:44'

	fake.future_date(end_date="+30d", tzinfo=None)
	# datetime.date(2018, 8, 25)

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2003, 11, 4)

	fake.month()
	# '12'

	fake.year()
	# '2013'

	fake.day_of_month()
	# '12'

	fake.unix_time(end_datetime=None, start_datetime=None)
	# 413454659

	fake.timezone()
	# u'Asia/Kuwait'

	fake.century()
	# u'I'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1977, 4, 18)

	fake.time_object(end_datetime=None)
	# datetime.time(13, 8, 30)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 2, 24, 20, 56, 25)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1983, 5, 4, 5, 42, 31)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '10:03:20'

	fake.date_this_month(before_today=True, after_today=False)
	# datetime.date(2018, 8, 1)

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 8, 3, 9, 36, 41)

	fake.month_name()
	# 'December'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1691, 1, 3, 5, 22, 54)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(5639, 17396)

``faker.providers.file``
------------------------

::

	fake.unix_device(prefix=None)
	# u'/dev/xvdg'

	fake.mime_type(category=None)
	# u'audio/webm'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/sit/eos.mp3'

	fake.unix_partition(prefix=None)
	# u'/dev/sdx2'

	fake.file_name(category=None, extension=None)
	# u'pariatur.css'

	fake.file_extension(category=None)
	# u'txt'

``faker.providers.internet``
----------------------------

::

	fake.ascii_free_email(*args, **kwargs)
	# 'arturas38@yahoo.com'

	fake.image_url(width=None, height=None)
	# u'https://dummyimage.com/902x1017'

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'marija74@gaiciunas-butkus.com'

	fake.url(schemes=None)
	# u'http://pocius.org/'

	fake.ipv4_private(network=False, address_class=None)
	# '172.20.84.119'

	fake.user_name(*args, **kwargs)
	# u'pociusarijus'

	fake.uri_extension()
	# u'.html'

	fake.uri_page()
	# u'faq'

	fake.free_email_domain(*args, **kwargs)
	# u'yahoo.com'

	fake.safe_email(*args, **kwargs)
	# u'stankeviciussmilte@example.com'

	fake.ascii_email(*args, **kwargs)
	# 'poskaaurelija@yahoo.com'

	fake.ipv4_network_class()
	# u'a'

	fake.ipv4_public(network=False, address_class=None)
	# '171.215.133.10'

	fake.ascii_company_email(*args, **kwargs)
	# 'agne02@nauseda-sakalauskas.com'

	fake.domain_name(*args, **kwargs)
	# u'kalvaitis.com'

	fake.ipv4(network=False, address_class=None, private=None)
	# '225.192.64.93'

	fake.domain_word(*args, **kwargs)
	# u'povilonis'

	fake.slug(*args, **kwargs)
	# u'mollitia-et'

	fake.uri_path(deep=None)
	# u'posts'

	fake.company_email(*args, **kwargs)
	# u'benasgaiciunas@kazlauskas.com'

	fake.uri()
	# u'https://gagys.com/register.html'

	fake.ipv6(network=False)
	# 'fa33:7be9:7d5e:726b:721b:5a41:ec62:b74'

	fake.free_email(*args, **kwargs)
	# u'vigilijanagys@gmail.com'

	fake.ascii_safe_email(*args, **kwargs)
	# 'mkazlauskas@example.org'

	fake.mac_address()
	# u'47:95:9f:7b:0e:37'

``faker.providers.isbn``
------------------------

::

	fake.isbn10(separator="-")
	# u'0-16-157767-9'

	fake.isbn13(separator="-")
	# u'978-0-88578-899-6'

``faker.providers.job``
-----------------------

::

	fake.job()
	# 'Buyer, industrial'

``faker.providers.lorem``
-------------------------

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Ab iste illum. Sunt praesentium expedita eum sit earum voluptatibus.\nDeserunt quos ullam accusamus excepturi quas totam eos. Amet ea vero ad deserunt neque cum.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Ad ullam exercitationem voluptates. Accusantium voluptatum hic ex officia.',
	#     u'Quia facilis nihil ratione ea. Tempora esse error quam laboriosam.',
	#     u'Eum est ad fugit sint. Rerum sed quidem.']

	fake.words(nb=3, ext_word_list=None)
	# [u'saepe', u'libero', u'possimus']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Architecto delectus aliquam tenetur.',
	#     u'Aut animi eligendi ducimus molestiae quaerat nemo veniam.',
	#     u'Aliquam voluptatibus eligendi cumque.']

	fake.word(ext_word_list=None)
	# u'eveniet'

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Ratione provident harum nihil. Asperiores maxime earum ullam praesentium explicabo impedit recusandae. Eius fugiat ea cum est.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Odio delectus officia beatae deleniti consequuntur aperiam.'

``faker.providers.misc``
------------------------

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'du0N9mE3$&'

	fake.locale()
	# u'vi_VN'

	fake.binary(length=1048576)
	# bytearray(b'R\x8f-W\x9e\xc2\xbf\xff\xd5\x84\xbd%\xc9\xbe>\xd0\xef\xbe\xfb\xb5h\xc1\xe0\xfdP\x92{\xcd\x1cr\xa8U5\x94\xd3,\xe5\x0f\x93\xd6\xd2\xa7\xa0\x9b\xae\x81y\x95\xc5/S\x7f[\x0f\xb3mU\xeb@\xbe\x01\xc8\x8e\xba$Zg\xa9\xad\xf3\xfb\x9c\xea\xe1\xe3\xa9\x92\x90s\x08o\x9fI\'k\x15\xca\xc5\x91\x98\xe7Hg\x02\x11\x87\xb6\xe3\xc1\xa8\x82\xf9\xfd\x03ID\x9cg\t;\x05\x87HR\xf6\xca\x82f\x06\x7fe\xbb\xdc\x171c\xab\xa1\xfd\xa3z\x16\xad\x85\xd2\xc4\xae\xa8\x8a\x8a\xef6R\t\x98\x1b\xce\x1c\xce\x0b2\xe5\xe8\xfa\xe3\'S\'\xc1\xfeF\xb51a\x9c\xa4Z&g\x1d\xdfkfc\x07\xae\x8b\xa8Wi7f~D\x00\xca3#ZwR$\x9c\xe8\xb9i\xc9\xdeX\x1f\xa4\xe1\x9e\xbfv\x88q\x8aL\xb07}\xd2\xadu\x13L\xa0\x92SQ;\xbc\xd5\x1e`\xd4\x83\xd6p\xca\xd1%\xfe\xcbS\xfa\xc6A\x1c\\\xaa=\x93\xeap\x9d\\\xf24D\x04S\xd12\xa8\xff\xe9\x82\xf6\xd2\xddU\xe2\x14+\x1e\x05K\xc8\xca\xd5\xc0D\xb7Hc\xe5v\x9e\xf06\x8bQ\xf5\xdb\x92\x82\x82\xb4[n\x174\x07l\x84\xa6\xa5\xb9y\xfa\xc9\x9f\xf9\xba=F\xf2\xbb\xb0{/\xb2\x1c\xf0<\xad\xe2\xb4W\r7:\xda\x88\x93\x16\xb0\x95\x82np\x047\xf2\x16\xbe\xb2\xf3?k\xa6\xd7\x80\xd8T\x00\x83\x14\x13P\x05\xb2\xcc8\xb1\xf7\xa6Q\x1a\xf3\xc8\xef\xdd,\xa6\x06F|hK\xdbT\xd2;e\x18`\xf4\x1a%\xbai\xc8a\xac\x9d\xd2\xf6\xea\xd7\x85\x18\xb7\xa2Th\xb9cD, V\xc5\x13\x0e\xa0!\xc9#\xc0\x1b\x0f5H\x1f\xc5\x1ar\xfdh\x98?~\xf2\xdb\n\xfd\x8d,\xcc,\xdbA\x9dnd\xab`\x9cR\xf1&5QZ=7\xceP\x1b\x81\xc2\x92\x94l\x10?x\x9dk\xc9`\xcbu\xdc\xcf"\x1c%\xa5wD:\x80\x8e\xeb]\xf2\xec\xca\xfe`s\x82\xb0\xcfx\x8e:r\xa6\t\xe4"\x96\xe0 \xa2\x08a\x8aeN\xfeau<0\xaf\xf7y\x00\xa7"\xe0\xc7\t\x00\xd7\x04ih\xe8\xe3\xaf\x95\x01\xa6;\xd6\xb8s-\x8dQ\xcc\x03\x01\xb0\xffD\xd2#\xdd\x07\x17\x95\xa1\x04\xeb\xbc\x92\xae\xacJ\xe1\x98\xe9\xbc\xfd\xecX\xfa\xdaPiI0|\x11\xb16_B\xc5)m\xd2\x02@\x0c\xa2\x07~C\x7fV\x8c\xaf)\x91\x13\x1a\x01\xc7\x81\xfd\r\xac\x8f\xc6\n\xfa{B\x01\xba\xb1\xe6\xfcq\x83\xa4$\xf7\x89\xf3\xf03\xf26\xf0\x18\xf7\xe6\xf6\x94tx\xef\x0b\xba\xa9]%B/\xbb\x1cp\x92!\x9e1\xf9\x1f\xa0\xa6\x1e\xe4\x85\xfd\xde\x97I\xb7\xce\x17^\x0e\xb7F\x00D\x0f3\xf3`\xd2\xba\x7f\xf4\xb9il\xbc\x94#Bl\xdc\xb94\xf8\xb5\xc4\xf4(\xd0\xc9\xac\xae\x1d\xca\xdbe} \x85)I\xf6\x05\xc4\x05P\x1b\xc0\xcc1j\xdf\x86\x1f\xb8~\x1e\x11\xbc\xf4\xf1\xc3\xf29\xb4\xe4\x1c\'O@s\xa5\xe8\xe4\xb1\x9b\x9f\x93\xee1\xa9\x13z\x9c\x0e\x8a\xdf|\x9b2\x94\xf0\xca\xd8(b\xef\x80\xd3\xee\x8a:TQ\xd5[\xce\xc2K\xd0f~\x86\x01\xb9K\xac(v\x85uz\xd6\xad\xb3h\x17fg\xb2\xad\xcb\xfb=\xb4;4:>\xac\x80\x103\x81\xf2\xb1~i^\x98\xe9Y\x1f\r\xe5\x9aTB\xcf\xd8TZ\x86\xf3#\x8c;\x99\x86\xe9\xda\xc8\x82\xc4!\x04\xbd6\tqs\xa3\x04\x9c\xc8b\x86!\xca\xdaHX\xb7\xc3Jh:x\xe3J\xd7=4\xe5\xc1\x9b\xe3z\xcd\x11\x13M\xa7\xe7\xb6\x04u\xbb\x9a\xb2\xfa\x01\t\xa8\xd2kO_D\t\x89\xfc#\xae4\xed<L\x8a\x17\x12\xa3[\x93w\x9d}\xb7\xc69\xd3/\x85M\xf22(\xd9\xbe\x8a\xb4\xf9d\x87\xad\x14\x07\xe3\x15\x1b\x80[\xdbM\xa8\xa5h\xc8h/\x7f\\\x04\xad\xd1\x97//I\xd4\x1a\xd9\xfb#X\xa0fI\x07\x85\xfe:y\xc6\x01\x83]r\xd1\xd2z\xbb3l\x19E\x8d\xd9P,J\xee\x82\x0e\xa1\xc7<\x1c@\xaa\x15\xcf&\x14\x88\x8a\x06\xfd\xb4\x9d\xb7\x16\x8b\x99\xbc\xcc\x0e\xc32U\xa9\\\x99\xc9\x15\x92!\xc6\x94\xe0|V')

	fake.md5(raw_output=False)
	# '8ba96522dcf6f38e3f60818bdc2bcc88'

	fake.sha1(raw_output=False)
	# 'bbedabb41c60b72475fa36d1b659649bebb1c3a8'

	fake.null_boolean()
	# False

	fake.sha256(raw_output=False)
	# 'ae5227d8014451d72bcba176e5dbfc84dc59bfb93642c06051bfcf02656cd2a8'

	fake.uuid4()
	# 'ffd46d9b-8489-45dc-cae1-1dabc0aa3f59'

	fake.language_code()
	# u'az'

	fake.boolean(chance_of_getting_true=50)
	# True

``faker.providers.person``
--------------------------

::

	fake.last_name_male()
	# u'Ginzburgas'

	fake.name_female()
	# u'Julius Gai\u017eauskas'

	fake.prefix_male()
	# u''

	fake.prefix()
	# u''

	fake.name()
	# u'\u017dygimantas Po\u0161ka'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Ineta Butkus'

	fake.first_name()
	# u'Vilt\u0117'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Justina'

	fake.first_name_female()
	# u'Gediminas'

	fake.last_name_female()
	# u'Gai\u017eauskas'

	fake.last_name()
	# u'Naru\u0161is'

	fake.prefix_female()
	# u''

``faker.providers.phone_number``
--------------------------------

::

	fake.phone_number()
	# u'+37078071575'

	fake.msisdn()
	# '2048735484349'

``faker.providers.profile``
---------------------------

::

	fake.simple_profile(sex=None)
	# {   'address': u'5513 Sakalauskas Views\nLake Aleksandrasmouth, VA 98204',
	#     'birthdate': datetime.date(1970, 8, 4),
	#     'mail': u'butkusedvinas@hotmail.com',
	#     'name': u'Paulauskas, Dovydas',
	#     'sex': 'M',
	#     'username': u'sauliuspaulauskas'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'33615 Petrauskas Corner\nKavaliauskasville, DE 36800',
	#     'birthdate': datetime.date(1998, 11, 23),
	#     'blood_group': 'AB+',
	#     'company': u'Nagys PLC',
	#     'current_location': (Decimal('-59.966462'), Decimal('124.306919')),
	#     'job': 'Insurance account manager',
	#     'mail': u'dominykasginzburgas@gmail.com',
	#     'name': u'K\u0119stutis Pocius',
	#     'residence': u'781 Vasar\u0117 Rapid Apt. 165\nKotrynamouth, UT 08224-3341',
	#     'sex': 'M',
	#     'ssn': u'501-38-0019',
	#     'username': u'edgaras52',
	#     'website': [u'http://www.kaupas.com/', u'http://www.butkus-kaupas.org/']}

``faker.providers.python``
--------------------------

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   5610,
	#     u'nWoUEffKqVmTxAMpseXu',
	#     u'JhVyuHRFPEdTMGBeNFZv',
	#     u'MbMpAVmQwwWZPLgjVHFh',
	#     4983,
	#     1691,
	#     3051,
	#     u'kalvelisarnoldas@kavaliauskas.com',
	#     u'karolis06@kazlauskas-kiska.info',
	#     u'https://www.gaizauskas-gaiciunas.org/tags/main.html',
	#     u'UTWvdkRvaFeNNnHAeTYi']

	fake.pystr(min_chars=None, max_chars=20)
	# u'dCikAkSloeWSBpFTdTuJ'

	fake.pystruct(count=10, *value_types)
	# (   [   u'qJXdFDeRUgnuDGyPJnOB',
	#         u'urbonasleja@gintalas.com',
	#         3470358799.8,
	#         u'pIhGRwsnTNqetQHBaqWf',
	#         Decimal('6.01318408034E+14'),
	#         u'PdGAxVgVmArsVsjItrkq',
	#         u'EqQuQNYKZiLAIymVTuQu',
	#         u'WhHJxjuyaYoIiIxQCyQv',
	#         u'domantas58@hotmail.com',
	#         u'agnevsiliauskas@nagys.com'],
	#     {   u'corporis': datetime.datetime(1985, 7, 6, 18, 58, 51),
	#         u'ea': u'MESqENjqGQBDxBFEBQQW',
	#         u'enim': 9950,
	#         u'eum': 1877,
	#         u'maiores': 2481,
	#         u'officiis': datetime.datetime(1986, 3, 1, 10, 32, 2),
	#         u'omnis': u'kalvelisbenas@hotmail.com',
	#         u'perferendis': u'nuVCuVatiZMPcUZeYcwt',
	#         u'repudiandae': Decimal('554509230023'),
	#         u'veniam': u'rzUAObJAmwfUGGNPMfWJ'},
	#     {   u'ad': {   5: -538966.4392,
	#                    6: [   u'ZajPjwbmnpMinbGKhBkH',
	#                           u'https://gailius.com/list/blog/login.asp',
	#                           u'IiokfPaFcmdZFsgLCknz'],
	#                    7: {   5: 9832,
	#                           6: Decimal('40913.4675'),
	#                           7: [u'QVGdZzHnImmoVsdxENCR', 6941]}},
	#         u'aliquam': {   6: -892475480.87876,
	#                         7: [   datetime.datetime(1981, 5, 11, 8, 38, 31),
	#                                Decimal('9199646.60112'),
	#                                u'vPByDkOHfCIUFolZyjVA'],
	#                         8: {   6: u'xLnwyUxNeXPbHETwqmSz',
	#                                7: u'sakalauskasryte@kalvelis.net',
	#                                8: [7746, 3341]}},
	#         u'eligendi': {   3: u'ThnvdDqHjXdVERhVbWsI',
	#                          4: [6312, 5654, Decimal('-10781344.9005')],
	#                          5: {   3: u'http://www.galdikas.com/author/',
	#                                 4: u'rNstvNmtPvtUVbWAFMIJ',
	#                                 5: [   u'jMqmeRWyYEOtpjDgJwMm',
	#                                        u'kSXDEtUQRssjyuwONnWB']}},
	#         u'est': {   8: Decimal('7.26238147464E+13'),
	#                     9: [   u'owWBSHRcDLunpMHzNgWh',
	#                            0.61703,
	#                            u'arunasjankauskas@gmail.com'],
	#                     10: {   8: u'XvGYyrazJMuVEjZXQbZE',
	#                             9: Decimal('269945577.403'),
	#                             10: [u'ZShsJBfFqHUqtdenunsX', 3664]}},
	#         u'labore': {   7: u'jolantakalvenas@gmail.com',
	#                        8: [   u'CkFvetFfdtJoMKQIZHnA',
	#                               Decimal('8283539.79671'),
	#                               u'LdgECoFoMuahLlBxJGdQ'],
	#                        9: {   7: u'JlyeDlqPUSPflAexasfC',
	#                               8: u'LvDKFcwjpBnjDaxVdcBG',
	#                               9: [   u'nlYwvveBQuDVxTPeEJgf',
	#                                      u'UgUFacQeemXwSVUcQEAC']}},
	#         u'laudantium': {   0: Decimal('3.41368289639E+13'),
	#                            1: [6287, u'JNjhTRlMcCHupWwUJsWr', -95371.1],
	#                            2: {   0: 4221,
	#                                   1: u'TTZHsOwlUvfvRQkMJfwL',
	#                                   2: [   u'tQHLqLoIhihKgbNzsfRX',
	#                                          u'http://naujokas-galdikas.org/']}},
	#         u'libero': {   9: u'IPAXYuWUauimkeuyTOjj',
	#                        10: [   u'https://petrauskas.com/search.php',
	#                                u'wgVGDeRkFjqAXCPqbhnA',
	#                                u'iyYXdsNqLswdFSYvdFll'],
	#                        11: {   9: u'robertas43@gailius.com',
	#                                10: u'http://zukauskas-kairys.com/main.php',
	#                                11: [   u'jetmeLYLQrSjOhzFHUDQ',
	#                                        -541150183826693.0]}},
	#         u'quibusdam': {   1: u'LOpcWDYsNaXZgOkIYyyx',
	#                           2: [u'iynwzjGvzAWnErzAHLzX', 8869037.0, 1718],
	#                           3: {   1: u'https://gaiciunas-nagys.com/search/login.html',
	#                                  2: datetime.datetime(1974, 10, 30, 12, 47, 46),
	#                                  3: [u'kwrKQlRFDPRODJJvzMNH', 9070]}},
	#         u'sit': {   2: 563328026.401,
	#                     3: [   -651625403223.0,
	#                            datetime.datetime(2015, 12, 15, 8, 50, 26),
	#                            u'dffbLqEgMbcRdrUlIoTk'],
	#                     4: {   2: u'http://jankauskas.biz/posts/category/category.html',
	#                            3: datetime.datetime(1974, 9, 10, 16, 19, 9),
	#                            4: [8536147216089.7, 3254]}},
	#         u'voluptas': {   4: u'butkuskipras@gmail.com',
	#                          5: [8139, 5825, u'yZzsuwvbpXWcspSEHRqX'],
	#                          6: {   4: 3796,
	#                                 5: -56117505.974,
	#                                 6: [   Decimal('282108204947'),
	#                                        u'CNhlJbeFSgujSbpmFEmE']}}})

	fake.pyfloat(left_digits=None, right_digits=None, positive=False)
	# -3750492210.88848

	fake.pydecimal(left_digits=None, right_digits=None, positive=False)
	# Decimal('53272019398.3')

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'https://www.povilonis-kiska.com/',
	#     u'HgDJJUHuLaTGogYpFXso',
	#     Decimal('495466212935'),
	#     u'https://www.paulauskas.com/',
	#     Decimal('-87822323099.2'),
	#     9088,
	#     u'xZKexPCBgdIezmqAfNlk',
	#     u'myPTIwIdyqoetqTlsUUb',
	#     u'TqcVgcQDfHxqHfbYbcQC',
	#     -9961.3632,
	#     datetime.datetime(1991, 12, 15, 23, 3, 1)]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'utBDucrSeMlQRTDzGQDY',
	#     u'http://nagys-poska.info/',
	#     u'HLHepVxAYdGMVbcoiABu',
	#     u'qOBokONWTvBFTlPzhrDH',
	#     u'http://povilonis.net/post.html',
	#     u'http://www.pocius.com/post/',
	#     Decimal('88558216376.0'),
	#     u'zxekGGYWvnETaulmUxsl',
	#     datetime.datetime(1999, 1, 20, 10, 34, 55),
	#     u'jcxWfERWtAMIbXNvxMgA',
	#     u'ginzburgasmarija@hotmail.com',
	#     u'aurejazukauskas@kairys.com',
	#     8287)

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'ruRfurMYvkOzAtmZlZKr', 2181, u'leticija16@gmail.com', Decimal('-577234484.978'), u'mlCrBXsXFOfGwwdmhVdM', u'avUAYFSPpdbzWdlBKsAN'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'aliquid': Decimal('509968904.47'),
	#     u'aut': Decimal('6.87894320799E+13'),
	#     u'deserunt': 17806043964.436,
	#     u'dicta': u'http://jankauskas-akelis.com/',
	#     u'error': datetime.datetime(2008, 9, 26, 6, 35, 24),
	#     u'odit': u'pPGQbFMYIRXzPlUAZkVQ',
	#     u'porro': u'AaXpJWSDiuwGEwkOlrwO',
	#     u'vitae': Decimal('55641835.0')}

	fake.pyint()
	# 6294

``faker.providers.ssn``
-----------------------

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'482-61-3430'

	fake.ein()
	# u'58-7356280'

	fake.itin()
	# u'972-76-2111'

``faker.providers.user_agent``
------------------------------

::

	fake.mac_processor()
	# u'Intel'

	fake.firefox()
	# u'Mozilla/5.0 (Windows CE; crh-UA; rv:1.9.2.20) Gecko/2015-11-10 17:20:26 Firefox/3.8'

	fake.linux_platform_token()
	# u'X11; Linux x86_64'

	fake.opera()
	# u'Opera/8.22.(Windows 98; mn-MN) Presto/2.9.178 Version/12.00'

	fake.windows_platform_token()
	# u'Windows NT 5.01'

	fake.internet_explorer()
	# u'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 4.0; Trident/3.1)'

	fake.user_agent()
	# u'Mozilla/5.0 (Windows NT 5.1; km-KH; rv:1.9.0.20) Gecko/2016-04-14 21:43:01 Firefox/3.6.19'

	fake.linux_processor()
	# u'i686'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (X11; Linux i686) AppleWebKit/5312 (KHTML, like Gecko) Chrome/30.0.829.0 Safari/5312'

	fake.mac_platform_token()
	# u'Macintosh; U; Intel Mac OS X 10_10_6'

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4 rv:2.0; zh-TW) AppleWebKit/533.32.5 (KHTML, like Gecko) Version/4.0 Safari/533.32.5'
