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,545,362

Downloads of v 115.3.1:

25,619

Last Update:

28 Sep 2023

Package Maintainer(s):

Software Author(s):

  • Mozilla

Tags:

browser mozilla firefox admin foss cross-platform

Mozilla Firefox

This is not the latest version of Mozilla Firefox available.

  • 1
  • 2
  • 3

115.3.1 | Updated: 28 Sep 2023

Downloads:

2,545,362

Downloads of v 115.3.1:

25,619

Maintainer(s):

Software Author(s):

  • Mozilla

Mozilla Firefox 115.3.1

This is not the latest version of Mozilla Firefox available.

  • 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'" --version="'115.3.1'" [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'" --version="'115.3.1'" 
$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: '115.3.1'
    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  '115.3.1'
end

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


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

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


package { 'firefoxesr':
  ensure   => '115.3.1',
  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 29 Sep 2023.

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\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\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 '115.3.1')

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-115.3.1esr-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-115.3.1esr-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\LanguageChecksums.csv
ach|32|6bdd8792eb73a2c03d342827f3f49785d54caf7afeb54ad80b1eccf1ab2dda26c93c559df137f524614495ff14985c6b7859045ff233f2388482a4834df5c80d
af|32|f87933d6ea5698279963386f6f75628085ab1aecbb5e180bb5753e2960af8a661a9b4fc51536d04bdbab4195f8fe7e2d449590a2f7a9c836d8063e33c3d3dd89
an|32|4539fcfacd83c3b760bc99d16a410ed0538179fe50dc41f4411f7d0cc7d1ba0818c8264af21f680cc1464fca79dd69df6f154b9d89ab6da44e27406ec6c92cd8
ar|32|b25baf4983695ab05ac574e3a545b94575a294072ed0f00249ac5133ecc31429471698ac43318e6541ca99a73321a0fb701ddb89f4cf8806d6875b63feb631f7
ast|32|2853da7f9650d286053791c9815187b5239e050306f9c5f603f78a11bb414eb6066234a64595d7e1470fb1aca64824877271523625554c372de873a2a793931d
az|32|b495fab4fbba8fd9d0e2b9fa3c047ab6d21181956ed358d074e1e4ddea83087ab501c17988b38f1dcf3d2e32690b54b0558113af9a01142b1f85ff32fc8a8d4a
be|32|701804bba3c6cd0c270350c610c2b996c6a3f479fac7e47992cad8acf07a8808ee9c67e2b8028180ffe1013384d6eae1fd1f37c98baea342263c031d5923e66f
bg|32|85a455e87807282a61e2f4d981ca9a9b5582f13ebe81403c2d904c9148cd99fe98a70f4db9b0b8bbe3c1cad50cd077b9c1177e9301220f9a8053bd95d083362d
bn|32|467706b9ec6a594997e8fff1247aa0a77cd657c101a3c4137475f6515f96b7b77f41cd775538422c2ad619710a467ec3ec015e92911a47cf9401123690ca4e3d
br|32|f322684d6d06815320c8bfff22cec36ad99356a1e6b1909a21fcc7e70e67da4cf536091bc88ce63d122773a86aa9ebae5c89d3e434270e31834f5f638537f083
bs|32|6de6e23b637fc4c0d2abaaac6552a431fb2d7e04f2e4171aa9a3631a8bb3d5fd5aee3c2192cdfcbb6b50cfbbfbd8a021d31df78fa2643176ade0c06679249abe
ca-valencia|32|ec6fd7b6a914a5d5e39d323196214bfa98d7ccf4bb7e857da9c6d70f45996f6a735608a9256f0d077cb0b76252d30132c303e68782c2f70f3e0a5329ac3839a5
ca|32|b881774e8b611ccc1f0c2c7753d5272d3857956e8281b24988050fc14bcc1210ea8f112a2dc49d76a66b3a1d5d8778d654e13a02639e5b7481317c6e2d7ad7d9
cak|32|fc1894d46ba50e5f48d563d054a123fdbad7bac6bc66f13385f02730573935b6ccdced3c85f77ec109ea6b8959f0b551bc8eebaa1ea8a8c028b06a9f9de04771
cs|32|3c85edaf70823f1415cd3c5c6575e71dd626154864f89a5fd0ce7edea83ed201dd8db5e3b19dc3cdaa865080bd84debe51215666a2bac35a7562fec212d8f499
cy|32|ddff9a8da3bc7c5e8570dca139679b5af698cf6f0ed4ddffa2f7d64e533a5d52ed7ede7a9977c9d5945d14efef91c14a72a021704301bdce7d251b763e5fe229
da|32|610756de4c2dab617928e739d0e370677d83b9ea6ec7b519b4a8b61e8bba0bb598bafd721bced622d790368d677e52ef12c358de776dfb626bbdd081c7224849
de|32|68b7ca2172f9de93bbbd04adf5c596c5f282834b1eb46f0aebb34d2dee7d1ea0b9282b6129afccc3f3d81f240d382c750665e67d6173747fd4adf9f353e324b7
dsb|32|34f706410a0f2e8897176885eb3f1a0901922cb6e82533f3a6cec8d30ee8128d108e81b6b54ca00cf1cedb8d4e4da91fbc533733ae0b8208b4c70beb3ea7504e
el|32|976b1fda17cd7644ec9e41ba3b281ce4fbcc1d1b4e3858b893c36bd2f22e18d0be5990f4eca4f6e4a126b0d129a9fa81df93e0e5384442fe6a548d9fa9280007
en-CA|32|5382999d0516cbe69be34d0abce502b4adf68ee66a3874313082a6cdcb15007bae0495df0b3e3f118c5ae1478d9750c71a1e1e535ae1b8aaeeae494238d6b881
en-GB|32|2d0cd9a528ef061158eedb6dff722ad1070b1450373de686cea352e0f34b1681b16b6bfe5fa1db33739e9553b2795ee0a8dbd316cb4c4e710e007e484472a539
en-US|32|40560ace0db96f34d91a4e6a5c414bcab554a54d7e0a3a953a32951fe8f75bceafbed3a9125543f1238e0b8383d3a487a5a95379bbecf500854d0b9d81ce2649
eo|32|39bc35856594a4f23f4dfc1fc8a696d8382c1a03b04929b1273f994b127c136e6bf2ae1d11db6f1b88d30585ddbc084736a5eb7e998a77b7320032906e5fe3e0
es-AR|32|5c59a162b5bf21a261412dda9d3b47e0b87223ccac97282d73813562c858e51389fefb72c5fb9269346563fed10b63041b520deeefebe701bf196f4480d2cf35
es-CL|32|3bbbd64b47521d6cc95b7e7180fa73b624ef946ed28c51d2c4124ef3dd00afb78ab667b3b048b0c38e027bb326922596aa32bffe5ee47c17cfef97c8a1b43270
es-ES|32|f236e6f23b4c0c0f933a4b88ba4059da65808eb5f3eb86ec15193cad932fb356c81206f90396742e69b56a10626fe6300ba5ecb3157b65b369c9bfae1acff175
es-MX|32|3f23d691a81d0f5c6eaa72259dab9df422f2da7fd9914e8adb878142fd332ad6ef32f4db7ba579b4398a91b2267e93c3c79e8a195d966d71771d26795f0e2edd
et|32|e41e29d10c24d10b4cdf5bfd3123a55fe318e15ddeb3cb4b88b0defa961ffec22ee3e2d3bd0e5adeda28469f72ae24a18bf7e28c53db3531018c1a0526aa6f4c
eu|32|b6d4056665c578b308dcd91faa8be14fc81ae503b0e3f11660281bfd3542ea72a4ac3f70fdf72ecfdff518b26d199c13642dd4b2bbdfb0c503a7f4db9cd17838
fa|32|b5187790a9a3826f67a56e402530b51d705719ad54217836efc70a8227fc5f93338f4eab2a6c13725b24ae0e5f4a6f952ef37b3419622beaa13e5fb1379943dd
ff|32|52daaa954aca28652934297df2eab6b0e93e7ae8e1ba6a7bf57bbc29b02c46b23d7d1547ebe04a6f016ee69e25950fefc211c4ecd82849686f92fb9fe5e97024
fi|32|bc97442c321e682d7c2e6babffd397fcfd45338dbfe4e89048789e9f9cce394ddae5d4ed4bd62ea2b3e80fb05c1b79d96a3f05e2f9dd8ef10d3b56ee83d16a79
fr|32|11c1883e8bbb60df07b424ee43635b7316711239dae2658663bb222b15ee8ffecf14460c931d268921eead1a5e721dde9dd15abb7eb46357016ccd43f1747b39
fur|32|7369994a0e63bd879d7d7a9b2e2779b69dee2f402b5b97bf8a7ec4ebaaf1b5c073e5a1c43bfc7847c4d6b9c224eb39d6aaee20b79369d6d7b34836a078d0f673
fy-NL|32|958b82d8a1818f2dc410e604707810f609e919e5b8dcdee3d2eb3824744f6ecc39fdf4565a974d3fbdeae76071d33eb3387b4da6299ace209d11383b673036c4
ga-IE|32|f437883a0f8fce542ae1548dfc5081ba9a0d8f68921984153e5c89369fc62e813707af358121e853361429f605e242155666734aca9a8e745b589d33f822a231
gd|32|efa1800f90214858aca559b061ceab42687a667c3e80f5ad8b2a28ebf224411d6ba0a17d2f3d840231655e96671b53a5faedd94eba71c6bc0efe2c82de9c7d84
gl|32|56c724d5692e9b16b7dbe01c5c31741905dcf5131a713950627214015bb2910f57150d23c86ad5429c527e11e85bcab8b2018bb674466fc6dcb96b67f3041f85
gn|32|da6cde4dab89e388d0aac19d3ef7be1b279ebb5db36c28774309206cc7aa129cec8b745365d40b79a3a9f66b0dc7dbee22a223b2042133c61588d6aaf5e2e1f8
gu-IN|32|d3450544452e472c66d4bb1a2d115115b99b7e6be5e744510a763fc2349602479d691af298cc1e5b8987cc2220333fee0c452557ad09571210b4da43ca996616
he|32|4d081b1fda3405b341db957c56864a6ac92ea2fc1307a326ab7f9cc21898069c224892d429d3a397d7e5ffa30fe93220b732ee62b78d7f3a1d6d11ba653c4b24
hi-IN|32|854e6f9c077bf3e93d61f8c19076199e5aabddf6bf09716d4a64ae4538a77f08b03efeb462faa519a52642b36acad9fdad424f2e2816ecd8eb79dea5127ef9b9
hr|32|ce179c585b31a6f76d342a23d312d625c438b09a984a0b609d88a2236d1ca0cb2a791bbe277e9993ad35293274725748016f857cd61da8227056b1855ca57d82
hsb|32|e1027b0a1a7f26e11ae08be77a0a1b001cab334ed02e3448c22f42daa09021aa6098d459c257c6b8da87fa7ae7249b40f67eb5c95c9c3e80d5c894870e42a4d0
hu|32|b01e1b4b418fa62c350e6ed6fb0f91193d7cf4bb7cc4935652ef5c53dad94643ae8b1a9573ca3fa7c5041f90a068258cd114227b183df9f9d2bb1a4988e92297
hy-AM|32|f36530ab154a3a4917641e9d12682c758ea9f6080ed917d6e3ef05b39f007c71ae72416748bd22ed2ebc5a365288af6783716b226b1f14a62c7fb5cb57bb2c32
ia|32|1b63e622048b25da123d26a11a5898153e140029c5a11b03d8d1a5ceab8466dc1e7c29a67c0f320c9250f7294e754fb7979ff37a947c51dd1b85186a5ff6eaee
id|32|397277c79571298c591c6adb338c2a0f8e6e1b5403bee528a4f5507f9e7013de509ef390fc8ee7cdf285aac30b4f3522119871984634f9d0031e66780baab3c3
is|32|dd2e9d90444b8cf4ccbbce28a1e81bc2d6f72833278772c7b306e804161e58b0718ea5ff3a7acf9f043b56c9a03c09ea606af0b34789269698634c6e4c3aa321
it|32|14e1f33ff63b228b067b1b70a279df4fd52d517ed7b7185762f8a5209e9dfbb17a68fa4c417f9bfaf276ac1b1638899d2cd248358cca748232dba0e87e73efdf
ja|32|5aa7b9cabd8ee905268dd8bf38f5c269b600f8a1905f6b6fda5d3eacc30b8abac15606e40b0289db443cc683ab90870cce21fee4fd91224c0e83c43393f3d67c
ka|32|815928b8f24c82c3c23ccb73e9cc680fe0fa7fdd79b55ec9e47758585fe76df00894a9f494aaf30c10305f2c9352cd9456ae6f7b94ee4818c2500af6033d0c7c
kab|32|1a762e712e16dcd31c05edf3c3b56ab7f669dcfdeec9091031efa964800341beec3493bee767c770639bbe7487cb4c96e3c6571a82e6059deb172c501a957851
kk|32|075e24de65ce0efc8699a0d74dcc1512b7acd7aaca275297f00494074eb7c45b98151b1615280e26054cf3a231e5e4388ec5e2d059a4db6361be79f7f4c4133d
km|32|9bd6eaaf873c252782d8eda2ad74510570e5505ff98523fb43be3d2aa354302cb10fd90f0d70d17d710793c03ff467bbdeffbc2c47cb2fd96bb9958fd460b45b
kn|32|d939b073a9a93e0f339b09bb4a3166bd8147bea5913faac3a451bbe8f39d43429d83c9f489b2bd48c5b082b0a4bc6ce833610bd59a8a9cbbb79e31c80676a62c
ko|32|3467f126a861a705a83dd4c5825d2475f76e3b4c4592eab5f13042d238f8c66d4920f12d29fd6b2238a140f5c6e87009617c9d6da295bac505cdbf4e61040222
lij|32|202592722c0a0cffb6ee50a225c7a4896c6e9396d2a7c28ab6381643187a2c249a01eaed87ddceb39e6261df101c1f493afe38663ebfdbe45a909333f68487e8
lt|32|52f020079c7e25ea18d5807a121b9298f9765208ee34e3bc845811c84c07b669b6e56585e32edeed35b233679f338b9beaf4c42e6fed0e5f3e06afe535b549fb
lv|32|53b0316f0d4c669232b39b9f551bfbdd95ea4ac707c3ed9b1a32a18dee85cd2d5e427672a5af0f6ce6fcfe6d09f15c50b67784c707265ca2025c067dd394cdd7
mk|32|7a6964dc091a8f7bc2603d6a1f89ff76958ed84e49476d725750d205c590d70839e1488d2b7919f4b25f271775dcc5c3d18511ebe4b5fc8902fbb8dc3874523c
mr|32|c5168c8dc8f622484718c465588b91ddaa40b41d550636f64b88ce3e148ef10f168298dc62ae2f98655dbd6aad4b0b141b002cdfe44f0a48f64b86e834fe411f
ms|32|147a0c8b8076ccacf10a0ed9468ee818a3bd3df6a8c9c2722b091a7f440f4cd5897acc32b5ba412f80c82840967a8656f010b2f0dede694b80e352c2a11976de
my|32|b9ff18dc2f12784e4028ad0328b5eb317230519e56ea4715368e18626d9b18c2dc9c8768ffe1df0f417fae8a876eda371a5a6b8757ee8525da6bf20ae5f71746
nb-NO|32|fce6b82d7b21b9c2da1e7c6b007e31a30e083342d8df11531d2bfe1d546a5f3dd01a297f329a345e12debd8abdcd08a3651b04b0aaf99f6ffae903e328903aca
ne-NP|32|19d58093ca5d69eac0a54eb62d650273d9d52a052565a9fb4e509b599f8c8d05269c54515b8d3774282d0446b8e0d7c840f38ee05116872f545da11190e893a5
nl|32|288325e5d729fe1b3baa1ec2613d303ddff7d1867bdca4ba1a887d99c449e97a65926322c30a0e3b57495e2a1908b5340fbe629d33ac6365a54ef3bfa357080b
nn-NO|32|5f4e325fb87d9d3b448ee2e61b05fdae019efe5110f7695a277584d498c4ecad6dadf20a37a0c186152224de611bb2026200e22faad53634ab26d76beea19a07
oc|32|13aa039d1efb4bcbf88eef25825112416a6707861645e3975378f8b5dda411a184ff01854f35597c295fbb0682c6a28324e7262e3f4d16602b5da501686e08db
pa-IN|32|8b02683fd2c0c9e649b057d6ada9779d836c302e0b14f18924e80c7a6db2f8c6d06c5bc57dc51e3a203f612fced6593b59d58fa6f2995c3165a1cbaf33d7b363
pl|32|976e2c9ad6da6403d0024abcd0acf481d0630306f46176670d30dc0176e13862a446529ff0de9850e14a954be630e54f1d20a7c4ea46ebd5e96e700b83b0846e
pt-BR|32|3e636935929ee5ae44aa7748e9bbf4ee0e16193134f24f63035b7dcec94152db023f679d1c11b5547c4a776adebf9c5eb0ff6c33683eb302799e59a265c24c55
pt-PT|32|1ec5ff33a0975619d25ecf0c4e0b63f2fac51afcf579eadb421d83a457a78d74ea4d9bfe0c4667f2f81363ff5b29f05087f0283d4ac2e22787e3ebe27c448e96
rm|32|0e87dda66a0589735d418b5bdfed24688aaa9d73f5f9919c991d03a29785131162af5ae8c2b5f2db73646e42607910b8cdb8ea9e54a0dec63664c557170c2dba
ro|32|d27521e3fe8b99114af64d27d79d67ae6f0d6e0a6448d8de059ab4bb4c3314476ef06cbc544b57ee4af57f3d58192592e0485cf7c4c5dd00258680c963ecbfe5
ru|32|c20cf1d400de9664c17f42562df72c9ed7da316877a62dcecc6485e54676de4a1dff031575aa84271c357bc97e33711e00d21777f139d12a17f1b03c9e1ff5fe
sc|32|0ba89f1ad2b39d97efea97dc24be01a068e65c324f79b231caf4d7f2c9a3b6a40f59523957824143522c941227b2c9bd1a481b5e9ab2fe7b40665e75e68d3b70
sco|32|79b3aa683189a1c3b4e3ae190ce26abbc91595626ab4a7e76e179df46a104195b3e01571abc274198ca7ff9dc5f53a35bca6c205a0be13058cc05f674bb56b5b
si|32|d95241e86ba3924613599eca6f243ecf9c2b13e2fdeb30ca43a45ed9b55d2a912b5f14e0c1bd46293137722e824dd80a99e3ddc741a293daca2ca486bb3160fd
sk|32|66829e6d9787554e1af6b481c82ac088429882fbf37915c0681ff2b0714cf6effa319708d280d8ba9493773afa6582c3c07534c521acfb83d8f6828f66805f53
sl|32|4d5b373481c62c4c20ae6726ac6f46d20df67ffaeba3fabfcde6b2985bd2a7c868cf43421521170b490b7e504786dccdcade14e372fe63d4cece5344ce31668b
son|32|1baeef2c4fcbbf1de794346eeec1e948ee43c06cf14f78deac6ab3320942ad91ed3288cac8650b95ff7cef08f13c5b0f1ada135fab7da3f260c54680c29c5d49
sq|32|929c0d4723842499da1b14511bbdf7956994a3ea3d72062fb7ba3e2d97adaa4d158d42d30654328833afde3a07b8ea71661bada16dafe8ad5b3e50640191a70d
sr|32|0ba3f8c189cfda736679f5fd69d656ea8422bbbd0380a7cd108532f3680f5833f1387ed510523c6dc7601c005530837ff5d045ac1af0fc6a3d954de2b91a7302
sv-SE|32|a86f3a1e993ce50abd21d1c4a5b0c739dfe7b9aa944d4496e52585b1bfa6f32a77f9724d0ebb32252490fcf9885c64edc303bcc75ef1651f0c05a442b0b08377
szl|32|ee01cc4d3023ed2e044c5aa49fe56c9a92f2b67e42652fc40cb1a3b648d6cf2f2a5287bf805f89112d22d1b7bd375dc451914b276a9ce9695193df300f0812d0
ta|32|2683db212f72cae7b9578d6e046872c34d94e76f87f078e58c81fc62f1485ecfc5dbcb5ede7152b0a3a305776c57f52e9a6a55c95c033be427f1644357d415a3
te|32|d1701884f7d08e750104bb708bc9c77207c6122d1dc016bf3afa9b26682e935ef194017a6db3d9e8c43d236bdcff41de831a3fb17789f3e6579c7aa1f26e5001
tg|32|82b1f0ce318be4418c9f32b202cc47cd13f21efa5c6d343562850b5a590d98fd6b01cbd0b9876088858f2a200f0a7842b5d5fab5ad87f53a8dc10ee0d950c606
th|32|de5dde2824abd0082cd6f07298d0995440a201b3f75213b028434c9320182c37f1607224d1a58454f4ab6663da2abeb8c683d17725f65d9da0eb322b28d1db71
tl|32|98b01c7db4ab374b4ba71d90ca8941621ff4ac9486fd5680948aa1dcd6e85ee8333582c950e9bcf731782891367474fa51f1156356a0b55506379f188d2a6025
tr|32|4d1d2c875bba444e58facc18b254ddc5714e28cfb8e39725cff22a9b459e2b0833badaeb2c6736ff2f6ff0a1f3994b196e762438de15898c41ebbdeae661dd25
trs|32|1ea81a35d1d19348bd814755f6ec54ac95fa7a9d55790adf66aba060e135fb0899d36a7b2738f85992d128a705d4f453969d9ad124831005c1ebe39e021ba481
uk|32|f97867ef036de1f3ec78b4e170a78940da97f4326bec8c72776d11b8d89eec9165a2cbf5341a1b2b6ff05726c603f9eaa686ee8d3900847a3763eb914711c5d9
ur|32|7c9f8291b77b4d15ac6cb6d8967750e2c07a0b522f0a012883dac40a8ffb398d4b54b63f251684f6c94dfddba4e5fb80f29c289708d3a78ebde4147be84400f2
uz|32|7889b2ce6a88c409433286194e1c1cc8d2c53bb18d3ed7e9e956dfb64dab2351529df991ae35076386b201a8d1ac3f077560e9165beb7e855ac3da9d14db2e62
vi|32|791abb5f81d1fc79a174428507d41a9fa3bbbf0156537b085c023d531c12df20eca2370ea3b8f661e1f4c8b3608f151e657c7f90922c262ae21661c8f6783a1f
xh|32|46184a7ced3f1d19f9d290365e39a2df204ec85b3ed0de20a69ebb66bb6b4f11af409931ad27e003431b8fe70c26dd0e4cc84f887cbaaed29679db119f884c36
zh-CN|32|d50611ed224ba9585f061047cd2a4706ef730d85d70e0388a1784a7bcf72500d906fd0a4be9153f85e1a53b2cb377d7e337b98e54e7ce44e22381f5a0c86cc25
zh-TW|32|5452dfe3f81e8f155b0c4f4e71777aebeaae74b11df2280a921e94a3a0f0fbd1028edfd99086e3a91ddf4c63a64c19a952c0a6be73d3957bee09fd979df6f29d
ach|64|1f7df83a68f82d0584e5d71f4b28cb7bdf88c86c4add604e4ff8b6346f6cf7847ced735f2badad71fd62d22c71afd6ea3a2b142f69a457b1d8367024952f08b7
af|64|788f772968102fa46e24740bbe29d56d8860cca9fdc323bd36cf9d0110165080207325caf4f2db269ac0f22402dd751b866b5785fbbed78977d0cb47aed314d9
an|64|36a9da32e96323f689038648713b6f6e385a208a1ef0de2cd83b3a2b4e9bb5181cbef80307ec7a877fcbbcb4620eaa8ae447d782d56e02554740d7e1884817b9
ar|64|30f72112c19611b76b3c99e0b7b254bf229fda295973e15926d80fc7c3ad1b27afd4486594ae29e00701cf22906c47e152a3c665da29d91064c6600f9226ec83
ast|64|6fdaad1e2532cd9f4693ac95330e8af59435d6dbd1838fbae276add3e6110bc0c054f9c5b8f2f19dd57869d40bd1e0cdb8a4ef1ebaa491dae6a0817f3003ecec
az|64|c2f25a43a03e75d14acf57e2b5bd425f1e47ad94be65ef5047f276b340a2ea512dc96a8b3924d9076ad6dacc6e6873a24307513de2d69c6500d6dea9dfca9236
be|64|1992be82bd620c10db1eebb81b3fee97a3d45e64ca42fd0ab2ce7578423e1327076fb4beb39e4328d91e96c14a4e0dadb35f7f172266420199b19ecf4b05a7fa
bg|64|e32f9cd9607548ec715553ad1bc1fb3e84c48612660f2072cf13253c6dcbd7f5f2d1ba11258058c39f0dce7da12f951ec408b6d17c5945dada281e456077a3c3
bn|64|7710ccc8f3599cbd84394624648425f7398e9139a834cd6464456e70b889df612eeb349cd8c28c4973d60d4615a662adeec9a5c6e7289f9d67c3ac47f8588140
br|64|171b2bd468c56d59f8688279281154e599200bed9664be75a998b21e471686cd0e96ee5506d34ba79b39708251fa60347b951623f42c26f401bbb915e61fd64d
bs|64|b4325dbfa8b6c0abca823adbf8da5d0e327d9ac7f2bb333416ee33a09206c9eff3775181a1b078d25a0c39367ebc78965852035a209c802cb168aed28f7ea2d8
ca-valencia|64|e0fd5feeb5d846a23e5f7045b424ac0a3571458ad5439e9d12aa46794942919d4cbf3d3a518c4f662c959f75ed7b558b8e8ac658dd3d7e7dfa78db2c119de264
ca|64|e18a61f55e948fa40aff778a20981375aa4139f1ced9f1e88300290fff2c0427fb2be089f4e08902b108b31a49e1e82a7f2930cd026022f8bd25295a64f14d4f
cak|64|a20ca2f330e5d526eae8ebc8d730fef56eaf88cc724be0266bc951c98b5a45b6d8674c3225e056349f93b892f26b6dcc53c6ad2b62ac8545354058283bb64cde
cs|64|b146d7fb55e6c4ee27f31a7350c7acc0b752ccd0e6b740db788b633d3de7db7adc71e8deea93f8774c3321257533aa94ed7a51db5192a605f5c351cf19e6d4d8
cy|64|ee9e5a276aa9270e3ff74951615b7a2984a61c8a0aae23b1dab30f5ccd7a7ce3102f4d54384c35617df349658f48abb2db7d4102d243a189a7e04b9366e4dc0c
da|64|9f0912f85503cd694632d65614200dd879f079a922ff109aea489486f346c741dc4ce3898ddafdca4fdfe87e6524f02562b9db68d7aa3fb27f89e2d42ea2c29e
de|64|db8a6b987a198dea7a8e3ee8fe5ce7e7b87c1d10693b243e62e60bcb227174800c10de20df8410fcb1975a58ebbb4805abb1c00ef0d8d18192024f0938dcad90
dsb|64|e9760ad6557265501fb365353b9dfb2fd383d15939403cc8753f5a1efd0c3468c9a301b97a05634c7b6c6f21497bd77d26dbedcd66139500834d52d47be53e52
el|64|6b5b60cdedafbb309495cbd267bf3285232652a3ecf7cdfc8b792155fa56147bbde53311feffd43fe5443c32118c9e29127f20fa65358656facd2fc245ca33b4
en-CA|64|21ec563465dbdf1575511acc27d2a99186af213bbe8cb505d3ca29a00f662a5312a5987019262062ee78b16ebd5d68a8cf02ee9116bc373b75efce7a2f03dcec
en-GB|64|78bcaaba776c2acb9b7d5845386ccfd8cde38e4384674bc83bf11d50b7a54eac99c6591da536d9f28dec6a002edb839044184ddfa98d99433666292249eaadf6
en-US|64|e7ecf53a58eb09bbf19e413e6c524283c6aaadd891303294340f6684336977608cee8352046b637fac5f25bb9c16f86a64ebdbfaf74c08baa1418609cd96c1d9
eo|64|2c7ddbb7a0d5abdc1abb3c28cbe63250090624fbc2110c323c63d1fa22948a1ae5f7bdc7e12ac70d376d0db9b6001f90ef3b0f4e6eefa7dffeb314e0b7ba3953
es-AR|64|ff48560ee559437e33dfd29adb082019fb05e74837ef6697b03ddcca1c452f4f8a8419a3f40551a0111856b6da0ba055918bd4d6e4a1a42b084f1d2bf02517dc
es-CL|64|d1dc6d64ff9ec891dd6c85e333f1ead6b8a9faf8c3a2737413bb60624ad10aab43ea45cf3e8f90ea6cadec62861cb0eefd4c9ab257f3e0f1cb642a51ca980805
es-ES|64|de4e9a53357c44ab38efa476086fd3a6692579fb0aedae6a90ee3d37652de553ad381b13e3732f89056632759db709f26729da0b3510585f98113f24de0e4655
es-MX|64|6136d363a97a4ad51bc74378398696ef2ae3d4c4f9c1dba4b1caf53ce3820721631f250e5ad1cc7cbff9e94ac898d17089775fbe8896e339b2e389c53ef5fcf2
et|64|2de109594f7868724f0f1edb2179814b3d56321259cd6836bbda5bfd7b1b0b9b61dd0c15e096bf3914df786194c405cbc968bcf29f1bc9eeb9c6553426fd3b6c
eu|64|5724cb0198c68bb51bbaae0930ac8c1dff6a7d374c46d8eb5abfa8a167fd4bffaf1a5e2eabec2d537cc5fbde5a656b1c90b58e43218aec2fe31c3f9586230960
fa|64|300c7fc87cd83a9570112d51f2187ae54910660933903d7cdf4ba3c5dfaf0ba8012a4d7ab874220c09e7fb272d24d745fb67ac0c9718dba0d026bba650d9da7d
ff|64|430c2d93520fdbb1acf37f4d99ede020df21f6edb946b8ec57d9bb65f1e7ca4944aa5001b4bcf703a83edf8e9aa6e9eac6b7ac8c3ff84f33c812cfb240989ab6
fi|64|bdc421ccc31e3a3bf075d303a21e2c764a6b8cda41c69d4b55d21c672ffc35395372800f1251fe4ee6383351927dcb7973ae7ed865f6f06e637ad3243ab88a36
fr|64|a579e55e89710afc1bba170604abfa2818cf236b9724af1eba51f6b45c8bc344ad8b8c32c591b7d36152ff7c09bfdbb28edf641b67540da5f73d3a8934880586
fur|64|6611d9d18fd88ca96f239d2c0417ebf99b847bae53b24a4e7e34d663ab3477f8f59082b61431ef4c2bb0263557b224ca6bcfc57674a6cf7b867ad58c680d569b
fy-NL|64|d991d5de90ea1fab37607a7bec1e812c1bff17525d346e59b30e2e8f8ca5a3715ac24555ce5488501e787d121b24ef74181f7e1bb212c8afa7cd4061548ae3bf
ga-IE|64|004ff2f745759c829576d472b8880bc4b3934a26962136f57b4623fd6723c7ed6f94740c06ddf4610ea3a179988143a4508fc09deafad0acb964ff34e5ff9067
gd|64|451b8a28281272ca88487c7e84e108a863b6294c500cbfc75e5da4d093d20ae6f6989068909f5bcf206705b2eeb665af939fdf9543481dfd4dbc703734c99387
gl|64|1273bee19cd83726b7a1f79976fedaab5c1c404e04656de95090abac2ee5420c6460d68ef0a097bd41619e865a771e4ea8a8fb8c43c920a6b3873df6a40d6e78
gn|64|f3c7b36c083937c47955a9a4f9ac63f7b8d12d0df423285346ff13d02376124cef3717d8509148fc534e1e3bb42c9617af87b2d012da251bc5e9f47e50fba4e2
gu-IN|64|2f6dbe56f8c86edba1b4099968a29ef0efc99ccadd307f4d0a3d0d877e612dc11d77c5ddd92b56364e388a9fa34e6094fdf2703992d8fa2680b16d26e7bda889
he|64|33960eb541115203e9d0235ac973d61a802152dafdd4e40bf7f7afc43420c9368bb31e4d3954864f8f7bae674b8ff6928e812433cb477cc58ea9c3a3ff62db9e
hi-IN|64|e3e39b876f6ee1849de4a2ea3b1f41072c7dd41daca12c2fb290d35009b55523cd792b9a8801b335f369a03b55cccabd9ff5794ff179ddd6c08880e7da9e4aa9
hr|64|a3df0c0846cda69d15c69e781150e57b345648f136a221fd580bfa1adca411a0b5c36f68b23020e08d1163972a5536f9e8e67d247f370e5ef00d12807f3b9ca6
hsb|64|6dc946459c200f8b3b0e18e64bb8b18f977fdaf7b2e917c49a05c32937a034b288928d8411439f910789a0d23b4c21b01ddc00a971fadbde44109e052a5c7d8e
hu|64|af4190f7ad91292dd7faaf4865f1aa14b8fd641f421201a0df63186b728fc18cc8f9b796f0f4327299f5144751f50326b106d0e9db6593cc7b4f84f1d47f2bad
hy-AM|64|53c52694a6ea176035bb20891110d51c345d06e1e9d7dec5ebbbbfa96d48c5519a3476970206614c3e7971927885417be70853d1d4e5349dc71f55c2987ab5c8
ia|64|c5399110c8f2d0d2bf5b903b9db91dba3b97a73ef330aa233c2eea3600ecea5463c65b9f81d3c105e8c809ba4a515b64437fe3c3c4e508bbbece6e750d36f9e2
id|64|9ebcb16e3844c8ae538161cd73a3e6fa5329f9dc9e153b1302efa439709b0bb7828eea4a4f188ece801979658ec8157ad5f9530d91da4b939b3a4b2e4b8228a3
is|64|9b7384a23b9b8e90d54d6c9c153c1e922965da1e31e6e70856832a543a6f1ac908ade0b1d3daf38adcd4ae16bb7a522eac14dcb1101995292d32a2adcf164483
it|64|3c894654d7e97c88acc09d77c60c25633f925bed56659fb2afb53e6d560895f5eb8064efa879493333535b483615880aa650f619f3a805b884eed6972a9931b2
ja|64|7041ee47af05fe78010e1ab11f247bfb2fd9fd1c36f261aa31ec7c1c23aec656a27be24687718edb1c876e3a06d4869ca56bb68b74fa1ad528b40d7c85a3b351
ka|64|4185dd6f34025fdf9cabdd53d5ae67d133029a5b30f392f982e4ca24a7b678978736864d9c1c6b519e2d8146d271a6fe0766f69bf7b9e8c1f00c6f3cb9b04cb4
kab|64|d35d4a3f9ddccd75ef68e434cecb4becd512772c9cfb861c23c197f48573352be6557a49d317ca7d2358ee021c5ec721479915158a41c15e9276971ea65cb270
kk|64|4a50b16adbb52e2747b47ac7ff7db694ddec84091f922101203b6c0afdd71568041f5eaeefba78a104e093404552bc215fd2c8244df6769dd607d3a35eebdcc8
km|64|5b7f5137687839203c6a9b1705fdaf0a0c6f10429efe4c225c6bb9a5919b1cc4706911e8db196957903d8d4ffea8ea8a2a0acb4ac475abb060ed5950f1651975
kn|64|aa32c8db15eb7c768113a9d8e61d1b4fac8fdbec3db7785ac81d507c9f51cf1111315c4b47df3ab8c7ffc5c3dd56cc3765ff00c74ffa7344a6a8077c468fd815
ko|64|529a880a181c5ae48443308c805348fa5a8870c9c4d3fa9e829fa3929586748102cbfb9184892d6625c56ea8295c10fb677e821be77bbf93821d3e3fe4480319
lij|64|4d8f38961d7cbd262b9c977eac70f65ac2e39b4347f06c25559db8ae5e532fc35b586b7ea07a99150eabeb931920a7cf94e6645784a5434759af1fc43c220e57
lt|64|1e644357034ee328095a00bb4a2284f4da95de4adf7f5ed19f67b50f6fbf4650cc57d47d476a159fdbc35e9ac0af7c40f9549dc86bf7b42878651d41f429e3d0
lv|64|734703ac4a81e845f1f52a08f98c6e6c2402059c2bd3bf62a5af05ca1fe996137d8970f88058abef3b851f92ffa48fdd9264ef95f61b21e90da9762460547827
mk|64|552324252a3bb91b9dbe9f3e3dd5ac4bb4a3e860fdc70bb9c8877f78f1f1c4b69a11cf0cdf51edfa26d92b4fe32a3f1913cb3a837fdf969a02b6525cb806e76b
mr|64|3f1154c01e1a231bcd6b3857ec13ce89b74fa56e03fb47e8fec20e3a24e7dd0a7654e49bbcca000a5dde90ecc5ba1adc8b366c86180fafde2ff746c164ad5d9e
ms|64|3ef1d2baf9d9dbfbad4be1c91fdce4f6e29ebadc6cd232d5ba3169f70df5ac655e9429f70441db4f577c13b0d9ca98428b0bd02a5b858cab4fe25b61d4f624b2
my|64|a0676436be62df235d4385f7e5978dc4bd3538f0193bf728405378c075866e7be7f4e1e4f4bf345437d191db81585f34f8a29fcdd0c5a7ba8d8820cb8d2f03a7
nb-NO|64|5241be98bafd85e86e31740bcc8f9347285429369c2baa6a88ea6e17fd3f5213858c3ffe389f1e5d17ae500aa966fc32206671a2104e3caaf19cb3668b11df24
ne-NP|64|4a416b37384008d131dca02cc83e1474544f2d8e05d59615b16cb3c896d6ae55b519a120b84137f858fb9ad5bb66095d37b6d40f19073a55167062b500ca4c14
nl|64|354fa920582e3560b62ca5752686e22a621424044c423597ce1f04cfa6b1e7f38eadddb148c10b79bc59d3ecfec91ace986ef3c3ef3930c1382cd995a39cf23f
nn-NO|64|23f2cdc71ef64e28187e77dbb2d9053985e42746748ce406ecbd5660b2e1a0e01384c3a72025894ee9c1d2a676ac577b22dd1a69dcf07eab237e35c98c411c66
oc|64|77ea13bc34c47092ac4f0807e7664b79ba6ae4b823c05c2952b349eff28176b234c563e706ad69762913ecd5150e8c03bcdc2657c6f60f1081f6c708ac3411d9
pa-IN|64|e2e400e1e6bfa6d5cd5d853933226eb0be69907a2f6504d3b4d0b50e5ad49bd81029f98095d538f11911aa6b48998d039f9a070265232b0cc2359ba785f0d363
pl|64|7ad0d183138cee83c40428d39eb0896a679100f56ca9e2ccd2528fea523d6b22eaa9fc026afe96604abb5de8b81f85404b041c31bf86c7c5b74c8e7e5f9bcecd
pt-BR|64|0968bebe6408cdab6760dbff42c71ebe995f80cf56a5c2bb8a7d11ef73be02e6eb06b4b852985126bae2b5af65a8fe346c3dc63387583e5a29c40ac1fb6641d5
pt-PT|64|0d22afc58a1f69a80701412250a25c1941d0ba2d8d2465976d4e3be475772da0a5a3970a295ed1325d617ca2beea775a5d9f8051dae172899f62b586afbe0e42
rm|64|66f36b1032e6494f55a11906eb7e4b296630cae6af2942d84bea08465ed4222c0e1c2a2a7782d14f065d865e62b64e47dc9af9fc92ff16d700bfbc0c7703c360
ro|64|d02ae67b3cee3070542fa9e83313831ba133bc36120acf3ecb3e8e68eff5b31b95bd1f8de6d9ff7f072850a349ba1b9e253957ed2aab4eb429e86356468f859b
ru|64|d42fa8efb89d4228c46880e7994651c2a23d0106a5bd3c2d9bf0d05b5d565537f20ca3a9da3788cba78958386bf3e3c1ad2aefa558ff209f4f7d2299901fc3b3
sc|64|8d6d285aa32ef0be851156060509cea97d11ca609ab80b698d48fbd9768de7a47bb87f8d44e17d13082dd58e20ada6047d13b99b2256597dec66b89ebe31008b
sco|64|3a018780e1cd9a7f9484907eead930dd142bbe0432355a127066daa3555a3078b3eee66de0893553e152fe084305c923c93c2854b2bf4f97f69910ab39dd024e
si|64|b33fed89a7848891395a8055cdd89d7a52d9a611a524f7ea3c7ba3263c85bd2b6ea70ee6fbf86674fe6d62d537f511ee85ccac7536e82d8e46a65d575023730d
sk|64|d4a76045551782e371b162aed646324d3718b2c43bbcb700cca9fea82a2d4bf08e7217c39c4affdcdea77a022258f027ae4a98012158c6de78cd9e841ca310b1
sl|64|77e27b96ffd09e4fd4e6c1032d789399eebf31a0061220a50be227d49566139d86e27cd4321808e93c319587db24331c9385d13d4d7826123a98984649217f19
son|64|23412c2f35738834c1c41748c0823fbe5259d82d539d8517198ffc705f8e756b87de142f5973dacfe9d4751fa49fffdb17679131bd4c2bbc5832fd981fac50b0
sq|64|b81f8e57864a917ede5cc6aa322b8881b862f52ee0d389855ba7cac392bde7782415bd43d29ec02dc191f5becf0a0c64688d0c3f562b9900fbc2870950ab6bbb
sr|64|6f1749f05c5559c36a8a358f5760c6288b72e966d27a126c3e5d65187ae385b8c4e4f3eb5f669fa0a3902971b9e3f1340a5ffd8a193ebb617dd4a784970930e3
sv-SE|64|8b4191cf64f5d590c3ef432f471e43dc5a3002cce6a1bdfefc1ea099ba379001b71904781316f8cee4977a7577b2753d46b72b6732a2b5c9a70b53c5d631a378
szl|64|a86bf38c2919a53074923dc0f43e9d31c78085972195c0778f220cd0cbfdbf63e69c128e42c6b1f3630d11c903b3806166abc66a8c18514531718c914bf35084
ta|64|36eb9835c26906f676b617654618addbea2d4ee970015e18c369a3216fda5c44e52d97f965eb18b8353e2b7516c09b6f7df2f16516322b0df96540bfde489f34
te|64|af812c0dc3737063b1aaaa05d29426f86038009f42c83787c399974f9c6c2c095ffb140ec30a6296a9b6ad7552e763db55079dbc4f4019074fd6fbb99f1ca6d3
tg|64|c0d5bc210fcb8808a845479c82d37ec3dec554c36fec3b52d374bcadd84519ac10d967cd3935eef2758c851a7e2086a0f6a73a052e286a40ab9739ea5b9461ff
th|64|80291a0190d43cd4ac14673850f6d393ab085543002fd6276217df0e02a12381dda43e63aee46eb54b35e10c67ab0bbc728b344b5524bed7d84a4e3cdc2acc48
tl|64|6b4cec79ba11326d42f4cb5f846162725a3d57e1ddaacd479338936e0e471e421b5b97b8ac1eee1a2276e0c74d8b357eba02cd4ca1fcb66ed6fa33d41815ba84
tr|64|4b2fe5fce1077fe3410e8a39af44cf249ddb2ccf0138dc5d382a60ac7bb386107c387863d0d97f02210e75c5b8aa4de1f1770c0671c92d69aa854abb4945b992
trs|64|fb403381914cff1a6ba6fef9c2ae4f94fd2fb098b150d8b52f2c91b694427cf2673bd680cb67e4016ad886bce5f30c30a13a2b42e22986b8cf36d672d2ff8851
uk|64|719f218a57beff7f82c6a346ef8dc1e29d9c6e60f6fc55af61425ebfb100d093d2320e34ee0c1b6e5dc9f124851950260954fb69818f36742f58338c1b1df58b
ur|64|fe24c63e7daf58031ec5c9a7185b9be011b6c4282c8984dd9c2adfe1c00af53a85b8e8221c7b875797dc9b0a73a81abb40142c3f5750787fc8b2e89f0826e42e
uz|64|b628749ee89d5bd99f781e181282b9d960eecbc80216d017b8b1cc64dcc82f51a32a247479859cf92c5e9199669675030d80c5d77ceb00312ecb16e76f669988
vi|64|0ad8dd6efa0206a3a320428a8f2302bdd0a8b8cddc4daaaa8317ee007c58e5af6fb9da505c583fe9d190639a40bfd29cd15a33ebfbeb66b9de4bc3abb60dee30
xh|64|cf77082174ea340dbadf15fc2c3cbccf8b5acd3cb59fe73d2524cec80a6ccd18bab1613767755f037a729f913763cac7993b286258001b6342eac453fbe0aff4
zh-CN|64|747e3b1bdc32f78040006fc6010d2c0b8bce26185b8060f787d9f52a4d0b5ecfa828c2b02289c2792070626a0f0a12385c30749ffdcfdb23ec85d4a00c52a52a
zh-TW|64|2cd902892bb840a59ed8fafee72e6d5d3a9ca1192698e240d0fe276cfdd46f108008ac6650a3c0064051bc0b6af17307a0d0db86072ae9df12b9d321c7213d9c
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)"}
}

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 115.9.1 18960 Friday, March 22, 2024 Approved
Mozilla Firefox 115.9.0 22030 Tuesday, March 19, 2024 Approved
Mozilla Firefox 115.8.0 31644 Tuesday, February 20, 2024 Approved
Mozilla Firefox 115.7.0 29079 Tuesday, January 23, 2024 Approved
Mozilla Firefox 115.6.0 31242 Tuesday, December 19, 2023 Approved
Mozilla Firefox 115.5.0 31771 Tuesday, November 21, 2023 Approved
Mozilla Firefox 115.4.0 29949 Tuesday, October 24, 2023 Approved
Mozilla Firefox 115.3.1 25619 Thursday, September 28, 2023 Approved
Mozilla Firefox 115.3.0 9618 Tuesday, September 26, 2023 Approved
Mozilla Firefox 102.15.1 19574 Tuesday, September 12, 2023 Approved
Mozilla Firefox 102.15.0 20190 Tuesday, August 29, 2023 Approved
Mozilla Firefox 102.14.0 27960 Tuesday, August 1, 2023 Approved
Mozilla Firefox 102.13.0 34763 Tuesday, July 4, 2023 Approved
Mozilla Firefox 102.12.0 26625 Tuesday, June 6, 2023 Approved
Mozilla Firefox 102.11.0 27009 Tuesday, May 9, 2023 Approved
Mozilla Firefox 102.10.0 31524 Tuesday, April 11, 2023 Approved
Mozilla Firefox 102.9.0 36767 Tuesday, March 14, 2023 Approved
Mozilla Firefox 102.8.0 35651 Tuesday, February 14, 2023 Approved
Mozilla Firefox 102.7.0 34270 Wednesday, January 18, 2023 Approved
Mozilla Firefox 102.6.0 34586 Tuesday, December 13, 2022 Approved
Mozilla Firefox 102.5.0 33043 Tuesday, November 15, 2022 Approved
Mozilla Firefox 102.4.0 35681 Tuesday, October 18, 2022 Approved
Mozilla Firefox 102.3.0 32985 Tuesday, September 20, 2022 Approved
Mozilla Firefox 91.13.0 30267 Tuesday, August 23, 2022 Approved
Mozilla Firefox 91.12.0 31809 Tuesday, July 26, 2022 Approved
Mozilla Firefox 91.11.0 31749 Tuesday, June 28, 2022 Approved
Mozilla Firefox 91.10.0 30258 Tuesday, May 31, 2022 Approved
Mozilla Firefox 91.9.1 17355 Friday, May 20, 2022 Approved
Mozilla Firefox 91.9.0 23548 Tuesday, May 3, 2022 Approved
Mozilla Firefox 91.8.0 32688 Tuesday, April 5, 2022 Approved
Mozilla Firefox 91.7.1 32124 Monday, March 14, 2022 Approved
Mozilla Firefox 91.7.0 16694 Tuesday, March 8, 2022 Approved
Mozilla Firefox 91.6.1 12368 Saturday, March 5, 2022 Approved
Mozilla Firefox 91.6.0 34595 Tuesday, February 8, 2022 Approved
Mozilla Firefox 91.5.1 22454 Thursday, January 27, 2022 Approved
Mozilla Firefox 91.5.0 27553 Tuesday, January 11, 2022 Approved
Mozilla Firefox 91.4.1 25837 Thursday, December 16, 2021 Approved
Mozilla Firefox 91.4.0 17635 Tuesday, December 7, 2021 Approved
Mozilla Firefox 91.3.0 32548 Tuesday, November 2, 2021 Approved
Mozilla Firefox 78.15.0.20211014 23537 Thursday, October 14, 2021 Approved
Mozilla Firefox 78.15.0.20211011 11429 Monday, October 11, 2021 Approved
Mozilla Firefox 78.15.0 16149 Tuesday, October 5, 2021 Approved
Mozilla Firefox 78.14.0 40560 Tuesday, September 7, 2021 Approved
Mozilla Firefox 78.13.0 31934 Tuesday, August 10, 2021 Approved
Mozilla Firefox 78.12.0 25259 Tuesday, July 13, 2021 Approved
Mozilla Firefox 78.11.0 34839 Tuesday, June 1, 2021 Approved
Mozilla Firefox 78.10.1 23945 Tuesday, May 4, 2021 Approved
Mozilla Firefox 78.10.0 17373 Monday, April 19, 2021 Approved
Mozilla Firefox 78.9.0 25497 Tuesday, March 23, 2021 Approved
Mozilla Firefox 78.8.0 24770 Tuesday, February 23, 2021 Approved
Mozilla Firefox 78.7.1 17470 Friday, February 5, 2021 Approved
Mozilla Firefox 78.7.0 13577 Tuesday, January 26, 2021 Approved
Mozilla Firefox 78.6.1 17964 Wednesday, January 6, 2021 Approved
Mozilla Firefox 78.6.0 17024 Tuesday, December 15, 2020 Approved
Mozilla Firefox 78.5.0 23366 Tuesday, November 17, 2020 Approved
Mozilla Firefox 78.4.1 13254 Monday, November 9, 2020 Approved
Mozilla Firefox 78.4.0 20427 Tuesday, October 20, 2020 Approved
Mozilla Firefox 78.3.1 20583 Thursday, October 1, 2020 Approved
Mozilla Firefox 78.3.0 15605 Tuesday, September 22, 2020 Approved
Mozilla Firefox 68.12.0 43081 Tuesday, August 25, 2020 Approved
Mozilla Firefox 68.11.0 33697 Tuesday, July 28, 2020 Approved
Mozilla Firefox 68.10.0 19806 Tuesday, June 30, 2020 Approved
Mozilla Firefox 68.9.0 19546 Tuesday, June 2, 2020 Approved
Mozilla Firefox 68.8.0 19358 Tuesday, May 5, 2020 Approved
Mozilla Firefox 68.7.0 19601 Tuesday, April 7, 2020 Approved
Mozilla Firefox 68.6.1 6480 Friday, April 3, 2020 Approved
Mozilla Firefox 68.6.0 21234 Tuesday, March 10, 2020 Approved
Mozilla Firefox 68.5.0 33128 Tuesday, February 11, 2020 Approved
Mozilla Firefox 68.4.2 26100 Monday, January 20, 2020 Approved
Mozilla Firefox 68.4.1 19439 Wednesday, January 8, 2020 Approved
Mozilla Firefox 68.4.0 5284 Tuesday, January 7, 2020 Approved
Mozilla Firefox 68.3.0 27048 Tuesday, December 3, 2019 Approved
Mozilla Firefox 68.2.0 42830 Tuesday, October 22, 2019 Approved
Mozilla Firefox 60.9.0 50954 Wednesday, September 4, 2019 Approved
Mozilla Firefox 60.8.0 44205 Tuesday, July 9, 2019 Approved
Mozilla Firefox 60.7.2 16423 Thursday, June 20, 2019 Approved
Mozilla Firefox 60.7.1 4928 Tuesday, June 18, 2019 Approved
Mozilla Firefox 60.7.0 19077 Wednesday, May 22, 2019 Approved
Mozilla Firefox 60.6.2 14888 Monday, May 6, 2019 Approved
Mozilla Firefox 60.6.1 26574 Friday, March 22, 2019 Approved
Mozilla Firefox 60.6.0 6019 Tuesday, March 19, 2019 Approved
Mozilla Firefox 60.5.1 24253 Wednesday, February 13, 2019 Approved
Mozilla Firefox 60.5.0 13787 Tuesday, January 29, 2019 Approved
Mozilla Firefox 60.4.0 26435 Tuesday, December 11, 2018 Approved
Mozilla Firefox 60.3.0 37711 Tuesday, October 23, 2018 Approved
Mozilla Firefox 60.2.2 22247 Wednesday, October 3, 2018 Approved
Mozilla Firefox 60.2.1 24531 Saturday, September 22, 2018 Approved
Mozilla Firefox 60.2.0 39168 Thursday, September 6, 2018 Approved
Mozilla Firefox ESR 60.0 40289 Wednesday, May 9, 2018 Approved
Mozilla Firefox 52.9.0 1481 Tuesday, June 26, 2018 Approved
Mozilla Firefox 52.8.1 458 Thursday, June 7, 2018 Approved
Mozilla Firefox 52.8.0 1843 Saturday, May 12, 2018 Approved
Mozilla Firefox ESR 52.7.4 3064 Monday, May 7, 2018 Approved
Mozilla Firefox ESR 52.7.3 23542 Tuesday, March 27, 2018 Approved
Mozilla Firefox ESR 52.7.2 13948 Friday, March 16, 2018 Approved
Mozilla Firefox ESR 52.7.1 3365 Wednesday, March 14, 2018 Approved
Mozilla Firefox ESR 52.7.0 2436 Tuesday, March 13, 2018 Approved
Mozilla Firefox ESR 52.6.0 47183 Tuesday, January 23, 2018 Approved
Mozilla Firefox ESR 52.5.3 16610 Thursday, December 28, 2017 Approved
Mozilla Firefox ESR 52.5.2 12510 Friday, December 8, 2017 Approved
Mozilla Firefox ESR 52.5.0.20171115 16744 Wednesday, November 15, 2017 Approved
Mozilla Firefox ESR 52.5.0 1842 Tuesday, November 14, 2017 Approved
Mozilla Firefox ESR 52.4.1 12837 Tuesday, October 10, 2017 Approved
Mozilla Firefox ESR 52.4.0 4971 Thursday, September 28, 2017 Approved
Mozilla Firefox ESR 52.3.0 15358 Tuesday, August 8, 2017 Approved
Mozilla Firefox ESR 52.2.1 16371 Friday, June 30, 2017 Approved
Mozilla Firefox ESR 52.2.0 7924 Wednesday, June 14, 2017 Approved
Mozilla Firefox ESR 52.1.2 8927 Friday, May 19, 2017 Approved
Mozilla Firefox ESR 52.1.1 2905 Friday, May 5, 2017 Approved
Mozilla Firefox ESR 52.1.0 3980 Wednesday, April 19, 2017 Approved
Mozilla Firefox ESR 52.0.2 3275 Thursday, March 30, 2017 Approved
Mozilla Firefox ESR 52.0.1 2256 Saturday, March 18, 2017 Approved
Mozilla Firefox ESR 52.0 1968 Wednesday, March 8, 2017 Approved
Mozilla Firefox ESR 45.8.0 1653 Tuesday, March 7, 2017 Approved
Mozilla Firefox ESR 45.7.0 2882 Thursday, February 2, 2017 Approved
Mozilla Firefox ESR 45.5.1 3836 Thursday, December 1, 2016 Approved
Mozilla Firefox ESR 45.3.0 7306 Thursday, September 1, 2016 Approved
Mozilla Firefox ESR 45.2.0 2369 Tuesday, July 19, 2016 Approved
Mozilla Firefox ESR 38.5.2 3983 Tuesday, January 5, 2016 Approved
Mozilla Firefox ESR 38.2.0.2015081001 480 Tuesday, August 11, 2015 Approved
Mozilla Firefox ESR 38.2.0 442 Tuesday, August 11, 2015 Approved
Mozilla Firefox ESR 38.1.1 2047 Tuesday, August 11, 2015 Approved
Mozilla Firefox ESR 38.1.0 581 Friday, July 10, 2015 Approved
Mozilla Firefox ESR 31.5.0 6595 Thursday, February 26, 2015 Approved
Mozilla Firefox ESR 31.2.0 4336 Thursday, November 6, 2014 Approved
Mozilla Firefox ESR 31.1.0 824 Thursday, September 11, 2014 Approved
Mozilla Firefox ESR 24.2.0.20140209 1044 Sunday, February 9, 2014 Exempted
Mozilla Firefox ESR 24.2.0 702 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