Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

2,804,979

Downloads of v 128.4.0:

26,697

Last Update:

29 Oct 2024

Package Maintainer(s):

Software Author(s):

  • Mozilla

Tags:

browser mozilla firefox admin foss cross-platform

Mozilla Firefox

  • 1
  • 2
  • 3

128.4.0 | Updated: 29 Oct 2024

Downloads:

2,804,979

Downloads of v 128.4.0:

26,697

Maintainer(s):

Software Author(s):

  • Mozilla

Mozilla Firefox 128.4.0

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Mozilla. The inclusion of Mozilla trademark(s), if any, upon this webpage is solely to identify Mozilla goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Mozilla Firefox, run the following command from the command line or from PowerShell:

>

To upgrade Mozilla Firefox, run the following command from the command line or from PowerShell:

>

To uninstall Mozilla Firefox, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade firefoxesr -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade firefoxesr -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install firefoxesr
  win_chocolatey:
    name: firefoxesr
    version: '128.4.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'firefoxesr' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '128.4.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller firefoxesr
{
    Name     = "firefoxesr"
    Version  = "128.4.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'firefoxesr':
  ensure   => '128.4.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 01 Nov 2024.

Description

Bringing together all kinds of awesomeness to make browsing better for you.

Features

This Package installs Firefox ESR

  • A powerful, new engine that’s built for rapidfire performance.
  • Better, faster page loading that uses less computer memory.
  • Gorgeous design and smart features for intelligent browsing.
  • Instantly import your online info and favorites from any other browser.
  • The most powerful private browsing mode with added tracking protection.
  • Firefox Quantum features: screenshots, pocket, gaming & VR, library.
  • Customization Features - addons & extensions, themes, toolbar.
  • Synced across devices - passwords, bookmarks, tabs and more.
  • Ad tracker blocking

Package Parameters

  • /l:LOCALE - Install given Firefox locale. See the official page for a complete list of available locales. Note that by providing this parameter the package will not check mozilla.org for a locale.

Command-line options for installer configuration. See the official page for details and defaults.

  • /InstallDir:PATH
  • /NoTaskbarShortcut Do not create Taskbar Shortcut
  • /NoDesktopShortcut Do not create Desktop Shortcut
  • /NoStartMenuShortcut Do not create Start Menu Shortcut
  • /NoMaintenanceService Do not install Maintenance Service
  • /RemoveDistributionDir Remove Distribution directory on installation/update. (This is the default behavior of the Firefox Installer, but not for this Chocolatey Package)
  • /NoAutoUpdate Sets a policies.json file to not update Firefox and does not install the Maintenance Service
  • /UseMozillaFallback Makes a request to mozilla.org and reads the supported Language Culture code from the website

Examples

choco install Firefox --params "/l:en-GB"
choco install Firefox --params "/NoTaskbarShortcut /NoDesktopShortcut /NoAutoUpdate"
choco install Firefox --params "/l:en-GB /RemoveDistributionDir"

Notes

  • Looking for Firefox Developer Edition? Install the firefox-dev package.
  • Looking for Firefox for Personal Use? Install the Firefox package.
  • If locale package parameter is not present, this package installs Firefox ESR in the first language which matches this list:
    1. If Firefox ESR is already installed it uses the same language as the already installed one.
    2. The Windows system language.
    3. Language Culture code specified on Mozilla website (only when /UseMozillaFallback is specified).
    4. If Firefox ESR does not support the system language, it will fall back to en-US.
  • If the package is out of date please check Version History for the latest submitted version. If you have a question, please ask it in Chocolatey Community Package Discussions or raise an issue on the Chocolatey Community Packages Repository if you have problems with the package. Disqus comments will generally not be responded to.

tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'
# This is the general install script for Mozilla products (Firefox and Thunderbird).
# This file must be identical for all Choco packages for Mozilla products in this repository.
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

$packageName = 'FirefoxESR'
$softwareName = 'Mozilla Firefox*ESR'

$pp = Get-PackageParameters

$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '128.4.0')

if (Get-32bitOnlyInstalled -product $softwareName) {
  Write-Output $(
    'Detected the 32-bit version of Firefox on a 64-bit system. ' +
    'This package will continue to install the 32-bit version of Firefox ' +
    'unless the 32-bit version is uninstalled.'
  )
}

$sa = ""

# Command Line Options from the Firefox installer
# https://firefox-source-docs.mozilla.org/browser/installer/windows/installer/FullConfig.html

# Always prevent Firefox installer to require a reboot
$sa += " /PreventRebootRequired=true"

# Prevent RemoveDistributionDir by default
$sa += " /RemoveDistributionDir=false"


$sa += if ($pp.InstallDir) { " /InstallDirectoryPath=" + $pp.InstallDir }

$sa += if ($pp.NoTaskbarShortcut) { " /TaskbarShortcut=false" }

$sa += if ($pp.NoDesktopShortcut) { " /DesktopShortcut=false" }

$sa += if ($pp.NoStartMenuShortcut) { " /StartMenuShortcut=false" }

$sa += if ($pp.NoMaintenanceService) { " /MaintenanceService=false" }

$sa += if ($pp.RemoveDistributionDir) { " /RemoveDistributionDir=true" }

$sa += if ($pp.NoAutoUpdate) { " /MaintenanceService=false" }

if ($alreadyInstalled -and !$env:ChocolateyForce) {
  Write-Output $(
    "Firefox is already installed. " +
    'No need to download and re-install.'
  )
}
else {
  $locale = 'en-US' #https://github.com/chocolatey/chocolatey-coreteampackages/issues/933
  $locale = GetLocale -localeFile "$toolsPath\LanguageChecksums.csv" -product $softwareName
  $checksums = GetChecksums -language $locale -checksumFile "$toolsPath\LanguageChecksums.csv"

  $packageArgs = @{
    packageName    = $packageName
    fileType       = 'exe'
    softwareName   = "$softwareName*"
    Checksum       = $checksums.Win32
    ChecksumType   = 'sha512'
    Url            = "https://download.mozilla.org/?product=firefox-128.4.0esr-ssl&os=win&lang=${locale}"
    silentArgs     = "$sa /S"
    validExitCodes = @(0)
  }

  if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
    $packageArgs.Checksum64 = $checksums.Win64
    $packageArgs.ChecksumType64 = 'sha512'
    $packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-128.4.0esr-ssl&os=win64&lang=${locale}"
  }

  Install-ChocolateyPackage @packageArgs
}

if ($pp.InstallDir) {
  $installPath = $pp.InstallDir
}
else {
  $installPath = Get-AppInstallLocation $softwareName
}

if (-Not(Test-Path ($installPath + "\distribution\policies.json") -ErrorAction SilentlyContinue) -and ($pp.NoAutoUpdate) ) {
  if (-Not(Test-Path ($installPath + "\distribution") -ErrorAction SilentlyContinue)) {
    New-Item ($installPath + "\distribution") -ItemType directory
  }

  $policies = @"
{
    "policies":  {
                     "DisableAppUpdate":  true
                 }
}
"@
  $policies | Out-File -FilePath ($installPath + "\distribution\policies.json") -Encoding ascii

}
tools\chocolateyUninstall.ps1
$ErrorActionPreference = 'Stop';

$packageName = 'FirefoxESR'

$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName 'Mozilla Firefox*ESR*' | Where-Object { $_.DisplayName -notmatch "ESR" }

if ($key.Count -eq 1) {
  $key | ForEach-Object {
    $packageArgs = @{
      packageName = $packageName
      fileType    = 'exe'
      silentArgs  = '-ms'
      validExitCodes= @(0)
      file          = "$($_.UninstallString.Trim('"'))"
    }

    Uninstall-ChocolateyPackage @packageArgs

    Write-Warning "Auto Uninstaller may detect Mozilla Maintenance Service."
    Write-Warning "This should not be uninstalled if any other Mozilla product is installed."
  }
} elseif ($key.Count -eq 0) {
  Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
  Write-Warning "$($key.Count) matches found!"
  Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
  Write-Warning "Please alert package maintainer the following keys were matched:"
  $key | ForEach-Object {Write-Warning "- $($_.DisplayName)"}
}
tools\helpers.ps1
function GetUninstallPath() {
  param(
    [Parameter(Mandatory = $true)]
    [string]$product
  )
  $regUninstallDir = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\'
  $regUninstallDirWow64 = 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\'

  $uninstallPaths = $(Get-ChildItem $regUninstallDir).Name

  if (Test-Path $regUninstallDirWow64) {
    $uninstallPaths += $(Get-ChildItem $regUninstallDirWow64).Name
  }

  $uninstallPath = $uninstallPaths -match "$product [\d\.]+ \([^\s]+ [a-zA-Z\-]+\)" | Select-Object -First 1
  return $uninstallPath
}

