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,343

Downloads of v 115.7.0:

29,079

Last Update:

23 Jan 2024

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.7.0 | Updated: 23 Jan 2024

Downloads:

2,545,343

Downloads of v 115.7.0:

29,079

Maintainer(s):

Software Author(s):

  • Mozilla

Mozilla Firefox 115.7.0

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.7.0'" [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.7.0'" 
$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.7.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  '115.7.0'
end

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


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

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


package { 'firefoxesr':
  ensure   => '115.7.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 23 Jan 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\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.7.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-115.7.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-115.7.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\LanguageChecksums.csv
ach|32|94ed8e8407b3a5042f33b48d6fd0046ea4ab070d31e15eae8c17df689d30b509bb88d38337d557513c49d645f8f411e34a8423d4aae729bea33f670e8892e29e
af|32|13c6cf78b8ca62989b6cf678e65753d1907e712b4ad22c2a8b2cf54a3ae0c024d48532c8aeba9362bbe10ba0d0d9863caaadbec39ab45b6da665f73c350ade51
an|32|34ac92e4b47fe0391cca0d87378cab604fedabb1c66f8961062587a2141931f44d0d4a144fc4e8c7924774895f127fc3190dfe7e36a4dd559d3c0eac68d8b507
ar|32|ba334b776b50026f2374c7d8badb1f8a71c52bd15bd7d317fc3f2d1599d1a8b5497b33d3739c087ecd435af10df386b46c72ed6119954f34151ccee91c83b6a0
ast|32|bf077c89685f636d026d09c43be4ae267f727b655014eaf2f53211b07604457076fa585718c0902911d2c566920ef5c6413413e437f73e4573e6f5cfc56b5ac6
az|32|74ed5965d5852960a3d4128fa77d928a25343f0ac837474a2b7ed3f6cb01b136b4dfb95136763ac665c3c40e3d60a17dbe0aeb6071251bd6c6354a893362f51a
be|32|fa0269727f433c1ccb9f92d0657a7dd5164a8185eeb841da7104a5870a2fb4d5ccc3efdec52b37fb77bbf8867613fe3bc3b31936bd57819ce5a9aae0614f9bd7
bg|32|e2ba4271e1f4e4a6688b3a0cde526cb3436e1e98626e429b39a7fd4fb100cb26a6bca7cda8d689f59be18b3546b9f6705effe6528c7d05ad45189ca3dd20aeab
bn|32|08bd045d3910dad1dc98870a4b0bc72506387910a5c93ffed92a52404f89f6182db2f9f51c580f0186d4f0842339eff2ef4740cc6434c3d3b6ee025ac4f46933
br|32|16f22e3bda0d2b31f24577d71453d06e2de3af73637ecbf90de6e762cf0f9eea7b2e0d09efcd7c75658b6355f3437c844271cd274f9afa349bbeb2c1ccd7156e
bs|32|c6c0edbc69b4c454af009b8ad2c58600364cc7b0c2c8678e2984e0705bbeeddafecae2d7bd0e3ace6698c5bceeaa84a6909eb221b6d0887a94bbe4b8a54ccbb3
ca-valencia|32|dbb71be58448670861b0c3c4b8fc918a85246b7a32adbaf86c255066ce01292811bb64adf145e867b8629019e54421934987f2f8fe73010256d9aa7f7cc5bd7e
ca|32|bb8c59890f8263b264c6e55929df8b4cf073b61c94fbc0bda7303ee5efaed17f2e84de4db7f05954e614b3f27dbcfaa8289f213dc308de9a79f770a5894d273b
cak|32|d73a0a73b15bbeabb801233fe3206de7e717f51545341dc2f2303be05de34cff3326022e26d12a94cf589865e0f656f37c5a5d2cd3825d8fc6c3148963dc62a5
cs|32|53d60b9d3cdf81f4c2c820443ef5ae81e89c0e4b5e3d3011382f8eacb787be1d4f850c3a71fb5d1c109f17fefa1ec9873ed92deb0ae6073a40febd4f4b8d6018
cy|32|948a894f35a6483b149c3013f21e95794ff188ec750c3b96caac6233dcb2ff5064ef6b64405acddbf8a211c16aab11117474bb8675cd518eb3525152c192ade7
da|32|ac78fd584a6e0555332e962c8de0322d7616100807851419c5ceb464cd937b49aa11d7aeb810fb6c6c257fb00b3d1ed1531e8cd92e03450dc7295d58f062f0eb
de|32|e31395096670b91cfca8aa5cad466dbd9d9f72a505be61355596195c874e881025a3d08020c39fe5d886546a040643f3052317f664671f35d8aa2909ef11cf99
dsb|32|7dee783441075a45f2b73e6b9aef45a0aaeb3bf8ced9c4f2c640fe6b4328ff861310117d0232163562cd05ebd12cf698b5308c52e4d066548f9fdaff427faf4b
el|32|aa8ac432c118a1030d5aa63c03d0270ce8a25befafaa7f7320fadc033af2d6a58ec9368016781004541178e06d833193093b2f0d9d2b7827e46cd9957c904ad7
en-CA|32|d3fb6b04b749c23dfc6c858d9970e9c15dfd537542e0779ac35b1cb33f4109a70da88ad478dc8561f474b9715484a94b3abff2ea1b8ed27054eb36741b89aa00
en-GB|32|965f04989a728269f7e9ff31d31dda045f16340b4d95e9d38645a35b7bb370812f67576af95d17980370aac99b93187d5104d3b4c9f968dd9bede6a09e2aecde
en-US|32|a055ff4c39b01f85d1737323d3e6c6ad5031f3190c0188880b185de5ff84537bebca1231f1356f7959627d95412cda127f6b082e7fbfcf61263f0a0e553e2af2
eo|32|53940b771d05ae44849d3ba6547c3bae49961db3ae596eed7a7a56d2781d22c3822279511aacb10921f55b115ecf342d6530dd03108343d3ac210c2591db6793
es-AR|32|f7ef792880f6c48ac5c2fb06bf65ff6a97453098b4aff3c68f68c6431647da187bcbf144443d8e528995dc82606afdb1a32ba3e67e2c7001d1c223a85be1481d
es-CL|32|c12dcaea6751013dd40928fd638761b68837692277f127969c28719e791c2769ee3c4cc6e8d256a5b643288b38851d34b9d1cba41de9566cfe26f5681c2d17ac
es-ES|32|013d3c5d312a3c9620e52b335e16a32fbe6b98c2138bdc295d0190c1768195d9a162d8cfe76ada6c6be2012cbfa41adbb32f6a8650de56c909fbd33f05b7a9ef
es-MX|32|b2af92d7f6ef3a06eea681bf99d9dacd7c849950386b15489ec54fdd9bad4d13a22758c13c9bc36304b68aad8340a43bd5bd637275fcbf85f8eb7c8648112be7
et|32|ca1ed1385673408e92905593f09be9d15cc5afd15635c01a5b2b8adca1e7a826f4cf88d9a576b44f51e1f262438aa0772dd8e47ed8523c49d02406b2b58a1f2e
eu|32|bb209e853de3866514620b303098a44231b5e889447b5f6d96c0111382f2fdf9907df5fc2f98254e607e5bbc7bc2ca447b77b79829ba03af9194bbbf2ee7eea2
fa|32|2e5690309e10f29d91e825ff00c9ee5b7e70cff8a3892681393da6ac4e1668abe415afc23b750117e6c977c05752f0b7a4656870ffe9efd3e5294b2262c1a5f8
ff|32|ef14643c0cfed89fd089da876366a0ff87762141faa4bd4d1e0ebdf12becaabb872b36b326bab35dfb1fd22b08a79bd65d016375a673c1647b426d0daf473c90
fi|32|a1ca080b659a165f3dc9d5a257ce67e20d48716093929371c21bcf850a3ae26c6eb5442bdb07f638bf0c00c0998aa165c14b9fbfa6a9dba6ed5cba76a2239e52
fr|32|8d646fffc78bbcdf77bb737a33cfb9a13e0bc5cd25d098087c8f25f89ce100bec6cd9ddc1593439f109ef1ddb522ad3d3ef3c3e043a6ea2348dadda0aaf361d5
fur|32|6cdb00fe10c3a9cb59f809ace295d4fc4bde436b621356b7ba138f7eb9ccd08e03f4d7389053dcbb4c32701fb7883fca3c5866d772d2aad731af8807ec1432a2
fy-NL|32|a31e40cc8c1690299cc1a0f8bedfc819e7f198a3cf6ed0f9fa4a25aa2f84778b6f744e97bfe000000c2ad4fcf018384ec05bec3976fef4054b1613229ce70870
ga-IE|32|260c8f4f9961fc3664aaa451c3cd573e497bf38a7cf0d3c99232335c0cc75f49e3fbb8cb9cd960debbb616b19576b67315c8e889b1ad7de9ad1551cadd8c8857
gd|32|ab2db6f98a360a87afe74189dd624f12de814cbd67570e7e02d87bc19d8ed93e599fd13d0eaa4094d6d03d7c93d8d4799d36b45ac90801e7898d892c3faa00a3
gl|32|661c0bfa59d70c4c88ec410a4a34011027b0049a5e7448bdb35960603a2b112323cbf97083e714b5634dd92854b68163c6dc7fa705ed04aef2be1a7c2d215b22
gn|32|d7160f7867b24b9e8908dfe200cce357ee6392c2ba9c3b966f5bce7a2ec3b3df7fde961a5780b37465240379fbebb92a43e36dd61ed04b865f502d4261d115d7
gu-IN|32|d21de23f1a3c445cb0adc882ae99f271380f5734ef58612cd4a6986cffcc1adb476bb3be0b1844be48903e057cd94ec0e4c9ef17378af764bffbfac6d9654670
he|32|cd9e53f045d97a0ce150a09f5b5ed1633adc2934cbfc9c80f44853fcd9a0592b93afa049c8b2abcc93d3200621045a545a3a1d26b6086cd43a8df22905dc4f95
hi-IN|32|0ec80361f6881af27aa8b5ee26a778dc2c5d8e693d525a3559c6ecb7e41317660b8e9a530b48fb1fc5f2fab25ee3f7d819b9d8bb562803470932319f48a01253
hr|32|f74f0917772ec80f219945d750d4767d5e0142aea4342fd6dcbf5935e3ccad6a135faf03c67d0cae47a95c3cbcad9087f3aaa404e1799d1a51b647d24d1f583d
hsb|32|c71fd639937f4987e5d9faa9d38c2ea8e0b360319dc2df809090044f9f371aba94119929dbf126f76aa516e06f7675031aed828d413818c4e7065539322d0d47
hu|32|6b8f273a30e1ecfd76c4508d7dc98e1812aec11a4d55139d6355df5d16bdf1727899ff961fe4a1a4c012956be2ea8c3b83a9aae86e8b2e926c8dab14ec0d1a79
hy-AM|32|b02883d2d62c3d7751f6ed8f879039971521fb92b6f3910a33f7eb298dbb189f9944ae5efe0b5e31f47d02dc51a7cf2ef958de5eccbd32ad10fbe36274e44961
ia|32|1251354e6f7300d4238283f4fcac6c08d8fc468cf246cb924ccea9f13f8fa66e2076f24b210e84872bff07739e0ffc9a8f77ad475b65829533b6744b04bd7aed
id|32|7b38c3db05769364bf0bcfb6c60222ad587e01888d1bdb3d63d4799560d85bb2288a54b2d55efd766d38402c2e9976dd6e760ca3a5606ed648c513a490b03c68
is|32|86b72b4daa470e2e0c1a6f03cd7b68220f92c225e5cdaef63d190f347180b4c1bd5a06b7912caf93465c2ea77876e0805c256ba149b4c72c5f78b8d7ff809583
it|32|c429058f2dfb9a20999adc40c18e30adf99548adc7f09c1efbf2c81fc769270f485a55cb4dc04c8e3dc49d7b83cf3a2f68e867391e1836affbb74c06bc364ad8
ja|32|f8aff3c6142535f1ee98e21a417c64c9754e79883687729f1d3881f57c023afab4f2fe45b6645a9516edca4f73fa2f87d5f05b72134844fc82a99e8b8a0d2c9c
ka|32|27f610462fa49020dc08c952b9e7b92b0e04d3f5dc675d75dae3f79a931b3c9359648e3a810f06808907c6bed16c898c192ea3637fe6036360abef8b0a6c4f8b
kab|32|0f0c8a75cf443e2e756577638aa5c774b3d67610a7ba3b8b292a87c9dd10aa3d85bee74effa7de17f220816bb2cfe58f31c0c90e83f35918704f8c4166e71035
kk|32|4405ef81fc273c6197284171f235264f24ce1dcb621e0c8ef1f753c4c41f3a712a17766526a443d036f1a1bbecb9c1f2dcb6264cde1a956f7419f45d011fead3
km|32|33e461da58c32d48c9fd2a17ffaee4bb0a1b1ab81170a0137d0c97b465b0ea85147841787ff07a4e144dd51fa581de7001792ce42aeec3530e341a3d47b34291
kn|32|1735ff340534e1e6142bfa5b6097c6f7d320f57d519d4e929febbe430260cc80b3ac5fb4f25ea72aa10ab8ffb969561d429ea6700cd39bd13b63d288ff8ed92b
ko|32|0a4a403903eff86ec56874d1f1f509baede424f29992893935016993c83ab496acdcb56ea2bf1fa1a40d24a4cbdd506a5b9cd2378ec4dce92b51c8e94505d011
lij|32|2cc4f3defb4520f29d8872fb35dced210d1ce4c7fec66e2b31d72655da8dbff6a71933932ba8b5f07de913b9ab86f2b3379c1283739e6a40b46f0dcb43c581fb
lt|32|d939391376c9b2666be37440086b256623450a3528728d38e9d1293fecd6e59f5ca936d148f660529c3a458877baf3bce05f04f0d8c5375a6a93e9dda6d0415a
lv|32|6a74c17399222e46a01bbaf53fbf45c19a39d4247f18ae989bab7ddb448efeafc89410a369faa40683b41a8239b6016ca6eaecb83482686e3bcd6410195db59d
mk|32|9778a90f70802f7554e9a88ef65e4df8924d5672d18da5e1e36c5b055b5975300f2e1dcb8716982cf7e7b73c0d4204158242310f50a77bcd2a70bd8bd6deb01a
mr|32|87a0b808b6b8d50e922aeb2353ede5382114a2e1a1e21df996c6c9efc34633acc1438ab86afe5fca214afea71c463106c418c92182bdd88a31ba1250acdc8eea
ms|32|d4fde87b96c730fd1acd92b40cfaa719aca582c5949879927efa63f79a291f3c7e412c5384c9bedec821d5b8599fe9ff26b930b190e2f518cfaebc10e258b082
my|32|c5cf7d89288182cf10178313295f3ef92d748c3c4e8070bf53a3e94afef273b8ad10f4eb10826fe8452cb62d6fe7d056a28ccbc079d1aae2c225bf1a0c1018bf
nb-NO|32|c11784c663283566e7b91347d2b6bc10cfcdfd579bb685b33ad633575cbb2a343ab04938bde9444b480826b8a70e0862ec962c0014b3f086fb425367fc11fc8a
ne-NP|32|8d3bc6b7be376bc39384051fc72eabde3cf432638acf09a67d2857d730d80a2a535fe426bc27d7f1939e0345b54bd02fa1e9180b57719360904f645041831282
nl|32|5d1d2f29d6cfb16c63c1005f054871d6f899456830df4932d8c10c1b2bca12c47ba358fcfbd52f9b135a60fb8adb4fac2c5c617852ea2ab45698f52e726d914f
nn-NO|32|676f1be900557fc36b61abb34f3e7075ce6ba83259d6b86da6ed0031d6a0ac89cfb329e46bc61a6686622c33766d7fb34890da43326f8488003501ca91fc5630
oc|32|3a8c376353ceca33f17037084b2196deb28b8c9349f12edb81b38500056e7f65b6525ebf3fbe12e5fff60690793a374d42466c87da50e326e4a2a202e149a4e7
pa-IN|32|61f530c0a2050560c221c47f1ba741cdb938c9d77660111736807243946591645608a0d05cf8b2cb0ed1d0613799434a5549977a1fc3026da29a146190f22de2
pl|32|092979a4f39534ec331728e3f5449c4eff7e3ab239532409c8433b57c84a465b182d249c2b3d6b3a1396a73e25bae6b8062d9b7a62078f7eb796c1b2fbf7160b
pt-BR|32|f49eac6e712beb05628fe196ac7e9b6ad75a5b80a58d36c2247eb8da9692afc3f272bdb973bb4f629f1edb6865aaf20b8ee49e6fe49da6bdd70f26e35b96b6c7
pt-PT|32|ec2e39f1d40e3a9931820343947effc3f03cf3c3677b73197446c005f891dc6f13bd67a5646ca359b2b8d3d3a971c1d5dc8da669d4f4ef711e64b10aa19d7b5a
rm|32|5994d63f9cf5dec4cc3d47262c236d8463a074ec4ae0437b3e859ca79875b146a2d0000f74220720e208b187c531b7bd04d283f9069472296734d665be745008
ro|32|e0e8c23d2b029699dad4ddbdfa5a5db04c28e82af6d6eb8cf495db2727b48b22f87e0d3d55e2695c1b974335a67f9442ed3874ae8962331f0bb5151683ab22b1
ru|32|411b81872855d5a4eac1ec3a047bf62e8a46ed606d2935c6984265cca773c2cf6f1f0b488b2f9d83a3d0ef6ca42f40a3bcc8e77cd57b3bd5330f19460a6df319
sc|32|c7eaa998494d0ae854461f41da060e2545925180cea149103aee03a9d8b7abe683ae682e38af7aab9d2ecdeb4ad49095f4090f86e76b7507db71ebba6a284840
sco|32|357f046870fa3abd35a9cc8c6d765e665dde548b93daef49699346ac07ac395ddf2e4fd8d9458fbe101761e452fe733ebe57faedd04c94f5d6de5631a33de01a
si|32|7449125105c01fab27b139e470fa1c42ef4fc54a5ca49fee47da1943091048ffba9b7f62758248c6095da771b522fa8f6cb728946a512aa9e619a95472d6c68c
sk|32|20cc27fceac21f5a0b1fb0d950b57a436fbcb9bb3df94af83c4484a879183cce973016fd40582d23cab0db249262f9686e1783c50a850f4abe7275c28147b4a5
sl|32|880dcdacb62dabb681da05fb32dbfb917c78fb75a8b34d6e6ffe684a91f203ea8baa4bf5e8adf00329f9c41a97f8467630d65ab45176242e1cfcfbfbe048988a
son|32|6bb5b80c6405e9dd7f2da0e67dae6dddc51158f2d3f92c071dfd0861532bd4f5efa12f5bde769318f62cffa1300c1e3fd03452761c44b142b2e13da8b76d162a
sq|32|e123a42dc59fbb511284b0dd13c44d494e56c0b9542e1a699c4f1af5e0484a1dd1e2af2a43edde7e8635ef44e3431178dbc748f2978334237977dca8e8c3a487
sr|32|4c5df6b34c5ed2affdc9d28280176f23a9a1dcaa7d2c53902191c2648e6521e70d82a27364f9c5e6f8daf8813f39bfda5780050af0e0f100c9d57cb772145938
sv-SE|32|7052bfd0cd3b2d03b651fa59dc0cfd11dcb31428ae1d14d9263ba3eb0a48e83dff71933bf0ae4b65a4a293d1ae092f6358ed376444975e8207b741fd459cd814
szl|32|60b874a403e7cfa8d738f021f9ed92100830328ab6145966d2c258c53d53399d4a5ec94aab3fd9e2f8421cb4c8f9296f3d37bf64ac06e297619cc70abfec0876
ta|32|a48db989207ab73de0bc2174b516de8b289b6c67ae555d0b32d2fe24d4212d8361182f634553d1819880b70acd295bc3ad8ff1501acd8c6736fd0c9eb94ffbf6
te|32|ec66e8ba7d3a72ee85eee5b9266a5a5a8b342d87e2ed36afa18508d6adfd0b0da4f5cfbaa8a9e9d9049a2e95487a68346c7d98636328e054adfbeb1f81726c77
tg|32|cf2fc58b74a088f8f87c813c83547de55ece5590d1ac11a1a4ba50f57ff8309452acb4a897d6da9ab218c42674b4710887fe59a48afd356c7c32de0916e3c27a
th|32|447b8f94fd8315ddb1f1819d2ef6fc3cf5f3ee3ef5a8f081a4065dd30543c2e90faa4329d19b4ef53b1c8941b589211984238557f4f9a940718b32ffffdc2f6f
tl|32|f2a452ee174dc17084b608f56b2b47f294c32de6a0795860bf532b8438329940c25a6325dbc8100470131f5182df3de29065fcab0e7ff99b0a147aee788b28cf
tr|32|f29d1f2c14da07b177d16c3d5f284a896fa417b3391fd34bab4be675bc76a54536f60c36dd529b27da2d0fefa6ffe0e11a0aff404f519c3d866f38f04bf93a68
trs|32|bcca785d6d44ff8d2cfa64dfb05a7a192e086e46587e1af3d23f61c7b55ffb5785a9f217191690be1fd738495c19979bc4791d3509adef71c682e45a64407550
uk|32|aa79513681656944ecb40ff1170ab421101a927067db3e9f2ec17433c0bc5ca07052d5226901e9175cc8a2e6e66230f6fc3c5c5d812c14c2600fa3801f109e64
ur|32|71d57107bcf595ce19530dfdf1c0ae1495f216e97345f52adcd3c2615df0af7feff1385d3d1f436c3f13653896e9eee7b1303b29a4df2e98d627cceeb0d50678
uz|32|15f41a2e5f74c7caefabe27b28bcd95c3dbb3a890f04000c9c0208525e794c7777fa8b91de47b3575cb53f8cc4626fccd9fe277c50baf58ce37a6f4a08b41b38
vi|32|ddd9df4a09f0bcc3d7b8d112a6a193ce314225c3c90ac18b243582a6e0e96e4f494062029cc0205f6a5620a0474a5c80e7e6bd23058f523d9821acb2fe475505
xh|32|fe068d685acc84ab0758ef38494d5032bade332c0498ef61fe638f75e0163746b7553aaa92c73c28024ff84f634c308782538f40547a206a9f8bd95c03b20bf0
zh-CN|32|220a3fe28f1892883c8530881eec41552d055688631ea3f1ec483cb042ea9caaaa3b72e6be3025762138eda37123761605cc5ecac4c8ec29e1a35f1cfb7051cf
zh-TW|32|6cfa3bd7b572929b9c9411412b76768b1fef373fc72cc78fae79184e9b5500332e5835bc2523b037ac852217dbae15685faea9793fba05274a0b62a4334623b5
ach|64|e3fb967d2536375f64e10a5d31fb5290738cf2acc2fcd066f4d73d105586812d078eb3f2fdcdb8cc44854866cd0e1b9f5ffd3ed4b6269ef6ecc8c9627e09386c
af|64|ada3c8f6a248c966a8b753d8d5c963f94e0c573005fc23f5713b7ac722583c6d152a623eab3385083c702ca6e2e68dd97a018e704b603fb759e668f19e66c46e
an|64|99e0ef9f198bd51d6afb9eda0dc6459d44e81b09244d22484e55615d2a654cad938c20a240989fef1071de3e73322c63c66637b97354d7cfd024fa823df05674
ar|64|f544116b45bfc5c85b878d8c25f1f1367a1ccda03c9c9ae01a818671d0f4a5668cabff7d892072fa8f35242fdd0d7b7179f10b478e61763946889dc8c154b742
ast|64|129a57e0325c6ac4e81ee00b88eefbee9feaddbe065dedfcfdd91f081d43be3c567383e0a5c0f00e2a8043966929f613aa6e2d4a97fa42e98583b2c24003c5b2
az|64|bc21834266ef6a65fe862474a78f4ce284511738dfca5d9c546270b99d9cb4a6d1200e154825cc1aa2093bf3abb31e04db1c129e95b944776f1d49d1c6174efd
be|64|b8a995b1dbcc0a467a03f5ea7791b80cf9730dc82e45175e6f8b5b529a58cd7636c550f1b3b4a51f8409b8251e9a9f986ccb8fb5d978c8e960a3b6c06e74b529
bg|64|52cb884e3d645ad3f291174fa62dc9f89181851df7bc9db3e38853fb1f6c040d994882e9255e09b0e037494620743706d7ff19a4dacf60f0d20ef4cdbb3e5286
bn|64|1fba8ac0cb851e25c51db30ee6b827a337a53665d53a255501924e4f1c6b9252801e231bf4fd1128d0d2c90ec70784aad5e90ef12735c55179c6ebfa9e168000
br|64|e10c83acab31a93cfb1dc5728221d6f2a8fc127d15498c9f8d138fd53afc23c8a082183388d7f4291df76c9faf656970da032b8a29c636023048f7786840b45e
bs|64|0df188d5011906675d9641f7b2f5ff6d71d327a0ae356bad6b1b6c72193d7f6ad0ff44d71971331da8dfcb4b24d00ea0da0befc1415e74b1dba68cb1d24ef49f
ca-valencia|64|8b42d8ce45e32d4d99b55c2fe016309a5158ab5a52f045e3fd929262292e0c8c73ae4af1f961155145f93b31c5da0058a89031983794c95862bf5fcefb99ecf1
ca|64|0ff34a2991eccc951f9e0b5b2c6862d8088b074175ea26f76331ac347c5823f9b4ba442a75a3b9f4a09953a14d8eb08e07eb700d7a213ff31cd0482f03462fb1
cak|64|7943cad10de68c0441a49f9c2cc82f952ed0352a8ba08f4ccefc238c30d1e43fae1d5824b5a23afb23c2f3dbbd51ce0e0bef8b35ad19a89e2a5fb55f5458f83a
cs|64|9d3c671e22139a40cf9d020cf609f7ef07a8ac4512d95ad9926f7c6d3ac26ce476dcd3593e6236ab934bf532d8a975a9abaad8d95b59a1ac13c8b4ac61fd9a23
cy|64|8b125c19c91d9c646ef84421971c69fee43d2cd18825893daee923cbf626469f62efad794d94c0e82f1f67d5ef380944cce1a13e55ebf2c84cefdc938520e5ea
da|64|3111995b22ef7a28ab32f9ae84da7aad758bac6ce0aae4d60d4a810968a7e1f98fed5af8b0350b17a99ea5f991bd08c38b09ec2fb81bde8967ebd8fa9ec8b3d3
de|64|8196a5938dc8942c5c2d9b1d86d98eef8a89ca45b83266e10f6af3c14354a8098d4264f9c0f8e4a1d2fa980c4480dbb8513b3c749de3b2eb0b26fc7f49fd4ad6
dsb|64|2c9831c2b8c4a63fba59277ce7a2de0086d99448f9ca5f721966e0e5a40bd168c76261bfa596e00b845c70589afddbcf40becda2a419d465e273652039556a09
el|64|fb424154161460bb8fa4c44610faf963e33a37bbc7b13a9030ed465119c9e9a774429463fa9d68e292179538b087c97dd62fdfb1d6b730f93ba0796b140fa932
en-CA|64|605f80637261f6e56dda1287487427a7300dbb65e810a135072de156974e8f3cbfdb409ea545b48848e8505887c7294cb7bef832b9bd0716a9902a8cc46490dc
en-GB|64|b93d4dc942d3602fe9a8c685f9870214590735939aa50ea2e1349b7b914480ee9b6c64d6e6a351bfa6ab00cefbc31cc9233438da4cd75f74accad1b22dfb4aea
en-US|64|1dc44372f01eb0c8f9ecdd62c68de7e18d80febfe1e502e48dce7d9494b910c9796f52ab3f594da0ba791da2c922cebc13d10b83f8e7ce0ec329421dbb871978
eo|64|a06aea701a9d23d420d9741751682800006d784870f7a8103d1f290620c192632099d302a43f48785ad24ea76b854cee4d35dc2a1c45c7e2e0296cf26a763158
es-AR|64|712c8c3e6548f92ecbb5d1d6cec67247c42a071d04834371c44d709dd842356a8b9d22f6e3aec23ccfea8d05ec9c15cc70cd6c1d72de37ced48fb9230f8e6bf4
es-CL|64|bc6bb4f72213665f24608f382670896b38f44bb9b04a90f5c53f293b473469c8468e7475a5f6dfc818f11b302f36f38cb6d1396d26e34be18a7d4a1ed0f2f06d
es-ES|64|f15b318e5f7a8d37ab2fc3a991800118cc89dc803d4c19d88bc22ae0f1960db36a9e10c735a7a208c7efca4c7c786508222c30650b404efb722636f922d74a4d
es-MX|64|97ec586aa39f0a2ec6bd0a5034d2be13ede574c9194de3f71b3834c69bab367fa4353d2aa45da275c39f7da9cd29090cd2c91596fb11565071721008a0abcc90
et|64|70757d18685e491579b3519dac567fa18329e2f8198b2b4456f8edcd60c809ded50f5c2df45617afd925b33865b51e42a6ccb24b74601e4110c3db56900be29b
eu|64|45ac4203de03218b11a7aa75a95a5a88a2d67fa6d88c684229b0c4dfa11bd826945609a428134a553fbc58f18f3bc0fd27574300d27674ba981ab16c2114814b
fa|64|a49d4cc04630bce3614cbfa76e46383b83107ee5618cd438d7888bdfba2fc0c41af87e891c99af1a45f3208e7e34287321e1b9b8352b76eaf78806a59e3c7d63
ff|64|420b9c3c305f91897321aeaee48aa3d602d851d3aa65d56aadc066737ba2e1df84c312c90ce1810d5d3a5479fb14aa63398b1e0f6cbed0963f75f24faf0392d4
fi|64|3038d894fcff1c707c27074aed9a54630389824a707f317919879b0ac5eba334dec3c0089f3b2b2a95a9386eef6df0b9a74da16b5449478353d3d1ddac89f51a
fr|64|ae71e8036a6061a106cd9cd6963b728032908a15c6a7522580e3af43e6cfea4f640cdaab105db76d929c8746b0e9cfea33f850388558cf6ed7476d7dd73a8246
fur|64|e5286c02c2b8974be7ec496fb26f3c1ea4aff5344a0477a202efbc7aea3ce8d949ce32b67f87c079e2b5cb712469e0ad0f9321d5e3c1064537cea245796197c8
fy-NL|64|28179c310ed984af9c4cf583a7e0f9c7fb3e1360a29df27413745aad14c0fd228ed1b824fdad9f72ee099c18a7768e805445bfe8aae8de777ccc2bfb52fa6cbc
ga-IE|64|af479ae35356193334b569b2b94e1449730b4ec94486a5e62f251e9220618c585a2b28853bc6aede579527a1fef152754e4f1321bee5a8db2d970a6a4c4b7cab
gd|64|f0b3042685029fb34be3f663277eaf46bdb8425583649dc149a81d26f4c57be1ca60f65cf99b1703f80f6a012c14d86642c07d27be5c5f1ebfac86225b4f7f5c
gl|64|237ad0060e7e1894bade266fb15185a6685eb2152b62dbbcf0d91628465889ee6b1a6fc3c87f530234e6b5c979a936ae7ac2a8ecc60dbfa05cabb50f2963b692
gn|64|90e436c5a92a37200edcb9394e458a03877b8c6fc572a611d3faeb6301e46f1862169830653b756ca2ab7abbe740568652096cf8aac9f78eb64cac0b74e609d3
gu-IN|64|be688dfb9ce4cf0b87f419ce33ad77da4ee2798bd92c1aaa1022d22f8f9eadc556ae189ddc6f4f222bbad562a986d0347af1f4e51537f31e378bdb34634786cb
he|64|ad1042f32e57fab9158e2cf6bb5da4f36ffd367cedd8fea0351edfce167db659bd47f300f4c59d2050c5e00e65de59c3e0d86e80101cb280a64f1b364d5769d7
hi-IN|64|88f27402a4ccaea873e895821d62dd2f651dba0568a3b67a5c7918582efc0d0771e2f65fb1beecf027547228557e5f8692147e2b7db2f6b2e6956a89aae7e6f0
hr|64|883bdb34901da55033420ef67e6949f3730435aefed84566e257be055b4a2adce7075ead80c539df068af37ae45c351b5e64b9276b23c666e256bc9b4cffb345
hsb|64|8187469d7956bcbc263b88ea5bb891a7eb5436bc96bad3a97574f3679f632ce681d3a3d2d39b4a98c2a8e3264814b631ce9fe6ed38ba257ec6f5b5bd941bfdcb
hu|64|b3044889e446db23b9f7ac8b8e646b55344e4490921b354e5193a5c95fa48275f66a3a2306a3a5993d16b383cb79f3364c50d0bf083542501a248aa6adc09457
hy-AM|64|475a0f17d9d9db9a2fa5ee7827e47c8ad17ab2b50dfef3c39cec7d4f1457a24e02f9816d42db768df4ba57a36be7da82a2885d9dc94215ee91348db46ed82f91
ia|64|d5c058d89e22ad97788187ffd33a13124c6a9b9fcc0133030fb167a117115135c60798a03ef92b7495b9df79c11a6d70d78441624b9c59703f6583b02fbe23f5
id|64|e9dc48cecc373e3e2a38460a16154fa5a93f2c2be968d5996fa8b22d5c39c9558b7fba7cb05c9cdfc08101f954573ea70d704ca70aa0069d5726ccf845a86caa
is|64|4f35ffe375aff427c0cbfc77879758d5fb6011ad0ec05b5c7519976f0e39ff2f5d8db04bd771e12d545a56fa0c558223e133cc244579f31c02fde155aaaf18b9
it|64|97d75ad401bf39f970b94223489cbf2f0a7f16251646ff0f85d1438fb37d441a1a4fbf4e9541f033f3d9fc2f70718280868863ab974f1604d931a93f8e6ea5ae
ja|64|24eb68384cb4b4103cd1b19cc9192870e50fc207de8bdc0a42a1c5332a6c3d9e39a2cd66b95b8cb55ba4ec06dac1bee73a575edfa772011af5f2b629433c6354
ka|64|97b5a2212b5c3a38aa48fe809ecb43c19a6b62850220deea7660de2aed2739f1118f8285123541d2d6e3c47706b0070d95ad82c69e138beacb749252a300e789
kab|64|f7e01508affe188eda2e6fbd5099d26b13cc1041c3700d59b4be4e4b26a3931f868b54def7e697ae452e7bf8ed1c7bfb43e1b4c49111193dade8efef4168fd63
kk|64|e210bbd79e885465259e4cc77893627882701a0c8ffe3f9c19da4fd13444e0e20d949bdaa9d0fff0c3a6c2f3c208b7cb739730c86ac18d0b7bb9072362a9e404
km|64|58654c60350dda48925a831547607c336175e6b1426420fef05a724007a6788e478127142867cef0ec8e4979d357eb09d2a221fc1636a82cd0c4f5abbc56c4f3
kn|64|a829a6786fc91d1583324eca775e26b6c063cb249be97b6137e6668d2f3a239631573da00e03a1229cd86571540f62a650ed41dbf1e287713df55590b01c2ae1
ko|64|3f1d9d866a0da8e21e47dc8c1211416c6b214484a8524407a1a50ec428b30643cf7f9b17a356088ab64c8210f7d0a621e81b314077e768347b098b79f5eb5f52
lij|64|99b083423b7e574cf0bd4d00635768b23d2fdca43c42de75f531e6ba9f1bc33973f44cde9214b8db3402bd8108126e6bbf425564f444807afc8539b3af612453
lt|64|1a66d8e451fbf6136230a3707a67a6b7b54198858e1c20bb601699cce45da5c0ad523535518b0afa04d3523adcdbe91ec55ba5b8e8fcf3d77f6af88160217590
lv|64|884383824fd1b87b9d9de91da34008175a152295e5036053a12326a4ce43be448827edda76f42100191611305bcf3c656df4840e24eaedd3c3d7a1af3d70ce92
mk|64|b85a3d33c0b7d343b9c148ba6dad944d9aa3b9c31c251ada188fe7fc476ebd55e6dd0b3cdb7105dfd8c692afd000498a8e8199de0343f10340fe9d8867e079cd
mr|64|14518606e215930397dd9bcd8026e60b1fc7cfb1cd2e7dffc26ada0ee0e45fd895286b40d187cdbbda60f9e2d8f6e3c847145984a4c351197969479da8f04018
ms|64|11c451f25cc10deb55f3b8809fd3adc0bd7e2bf7ae5dc4c48c19f1ff6dc85f5148e3a8e483174ec0ec1e79b12b52b5f18a8c7eaf06ffff6bad62bab4b4b10497
my|64|699e981066e90b02ac95a1872edf8ec3d6d47f48a3cf0e35b44f28675bea419e0d0e3b81fd10ae1a9f4d81510a73d153288d2bafc38cf66014f7f4c3e2a1f67f
nb-NO|64|c37d95f727acbfd7d3e5ed63d530a6c236acb060c5e1c02bfd3480046ae410c897a35e113e747b60385d7cec7034883f9340ddee818d4c52173fd7daf262f518
ne-NP|64|09bce74961524a674b52e0b2a0a0c3f6e0b2d25d5753743d22938aa424932dbd01a146a4f336919655059838075fbd89399300210552883c5c8d355886a6a0aa
nl|64|1f3c7c021d1ea885144980155db50fc993389a2a8965d478cddaae221170b47aaa635cc8e63139b73e07a10744bbd25b1d563957a18dbafed3593e54dbaa5c67
nn-NO|64|b5728031035100cb2b1139e0d758087822b2547fb8ff2300ff5b7e405309c971dcc6a691e736ffa0b9222337054cadfa0c5f7ce90bb0124d170228d11a5f8c2d
oc|64|b94cc1d99c62fd3a1f93ec1c7bb2f457ca5e50043b950f1f9c51d79e4c5740dd494e90fd3331dc337058fcd8364308dcc31010717e8d107f387903aeb43f8564
pa-IN|64|20f4800dee295176b1cd424c3688828cac8ad69f24c53cf640403901a6ce0e22c0348986f11779527d32cbfea462c1ef2d7f1458ded88d68efda4056c7e7f816
pl|64|dcabd11aa0c19b8562f4516877f2d263690d9f333f4953e26ad4397fe0b2e8f6f5f4f38a247d919754e539bdd20a9ba30c6173629b5da3a926314c1fe30b8e3e
pt-BR|64|2cc4d9f2a9471be0900870629637e6705e9bf4d260170f0a63f4e6d2323a83e0c6c56b363f1a40db85be7b16fd1f8a061c4298802e2bbb6e3a9bd20f64f5f6e9
pt-PT|64|9ae3bd095a24cbc53857b8edee29c49a2f743ba67ef767b3617f262082cf4f830dadda307787f69822c2fae7af117800b0405985b0206192129745bcde7b7526
rm|64|10df93e54a8fa7bd08a21edac4a8ce60b6262161c6abbabbb979bec969da0b81fc4aa1333cb2ea3add6694ec5275823938b5306629dc86bc9cb0e2c515cda6e2
ro|64|c3b0a2c57fd56c5c8d55e9b4463415043050cc6a295e224eff8c405d48cd5b90328f12789de85d7da88c5f1ff39067ea263fd184b49a0cd94158cf693c0b6100
ru|64|e4d3baee0ef2243cbb56ff798d6fc18fef7c77b90e8266c594359689d5761789a506ed675eb2a9d121714079e3919604bc33ad8dadfad60dcc9929943d5f3666
sc|64|bfa58faa7d0b721095c43d2a9b9a2d1a205bef81bf7493d3bec085a5f625ddf9a287627c382540cf133b1b041d3d20730150a23810eecc28ee8df6cc637606a5
sco|64|4a506b47ec8fdd666da640c4f600b712b8e65969d84df5c18c1e33b5f5702ce13502b66b649521bddbb27c410e321f36f5f83d7fdd324e5e2646f8e5805a199e
si|64|1b87c81b8f629c4567f8c8698d22e7b6bfc49e7daf1e3ee73cc287c2a7244acccf370aa4cddf83eaf1bbfe9861f4f56f92d9843a6756d2286b473a3458f56118
sk|64|50fbe5318135d58c463171cc2b5d607ec283f8ec025cbfa09b8cced4017b1e31dd75b21537b79af575026e0693ae0c74732f50cb9c58a9ec2ad24360359c096c
sl|64|de1d1169102efc9757dd69de4fc8b32d6a0f1ba20692618f7105a054746b88a9f62aaedff7b815c0c6c3aa343883b4380f6086d9455b0c7663fd87c799c0be0a
son|64|9dc4b4dab712113261b16674bfda97492e7b29277d204e10330db0770ed5bd38e199edab3844b63b13f979186568aa8f3377d77af18434f06cb88bff9865044b
sq|64|41ced93e6d8fda851f4ac01d1dc1c4be7e724079edb298c220c30a1f1f05199e82a8aab13607b1d0a82def0624df5c99f1d381aeedac1785f96bf7a0873b1167
sr|64|beb4a0a120b183925cf0696b1299896647dc4b11c6303981d2b98b3acfc8ac5fb772ede92aceab15c7adcb2467c561db79d081b63f065a366774f2d413e550d4
sv-SE|64|0b8288afa6663a396e221b9b5c289d4c29a8e59ee5028d8af547f8d8eefe0fc2d88efa97bbe9d99c9e2e26243574c7df835c6679bac612055a20b6571380d13f
szl|64|5f90d656ae9d2377dc27c8f59331989f87b090763160835ab792c043877fba4a85c1c354c5807d24a39d8a868b524585b3475d2c971640090752fa05295914fb
ta|64|b90a220cb53289639e5f7aba55b7f226c6818c9a033c97762f6257c2f78c5f444661dbd691f69580f5f1763b718f337e6e3fda9f31bc6d5f30fe9e385d58c3d8
te|64|d30cb8baf6e46d259396c7796384c5989e7d97c8fbc651bc5d0f441fb5a668ba0b52c78b6f475ee21a20997bf77091078144cd7562f2983fef95ff6314ec79a3
tg|64|1a720494ec2796d20efea614b9f001bebe0250469b235f99fee7f55e4bbe305bff084eac9cb0d3974ab777b0c11195b0a80830a634da1e0d39862e6daa4cae17
th|64|f0b28512501f75da4d5e454480e120e5a7c8e59e0c4b75314652d5ecc051ae3c3bff844ad48f024ff4b23a0e2369d1c50e97b14d997a1bc53ccc1c2d5d5c13a0
tl|64|f580d87fcfac12fe5f0010103819823ff75562c9c096483ee4c817de8b01b4e7044624a3496a91afd212341d4e9006700da00d93108e3c9709ae38dca9372ff2
tr|64|5fed9773a0b572d97f646f598a5abae527ad37f64a9912d6f3f9084270e6359542c450d66d32d39c546826a2b97827f990f4ef1159f3290fc758af495d1c6fe1
trs|64|97e2be8abca0f404004a9d26dc7c701abbc79afb3ea21d0e327270a7a8b60cf8cd28b5fdb13541cb842c75a188f335d4bc4c193058d6eff6370ac50263dde82a
uk|64|8a3e7255d625d3b57e186b49ff5b1c31306b61af613fa24b2fbf20858a3fab757d1039f2a01392d546a98d75621366795f8af6909d1a5e17cd2017c1000ccebe
ur|64|b14c31646a0f2cc9ea0a507dd8fd0182285bf93510430c472459ddea886182ecd08757cba897d25f8c34e8c9561c503e3c9d6363fad68642a0641bf34f55b599
uz|64|9778f7b7dfed1ceed709fe16d436de377da80c1330dfe77c0536d9b56a5591b543e9382d91e6c0d598e06ed3d275a557517641c00fbdaa7de08b9be33224be43
vi|64|1b6f3c8bbfd97dc1bb3e1630170328c2204bcb15081622d44af2fc8e44bbfb085334dd2f8f36c3295d05f28fd930ead3926b2721d4efc53e9a5c98272f8d5373
xh|64|f39fd945d97f6356cec00edf4050cc7e7071a9e39be86e67d95c5766f84e0932580d8ffafa55da1b7ac0aa343cd409358698d2673c94321c71fa86d7f0ab95fa
zh-CN|64|907196b92c5cd6dd9d20befba8e9df8c7bf6e41451e12429dbe01a86d99fb21d0fd880f335b14d4a2b815e49d025340979df8daf39ab822237ac8b606357a804
zh-TW|64|76936db120c37dd6e0c144b04a35bbed7f51a0a603d70c81b0397e62b542731bb830fd9d98371d300a4228fb150885a68886568130fc66456f0a2f6f4683d36e
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 22029 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