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

Downloads of v 115.9.0:

22,029

Last Update:

19 Mar 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.9.0 | Updated: 19 Mar 2024

Downloads:

2,545,242

Downloads of v 115.9.0:

22,029

Maintainer(s):

Software Author(s):

  • Mozilla

Mozilla Firefox 115.9.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.9.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.9.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.9.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.9.0'
end

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


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

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


package { 'firefoxesr':
  ensure   => '115.9.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 19 Mar 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.9.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.9.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.9.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|2c2b3c495ef27597118b9ba60ba190dc6f7dbcab6e40ee224280fbf1e3e658da0bb7fda887bb25b608c82c94f28e1f966d89725bed3847d3bd87e00abf6c136e
af|32|aae92162d371ebe2d9f4b7734aba2e1cd279056a1d95347836df359cd95e71fe6b8d9a3bc202a1d26b6789b7f3db3f4c8114219e4340342732fd115afb30ee32
an|32|9379e47af4ddacb13a0ceca5447255591eaa12bda69a72b3ec548d4363cc71c6fb24fed8d9813eefb67646a16258c877626c99e4f270d546c427384a523f3215
ar|32|db828d2d22afafdf0c18138c3b4241c511492be9db9a0aa077bf0ccdab21ce0213fc5443976ea042e71ad58ffb93b8c3c2c6a90acd606aa60a14b7361c2dfcb6
ast|32|3af9089c98497a4f3f6b454fdd5728a6c984d5f244081cf4148919b2b10636aa6f42257c766a21c7af8a64822f4d85604d06462a4a3416a544718bbd66bdbd82
az|32|a024f6a797a974ad920624d30b6ea6709f748488fee41cf8e9b4d75e2fcecde07010b80093dbce85ef38172f1c949cab53aa658b2d39c694b64cf90fef63a1bc
be|32|da70dece3567dcc9a3e9d26667a9d47063fbacbb097b1d43d25efcb6da7c33f80c80a097c97fc70aca444e7181858736a2f189558fce421a18fe66333959f357
bg|32|b8298857757ff9760d4227ae476d0785b564700299421da4603f09b28e76003b5448d85f9e341b5313c52b7b436c75dd931df0c609e5d830abc1f31569070fa2
bn|32|1c625a7f0b6424594bd0f5312d3cc5782d559ba2d7f37f9337aed601fd5b3abcc993cdd4b28dee33a6d4af526ed8d761a2187fddaa8d168d68e15ba44a61d347
br|32|82b64d1b719fe9d4ee6c40d998441622cd743d81400b522e4bfa0e47ab1fd6df5a17cfa627e414261d0a174547e922ebae02b0124570fe97f265351b8539eb9a
bs|32|9fb127910f11806cdb3dab4fb654548599a29053dbbd539d4877b3fc12564aa8aecfed9478e0cd460ddd4b31c95b55ba56f0dfa8cc578dae1017a91f29a805b6
ca-valencia|32|dd75ff85418951309ee47ebf00e6e3af48a2d0d550142752f35bef1704bccb4907f0158265363c9a473889df65fff0c8ceacb78151152ab92611a5db1b2c1c10
ca|32|89950b5427370ce1f91e8b3e6ad998e0df660530e15ee508601b8ffaf84285778e84b914cee1b4b0676bd7d0443dcc73e834b8c9bd4b61dfa353fd8729c5fb7e
cak|32|636fc304284fb563d16ce5d1a575a3e7a51199ab87ee8bbfc5f0b3106c5fae2ec0b152428ad3f3f8a73229ad5aacaec1d0cb25bd67492210bf0e2a98befe6591
cs|32|c3b4d822a63364c609c6923294bc98a8b62e14946488701eff2702be01f694881ddfd745cb6531126b8b28b9e5f16a6a34f21a77176f38afba97f694d1f44258
cy|32|3551c4a9b6bca4299bd01e07ed80ddf6dc773897a19053f184828708cc6fcba05de5064775ac5800025b6da43abade72ae582b333023707d5e40c07235b5e6b2
da|32|492824646625bd79bf37fe7a0bba3eac681ed51fb019b0626456dae319bfb54fa726dcc8241889052b8901ae6dd9eb7ef816ede9c6ec5845641c13ec5941a2a3
de|32|ea24058367e329d8fb81eeed3fa8ea1a039bbcc2757f9931dca7d95dc3e4e57b0cdad0c75aa5a1adb775c68336fd19bf2bb38ca658339db426c970acbf73cd57
dsb|32|696090e9d459af9bfbb9095e648dd304d28b7df8fc4997e11e6d6150ee6b65bd9ff6dafa75724c9e5b1cbd3583d146becc524ba512506dcd3ca5232ea0f1f1f3
el|32|58eb8634527febf9aaa4b1d99f1d566bc88c67982f85e227f27033864fc021aad8eb04f5cd077b4b2e3716767b99d64b3016109f93ab359db83dca0ea9426870
en-CA|32|5aac49e5af6aed7eadb34641edd27ae071edefc80af80c4cfc251d1bf49bac2480d543d477e7aac9c38a165de161e04fca72d8d5f948c81b56c70f3a3b6d21f6
en-GB|32|a6e8441e5524cff66014e6db19bad2dd7361738521aa38007aaa2f74f6b860bf7882751dc921cbf403dd61bda4e1549a9db6964dcac7b24b2ce6a5ba4d4ddd22
en-US|32|14e71200a40219b5f67d6521c2e0f03733e1592f0702899cc52cada526719959a2a7f07d08345ed83b8dce8d4ccac53d77e35cf809575f6762b52f1626c7b1ed
eo|32|cb635d30292858ca534f7749dcbced856693f067cdffc646008018f5847cee4bf985af1754df4a063e27ed16cb5a46aaea2b221e745850a3819fa54d00139516
es-AR|32|53c5406a45a570e4961211549e114896e27401676f809a0218051d35950c9d16374118ea967f38dbaee470213de62c7b2f6211ce053eb243a89eb71b022b0761
es-CL|32|11d13847928aa3d769891a9f62a1b087596230c511ca5a30b8c9b6733f336dd5f2ee5b3500c1bcf9f106edf4f28a80e4a79a701135a57f95d9d842c8f663f2a7
es-ES|32|da9df6332da5afaf3ab7ffab3d3011251749ce4dbcfd9f496cf2d564c438f765b1273f0bcd3d5947815ba8e3e6e9110800f4dfdec1f94afd0c6383c4578f8d80
es-MX|32|db6f8fd3066d1e18a175b1ead5827e8de0a2515139bdb44b09896719b03ea0acb52fd2aaf01b3d86235af158e7591a846528663987b57e9412fe1d8a5f418904
et|32|6b9077ef26a29bf6761bd36e75f2738226d2bb95621d6462b056f78f3a6ab7ef1151c6201be387a0963f2913d10f100bc596f6b1d1580ca735c9a9d709c683bf
eu|32|7425270409eb75175dbe965718167a487d47480e0b3cb447b676cebc9ec9ff889c2d10ae6751af8307ae4786f90280130dbbe40d55c901c2e00949c1567c01fc
fa|32|9233ffff1421c85d637d6a973ee707fb826a7ccf7e27b8d54a9f8103175827b29ebab73f77020e7f4937e463f3c5d1ee38f0f36b52be1f943d8c40dfd0ff8c04
ff|32|c2d608108be6ec20b0ff1c6abd1340c18cca61eb2c993719a6d2d5efb8e6b6df410c52de37b080c42f76724d9d6e5ff10ddd5159aaaa5d0b2867f139df554575
fi|32|050210c894ac755651691dc154fa26b9fe80e852dd6aa60e26f5cdd735471752b0a160d1de2b30308ddc88a31ea2767c79de83ab2badcca1f08fab661a308756
fr|32|490050d5f930e185dd124e124c4574f9af10b6fbebbd70eab967173b0677c18b4f50c4f48d76211f0b8935fb87fa0bc6fa3254bcf3cb33f304fab8224ccc8337
fur|32|29da508cc404653611e71ec63e510e9537c68579cf7d2beb1758b1ce72e3fc83abfa2af60c0cbe580b030203406ed6932ad8b543b436aa15bad643d6cce5688c
fy-NL|32|b0609d818a946a96af6442023e1392cdea65c0941d89e37c08e67a64ea2c3a53c3a846f4c745c68639d7e8e8ebd1c388d8adedb8160e1df670204d9ee71c22ea
ga-IE|32|77d765fc6ffa01086d043d74499d4cc3e31b7dabb4039f3f08b44d461c3089e9e0b0373867d6037a894e8c1527f8db6b1e50c0c0a878f8e0003b800f4668851c
gd|32|e77b9ebdf6daa328152c9d3b0637be4324d4fef0a66d04518834ad0e0e2ed91e21fe7c06ff5160d6691dd771e5ad9f591dbbbbb589375901dfbc2dce19993a06
gl|32|9143e396f98c33e2c566aa2e8950618ecf42103813c0ccba7968893082826305254b5bd71043ec7a3831c94efb4067323f5b83794613617902a95d5b89a05081
gn|32|3ea73223e34b5635acd685f59c0267298e07e54f40268e171efd6f0a5012f2fc59cd0f0eff4fbc5099e291ea2bdf36d1798b00030c0609b84cac3e6148ee34fc
gu-IN|32|1389fc110cec749776c4b01c2ed3836575bb5901cb88b95dd62dd54cc4d9df761ae70c68b8d6bc95250455abc4ab0952976a18e76e09ad35a20e495089be80ed
he|32|ec2320f4fd1d636e7199386a3bd60559d8a478d9c6136acffc2f389c6bc2633a662bde12cb8a1c5728ea8d44176fa2238c24499ea81bc3e1bba383872a3868b9
hi-IN|32|06d5599025fdea274a3c7879320ebf645ef7fca76ef90cae80cef660afae4544670dcc31b3534ca65002a5fe07236c613c9da717c4224c4c5ffb42339f0d0c8f
hr|32|89a2fb2b79cddaf5d44514957020dcfbde3789058137b7ed5aadf0d92d42530671056d44764b88b526f1abab065ae665c9880df5d49e6c1ebe4656bad330734d
hsb|32|84495fe2f9b58dda4042beb15d9a65fd82e370506c8607d6fbe54b5bc16af625ed4321f1925ef9fa7d88a224b01899ec449d11c0262f9fd0fa2bd0b6976b951d
hu|32|a83b46162f416759db570b13cfd8145edaede63391491cc5c3e18cd7a918ce8623c0ab85a368e5815379bf7de750c7626d0441f6910fabcce28d5a7d5f5aa34d
hy-AM|32|14057dcb9c618ff711c1f66c0c96b5ca8978b96ed93781fa5492e3ba1e87522bc05b0bcbc36dd4e10403fa68ec4e8b18e89755d1e8982e8dc14baf1cf13fe43f
ia|32|6e1ea14c16cbf9d8fa902456baf3504eaf0af5a1618e95e34466d95922136282a4dd225bbc73e5bbec9a802dc5e075a6e8263e181da3794fc60a79e4b316b827
id|32|13428b11eead9e5c84fc0c6f66dd51b477dcc328d47bf3fe556a8448d9d45ba7558635e96e63da972684558c73349d84bb4fd2fe8e6e73f8fbdd4e0b5b82ff8f
is|32|0f1e565aec85716026756b98c6728526fe9a5fd0f758df89f38530c2b9bdff94a18dda9ba59075b90ac4720f0dd6787ea7702c7aab7ab9c4437eb9b982f6231f
it|32|f110f24fa75091bbdf25f83307c23fb2dadb11fe3354f1ee7ef4c50f554dd5852648f5db1fcfc654d24a828d546c43cd5858d4344d1070b329c8f137829baeba
ja|32|c51035df3842e9c45ba28f24ddd017d5a0482b185e40d0bbf34dc9540f5095d6e217e27c615c08f5f96b4b6a9df834a674158edea74ecf08c43780fe9f018846
ka|32|e5864ddc72e8ea22f7d6bdc33e1449bedd9c44175a4eeee771bed244a582902b953e1893d5fc4d6c28c7d6f20fab3e9cc117febb4a261465cecc7fa24777e911
kab|32|3dda665e4e0579b532c90cd21a453b02352af02862ffb9e6371c0ae749c9b11fa1f1ba56f264952f3f8215efcab2ed4e157d8ac61b03cf8e075baa684491b773
kk|32|71c2fdb8f2130d4fc5e1170ebcd7a7bee0bcdfcf7db18134e192d7f284524055b0aecdf78e58c207bf2e888456f67163411d4c18f95dd8c180c5391d325c0773
km|32|194f157e4d5c2793337a9d6bab454606eb21c4adb13f1bcf009812e4892644203b8e11c8a4df6ae5a34bf0a141469c4d33e3cc0822b13fc9b0aba36cb778c174
kn|32|b1738b1cd029fa0258b8473da1c37f0cf4a040f87ada9fce8ad7fde09f59e3c4d310f28d59aee8aa6e7920ea15b1849dc1a17917c2898a2436b8bc4f5c114fee
ko|32|a42984593f4a87b7b0b76f7638d6169f519ddbac96d541ba417156986a969dcee1f9be6e31ddbad2bca8292d4f9d72d16a6f6880ed47fdc7e6b4828f952a0d3d
lij|32|e3b2870dab0a6b80c2bbcbe81e516eccb4bd6a4d4b73c9e845945fb846219912f3bdcd849889e9b0172b10ffe089724ed6994e380e398775349d9368e8bf3f6f
lt|32|1f97d552c5bddffd002af103da6fbd16a69026e853173df309cd4ea7808458aad915060bb13a08db63824701e2b83966a96910efa0754d9b755b9efbafe71370
lv|32|9d925c7d2aafcda3ecbf195f96657366d67b1284ee250695686067dcb3d64022de4352ac8c5801a7dfe83e3c876e3c0e3db2e3427f529727acf3598718c54b8c
mk|32|97a4009feb09c191ee35155492e4b1eef8a4748515b230ed4aea097092bb43d76bf321f040d89413a06c990d3502f388df7294b8bfbbaf731da950b2b3f7d32e
mr|32|6577b7e27fb7493dc3d8975b4c7d80ea882543eec4e3879aadbcbf52bd7e8940e5277910c459e54152dc7e2034b4fbeac2a8625607a69c61812ba1ce331c08da
ms|32|94ed7d3785c710e077449c3b47b9b5d0c677e0161743aa46eb487cdaa15bf3db76ddd51642557980f22550d98b1855fe4fbc7768c67030feb02289442004684a
my|32|d666d49cea2ff756c02d8aa013dddb39dbe3cdff5fdef17f4119ce677f72f413d3669ee76caef9bbe84f04f75b357ff177de49c12c94a3dcb1d82107fdd69acd
nb-NO|32|e5799de055877eae2568a042fcc30ebecc853574f3e1641705c103fb3e5262d69c938e9298330e0c4ae1219d18f3ad34704b3c9daea41fafae2592e45141515e
ne-NP|32|0ec977617aa4afa6b9beacbd5f527dc1c59007569459f03e802639dfe00bae040d7a4cec991e15c9caf4e31e2cc6ee6bee8d12a09b113657c75f3479b56e22a6
nl|32|6981a38599ae7396b924670e1887eb3e93b09f65ad24cee50dc238f9b3c4fd139762a58199e5938f7350d2f2c10ab727c73d64bcdad3cde8333b43004eb552d7
nn-NO|32|652f6bdbf0fac0c0f8fa5646266a906058f712b7926c1314477ce097cae9ff9fe4e24e2e80ff6e10f5949e0213a50cb60bdec93daba91e3f7062336aa6561d4b
oc|32|e255d16c4e7374f98e6c16151faf744ad919c7d5bbf3c8468911228c429f9077e6360ade34aff3ffb56f492772f23fb15f5e452aea384a8cf41611f441525878
pa-IN|32|6cacb6d9ec5f655fc6b85a4548a22aaa6891c46a78a136801ca855c29263d06e3aede473dd7ed9f6183f29be7c8b4acd26be47f8be9eac5d87bf54cf7d287d39
pl|32|d24598f17f79a8dfe6e5e78dc8f5a876d2d9ce6706f32fbd3de65d0ef00e743db05d688dc3735536217dcce28e230e78f14f6591e24565af22694b952690c9c6
pt-BR|32|6a1a9ccfb93a02d259cf589b780d4aad60f3b8f2b922ad7caff83b63c4f65862c889a76106a1e5443e1fcec11e43b55b755d3475f8d1c2184d5dddb0c6e99415
pt-PT|32|2c0d184e8f58784fc58b1bd07861e32acb676eac282dde02bfc582c56e1dde063f9fc7d901ed585e49c20d2f3650f4617caf19ec7efc642f8156da8b60d73e76
rm|32|f6ed5bccf588f0709305b994c4f676b00b17717972d65fefbadb1dfc37a9e87d8cb91ef1f82c7c1bf0fcde173ecf6f4c5db5d4410a81daddcb96e7fdb77ee959
ro|32|6956d013b7e61eb8569659806dfcf90209218e73360509f1cdc2fd030b78b48a5859854308f94e3fdf551cb9b63532e887451f70933bcb44fe7c9001852e05a6
ru|32|90fd7df9048fea13891fb4767e9c25ef8dd0a81af8461704830db3d47d680e73eb7b1ef977119f8d845e20800b9f2e698d9309d61122a4be89b256d07f96d9a3
sc|32|022166674afe845c1199f72e35cc451eadfe3e1489cd4e10a90a4d694c1fecd391dd81c5c3665c88c7aa3acb1846ed2e8893adbeef3e276fc57b2d14d9907928
sco|32|aca346ade2ee331cf643984ec979c825b3561de475312c2fcc9906ec5dc407656ca4cc8d067028ec22125eb97a460a02b9b2b6b18377278f26330fc591491706
si|32|4580cf397b31b53e80bfd07730964cecbecdfb0e13be8e271065a18eca5a4e0082f4c59dd931e13603691f5acf8330b30a80959897da746979622dfcf0b80e14
sk|32|0124b55321653c2e4d18d5d410b5feec16307edcd03386fc372a542c672c7db54b83dc9513d04008332e458d1704ed8012f242bc62f6edfca7a412ca05a036ec
sl|32|d1b5ec4678c8d1cdc65a6235ea9b1879c2dd9d9227e71e1058511c34b4208d6923997d396de405988d75be48d302bece7147958a241edcbd726f61936d491993
son|32|b92bd664657e7c18fe3b0b79d8e1a2c1c94d70104a8950b3548c49d5159ef72de6d05e88a23a02475016fc7196811b80526700541d58f04da8b196c6ec9e2adb
sq|32|5bc4efe6459363682f7ca12390198704f369340d6852b1887664679746a2c6780a0c9a3a7744b2096b1c680b00698f2ccb93e684170044d35b751dbb16d65f37
sr|32|d3872c1fd2d13fd7bf9e09dbbd67be7b2036adc065402269adedfbc60726a8e31f0189849a2bbbf81c8a77e679d8935886929ce0a99b1f0c613a31c59ceb2018
sv-SE|32|e445c23ec5fb26f86264e8bf1dde8ff9fe684d12fa0f902e3ca18183aa3131957271d0a379d126d8cefa0bfb7549147dd2ef94e8c234aacb2b681de8c4edb56a
szl|32|237d66b69df447afcbaaf7a3ff56f60b85a9b8e7f12efeaa281ab4cce87edc92da837891e45b54d69b367647a804d017ff6751a96eb81e8d6a5753761b8c8a55
ta|32|3d5c6d3dc02cc4db431cdc4264bc6600de9b6d4cd666003e37f8379c26977587ef4d6963ccb292f6f695ff3ddd3d6786139fba097fca91e701b72bf12ee78878
te|32|101bbdfe58b78bf3ab2a946a9b553fdfc4cf386dfa01f1ab876deff42acb94c754b5dc510674ec4e55cad25ab630b0eda0473a2095cb5c85f005b3302af42b15
tg|32|bb8879dff82f302eb9f09be77f0120058780eea44d8fa4a035cf9d30ee96c0be3b402aed4b694d1cc2cc574e54139ca02c2ec3f36e833808918fbe6a644738cc
th|32|b575d7704fd18954d82cb231b96040d655048a2365a62af47ee08d4017f2b47a21c4a99bdf4be59ff7c11ea9af4207a0479f36f119a0dbd2d1edd11e8bf0e022
tl|32|9c728912477eb8297bbea0f51450897baac460bbb155267ca75987d9dd5705d28d9f11cf38f4b14ed76ff427c71fac11371ab177abf18fd828892a814dcc2e0f
tr|32|beadbd7b2c02beff2f93a436056b7a39ebb5a055412e737fe5a7e93aee17071f6a67614dc4226832982f4fd9e9534fe8424b7e3b38c5bc7d66b8e4895718758e
trs|32|7f8f9fb68ebe8129140bac3299d6cd2ff944dd56e2dc4abd5ee684b767e001afd3f7e0880bceda5127abf03c32ecfca7ca2cbc29d7a1ea479c8641eda3fa1b3a
uk|32|c92073cfa3c12940309a2d2ad179399ba95087a69d25fef1a2ede9f638ec569ff9d4cb843f5160b7fd9008c3fe9833bffd8c55801b62efa9cd8d02dbfab737da
ur|32|067644bfb5016d69ae33cf6e6d0c28c8277793b995ad3df05023f899dcb2f468b25af22f4196532634356af5952725a10780798b75020b3c89a1f71c8f096b82
uz|32|2182e65d1f5328d66b67e42e155765a45fab62928acdff028c915ce0c8b57fd91bea5dd4be77b4bf0bca0f86c1eb749738030b87f241e213755db05863d4a82b
vi|32|dc19ef19091e0cf43818366a6b4cedb2bd9ecf8956303fda31b9bde63b653a2511abb3e572a0bf0f037173e0e304eff312b80a9b3ceade947abd58a343dff06c
xh|32|b1b1b47b30afe85a30046896096d9488f82e92b97396252ad23929290e8c966c124ed99593cab963501637b6ec56ed96843acc5da8a6e27abe6ae1c54e62b953
zh-CN|32|c3be0fd1aec27df05e07a1501986d3ac925b1fc721d1d56395f62be6e8112d50c3b155e4385ad677238862c740b186f92f8a6c11148c7523dffb073ea724b7e0
zh-TW|32|18bb58bbc8f6dd3460d3c60076ae2f59c7b4d576f9f4863a1a6a29ce05ff4e244f5fd2884eb7ce1c8b9bddf6e28b6f6e9471fb55bda29b3d266bf5cb386db162
ach|64|303a2b7578b5450dc80bcf11217167a5205e705f954282e48f746bef786753ab332b337798bb7a3856d205dd6833102da46508ab6bd505e98f42e7d8584d3f14
af|64|d41c06fcb77cd0508d701af12beb3ce5c36a49d855980e780d8ead496f2e84e9501aa6055a8f4ea2aab9f5d9702496537f9509e373602e89d655ff057dcf5379
an|64|be49698500dc88512d5d3ca470333b41db1cb1f2fa8ec35be51abc9ca0bae1e219875ef6fb2e5cd5f92d4534a6fe7981b6b0a47ebb451952fdf5cc57679c083a
ar|64|236580088fd93cad5596446a4497abb4ff4b18ef6bf0239d96155a829cf1147e0f69e8359a8356a021b323053650c18fdba87899e48496f28890fc54bef9feb8
ast|64|072d1b3ca5e7e5a6e16e1167096c5c863a66ecfffae2201c16c8b5325b761524da783711c9252d6aa8827c51ee8c8e5c4b1221d5e9ce5549dde22b6ab0d6c1f3
az|64|9486158a5652e8ea8160884350b6eb80c325e89f7040b06322e004a82cf124480cb8389c6c8cc9fbd2d842496f9c40c1c767c4ef82b7afef4ea0cdebc8e9bd65
be|64|5cbe303f530463643d9d41d934a5a50626ed36e771a1d68fc442294bf8d4139d803ce45b209e20bbcb6b97fd5df4de0e644b261ca7d4fcd62b2088f9d7d6e837
bg|64|8a9b9e2ff6c2f2bbfbc01d34d9264e6887a991e8d1d27218043c529cf643db05685957440fbac6420293a4fc7fa7527e9cdd7a93f938e77876b7c240f1f0a194
bn|64|9edea63b7e4719120720ca26139d2b2c02aa771ed252ac66311d2bb7b1f223f70f3de2f8d455ffcede0c9d9c4a43f90b305dfbf424b68478617285ee1c78133b
br|64|1e4a92c834585ee21c286fdcd3ff10337410ee2a744fe26e5cc5d3be24406d48a2f27b029d72de36ccc87fa4afd2edcba3df732b2544c214e456915796917a8f
bs|64|c1d1581ab4a11c52646e500139839cc1ebab0ecbf326798245d5c7d2dae0c36fbebb9536a5bae3df947cb8e0c3151174988364cf13d78eb7805e4f42bbd93141
ca-valencia|64|e0b251246c59793952d34c18980bd0fb7ede5fa50df5b7a72635af97f20e75bcdf27e89739fc086c649deb422f0ed24f3de5c70f15d9953c0dae49de80a6ee84
ca|64|cf01507335649fe71a702ce52f4ce937f37b349c96c1fe39e40c04bc7cfcdaa9f978ee20672eb5b19ceaf6ec91aeac023af8ccdb9fe0e26a94cc6b48b4efa1e3
cak|64|73a2110a868f0b45b54f40718dfafcd00134ad330fc75fa775ac3ff59e50e6bff4eccf6ad993bc3a108f74fe0baba878db37f4b542191853adebe81c06a24d0f
cs|64|39064066b8239b0c7efdf119eb397852dc73bc02da5c1698863164d206c4ebaa2cb3c06a16608e6cfc1bbd91646b6d3ac67cc1fa52057f8d602d42a5ceb40074
cy|64|fd2ceaa370063c67d6e337d1e8045d3b44883c7519f15b006672a9a1c2b3914336bdfd91c909ce72f73b87990e1710c454c83ac0b0f30061066d291648b98e5e
da|64|d01fedf655a8e300ab47f248596aca297ebe70c53efa313e52562ccc92c556bc1c7f62380bd7e94c9a3110ec538d58a18eef1e3605cbc4e7a7500edc2fad09e1
de|64|ec5d229565fe285bc9bd2a30e8fd3e04bb3b11e83115dfcd5c3430420fa22f39d809bfb790b09df1f3c21fe0c59b196ba095d6d3d4aa90025c2066f2694176a1
dsb|64|4727cf6d0b96cd71d16f9ce09b18372a8cdb21b2056e2df289455f27d14efe67b47e5bac953594a8cb1fe84d7240b490ab71c22e0ff8562e3c6ab31c303ee674
el|64|32127027528223b34e3ed39710d06416f31343caa8db33d6413780f84478e4d2499c19b3176421542d4fdd29fc1a3201dfad49f14b20f88d6b15af62598b01a4
en-CA|64|82043a39fe8f87c1e3aa0f194b92debdf69ee31ff19d74db4ab5911c6e01a643f9626561ae69146f1d8c0e69571a00c95a0c11186eeec5e26fa3601017e20b1c
en-GB|64|d9de6e79dc558acfd8c357330c14f89b4ebe18d3e11fe90021fcd1d7f0bdf09a09918c6502859746b540704144410682f9d94dee92b1e83a130296a74a20688f
en-US|64|e5d473fbfdecb44e7444ea1a9579f53bc6eb52ba43cc0d664a7c54b6edf99cb0b51de0a035c6fcdd85293c7abfc52a2547ddf8fcda531ccd303cfa7ffdf565fa
eo|64|5579ae679b8b0c4e60a786f4e4ef433f28e998c196e728c8755bb8992a6248243f22fff6b7103be8eea3566e575d4fc9f35c3821265d01348d835d49b7c003c9
es-AR|64|57d8db1074d3ab23e2e7293029360093306d28f2f4ca4a1bd829063977f8afe428d868349bd57909f2eb552c36320fbe774b00d86af8d5e114d6fc06704b166f
es-CL|64|f56152d94eaeb2c48607e3a2895ceea5afe0611e70a32e685ce2c26bd97d4d500356533d7a9f26db29b69ac282d2b2915497a75a60bfe1ef6f211d615dcef32c
es-ES|64|c04c2e61fae75f3f3ecfb84ca0db1658135165c74c6038b65c32caffe64b5181044733dbfe75aecba1ee56d335f5ad5cee6dcc3ac438bd45e3a7d4b1fd1e9a40
es-MX|64|1b304910b6d5c2708d08de25807337f5b420c8aa1e22b0ef72334b515020ffc3a7b33b307f950d0637ecc63b7fe6e8e3bc8c919719d312916e36530a74ceb7a4
et|64|0c4bb0b223537d843aba1306caa3541f25d80fde6425b5ad024c221bdcf0371fd4ceeaff6ee1bcb1e6e8275f6b2aadd9f495226a971728f979610345298c46b3
eu|64|273e0f3e4e735f7332dd4b5e307ab231bb28d0e6ff6e59edb64030386d7c8f19c026cf08122d4bf45a813a32dd4e9c9a37b6ca687f09e825c1b0b4505b30b370
fa|64|d5045ccb612c5648b68d2eb57fc62f1fb9ed768b4c434769143d659c2b9c7135b9cc175c4b1cc2ce72cf043f3e37791d9b63d20376bd214080c5b1812dd26953
ff|64|dcbc2494a91dfd597dd7d836bddf872855cbccd2d4e97ec7ba7b0b9caee0f5bb73f4c7b13ac285f35f39599b663631fcc2be482d6388123de78b7f347ee4951f
fi|64|c423af9d305c85c059ddb00bfb57e1c9409118e27e8a4de6b1dd67d176ea7a8a1b43868bab314adf281caac32f2877660cd39272ff28ff13734324d758415b9c
fr|64|d92e084881f1117c2b6846fdf069cf00b520544176fef13e1b74dd94b5570ded3da0bd2eb930da831e59eea0bd3e85de7bd0c7f17e5cef03b461a093bfdc8d37
fur|64|01139bfac36be2b8647e9c3ab4fe448ae31a84bd54aa2a0ebc283a54583156cd491f1a0309ef701db5c90e467493ec9474460d75583e47a9258f1bc34e5ceefe
fy-NL|64|60e9da45d0ff034adb71cf9d601e7d2190d6e6d9aa5ca02564dd5a4567a5a3b36750d9c756f6cf5628921ce39f3b0d16081cec72758d29cf95492acd637080e5
ga-IE|64|c807da3241f8db5f46e5d5578aab07ca18d315a3c832e4dfcde0adb0b8f46fca15f8a413144ba63b5df337b51897d3992f2d08deefbcdaa0b95a4e59daa0a240
gd|64|4e38d3b8c0e5fa87cc1a0d99c45a286534c3ff9ad511bc7e639b78968a58870ee81846cd79ae26d7aa10159142affa7308a6a1d8ec8c0023f62aabfc4eb00acb
gl|64|709dcd81e2d4250fa3fd19cee92dd2705392f91c20c5eaf293a3fcbde9485085bc1f25e7395a7a3f0adef6e9fc027d5731aea10d3f06ff5d1c64ae9c6d5e7769
gn|64|1b5954402400b89e883eb0ebe5a973bd84d060c2067e098358cbfe479104033c89af601db26141619951adde0a398995695caecef669bde5c4afd69c30a5364d
gu-IN|64|f12bc903157a4b120fffa924abcdb283fa074fe88c6a87b1ba05e196f9f37e9a8342224947f2db23e35486418d3a2a2f5195dc89fc4f661d3870c4a41d2e99dd
he|64|775d72354aedfdd3df5380a1c30ffc1328140dab8caec475cb57539284d7ffb2fc9466311a41d5a3bc70095cfce8d339dd440fb103d52069f321ebdca26eb6c1
hi-IN|64|250600d010255dac6cae449e904aab20b4f0bddaa2f749392742072a9bf5bc42a3bef155b9c29232d085c5f7664d7ddbc194fe65c5d38ca619cde58c674ff3c3
hr|64|51ad96039d9dcccd0102f903178ecf1c723f37af900c1c7511a2b16e67c6fa58348da727f0eaf2af646512ba3dc6e77daf5a9abc5f0981b4625334a500ed5ade
hsb|64|7a7faf8e20435a1ff0c976894a0e1629c62e58341e7db60fa1d2fc9faaa8896d6e9f33fe6f37544550a9c89f7bf163bfc4668c69867a96ad4a90a207f0fd2372
hu|64|e4d9ecd4439068d933b6bd11a059b447500e1af75e39796752571abbeb67bc7f69a2386fd1cb172e4e366058ad1dc8031c9fa2a1057fbfb46d9fc9de348e24a9
hy-AM|64|12c8b1bd240287f7c0a61132efd08342df120ce5dcecf334bf28847135a7be1bb8f6a75175266523596dd37ba1b993c203e57fb6264af8f4e4efe3c7726b857c
ia|64|2efa26d44e8c0b4f470054ec9052bba67683f21dacaae888317d432a9eaaf2aa8cf6a4590d2007ed4f34668c12ff61d8b33b7b4a3c0e5af033752e5798f4eb91
id|64|240487429d0555d348d76ac59cabf8eaec2c471f203a7af8086aca26a246182b3e294af056d18ac24596bf42c561cbd79d040d82cd465b5fd69a13c0107cbb4c
is|64|8b183e953220dfe52ddb01b24a152853bdf047c047f18d6e0b9d6eba53b7d6a197d54498dd2d9bcf2146e82082208460a0dbed16fae19799414faffc92dc80d1
it|64|abe199249c671decf0ccd3980c2459a86741f963d9983ead69790e64c3ea664ba1e1330f97c774f592a0a4037da29e214aa05ff829742c5e089880222d8db72d
ja|64|401c433d5c78e3e697072b08033f1252324c59f3f5c404bdbbdf31843bd0d34884ca0bd8ce8f9f8e64708a54c606bb3ab9999f92ef2adca736294e5a1833993a
ka|64|2d15b844f2b767ce99057dd054020eb80a0704e32740baf2199a6be37cdc965540072800ba6e781bc727972f506c6b07107adad272cc92fb4e02c794bfd0579b
kab|64|4827a1bf8dbfd5649daef8815221dfa32d334888a34c4933cd1db5a2bdfe46f90538365cb9e3bacc1f4d8a75245b4df04ebefc0d93cd8599250382c905d1e528
kk|64|1a2bdec375885df75d4b6edbbae2f746d835a861b413b359ce438a9fb82cd2c775925f1582739d76c009f8dfbb6cc9f2e1252fad4cd70bce1b1bc04a1c3f6de2
km|64|7d8965a08e4b1e81be570d46ae6cdbee43f95d411a306a232bf3be42e1780a61984aa691c7c838b44d87ccd3b71b0b019c6753200a27d18ced4f40c831c8eb10
kn|64|79ca6316d9f3c1a3895e9cb08f916cd5e42d46c065904c9289c10a65cc037fe2072089b889c3d6b92115d461ad1e205c6fe0962ad84e148a88a6033875801d8a
ko|64|d5ad6235ddb7b745c07ebef4797cee2f1f280169fd8a29a86e42aa1f205af1d7d0fbb29dcf596bb3f86015264a317f55d5b7e5816dae05b507d5929747e54ffb
lij|64|fd57173efb235c5205f5aa2e72ff8983fde70546ea85102016dc0a907a8a3fa09b68f028ba3f4d47fd77e4021ac5c5b001f4fa924ee177fb9ba2f6cf77004831
lt|64|5edb91a06b79ca94e457cb75476e60c6dc99249f6ee2ff0a2ae67c3d4ddbc9eb5bafe3a749e1c18eb519a542836ce32e35cfefd617b818034de1a986dda4e1af
lv|64|d88e03612523db790158bcaa36d0703447bc00e60eab5b943cab0171ec2f1c0162ae51bf9a2dd5cbdfb54d97895409401829e4066772f2700619b8b8de9f9cbe
mk|64|988886fbff77b811588d7cd4d7475a557fec21401475c9f09f141ab2b10a8abe3d89dc0701bf4b02f2ad2e8a6c4c4dbc07d6987d824ae1e610ec3b29164b7b3e
mr|64|54d88f659a58bb19f481a2c3aa0649af55bb26a32b8f9642a742aa7268234b37e16829d0b0988983bea626db365ff21cf4914fb2bc4c5622853dd533af3781f6
ms|64|674a8477a2d54f73c046c7be831c8458363990ef6ec6c980add14e34d2b5d9a10bdb02f8ae33aad2a929b3a0aeb5bb7c9f6361b6d9b3b11c9e5f5062848464fc
my|64|881877ff654de76aad1e7cb07ec20df27c79a386e8d89b244f2a918147f93add594df1ac268d25e9a0b66e66faa9feb3036d5718a030ed5b193f075e243bd7d2
nb-NO|64|fe9d4b69085fdb611deac129ea3c581eaad46c038f4bb29b3bdadce04fa381eff11b5b7a646ea1a9348e5d3772b411191c6c855496d787fd6486658c84bfc6c8
ne-NP|64|b74fa34666e67fe75dc30ebede7a695e9ed16b1c2c8f21523bf5ab1b2fcce74693e0a015c00dd1b2c0b365837bf906ee7bd525aba97640aea560a434a62f178e
nl|64|034487320116d2a31f159bb6bbe096eef29e9f441dba77bdda1b8b538d2a0bec1f43fa83a7a4029287df0f99312609dffef13a3d9292f548d181b1effe009583
nn-NO|64|99d904a015f7554318794054c91c225067c8c77195b042fd62187d0f8789b66652429b099761f30c901e8ca7f544ac0a35c62cab2ee5405a4e2c66898d92d1ec
oc|64|4194f774e14db40adb9801fac6a8493ad2adbbc94d4c2fc1a5dcda79b683a8fc660a92eb60e0eb2674092c39b70d86d3150f3a1d1e86925c7db29ede44e2f963
pa-IN|64|e99ddddc9d8b760764118f196ff27570976dca0c5bd73dc734db1303eeaaa036d9813df6ad92f3a3e77f4381971e91e748510c815d9bc61763372b6185dfdd14
pl|64|cf57327a40ebe7a1690d432d607ff9e55521138b8bb39deb6b5be528f569d92562b9332323d4417c382fa2341699fbb06d2f4b83ad205354201ce52fcf294a99
pt-BR|64|220afb198acecb981a277abdac0ab09e59e55f9b5604f2ecfe1696e23d4e2ce4ab9052735ceac5a200a82bdc20e35f69a8cd5d8b1df7039638375beafdc5331b
pt-PT|64|3fb4c4cc88d43e62bc6a212066969d86ed523b5f21d03e76f8ac37907c618af35126694e73f5f91fc3d75e3b3c929e2df4e0a57c5dd4a5fbbd8c2c932312e7c0
rm|64|8b55d24caa01f6617c972f346c5e888ff212bdbac99725ea134263e8171355805c6673c9d38143b5832a84e4cb1d802c677ce24f5ad1e10443758e8b4893f257
ro|64|a40ffe89a815dcb7dc25e3fe53a6f6fbcdbb69c4aa254bdf0809f833bc2ea6ae0e7310329328962a66d476f7a163ec573d804d4c9d0bde8dbb2e58692d07cb0b
ru|64|9d91223f3c3defd2b18852fa55b07269693eae3055af461aa163f81b9ade1797219aaaa2a0dd33545e399aa1c361fdfc83cdbb7da76fefa21ed1b1d41fecd874
sc|64|6a25f3caa82e2dd7c8cb74d7cf9127fe12ccc8f31b7f54536d4237d243c1421db31a9af5ba803daa331e4a616b0ef89b98073005b1d7d3f3b74b012183c5ae25
sco|64|95fef0fc429640bf30b9f8b83bfb09dad1d36bbe099c18b1bf667fa9d48c59380cc1d542a2925d1cc5c226a441a2e8bd33e765986c4d5151bb46f8d726ebf278
si|64|6ec63edd414c6ea5d411d336b0c74b23e6169d2cb9bd96cdc00906cc8f41fb2ed2f14968d5380d2eaf57b0979529e33c5f743b749a1426d74a12ca79ffbd5867
sk|64|4827cf9e6bae5380be2b55c79e3712612532a54bca35c5cced6561442152b84fa3ff6399ccf284d33220add274347cfa313a436e4cb461cba4ecf92d7b53b0da
sl|64|1c64efa18fb9d064b7edc4fe256656c39cc085aa8f8776c5ec373248cd808b1774d9726d2d0b90a3ee33e7bde4e016acbe5e96a799ba70b1e1f4f4270d0199de
son|64|8e2576b322254b85edc99cc69826d61de2d815e1e8254f8cedac84ce4a36b630c8fcde78cb8ff93d692a85e313c5b917056cc5c4389d7c1fb0c3606590ea0526
sq|64|19e92f44b76c78de4872a2b9a30ac0c7bcc8f1710723756b9e6d018d7807c865f8af6538506e5d2917434f013d7dc2a1848337f821cf7fd0c53d5469f79b80cf
sr|64|6bbcd80619194d29742f25ac67a2e6c705a3e1df20175769c3e985d0818d15ac4a66df3563ec2d6e3ba61d11ec1463d91756c12f60b5d7e532e3fb917fef4e16
sv-SE|64|ef76eb31f07884e42157a50754041d8b4c6c34e65e59612fe6e20870712fa33c35908de5dda2a4393b374a5fc08892591551ab709aa175b989d78827b1e8823d
szl|64|82a63e7efac11b59478beca11e9a860df370b51103723c385138bebdaf94e348b9509e0aec7cc6efd0374b6e0845b19c2558c1245afdd19dfe8fa20ce4869f68
ta|64|9ad05378087246155652adc906e2a170be1674abf1901d223d87afcb4159b0e5c54746e81052f4948ebe276e3823ee51627ad134d9f344fdfa52b3de6f25ae02
te|64|b4a4e8102e33ce73bbb6a6dc34c05e1682bab7676a3f68adab44438401112075ef452356030315b0f4c029cf5c89e394ac4e4f0695d8364a8a8b16d779711d01
tg|64|65b207b2f6b8007d2937ae42b38af3d75461b8b0d843c0d4636985f0ac1cdc89746e8b2c49ad0a4e54d429af1d2c9404b9b6b3fd820e76fb77479202a7ecdaa2
th|64|1cf0947c4c3fbe13c087a16fa55992bf3e803eae6c188bd2e2ca2fe7f94956b8eff0a482dcc0173ae79df4202b662372bdb1130fee66bf6e9dd5717d3803cce9
tl|64|e4eed83bc2c664bbeec24bcb9522797af7e14904a946f2c1a3439878bf30a376123ada2b9294cf709dc340b8b2cfc9858cf988103c9a61310b5526d69b3931cf
tr|64|f6f0060dde770938b280005d00775b0c81d3b2297e39589dff82734cdcb3bb71e295f1d77116ce16e414797c0c260378dec7313c9debebbf63a274b1628fdf04
trs|64|62bf49d7ad22bf2c93d77c9a288bac4b1141848b95464b5612bab4341d229324c3fd0001bc8b4920d4c2d343dec870a3e07fe3c317197df06dde2b2d7d67d3c2
uk|64|c65373b7cea8249eb7983aed5f10e60bf80dea2ecfb2ebb26bfc3f6b1d156f182b848bacfd86865c3fdc1b64c50032a54a92a0a69f20d4a2eb74d60574edcff0
ur|64|6fc7cc766c605f95d568696a8f39f780f9c4b7754972fb8078994a76f9cd884d3825f46f80277557f99318452f88af02a8d2495061e66944ef848ed0699c5463
uz|64|03de5a9cc7bf7f14fae1995a2eed4747e8810f2f432ee552a5f40eb4afdab68d8eb55d091cc7667fc0535570875a11e41c2d2a259cd7d1fc01706669ed9e6e2f
vi|64|49f1a76303d2928d1a4fd36de35c204f6acc5bd21e578b1fbc0bf6d89eab6e6c9695b0f3a0f78ee47ce4fda6714a159529360dff8234823876aba52fb5833542
xh|64|f6bd3e6b4e914e8dfc098d7dcf8e8fec7593c1aca19ea9a3544a209fb1cdbf3409cd535f4f7f345ab45f7a2fd6ed6ac64c8c1faaf842babc1cd29966505ae349
zh-CN|64|14ff1262f1af55b69f81f03d1d1f5b5e1a6f1e1416fe9786e32de965d3517a3ba8161f61e72329b0c483646138b5ddf9187e654a1291086d22edf7521d5c126d
zh-TW|64|bdfcdd41f2971d87f86b12c6bb516170694a63dfd1a0f5a45d1ac692e3609b3cc1031ea06cf67dc846ef274fa0c47568eddcdf7a9e12bce2a857c8d927b510ee
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 4335 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