function GetLocale {
  param(
    [Parameter(Mandatory = $true)]
    [string]$localeFile,
    [Parameter(Mandatory = $true)]
    [string]$product
  )
  #$availableLocales = Get-WebContent $localeUrl 2>$null
  $availableLocales = Get-Content $localeFile | ForEach-Object { $_ -split '\|' | Select-Object -First 1 } | Select-Object -Unique
  Write-Debug "$($availableLocales.Count) locales are stored.`n$availableLocales"

  $PackageParameters = Get-PackageParameters

  if ($PackageParameters['l']) {
    $localeFromPackageParameters = $PackageParameters['l']
    Write-Verbose "User chooses '$localeFromPackageParameters' as a locale..."
    $localeFromPackageParametersTwoLetter = $localeFromPackageParameters -split '\-' | Select-Object -First 1
    Write-Verbose "With fallback to '$localeFromPackageParametersTwoLetter' as locale..."
  }

  $uninstallPath = GetUninstallPath -product $product

  $alreadyInstalledLocale = $uninstallPath -replace '.+\s([a-zA-Z\-]+)\)', '$1'
  Write-Verbose "Installed locale is: '$alreadyInstalledLocale'..."

  $systemLocalizeAndCountry = (Get-UICulture).Name
  $systemLocaleThreeLetter = (Get-UICulture).ThreeLetterWindowsLanguageName
  $systemLocaleTwoLetter = (Get-UICulture).TwoLetterISOLanguageName

  # Never change the fallback locale here, this is the absolute
  # value we always expect to fall back to when nothing else is
  # found.
  $fallbackLocale = $mozillaFallback = 'en-US'
  if ($PackageParameters['UseMozillaFallback']) {
    Write-Verbose "System locale is: '$systemLocalizeAndCountry'..."
    # We need to use web content instead of web headers here, due to
    # web header helper does not allow custom headers.
    $urlParts = @( 'htt', 'mozilla' )
    $Response = Get-WebContent -url "$($urlParts[0])ps://www.$($urlParts[1]).org/" -Options @{ Headers = @{ 'Accept-Language' = $systemLocalizeAndCountry } } -ErrorAction Ignore 2>$null
    # The lang attribute on the html element will be the closest
    # supported language when comparing to the system locale.
    # As such we use that as an additional fallback when possible.
    if ($Response -match 'lang="(?<locale>[^"]+)"') {
      $mozillaFallback = $Matches['locale']
      Write-Verbose "Mozilla fallback locale is: '$mozillaFallback'..."
    }
    else {
      Write-Warning 'No fallback found using the Mozilla website.'
    }
  }

  Write-Verbose "Absolute Fallback locale is: '$fallbackLocale'..."

  $locales = $localeFromPackageParameters, $localeFromPackageParametersTwoLetter, `
    $alreadyInstalledLocale, $systemLocalizeAndCountry, $systemLocaleThreeLetter, `
    $systemLocaleTwoLetter, $mozillaFallback, $fallbackLocale

  foreach ($locale in $locales) {
    Write-Debug "Testing locale $locale of whether we have the information or not"
    $localeMatch = $availableLocales | Where-Object { $_ -eq $locale } | Select-Object -First 1
    if ($localeMatch -and $locale -ne $null) {
      Write-Host "Using locale '$locale'..."
      break
    }
  }

  return $locale
}

function AlreadyInstalled() {
  param(
    [Parameter(Mandatory = $true)]
    [string]$product,
    [Parameter(Mandatory = $true)]
    [string]$version
  )
  $uninstallEntry = $(
    "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$product $version*"
  )
  $uninstallEntryWow64 = $(
    "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\$product $version*"
  )

  if ((Test-Path $uninstallEntry) -or (Test-Path $uninstallEntryWow64)) {
    return $true
  }

  return $false
}

function Get-32bitOnlyInstalled() {
  param(
    [Parameter(Mandatory = $true)]
    [string]$product
  )
  $systemIs64bit = Get-OSArchitectureWidth 64

  if (-Not $systemIs64bit) {
    return $false
  }

  $registryPaths = @(
    'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall'
    'HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall'
  )

  $installedVersions = Get-ChildItem $registryPaths | Where-Object { $_.Name -match "$product [\d\.]+ \(x(64|86)" }

  if (
    $installedVersions -match 'x86' `
      -and $installedVersions -notmatch 'x64' `
      -and $systemIs64bit
  ) {
    return $true
  }
}

function GetChecksums() {
  param(
    [Parameter(Mandatory = $true)]
    [string]$language,
    [Parameter(Mandatory = $true)]
    $checksumFile
  )
  Write-Debug "Loading checksums from: $checksumFile"
  $checksumContent = Get-Content $checksumFile
  $checksum32 = ($checksumContent -match "$language\|32") -split '\|' | Select-Object -Last 1
  $checksum64 = ($checksumContent -match "$language\|64") -split '\|' | Select-Object -Last 1

  return @{
    'Win32' = $checksum32
    'Win64' = $checksum64
  }
}
tools\LanguageChecksums.csv
ach|32|fb9cc6cbe76ea917bb313a6a01c550330c7e6b709a47d00c6832303d452fe53fbefca0cc45bf878b2f9d46b9a2e520b76c70cb44d8c45068aba50c18525cf62b
af|32|c1a7f2439cd024af99f8afa56a1e1ecbefb368fc3ce67a81b6e31774983906aa58f764458624c47dadc2b97952f907634c000ab5e34c281eb36cee476dec9a36
an|32|5967e6e3728516ba554a1bfc4eaa78496b2fe481b3c60908d841ccec4cd3b049afa30b8c97a64b92913bf816d8317f389c9b362493ea8faf36e33f4b97348f69
ar|32|e320ecf40fa0a6f510892c630a04ea71d91121763ccae405ac629e668a72c8f137ed88c3f8b61f2ba6bc18faadba8a0c54d3cf83c2b3c1d4b67bd73d501a2842
ast|32|ff266f49a9eeff0c7a9e94ca3e61f7a667d710bc9415604f41e18751636c49ca6c94a40c6fa411826401e60d89d77008af08c922e33494202bc5e804ac326243
az|32|eb0b8651d9645df709ccb28ae3082bfd63fc7263c882b4307f3d06f1c1ce16dbad47f1355cdbcb3165fbab2688b8ee2e140a1d2ee3441ee7aa9277dee143e1cd
be|32|64cba6a4e9f60843c30458f6a2f7416c1b4ece43a6f98fe24eba5f65057df3ba2f8f0b270ff531dfa9901b8a3ca17b873bad965b8a293a656a6c3ca35401cc2d
bg|32|5f62ece0d2c1d7ff43a45e00c612373c323ec5bb5e4fd6c67dafd779bec3a5c7a75773bc9c22d9259a80540daafee832ad338e8bd58b80d8e73a63bd5795b675
bn|32|b84ad5adbe26630345f724719fd72159a08327e79d3f6c1dfcfb6686814517c21acba86c9fcfdfca167fc02f0074fd652b8645d76dc1628f810465b8c83bc28e
br|32|7caad4e757226e9df815f0e35feae464c36d6842c7d0582e2d508111d8c8c7e805ab65c32c6c907866bcc4f76e248538d01a54265ae93206fbc7652ca083f6c9
bs|32|b61ffa3b210ceb9d85bbc8dc3833c98ab4a1594b6d29c58a3e9b97bfaa8dbb57f92dd1a06e72e7a0802eb150dd4fb7d2897ebcb6bebe2ca950b5008344aefb0e
ca-valencia|32|12a698f144e0903e3b3a7b4aa8a858afb8c2a576c541b547b6080ecf2a19c1d58d2c28a56ad6d4a76bb2bdccedead4245fbb0c01e9543302ad9387fe0713b0ef
ca|32|75d5611a3caaa12f60710c6d7409086188d4bcda86e69edc379fa6d9f86a4656a963f3ab7eef6e89f3b81b8fa492a6c89f40eb35d448c15e518864acd4089cd9
cak|32|b830bdaec16d337dcc499e53bbb8aeea71d4c8f7ed2cb35e0ce9c96174530de3293c8b9e52939e013278de6855a0f389718080388f748af0a4233d4df16973d4
cs|32|a7c9739920920d537e30aa23dd5339840a360fb50fa801c4e588fc1eb251e52915ecbd5c9dc62110d3f3857b0e08b8ffdea4172ab0717bcb8a066ee809984bf8
cy|32|1945c8b7d3af8a35990e542f7fe4aed638d91e2e2ce9a68db2019be2c15fc3ff934e6035c5e8f6d25629154b4e3cfad7564cc1f2fc64b718b6bbd44202952010
da|32|c0487c795e8433e0c5c6201ddb8ab34a2a82a02490dbc20ab0a520d05589508fc3693b8d1bf73ba2684081fcb2b2a41307abb1c6667b631af68d9797a652865c
de|32|454c6dd9b7dd0039f747efb5352c55b27b3df0a437f0230ef3a46e57efb4b497926bc6c41e4af5055968ba77cb320a805f1978466ee8a6d105259721bcc29ea7
dsb|32|b428c7cd263fe4e99bac34bf1754318ab6b8eed11e0b5bae2de59a55c1809ebaa3dbec818e44e82e52a0647efe35a2e86b8e31b5060a3d1a1aed264b14ab4a7c
el|32|75929c09f7142fdb9522df5f126a6fc4ae0114265b95785ed364827a3d701a18c60711753305d02814b0b8084bbb3b61f4bf02bbe3eb81e58c51be3b4b84be86
en-CA|32|1b53eec055a1eda0468360f050dbcb891a313c597716c43bd58f844489f2a5eaed5cb80c27f1a21175adbe4d844d71650f4a557b7ad334146119571ba3cd4391
en-GB|32|18c65b1506e47480c0a487520a2a793cd0f283480029e2cf58607c497f4c9664b480edd4946c6a6aa0ab2979cf2218d9362c37d3c7f55f63095fb1d1cd4f0446
en-US|32|aa4286afb5cb5054f963fca9e1f19bab682525225f10f2ba2f27162bd47b5a0edd05f183fbf599f38bbe33607e9e3866335010ce23c3ce3c32d6aa365651f298
eo|32|c0b8b21a1c7aea891a9bea371d50459fef44084f819ff7b958e4b1776c14e665b0e81f56aa7bdce79e603626cb454e45b27a2822188bdd03b7c9e47a4b5aa2be
es-AR|32|181a2d73402bee92944ff6d7dae1dc0b4c829ed0ae8651b85caeddcf445ab9dda2d2834559ac68469ac32060d7f41dd707e7874b12f0890a7172b0cfb04cd77e
es-CL|32|351cca5f2ef9c23321e718aa32a209a7e06e80ae06c4b05047f8d08b599a22b658e6f4cef218dd02a9e1fd493983234fc5dd5301cbd146deb1491f8e87ba0b87
es-ES|32|1bbe576f7a4b07285a7403829d19fb8dc1ab615be6f841b8b32222a811b6db5624fb96a75ff74c31ca67aa56f7c4fcf2b780269b0ebd332a68333578c4a98c1f
es-MX|32|77f815ee8dfc694a255991907e5c300ed169151a091c0fb12c579c20f0721728c645aae71906f3078fd0c95353eb66b7075fbfcc47fdeb9ba1a3bec0253bbcb5
et|32|1bcf1ebb31732ce82bc066f415ba5f81312701c985c956a70b35a8675ed3905579d4f6942c149ad8814397b9a1ca38230f030500873cad9afd1849cb0b855df3
eu|32|ba6976097155efbe92beb723b7c374f79f2f3cbb0c9ed11137ac22ba0bc5184fafdf8cba14839c0b876e18a25d42ead3c0c4f47220479bd73a5fba68e0bdd7a1
fa|32|2e598f9fc837ba550c22249b28bad27ceca8e53ce95f3d6fc1f249eae527c71d353523c9059e536053c105784d3bbf69c081ff4cb0eb5bde882702dd5efc5659
ff|32|90b1385aae6d5b6706c5ce393d1620192d588cf8769e192851d441d32d862128f3ce12018c4b524b3387b5964836db07d4d074e30049e41ec72a94cad46c25af
fi|32|9bd2e2b52bd9aa7289a38eae363959a82589cf98c30e75412e5e20ca3e6fd27fc7c3bdf87a81c9d7e8f96076df424084715b55cee4ed42ff75026b654d1965ea
fr|32|6a02ca59e3f32f324709efa1271b5e86dcb438b283c1e44e5e0ff080a03afe69ee47445a583978079fdf0921234fa008573cc6b9eb24b67121550c9e2099af9d
fur|32|bbd79f623464b716adb2dff91aa3317336c9181cd49f8e0ffefadf0d90111b2947682b471cdc0c74d31d8cb9f2b3d622b91128d2bde4e36951b359819f2fe2c6
fy-NL|32|e21a50ad5e6f09c092e9439c4dfbba6ccf165f235f17604edbf0b7f794c90e4437b556e7378161ac3b19ce52e52540ca410a4c3e290403be8400336e9280d15f
ga-IE|32|46bc07e0b9ca351d3ea0bab353fda70b5575db21e7c88670a617854653ea97e8eab9b36b41a35c65bbc95c96b3e9173fa0aefca100bd361cb2db16000115cd89
gd|32|381e0cfeff7bb94e7ab4312aea5d19b31e13a97ec096118b394fc7fa3752e90d40aaa9d31f52731fcf7a966167ce7b9fb703bb4b18268baa5c11ec3fe9147cd2
gl|32|070b2317e14aa50fd2bed97b9c6b2a4010fd96a08945a5c25d3cc53f527bf93809c7c67a10ce10b1ae48e917d47456e96f70d3c346c016b9929ed47b9024eaac
gn|32|fc8a9be22a83a096597b5f5ad53c67afde8567b11209ff4559681cba74aa15420bb28d3866ef23aa1cea9a211910f88cffcf02082cbb484f0d567fad04b6f121
gu-IN|32|2d363d1dfd24c3c3047e8a9a39b6f9ff8911ac0cb04cc634e641707622f01d1f8d674a17ac4020aa1b0360cac4511e708e9a85dc3ffee06f5c2683a505c6acb4
he|32|c7269e22c4561202fabd4117de0dc9c1995b2afb909a32499b79dea2e0fe0315992bf76f6cf2e088f2fd8b69c5f1d9fa1e91889d92f64c459d08c7ca91335cee
hi-IN|32|a543eb624be21ca58c05d5c09340f05798d4ab781ef1771e0f537a850a0660614bf6e6b6ec99c936d14da132f518d32c05b2036f9c4030d5da52ccf816e68fd6
hr|32|e0fc42dcaa5ebaa2b63740435f12555492a770bb6ff1a8bdf1d446283cb1546d80be89c9e30481c234da0da2c43320feacce6be86472b17f225b3b6e9c441357
hsb|32|aa7beab4d5919e88b5c8307ce2e3bacc5239f434e4487cf764216222667fa2191c0497949a6f7cee2ea03a06c2cb81a2d39dcf9299fc00b79200f44c9bc5c507
hu|32|2431d7f3421dbe40647fb85c1823176b529cf4dca3882b26cced0fec3d0de665655dfedcafe8640528a0595b3f6ef4c5b43599f148a5958660fa992122ba82c4
hy-AM|32|cb8f55ea17cd829ddb05fda67191f1226c1e97b525e3b2f2f2cb4bb9fa0cb0c77a0e4f33f6ca4ee48f52dd40bbb79ef2d0aa70afecf7a5ce21ae200455716e0a
ia|32|88f7bf72c5c1e6c741b1e5b273122bf5c8ba64aaa87a793b00ead14c598059066939e33940aef4373cdf4e626193f96f77b64d71b9a2362fd97e632fc42ec8c4
id|32|03ef5ac075b1f9b917bea8567a8f35257fa7abe9c67c4e8590246f742cb8a029de2e4aa677512336e2cf0b7cfa87ba25773b1349be5da74b083b86ada4bf7b94
is|32|292fc40464cbda75ef9022c25cbda4663733daf2c9bc8df2177d60b25f31aa4dccbef7bdc188cda0a178e754d0721abdeb5295e5d937f24dbecb3a0164782da7
it|32|1e86dab3dddf98f36a7032c0cbca0c47d9f5ba4953e792e14ca34acfada6c5db901b6777c85ee3e62ce72ff26498cc61acea8c5158208f8fa3673c48afd45836
ja|32|ae2a19005e55714299ed80d4045f48c2d6f2cd2dbfcf86ebb5208043fa2ff90b236cbf8145825d416b346e35ca03549a3190f98443abd5fc2899d342771fc63d
ka|32|8d91212dfdc5bdd77f6b86e67896348b206a3867806e5788c4f8bbc3a889e98785829b37c4dd8fa93d2d4512446d9b7c0b63e526ecb87f58c6a42b56e2ed69bf
kab|32|9d8e7523ef6fe831d2c4cac0f8203515401fdb3891ea8600c610fb6a4065e0b8d6a7c9a70064688b65b11315c222889156178c7148097dfe465231f4e0aa9081
kk|32|b653a38a52298509eb393e6c49527fe81587182f6c7209f7137765383d89cd0672921302b9531989b6e4d9e80031b5b2cc9368f2ee0d28e7ac0039e3518b75ac
km|32|1fa4b7aa3db07cab3e27a128cc94edf75a1aa868f96493646d9e7a1fe40ae06ccc3dd7c6ecc8448d2d8546999f6a693035b3c71cdedb5f5082d110b38f80e2b6
kn|32|0510357d3a5ce91f6e447e9a0a22af21e1e77a2b5dc1a116db0a955fa113705f8a14c81efbc5d5b86ed5c7080ff4f157afdd061b16dd80742c07268f45a7f5b0
ko|32|a28a1f50bc2aa009747323c42d0d90f7cdc646660de58340e3c8e2e2380400b91702379fa632fcdb7d42b25388af8c4c248f5183af820b5b595e797c0fb20c15
lij|32|11256b383a110d5f4dfc44b2b0bce2db2c262681168aad5b1650933b3e2fcd1e3adda86c367d727d84af24649039a76d025816d4a0e9bab4a4833b1af69ff2db
lt|32|d5a783d61b87709157e3a8758ffdbd3d286bd3bd0ff1aa6ebaad254eb2336937a4134f55f44ede179d449c0b31c7312afc362aa0cd9777e8590cfe75e1db0a43
lv|32|3e303de5cad93a6458d7facaaee92e66023270ad0bd8aa115888cf2fc58d3a1948bd2de805030def49748e41cd939c19a6dd625ef04b8f364f832cda1885a084
mk|32|7ad4d1b4b22c51bc35e932333e99989d360ea3ef26b6901f4f059c83f0a11f241c3ae45fe7c49f0307fc2988e8591628108647247616a7483e54253f58c86ed3
mr|32|fb478a6536221dd8660b9f9acb94537f183fd7bb408d9103afef28773b9270c7ecec2fe622a60919b6293ea207546a6de0efe9e46363c43787caf10da24fd193
ms|32|71c7d242a4e257734ef447f9857d5cfb662a4c7ace146519b24015b11d399e00c7ec91f4de460f6568043cfce8113947c5d8776f8510534c63aa01ab03fa6823
my|32|dd1146a2598c18d2e67494a6f2fe287606dc4642161122f8b70005cd257004afe9ffa851b4d1fb6f1a42e688dc3deb3b158b9664fa6e879bd4efcde2a4676158
nb-NO|32|43472199fe12ad18509371daa235e6fc082fa8a34d42ef8f46215419b814ca2a33e15829a02f4c4e888de9acf88dba50cdeb7ee8404ecad59c1914f17bb61f91
ne-NP|32|183abc85927b9996f3e14f13c2eaee38c2e864c55ed7f23f73b8e56af2fdb8143a1b725d0aa81b6e937f7bfb32617595ab19796a97ee5f41eead0b5437b9ee06
nl|32|7347fe22590fd500e267a1138ecc661916a4aa161f91b4cb11e7592c4601f5a6e03058b8194278d6d934aebaedb8830850a3338a3d9475a42e53e14b8a8f40b7
nn-NO|32|1a2d6f1fc7fa6c471c08fab0a0a6cec1e74b17fffbb61f95d10f1d457877b0d66f68d851bdc28479557e94afae811be6786c5e064de72828d9a10ef6b6b2e99d
oc|32|a84d1ea3d221373db00bd60915f1aef06f6a7fec4f4cd5ce55fa16e37e64ecaeef330d027ba4265be72b3618cb7cad4353d8b38db5f481c84f312728250cd1cb
pa-IN|32|db8e99a95adf08dfdc21d98d69f2ce372a3557b70fe89e0be4203bbf15bddb235ca7a50461304e6365248ff7cc7a0abf7c439ed12f1392637e26c0a3580a8a4a
pl|32|3fe3ce99a6c415be7af9aa22a2169fbb370a487cbbc933c29559b6260e6fab23c4208921b8744d5b2e3fcdde457b72f0a1de8b071593d5553ac0273940bf2954
pt-BR|32|06a642f1fe36eacaf63205c7951cb81148f747395eaf620e280aaa31c42a88b20eeab0444fca292bb394e52c40f65d8b065ca096a3de12dc45f66a88e5792ad0
pt-PT|32|e14a74c6d16dc1e6a398789cadf1dc5a634660fe25b7f51596f941d7eef07343337bef931d02d373189e1c18a1d089d5ad6f5dcd47eac5300b3af8e314075ad6
rm|32|777aa1eb40e308f198daacc93077464dacff0e87d67db5562c8a1aa22203de6fdee1b8e11c8da452494ed84bbf2db7cf0d76a3727b2ab1b5146d05772546de28
ro|32|23c28ae01f9dd1586c9d92b3f9999bf6f22e59efa5a2edba581c24134af87728b266872504b1a9797642e6181b36d67ec4fbb3747cacdc97a17c3edc7e16aeb0
ru|32|41ac2cd4fa3640bd05d3c4d5db2b827efa15aa3c3f5cfa1f07ae61f5fb83fe5f460d408666f666b07d84e057f251a05c9f979da9d50b21d757589d92d1a936da
sat|32|2ef91a4071e24cba7a241d5a1797f4aef94c6a6c94887df18e1fdf8f4f1987061fa6c5e23d4f583590be921f38cbad61d03a053b0fb21bd6a2599dc929472935
sc|32|f9d4726f577dcb87cf91749c02ad5d0223d3063c56420473e7080cd34f5856c5a50e28b4835e96f5f7c2e7ee678adf66b7712c704eef6d69e48f0641d3bd20e7
sco|32|0a8057c2c85aa8bf84ed748365d9f470b20ed7581496d0b5e2f62662af475bb4fbc9ff75f4e3d6d5c66c32f612e3226fc237f5cbc6d9c9195291e32d917015b6
si|32|642a6cd4c05f99894dc03270c95273a827aa143e351e83f2dc2ca516851862833b1f1257ebe6c7d41f3324142ed3b5d9058f39b8e2fa71f2ef640c5a5c4ae925
sk|32|edc84496ecf5206dc253784b2461ef250ea4d7a7783e88bf71d1f34e909c5b04e5f43c779dbdcc15fc2e0aea7061dd429a3ea8ffd3c6b1e2cb5f2cbfe103211a
skr|32|0d64601277c11a5ce181e22464f4cb6917aa15a7526e60a1d94b116f887067e4506196e54a769c3fe17c1c81bae6c643d61ae414ec4c12a91b7a386c8cae97b4
sl|32|1d51dbc50801b0d0c9147fc70f34faed823143d7fe1aa1b5edb0d268c4a8e72e24d26e5c1a156e633e26f131fb97b62f7c1e42c8b24af814312e8f9bfdead7e1
son|32|ff1456e234db04eb86e383ea3db15bfc4c75a2ccc6a0c6ad75c65314b3148abc6e4fe4a95ae98e2a107761a35835f81105014df7a8c2e41efb0eed28212a0f24
sq|32|d6e859606f962ec6cf4764d2c43f8c6d2a2c900865a0fce1cbb5144b74df62b7b93551eb114040495718d681a01f6793160c2674817b4ea97473d5ab1bd6505b
sr|32|9854f7b350f5417079abcb2e9002edb78b6dfe102e8986f67e498e21a17934f1eb2322de3305dbc2220b1ff0aca8e927b6cde73553f6c83d1727b1a5271a2e65
sv-SE|32|9dab5967bbc7fe9cdfd123dd52673c586698fb927daa9c52b40e137d19f99023f135edc65411f831d5349a86d1ce072a4b0eec458b3f13231d120d2fe4f90534
szl|32|733db1c90537abf8480bef4a01274d350f34dc38b09d7ec16534b9d72a88afdde57e75295bf4f1b9701120a714aa2be141dd52c41f43715ae941d27617fd2b99
ta|32|2f1311622920840026ff588fbd231423fa3bbd0598578a5becb463b87c5a0ec40d724bae12667500259adfef2a3509654aad70e27b5a9678873d01f5a1d29e80
te|32|ca8ce021af7f89badd234668bcd7534f720991d45d3cf974edbef5706938e7dbc053029cfdf1ab3864e17fb234d6de65265891a39056a14443da0cb519ecac95
tg|32|e5e569d2018c26a450eb110c5ffe8ac896e5ee31db56e3ae0c2bcc16440bb66ed301fbf325b1ac60675985fc6b7329ebce35f97bdf4591a9bba20bcc1dc90d79
th|32|568b71a2d36407ae550d416036bbd7854d78d85a57d6834d734e015cd3a828e219d5b56528917566e0c10a4369ec083a8673ffff2d1a0f50a7e5fb37ee8767ec
tl|32|6ffa9b9f78aed1395c99451b5547868a7147017b81d67c902b37d7b30fc3b67e1c759859645c1fa539c38333200a69bdce4b58e97a17fede55f01c654015fe0a
tr|32|440224028d2aeda4047bf58eb9aa7c645d644662ee17fccbeddd58382ee874f7bbd18e2f2acd062f130c270db29a03e80b5f4aed7ce26a6ef6ea03346bed5526
trs|32|46fc78336ea95dac55c7908c2b2037055e6f619834db7debf3a0c6f29e959a22350496c53ff6ed20db706cc2ab8535581f85abec41ab14a08637edabb42f3b20
uk|32|2255693f4c02f5cfc91f9388d83916e98ba4570e96b7f5db3298dba1ebcd656afdceec207c11965c607bdde420021bf73dc77f2cd006f16d1030b8b59aa952b0
ur|32|92cae4b85274e7ef52035434e7e49205d39f80a817b020c887c5decf4cd87e80f4f538d07daf67a0e59503f88e9c23c0c0cb3ffb50e84595bf331d75172e2881
uz|32|da791bc0d0f3ec528cd193468fa33cc3914da62099620c3a194d6ff4e8ed7093b1a0ee9a525443761ab87a71bcabbe4c868a3920b4abcc768944e996d4509787
vi|32|f2747dcff7f3a06f23925b2bd2e9cae632de458e1901f97de21a52484b64ed7332fcdd7bb20b5a2e574061ce131b06b10ea483e7d26f3123de31b12ee45a4889
xh|32|723d2f65948f4c058daee3d0d5c026788b6dd125f033528f328885614db1877ac3181a5f130edcb282fe1f118b5a354ec11cddc70a3b86da5dcdfa2abeeeaa2d
zh-CN|32|a5c56e481ed6f73954710cdd0da2a03e89eceed6d49802e4463f0d4299d38b5ae8f8d08d21baef33eacbd6f5de5b2d109ea10e83302b064687bdd5830ff457d3
zh-TW|32|b127d48dea5e37419e539c6a3d1d97756868d4b0205018b94cd32519fba7ce15805e063aab42d5e3ad0af77ac95bc4059b752e561494645581c93bf1b32667be
ach|64|26eceefda32cf812d9c2dba1b06c75c3c9dc9ba733883251af770f7d5a0a5adf4d3e9caf8c450b789232983f84a3f3c6e9dc2fe245e17152f73fb3e1743b4133
af|64|60168100081f231893851ae1909ee2ca247ba51cb533c8ede19c188f1b4ac9e52ca8093eaab9c193258c72d12bdce00ac380a6983c7bcdc73e92149061f8a07d
an|64|afb0197339b57cfc61655d3f4ed63a727edae3bf5190ef9b0dc0976cf8e780ea3f79fcdbb0599a7ab5fb5aa059a8bafec8c9c6489d76cb4b074c732719ad258b
ar|64|30d834a7f2dafaaf8eef94b6b5be4f1ef4c3e85bd3598b4c7d15ed42c369b313ed1adfcc66c35ea08e7473e3515d030d0070c80c1d817a0a9780444cfb969654
ast|64|ec963ebd2b1d4356206cf6c1f80bbfe26812a3e27b0e49bbb5bbe9509bf45285b1f4c203ff83b3562257418d8a2e0a787ca76f14fa5a425992073898ae223963
az|64|805fa44308553d9d7101d70b1cbda80f3762a6b83d9322271c9d5ec5d54ec5fd004f07e71fdd1db54bdcf9a9259d9c890f47cf6dc575cbfaa7e55b8f49181cc5
be|64|374348e70741932b66df1ad85be27de64eea3b00aeac275f6696fff6adb9feb18aafffec619b3fc0bf7e89640c4de36d76a94a0840b12d77dda0133b2c4bc9cd
bg|64|9626821cd6138d582fd72af4cbab69a9b8634201eb7f7185a3196fc1080815c058dee2d3e15e123537b0edaf0a246445dfc3d53af19353990e86027331be5acd
bn|64|1b40b6ecd7dca1c84a421e55126cb8065e1100f59ea52f6f94230dab01f1587dd421c3b291c14f707e0d20ebbd981e6087b147d326532b7f0381c2aab32f8bc6
br|64|b2ac3898019d861b80c100ea8a475a4b02094bd0df2da3629654b115a4066f39f82b7a7112872017bcc82f0a0af6f5897543ad43e8ad46af2ee35a54c730166a
bs|64|412de238a30ffcaddf559b8a523d1edda43064073d095a1a2d8c1b919f8149f986789d896f04aac55ce2795d68f8dd45eef31117002781edf7e9b91ff6cd3c4f
ca-valencia|64|78536e4f47eaa1de0854a2dc6e15a0b49733a99ca9c0189610425687a780ce2f990a0485352a01b28e77e58017c60ab497936eb4195ce80568246f92ec44db51
ca|64|8f94ae32c156371065ce6d211da88f5daa553e40fceaf17b862def17cef050e384d0b0a0dff05b927fa8357550bf2087b51c1582f378539f360e93926fba8a4d
cak|64|fc13f04a0d2d0e989a2b9a145e6afbef5db937cdf9470bf024901c08bc3aef57c9fd2d51aa374c6b866b1011234ab51a60c72be4c9d0b0905f23c6e2cfe2a49e
cs|64|d8048a2d685acbfb0b19791de72013bfe5c8ca6ae7e363d13c1f267da15b9ddfd73cff630dffb403ed82269939dbcec5244e26439be7114b03ee1a6813f39958
cy|64|2069771bee428cb7ed16b08960e7dd2209935cfc4c2c9e53e9fa7d8ef8aa10157e45c326f9e96be2bf181da69f41d9048f409ba2d0fa03b80df05f1c8e5e59f5
da|64|7ac313cabd86bcc28c54eb64425a16618191bc0d5d9a859da375767e4f6464b2bac1ef65f80abf4aa5d7b144f756525832e261a5b86e9ec095fe1cc0af6e6c3c
de|64|5222f8d51bdce67f7fd5ba40ffce20b528bc879e2390a2c17808653fec9b17c2756bfa3a65c6fbc8d326264e86106d5984d41b5ac6a2de43592fb3f9e2c41309
dsb|64|ade3f1ee05658c9132df73c7641140ce2d1d0f36fffda6ab6285c641667845138a8a09069efa782bcc58bf516ca1355009bdcc00837da47ab79880b6d2e1c894
el|64|2164ae2b2fb11b512ec6b7049cfc49001094abbf5193b17e05fd4658a0536a829074acc40a2d1edc00445322843ca2fc9601b9344184f707d7b1481fa4ff2087
en-CA|64|8e3c93260e43553ffb1e4503bbc1a76b28568b25be7a11a6a9af40a6236d53b9a232b5cf8e9260d667077ec22617966f74debb893de92e7f1ef3badcf86c156b
en-GB|64|fcc49d6fc07d2ec73e573982607ef3281e1c061206c9fe600daf778450515c0b7846c3876951995fa959ea8ed3128f804c43234d860788b0bd2bcc3c9037ffb1
en-US|64|d1a3db7e60d265ceda4610ef54d7fc5622e342c9b1842d54be130f88259a078b662387d63adc1f0497e94fcad826693aaacc980184d239d2dab9a23a1692687a
eo|64|890f94f1347e3df1211d32f1c397c4685c3e86280376b385d3ad147850de7c04f590bc303e0c82f6c8f2ec6ff353cd4af9d59a27a91072fd3528b31c3bbb3352
es-AR|64|e7f238734b2ea7adb9710fdc822558cbfff7814083ec71080ddcd1c3b848a6631b7c4982c6481e99f442f32547bd945fff524d33de51ceb95089b575b4c9de30
es-CL|64|2a6ca8a2c231aa058fff366686579393c26adf0500cb48fcbbea04b00941c3e48a040f008a2a481ba0df3f5b6a0f06bca1dca136e343bde483ca0df3b7b224b4
es-ES|64|e029477615caac723819b56c62ff1d3e647a5d9ece876f71b50578052fd03fcbd9282febc5de8a6fbc10404de58caea956c7aaf037e9df865f0473a0467d6cb9
es-MX|64|a4c0b17984f0315bec8bfa2b1743069f7299fd2d791e4ebb08abb35411e0b8afabfd0e19bf2da856dcd70d7eb323c59688070a3669be49ad57eaf135b67ceba8
et|64|072784708df22c54b5f62b9c1346a811a8791f1df2d0a3f82287840c6c12ce0f9b48f8a58fa4f7d9fe9340add1ae0d6d5dda60715a017c72fefd70ad2388c22d
eu|64|fbc78924de0372e72d43f9359c445e5fbaf514907d38f9fe3787dcacdfbcadab92e1c08ccd2aebea029fa74fd8d4630fc6d89699fb745c3c97b4a56395e79986
fa|64|3d5802e66f2de2217fc7dcea9f8fa4f7e5aca5475e74910dba8cdc00deeb4c646e7c857823577c012391665b3abf1bd7877ea56f3817da760353da0698ce5114
ff|64|031ab83e8f938e16a1af16b21759c83671c4aaa56f3e91b9e3575d78e51a99f3db0d0e7fe91bbaabb1ecf733dfc53a9707633fb9323aa6bcc9fd598eadfcc922
fi|64|610db1a95a757fdd877ce73f2a66951639d892602d21117ab69e68dfb80dfde81efddb4fa5c12e1d21b431a34b7c528dadb65393d3e6cfeedffe17fadb586d2d
fr|64|f707c42337f4b116930fd23dd3727482e3991321f96f9afb7429000d353e95c096b321790ffd929a7c99f5d212e308e035b723d5afb39f9f7ce654020492cd14
fur|64|fa5c6dc98892ac8e552c91729a9bb6ffb87ca9ee7ac7bf47369f107a94324c0f14586c762323ed49bc36cccf47dad1f60676446fea7fe0b291c4fb130e201ef3
fy-NL|64|1c22554265ef14cb0c5c4d5ee12e1d676d7a2994042b4e694a04d97a07bb1b4626160a8a4ef9b35d8dabd8d18aa9d30e117574c47b436fb9be895667eaf6da12
ga-IE|64|7c09ab2a671d31b3947f3e356c8d7cf04bbc504be9bdab70130806431431ee7e63f2036c3fa5832bea85a3c51da268695a6ef4b83d2f30ebbbf4c182892ab88e
gd|64|9ed7bb9b3f6ec0e07bbd4baf55756cafd4b08e836c3c0fc49bdb803c45750d1789d0092e6dea57033af8b3b373d8d6db1529429a3828f3c4413650ea9900c052
gl|64|7f402fa118dab80f800fcea764fcf50208a0efe3681ed1d78fdb527b611b1bbb7c18455b9e8dc9273decd8efa2d04962ba0b9e4d2661ae01df9c32b886cafc99
gn|64|2acfdc257d5306d1b933a36574bc3702127b8ba309ce264e7b98c944198dde10d3c9b4aa3796e853bfbabcf8a7c6db6646747ad3a975ab56a1059c3ad7d8b464
gu-IN|64|b5203773261e896343e05ffc92c59cde0c8ce0cb52118e71531a680b69bcb2d9766ad47ba0e4ffd1ab38099c6058922fcb4049147162e7fdba25ee6e1954f006
he|64|083fb3ac610632921ad5b78465a32520cd0f2adf4d25413067f8a9ca8118131cd3a426338c003d934497bcb7403d9a4e4b55595d925ef1a5e8af8b79b7c944fe
hi-IN|64|867a353cbc198ae17826cebe53bb61a9e50be61988737667d934dcded7b2bb9d935c509161b6748a3ff79db57383c83a8c31afee2e2c1fc3717d2591a4b3fd32
hr|64|73f19dfa463411b9ebb45665876c1653156decccb9e319b2e7a25108a4fe39d921e80b7516934a71aa41c80efb162fd76c10eea77310030ebacc0978e7673d46
hsb|64|c73be55d0c12a1f91b9c83e4978aedb819718dd3cb7bf548a56aa7399e2d0c485e2e31441f1d7a0950f218615409c5e1eb85c3dbd9cec86671736de83c67ad14
hu|64|549c1adaca681e3642e5572d5e2b399abaf73e09cb2e2bb3eab89cccdef2c2a3db1a7c0812b29cd9073f72007c21a389395a75e8c6908f3dd164698c991b2c73
hy-AM|64|4b4d4d5f092e8da803ae1f8e5d9967d6e02b667b00bdab222bc566b105559eb08a97450644873dbac3e08eff00cb4d8179bfefa0a4f5614257a1befd42d66296
ia|64|385e1bf3251c6d7d3010ea87c2062c22e6db4bbaa0d4205f719ce8d8ceddf009f1218f077b75bd4fed81bea010c5e667e6ed527a73f8163c49cc0172a9bd36bb
id|64|75f33b4f217a78cff079f085b0a3e68ead2fbcca25f86d0e2a632efaf88048e17d67319e62f31e283bad0d0012412745617e5f4eb3e1e6df0c29af2199e6273d
is|64|864fbc9a4588420a769f2759da9f92fc4fe8ab428491bb194d840c84fb8d835dedd99852bba5300240f77e232f343fea7ab6f288bc9bf29c09d6d30619a63617
it|64|8068e996127b13f484704823985d33f3813bf04f4237627b03257d2a4528b5aa453810ecd535c0923692cf1b13e93b800fa71c9066ffc799205eb825c74a65cd
ja|64|e1028249ce12f1f31713bb8710c7069f70ed78a4022e67c239f8e4dbd142b03b028a9853a1a9b98b5614fbfd49101be6fbc0ac483b3869614ddb4d6dca0d85fc
ka|64|239561ab8f4b8a365a7b645de735a8fa061d2e3406fb5b3c8cb486e84626527a0d5597963a2a4ec4c7fe332fd0c109835de5fc00bb8903a3adcb08d1ac4dc6be
kab|64|1b83c35ed2a9b4da313b18f795224fa0180d58e0a24eb9d93a5140040541726ef6540de9ebd3f1618c1747498569352043adec87d0ac4a31a75cf7a990de6ed6
kk|64|2c97378dd827fe2b31551d7321b2b5dad5a8e42885e8fe3ccd05b969c36da259e41cb278c84f10afeab503443894fdfec9731f62c790b45c30ae396e8bedbaad
km|64|c4e31f8ffbf821e24723b405d2afea671e4f2a78dd0082f4f2dca672fb85f633224bff4f825f9c23a4849087d4442eb25e3497c4831924ab48e7d56e185a50aa
kn|64|4c02528773fa38b05ee2d37386b6ac895faecfd76f6879b0a41f9ed272dc4178165091f0314e12e8e51c06dd1f29bb8167e3240e34ffcbd52132fcf09d0ec13d
ko|64|d42918e7b8ac9d9c935b9d16c8bf83daba98865f476bc9a8975e899bcefbf68a4984f4a9fd6969a08263207a16b837c86d1dca36534f1f2d83bb37e655a930fe
lij|64|8ea73d036bf55bb48c86a78cb2f7fff08ce29d48eef02f3d68b2ee16506a28fe66f70fa217e1d3eb2fce036350bd62ccbffafc26eb2b89fa2c18e002f882f611
lt|64|730bf52bdff5d970d258695f3b5688ce34ce2eda96f1380f689f4c887383d8ec02ae4a407852aa62f840bef0189b359be51f1ca424ed9682af20049644b81d51
lv|64|4b223fb1286a95705f7e55773fbb138943659e7cf4468344fda5f384c5bfc8dbfe63e1bfc0b3276560594994d5066517240971797a751d8f1a49dd198e68a794
mk|64|ca0957b7c570f513278486f937c82c98ef2b51ec906124063aee791814f3b0b34f42aede332f7dbb8c48ad3fc4970b8038dfce3344b2c9be3819fa0aeea31007
mr|64|18372a2ec147f6edff361fbeb17bab4024a0d5dfd67213012f289a4a06aa91d211fcffb3682009a4d0e640ab11696c140f0a76d45fa0a708fc7640482fa961f8
ms|64|f633c8c443152f2b80a2377b512bb8e7037f602efa5e553e8b1f147febbd54dd5c82c503d6de5c8ef7eb27423b12fe8e6665eeee6a1ed8545dd81788be2948a2
my|64|1d78bf5b5292ac7d524ed7ac0334e7a924426a65e230a4af7b1c4a111bc0bfe85d263da2b7ad9b7c843a550bf0e3337d394deea87826f03edf8c6cc873758461
nb-NO|64|6b4dd7a5933753e61f8be834adb536000532c4773d2e0379e27dbb186b6ffaa86c24f5bc0c933e9c9d07ea61ff966528ebab63b3dacd856f5cf17dcfdbb4fc29
ne-NP|64|4d53c47a289f5a81d734f9c460a659a7e7484c00627be23c8522ac5270d396402532c19375b988caf854f5394af5de91f2e15507af9f17348e736787ce254925
nl|64|2963c96be0052704fdf0b34c2be626e7275b4ea422d2e1c75e7d8c413cba3ad1b211707dcfe1804bfbddefbacc7e41d016c8631999eb03e50e792e25c170258a
nn-NO|64|9768200393b43d183659d06c18506cb1ac48d8d51866fea954ab09ba735d6389276164c8952b42eb4eef1bb5c6e2ea2c76cac95b4ef7a8890731588374e1b809
oc|64|ddc3c7b624cc221267e477b99704de6f65cd9c946d5c4a9a6d4dfe76a023059b3d2a94ae62008dc2c95b2d01cd317be16f5ae645f3955cd5efe5e2716ef84faa
pa-IN|64|7d1fa1b362ed73ff1d3fdb0cd00ba76a889b24a62b0894667238c830649bc518b7d4abb74d7f3b7741a3730a92b7b572b732268c102d802b528bff5a11f40f27
pl|64|1b911ec00adaf9b42119be9e1c3185e804e7e486497f3716c5e4e297c350111ec960ab7214a65f45d0a0544591e395e4d26e2ea49c813802efd2cf8768b17fe7
pt-BR|64|4c5a4bb11bd6536426ccff6a9516caf67fce5426fed268d039d97b374cc9efee3faf6e1807ae655a7b703b592fc55f6dbd1dfda6dc62a6bca04460460bdfd7a0
pt-PT|64|a8270719545cf6474f81d154a84de888d26129c0084c3b34914e046cfb1f180a2a83a8967a6b84e5e0940bddf7a934455a47e06589688dc3df97a107c96817c7
rm|64|15f1e90d13e1a406d59b0a5a46f46ee2ecfea84880950b18e3a23b79481adb9a594a390bf739b9dee745ee2275d30a29a85d9b3285f784c57a5bbb1c823190d7
ro|64|19fa67e8e2068765c6f410e45f6dba983fa4c05aa60e6d30b2ca33c32d37f16edfa23f71e1306e36a75f0951a3ac5b65e75dec13f18f05710364c4de04307fe6
ru|64|562b02aff22bb578eae2633f0df364e40112a1ac17a04da2cf80d477520d6dd811dca5a70ba2fd8475be60241dbed217a810e79e56ed64467b33a11d0aaf8105
sat|64|2c847210fea42f34b3825c2967446d77b02298ae1a4af2d5a3d4fb84dbf69980b7ae076407dd0354204b21b8a5d8a441706a16ba8e66cb2c97998dd5e1f720ce
sc|64|ec0351be8a2a722ecdee3262df88e97266446e2c8590c9e48dd7f2b748c8278ff2ed14cd06a5dfe8ec91c34e09508cfe59dc776e3fc021641322b182d42b690b
sco|64|7502901d18cf7df58a3d430e9e895619b57356b75d21232ef41e8496a4b4494474f84e876c1b4050043759d3273be4e1fdc214880febc5c5bade4ccc202a600f
si|64|1d2684a4a9dbc36343caff6a55f5cf2357d360f42c9ecaa2533e6953b35b8dae3d7948d752921c7bd23f188c13da6cc626a4927f1540baf110b84915b30971d1
sk|64|9e83b6c398dcd6f5526da87fcdde6e67a0340f220651a0cf031c645dcd4f3fa3c7cce08d99d6b51605373e0b4b749d176837aa313c04ae5bfefbc34bd9beea16
skr|64|14b2f69ad9ea666c924226aad7cd025f047729a76364dc7dfc20e937afa3154b205bbfe82ac92e011bf1b3c1d24d57aa164d35d29c907460f3d9a1e0aaaeaae2
sl|64|94d3580758f3ffce599b6935938072ef6a9c222d371887c7deeacd8f4c2d7caa0f5b94a75abff6867b5c255dc14db584a9cea3e56b53d20d7a57fb33d097f3e2
son|64|e1e6c36bd520b28e8f1519fd6dfc559611e0bceeb74e60e37cfb9b5020efc89eadfbd3d09de122d196784d9139f5a10916f308da86bb8cff8edf989f124ebcc4
sq|64|05c13356a920558b7aed58f2945367737a1f912887d715e6b0e8d67e5b70c182223e3c9019f73cea6cef76596455238613ad393edfc4555875e7720ece7fe727
sr|64|73c8901d19de120b59ac76508ae79a147ea7ad4e78e13c624095753c82e4374cd4509f3c4efb5052e3ec0d03ae9a04e915971197a74248684b16e2b367d3a7d0
sv-SE|64|30e7c891f30eb9f660cff7b79d7da07bb563c0cf5543e737b7ee82be647c73a60b8c18c55fe5f0e55e945307bbbd30ef52968f129ca5684fe039552069ee0b3e
szl|64|595bd7fe2fb0a6019d2288a38ba4135d6230d58782126350a211fea95dbf22184122e22e2c62518a0182c58844addbe1b041df65398a19c64b15fe636c6d9d5a
ta|64|3fd3667743551f35b349caa20131b66aa572068c27d59e46b9922ddb9e2e6404398c940c4a1957cee46bc72c30f6965a150d36c1c4e095ec2869ea3aa3346101
te|64|4c42ef821e40565f6d030d6549d21b306b31803737c3752c2dd40ba904e723271787a778e11b50e772a611e3091204a757aca8d3d41a2afa14f07031b9686002
tg|64|e4abaafd4f9068f48bfedac86c6ce3c7150c19060dfa5dcc8023d1857b2186cf2515c7eb8f861beccdb797ac77af61efcc5b739ebfa7aa987da8c882b0b22a5c
th|64|be82d22d9b1a38e9412a735b332285eb100612661442c18339d58d940eb98546896c8acf37399ac357ab8f2e83697ee2ee5fe49e56a2a88c306d5b8c3d543a27
tl|64|3be76bb99f630f246bc3a1a861d2618c21752f6699bddca71e5569fe2bc46e129aaf7004437e6c3758d42951a7bcd5699981c1abca695b3794326ec0cbd90893
tr|64|a5d08fab22e2df38bfbd9ad2f15010f08bbe11f540344cffaeadc3d9d0476daf548f9a80039ff08549d2026d5c24a0143f1b433f19547a458c0b73345d98933b
trs|64|0e5477ce0254df1f25becc19a46f53e5cbc326936933f6861e24ebc45136e61ee2b4e7a6e7324526860bb5cdeb9580567b51e006683bde6f931729221cca1fb2
uk|64|0e6e2d52bd9394273466b5f5a0a48a1a003706d63f5e074933af40e6aa3ae569d00b924676e3af958d70799480f9a44b55ac7087e42440716586f8c7782e8c6c
ur|64|b5fedf7fa4079c584c0f08065517e437567d9f6af47472ef5db4fa7985a51554117e7ad87722b4e1c785ff11ae1d10c18439d02d819a25ac1a3380a30d3cea03
uz|64|6562a3f7ef598108d4243b44c27337325a98a009191c3f9d7f92944d364615e8425815974132338effae758bd14ae2bc4f32a7349a2ab5ddebf578fdf8b376f5
vi|64|4388055d4452e492c38c5b1530449a4ecdf6d9a6af15537ee4993af6b77e859b21ffd2619c0c300e70ec7a2612b04ef3f1f616b05c7647169fbba44f2c0e5fa2
xh|64|1473d9103d12a81cf99b6f2da990abe11cc13c1dcabc226264561427ea49b46cb58800e68324bc201f39605bd2b76d646589b30550c35272550a4058f9f1344a
zh-CN|64|704a75822ca87a5c77486ffb715a4b0f03bb0ecf5105a02b72ce70559bc566a2b028b9cf3ae19c8d91e4a9b21efde5cc5eb1c9e68f7562fb26ba979324ead01a
zh-TW|64|32cd4d6e6d7de464202add1491e2177aa76ab0d3471d1695b7a7fb32e6e21501267101c45855adf97b5065d307f575326e60141a6bced01941e6df7080a9a5e2

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Mozilla Firefox 128.3.1 33498 Wednesday, October 9, 2024 Approved
Mozilla Firefox 128.3.0 21503 Tuesday, October 1, 2024 Approved
Mozilla Firefox 115.15.0 26568 Saturday, September 14, 2024 Approved
Mozilla Firefox 115.14.0 39816 Tuesday, August 6, 2024 Approved
Mozilla Firefox 115.13.0 31393 Tuesday, July 9, 2024 Approved
Mozilla Firefox 115.12.0 29953 Tuesday, June 11, 2024 Approved
Mozilla Firefox 115.11.0 29479 Tuesday, May 14, 2024 Approved
Mozilla Firefox 115.10.0 27797 Tuesday, April 16, 2024 Approved
Mozilla Firefox 115.9.1 20136 Friday, March 22, 2024 Approved
Mozilla Firefox 115.9.0 22170 Tuesday, March 19, 2024 Approved
Mozilla Firefox 115.8.0 33539 Tuesday, February 20, 2024 Approved
Mozilla Firefox 115.7.0 29594 Tuesday, January 23, 2024 Approved
Mozilla Firefox 115.6.0 31593 Tuesday, December 19, 2023 Approved
Mozilla Firefox 115.5.0 33167 Tuesday, November 21, 2023 Approved
Mozilla Firefox 115.4.0 29975 Tuesday, October 24, 2023 Approved
Mozilla Firefox 115.3.1 25833 Thursday, September 28, 2023 Approved
Mozilla Firefox 115.3.0 9654 Tuesday, September 26, 2023 Approved
Mozilla Firefox 102.15.1 19727 Tuesday, September 12, 2023 Approved
Mozilla Firefox 102.15.0 20217 Tuesday, August 29, 2023 Approved
Mozilla Firefox 102.14.0 28005 Tuesday, August 1, 2023 Approved
Mozilla Firefox 102.13.0 34784 Tuesday, July 4, 2023 Approved
Mozilla Firefox 102.12.0 26648 Tuesday, June 6, 2023 Approved
Mozilla Firefox 102.11.0 27055 Tuesday, May 9, 2023 Approved
Mozilla Firefox 102.10.0 31564 Tuesday, April 11, 2023 Approved
Mozilla Firefox 102.9.0 36797 Tuesday, March 14, 2023 Approved
Mozilla Firefox 102.8.0 35684 Tuesday, February 14, 2023 Approved
Mozilla Firefox 102.7.0 34315 Wednesday, January 18, 2023 Approved
Mozilla Firefox 102.6.0 34624 Tuesday, December 13, 2022 Approved
Mozilla Firefox 102.5.0 33079 Tuesday, November 15, 2022 Approved
Mozilla Firefox 102.4.0 35715 Tuesday, October 18, 2022 Approved
Mozilla Firefox 102.3.0 33023 Tuesday, September 20, 2022 Approved
Mozilla Firefox 91.13.0 30307 Tuesday, August 23, 2022 Approved
Mozilla Firefox 91.12.0 31836 Tuesday, July 26, 2022 Approved
Mozilla Firefox 91.11.0 31784 Tuesday, June 28, 2022 Approved
Mozilla Firefox 91.10.0 30290 Tuesday, May 31, 2022 Approved
Mozilla Firefox 91.9.1 17387 Friday, May 20, 2022 Approved
Mozilla Firefox 91.9.0 23568 Tuesday, May 3, 2022 Approved
Mozilla Firefox 91.8.0 32717 Tuesday, April 5, 2022 Approved
Mozilla Firefox 91.7.1 32169 Monday, March 14, 2022 Approved
Mozilla Firefox 91.7.0 16730 Tuesday, March 8, 2022 Approved
Mozilla Firefox 91.6.1 12400 Saturday, March 5, 2022 Approved
Mozilla Firefox 91.6.0 34637 Tuesday, February 8, 2022 Approved
Mozilla Firefox 91.5.1 22490 Thursday, January 27, 2022 Approved
Mozilla Firefox 91.5.0 27586 Tuesday, January 11, 2022 Approved
Mozilla Firefox 91.4.1 25869 Thursday, December 16, 2021 Approved
Mozilla Firefox 91.4.0 17671 Tuesday, December 7, 2021 Approved
Mozilla Firefox 91.3.0 32583 Tuesday, November 2, 2021 Approved
Mozilla Firefox 78.15.0.20211014 23565 Thursday, October 14, 2021 Approved
Mozilla Firefox 78.15.0.20211011 11470 Monday, October 11, 2021 Approved
Mozilla Firefox 78.15.0 16182 Tuesday, October 5, 2021 Approved
Mozilla Firefox 78.14.0 40585 Tuesday, September 7, 2021 Approved
Mozilla Firefox 78.13.0 31961 Tuesday, August 10, 2021 Approved
Mozilla Firefox 78.12.0 25288 Tuesday, July 13, 2021 Approved
Mozilla Firefox 78.11.0 34885 Tuesday, June 1, 2021 Approved
Mozilla Firefox 78.10.1 23967 Tuesday, May 4, 2021 Approved
Mozilla Firefox 78.10.0 17401 Monday, April 19, 2021 Approved
Mozilla Firefox 78.9.0 25527 Tuesday, March 23, 2021 Approved
Mozilla Firefox 78.8.0 24806 Tuesday, February 23, 2021 Approved
Mozilla Firefox 78.7.1 17506 Friday, February 5, 2021 Approved
Mozilla Firefox 78.7.0 13603 Tuesday, January 26, 2021 Approved
Mozilla Firefox 78.6.1 17991 Wednesday, January 6, 2021 Approved
Mozilla Firefox 78.6.0 17059 Tuesday, December 15, 2020 Approved
Mozilla Firefox 78.5.0 23400 Tuesday, November 17, 2020 Approved
Mozilla Firefox 78.4.1 13293 Monday, November 9, 2020 Approved
Mozilla Firefox 78.4.0 20462 Tuesday, October 20, 2020 Approved
Mozilla Firefox 78.3.1 20622 Thursday, October 1, 2020 Approved
Mozilla Firefox 78.3.0 15645 Tuesday, September 22, 2020 Approved
Mozilla Firefox 68.12.0 43122 Tuesday, August 25, 2020 Approved
Mozilla Firefox 68.11.0 33787 Tuesday, July 28, 2020 Approved
Mozilla Firefox 68.10.0 19845 Tuesday, June 30, 2020 Approved
Mozilla Firefox 68.9.0 19585 Tuesday, June 2, 2020 Approved
Mozilla Firefox 68.8.0 19387 Tuesday, May 5, 2020 Approved
Mozilla Firefox 68.7.0 19643 Tuesday, April 7, 2020 Approved
Mozilla Firefox 68.6.1 6518 Friday, April 3, 2020 Approved
Mozilla Firefox 68.6.0 21260 Tuesday, March 10, 2020 Approved
Mozilla Firefox 68.5.0 33163 Tuesday, February 11, 2020 Approved
Mozilla Firefox 68.4.2 26137 Monday, January 20, 2020 Approved
Mozilla Firefox 68.4.1 19467 Wednesday, January 8, 2020 Approved
Mozilla Firefox 68.4.0 5320 Tuesday, January 7, 2020 Approved
Mozilla Firefox 68.3.0 27075 Tuesday, December 3, 2019 Approved
Mozilla Firefox 68.2.0 42866 Tuesday, October 22, 2019 Approved
Mozilla Firefox 60.9.0 50986 Wednesday, September 4, 2019 Approved
Mozilla Firefox 60.8.0 44244 Tuesday, July 9, 2019 Approved
Mozilla Firefox 60.7.2 16461 Thursday, June 20, 2019 Approved
Mozilla Firefox 60.7.1 4953 Tuesday, June 18, 2019 Approved
Mozilla Firefox 60.7.0 19120 Wednesday, May 22, 2019 Approved
Mozilla Firefox 60.6.2 14936 Monday, May 6, 2019 Approved
Mozilla Firefox 60.6.1 26619 Friday, March 22, 2019 Approved
Mozilla Firefox 60.6.0 6052 Tuesday, March 19, 2019 Approved
Mozilla Firefox 60.5.1 24294 Wednesday, February 13, 2019 Approved
Mozilla Firefox 60.5.0 13817 Tuesday, January 29, 2019 Approved
Mozilla Firefox 60.4.0 26467 Tuesday, December 11, 2018 Approved
Mozilla Firefox 60.3.0 37745 Tuesday, October 23, 2018 Approved
Mozilla Firefox 60.2.2 22276 Wednesday, October 3, 2018 Approved
Mozilla Firefox 60.2.1 24555 Saturday, September 22, 2018 Approved
Mozilla Firefox 60.2.0 39208 Thursday, September 6, 2018 Approved
Mozilla Firefox ESR 60.0 40328 Wednesday, May 9, 2018 Approved
Mozilla Firefox 52.9.0 1544 Tuesday, June 26, 2018 Approved
Mozilla Firefox 52.8.1 496 Thursday, June 7, 2018 Approved
Mozilla Firefox 52.8.0 1876 Saturday, May 12, 2018 Approved
Mozilla Firefox ESR 52.7.4 3091 Monday, May 7, 2018 Approved
Mozilla Firefox ESR 52.7.3 23582 Tuesday, March 27, 2018 Approved
Mozilla Firefox ESR 52.7.2 13979 Friday, March 16, 2018 Approved
Mozilla Firefox ESR 52.7.1 3402 Wednesday, March 14, 2018 Approved
Mozilla Firefox ESR 52.7.0 2472 Tuesday, March 13, 2018 Approved
Mozilla Firefox ESR 52.6.0 47217 Tuesday, January 23, 2018 Approved
Mozilla Firefox ESR 52.5.3 16650 Thursday, December 28, 2017 Approved
Mozilla Firefox ESR 52.5.2 12544 Friday, December 8, 2017 Approved
Mozilla Firefox ESR 52.5.0.20171115 16782 Wednesday, November 15, 2017 Approved
Mozilla Firefox ESR 52.5.0 1881 Tuesday, November 14, 2017 Approved
Mozilla Firefox ESR 52.4.1 12877 Tuesday, October 10, 2017 Approved
Mozilla Firefox ESR 52.4.0 5011 Thursday, September 28, 2017 Approved
Mozilla Firefox ESR 52.3.0 15387 Tuesday, August 8, 2017 Approved
Mozilla Firefox ESR 52.2.1 16408 Friday, June 30, 2017 Approved
Mozilla Firefox ESR 52.2.0 7963 Wednesday, June 14, 2017 Approved
Mozilla Firefox ESR 52.1.2 8990 Friday, May 19, 2017 Approved
Mozilla Firefox ESR 52.1.1 2958 Friday, May 5, 2017 Approved
Mozilla Firefox ESR 52.1.0 4025 Wednesday, April 19, 2017 Approved
Mozilla Firefox ESR 52.0.2 3323 Thursday, March 30, 2017 Approved
Mozilla Firefox ESR 52.0.1 2301 Saturday, March 18, 2017 Approved
Mozilla Firefox ESR 52.0 2016 Wednesday, March 8, 2017 Approved
Mozilla Firefox ESR 45.8.0 1767 Tuesday, March 7, 2017 Approved
Mozilla Firefox ESR 45.7.0 2927 Thursday, February 2, 2017 Approved
Mozilla Firefox ESR 45.5.1 3882 Thursday, December 1, 2016 Approved
Mozilla Firefox ESR 45.3.0 7354 Thursday, September 1, 2016 Approved
Mozilla Firefox ESR 45.2.0 2394 Tuesday, July 19, 2016 Approved
Mozilla Firefox ESR 38.5.2 4016 Tuesday, January 5, 2016 Approved
Mozilla Firefox ESR 38.2.0.2015081001 516 Tuesday, August 11, 2015 Approved
Mozilla Firefox ESR 38.2.0 488 Tuesday, August 11, 2015 Approved
Mozilla Firefox ESR 38.1.1 2087 Tuesday, August 11, 2015 Approved
Mozilla Firefox ESR 38.1.0 615 Friday, July 10, 2015 Approved
Mozilla Firefox ESR 31.5.0 6620 Thursday, February 26, 2015 Approved
Mozilla Firefox ESR 31.2.0 4377 Thursday, November 6, 2014 Approved
Mozilla Firefox ESR 31.1.0 862 Thursday, September 11, 2014 Approved
Mozilla Firefox ESR 24.2.0.20140209 1068 Sunday, February 9, 2014 Exempted
Mozilla Firefox ESR 24.2.0 733 Friday, February 7, 2014 Exempted
Discussion for the Mozilla Firefox Package

Ground Rules:

  • This discussion is only about Mozilla Firefox and the Mozilla Firefox package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Mozilla Firefox, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus