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

Downloads of v 115.5.0:

31,771

Last Update:

21 Nov 2023

Package Maintainer(s):

Software Author(s):

  • Mozilla

Tags:

browser mozilla firefox admin foss cross-platform

Mozilla Firefox

This is not the latest version of Mozilla Firefox available.

  • 1
  • 2
  • 3

115.5.0 | Updated: 21 Nov 2023

Downloads:

2,545,315

Downloads of v 115.5.0:

31,771

Maintainer(s):

Software Author(s):

  • Mozilla

Mozilla Firefox 115.5.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.5.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.5.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.5.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.5.0'
end

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


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

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


package { 'firefoxesr':
  ensure   => '115.5.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 22 Nov 2023.

Description

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

Features

This Package installs Firefox ESR

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

Package Parameters

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

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

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

Examples

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

Notes

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

tools\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.5.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.5.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.5.0esr-ssl&os=win64&lang=${locale}"
  }

  Install-ChocolateyPackage @packageArgs
}

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

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

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

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

$packageName = 'FirefoxESR'

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

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

    Uninstall-ChocolateyPackage @packageArgs

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

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

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

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

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

  $PackageParameters = Get-PackageParameters

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

  $uninstallPath = GetUninstallPath -product $product

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

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

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

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

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

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

  return $locale
}

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

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

  return $false
}

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

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

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

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

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

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

  return @{
    'Win32' = $checksum32
    'Win64' = $checksum64
  }
}
tools\LanguageChecksums.csv
ach|32|7e3f15f8309007337283046566d2b1e4a49b5ad54cf68405438bf14dfb641960522ecab66672bec11855c705d9d7b7d024222e88b7acf218f264cfa5113d254d
af|32|b9c9a0dc0296218e89c5a71f960671fee4cbeee46288ce3b6e7f228b8f9db03edd74c26d15b606b6d86806b0571ae711200851762aafbcb4a3d38202aa6a78c5
an|32|3630083f6c786a668266fd70c1f5bad506d59477f54cf47c7bd37cbdb3c868e35772f0da76f540c42ef4ab98e9ed3c704eb8300ab1648d370c068641aa8e9d02
ar|32|b58bdc8ded6f0aabab16496db06a5c18ed35466ce7439dbe0a9b128ba24bf331b1ede5a4911a8c3f35140f9f7e35596f06dca8568c3c9c6fe1d9b10e26ea1083
ast|32|6dbc476f110e72b89caf5498fa6f964905ab585316321c4938490f9c99ea2e7899bc406f129d3feae713fbed47f383cf88015efb9c15f9b539fd1db78e4c9f65
az|32|93f69d32f603e36b2ca5449bdb541cc8663c3862d207c530446918fc8bb5ccb10f784973957ca2fcda58d47470af920d5b54d2a02fab3f496a6388c089ad9cc5
be|32|c7d8550581bc6b56d363879871fdec64cea2aa8d82c27b202352d9940c3852172d2c3dfde1fdfe7db584c4d00e0170fc86a06b56bbe3cf04047dae7cdc4d2933
bg|32|c9a02d9c2d6fb5ffa44298fb990a6c2062ec8c528aee823f2a559cb3bc6b975dc95993f4f6d91493557bac123248369fb4b5bfed309c8585d17bebb4ab870c08
bn|32|7ac99a24fb20d5b5dba4fc80e319715121d2093218edeba4c9e15cb18e61d7f7dce253695979f92285001105af34d881039654629b12d2c354f8d414a08e216a
br|32|8942c95c04d5e2dfaec8a7c69ec6f2bb625d754b6bb9757fb7f7c47545977fe381165a4dd2b932dc5d3f36314fd1811975e95a1abbec431bda01094aff7bb125
bs|32|4a637b1f10e22e18337a5048a39993205d817464ed21d4721dbd6071985f45d58d2895bea73991ab34fc3915d0aa1a56f62bed227a62a71b3da54a047ae64982
ca-valencia|32|1d494089fd65f772a5390c99d6a5fdf6e27d19042a878aa4d9fe74dff30e85b4b88dbafbdc1038e14032903f22db243e60b9249da3ce4b0cd8bd884dc2e772fe
ca|32|754e5d5b63b05244d348942b55fda5d37e87022a6f935ef8a754ca2808351e8ac1960892b9076de5a72cd4850a255b2d0887d7ba7bbba5ddd18ac5e977ea3df3
cak|32|1ea0618844c765918b4ea0285f639526295271f86670259f51532203d36c77d989c3210b623cb54d0c48c303ffd1b66de43acd8b876d58e813b5ec695aa6defc
cs|32|ced5f21d2f9b2c2edcb8ce61df979ea28832df7630bb83be481c762f6cbb96b4e179b5dd05e75614dac665e3023504580d7cd1d9672bd5ca0738431095dcfbd9
cy|32|b869d4f5aef3c569b5179acb8d68371a2ed7096a7b7a8fe07591ec7030cb3f7acab73f2d999c06f2512a34496d0df33e8c2545c9955499614705c7c1c289f49a
da|32|aa253eda47243615cae71ceba2e27169b849437a6d4c4743df6bb3f25aa685c7eae345135bcf9ca409e684d590921e55f9a8058070020ae0d0db09b7b55ee261
de|32|2518201ad57d7af1dbf36f88bdacd12a0f8c052c7636c55056ee86086fb0db5ad61bffc79199ea392209e407023a72bccb6e1c7162b600e05f881a20f87220e7
dsb|32|00856b0086a8b2ffed54cc6de6ab13fb8f05f35a9c83e7aa7daa063e7262b3e5d202374ef97dcd2cd9ed1ffb788d66d6352e8bf6274e1c242feabd3bd6a2588a
el|32|8d02e43077ca2526dad639ea2b5dd32f6e7147cdddd2fda82b877f07456d3e54f2f5bbc7ae2b1c4dcd1971d5558eb21dbc9e3392c07656d5d52b1f43ca366188
en-CA|32|c45ea0ad4db32d4f80f70aed40c4f07d96ce33a794daeda78dc1bb3f8b0748bfc263d5cdcae5a166f9a479d19495e8a14a53ca8a636395e8fdda4aebc15ebf2e
en-GB|32|379e45e8cc766df524a942002c0299ade24a71eba90d3a2a3a74db734f93bf8c968fcd18febc9d61fb784837b9967fae3bd76f7c79795001c242d5d70567a94b
en-US|32|7f946bea49198996ee34f49a6b2b6bc49a14564b5c58d4a6b9d4571476308481f1ab4fa6a6ca74ffdb1ad1423676775c162ec2f856dd517a518c67799a2491a6
eo|32|e1aca71598fb678cefba971e564951a0e2641b296ee64df5149c7b6ffeb5615888a81619fdafc934fe45aa88fa8d02f163fbcf771a47d83cef5282889be5dec9
es-AR|32|25a256d5137c94f467902e025c0a123adbd563312b7c9d3c760b699bcf2e9dfbd6f09fdcc58e2679e982e2e954af36cfb32a3db701a43b8eb1e38d345269ff16
es-CL|32|47e38aac8cc3e2fb16ebf74f3bc18b224b2dfe04259374b39e0e4d79d27b9fc25b259ab47f10f802e9dc823aa4d32f86c165af6b261618b6203022a3fccd3f02
es-ES|32|a5faabc6b11970715112d4c84927a857adf95247433b4d1fe4e1b1fede3d1c128374ce66d760821eb6c53f8260af92fbcc7aec7be97be9c7406050a68049b739
es-MX|32|018e8ef65c920a4c6c85565dad5efb97a9e6e80ced30b30d266b9ed17a8a621ce606339763a94fb0f5d0919342377878c5ae2be3a9127b9ac86afbe7c8767d70
et|32|21a1f282ade1ac95d82de639e4ad3cfcf6d83cd38dc70e448e2836b8674b29478abb2384c5711c8c551f7df9758b66dff775b369b02252f9f24fa6e382397728
eu|32|4afc12fd744fe9cd1d33a79b1afa480eadd30c72bdd122edf4539e792ca4af2d0331722999adb922712e907e85c9f560a31db4d57dbdc21907dcb2ff048c753e
fa|32|d8223a7d91d0465dba11238a3a5e7d3f4455eb5c7e7a7c06a940c65d454e07985f037c654b296935c494234bb8ced85cba34a0a4920bc46fa187baf94c479f6f
ff|32|fe0b2b41c0a318a4c8675f88c172db411c3f82a631973939ccccc6d9f4163cc76de696cf53640ba0e6a3520720f7c487cb01d681589720060d674b830ce7a056
fi|32|1afdf499f19f45de62748bcee099c79503e91b9dea36ca4225fa5556e619d293c612353985fbd051c0c82fbee2031426c993c7e7fb65ff03247ce834b4fc722c
fr|32|aba8ed276df23e5915db037a2126c4aab9fbc14ad16b708f2517416d8bea99c5ceab98499805188e1af92cb94f9dc22c0c8797984fb0990cc75f7dcb1589cdf8
fur|32|5a670050d68456db13088af951a751a1047663dfa95e7b4fa63e19e8ec0fb31ab16a2df813e00cc8c7e9c1c9cfa0077bc0e877746c7c9609d5a1ed18b741ddc0
fy-NL|32|62248f61802a8eb7334d2ded26eb1de77be446257cef801cf3526334a866764dce1c238fff2df034989adaaffea020ff06c7114f48553a73d3ac000c8ccdaf28
ga-IE|32|dc1567a33970943742c3a8002d4030ba3fa50ff1fea1e5587d398f7fec64415a2728233372631e3bb1ba0746c32ee94f91cb199a3d0fb5df349d417849afcf25
gd|32|3438018fca06293455c1a4f480ea8699a41efcd524122d35a825112dff8d173c7ac4b40759679d728573e16d088d11640c96c505a3c02d483452efcfa755762e
gl|32|b967ad46c3cdc866f275dd4bbcc23022cfc993a82833f9a79b17c23afa22dfe14f191293112d07d432c372b71dd0841a39f35e2dbcb5659f0f0977dc5d881e7c
gn|32|664731c8fe20fca42f0748bcc73f0d98c9a266fb24e55d5a6b2f603ffec9c595dfbb398a74226b226661af7c563e6fd2eec7ea0a737f7b60711fd73d959d763d
gu-IN|32|3a0a14f8686ad7a496fe657df8af4b9ca0084923a70a9396ad76fd5a67920166d566597be256e1ca03415f31b78c616662749588ca8cc9bf151879c6996096d5
he|32|e506bcba987bcb0776327549bd2cf6a833b023ccf378abc10b654490ba8ee17f32ae2026d05dddfec24363f3d8bd0aece6371ae21592bce7137e5f738f559c6c
hi-IN|32|f399ee521692e61176c918d182d03304e99fc3a752e0ac031cd90ccddd9ea8168acc3cf30a118184ca5d7da08b35be853772081f61400a0e1800fc70fd34ab18
hr|32|b3d0ff6d28c11a90d301a8b14688825834f2f0b24e62015323fa8e029dbeab1590ae346014a1f94d888cd5e14462e8a232fe03251d0210eddf2075e19feecce1
hsb|32|84da2c1992db01b78da392c5e18bd7de5edf21cd6ed53609741b33bf3393a7545b5da831b40359cdb4d8da33afdb3695577d887540efd79ef616bedb4a347c0f
hu|32|7fb86c27dcdcf7db5289ca22f35fcbb1ac33014339f5bce8d35b149fedbda07d2d81203d406e7f8f382b06e43699c451cdd2ef0d21a4560713d5e3c0d844bf53
hy-AM|32|2d1518e503e955e0652e0b4d49e6e31be016a601efc0e6df7f4554b538926d26971eec73823981664673db0d8665956d2741343441fd72a83ad9878dde119634
ia|32|870bbd0898057386504a9a3ecc68c91543e310d44a2d6917dfb04e95fed81624ca93f33cc0a1769844c7abcc23dbe20e83b5c1cfff7620caade2b67dd136aa1b
id|32|7249de761344fc625ed044af688a88de94f5a0db5a5afab84d23b81c5bf873f27b189c2aa38d6676fbaa975d3f3d36d801b4b5dd98005a0dd953b1dfc50be62e
is|32|42db4835cce613b4db3f89ee04990a2659bf716b7ec9ced9d5e8375d77552d4a3cb9a485e209767b4a6b9e08193ee98ed9197232005a692bb3701162e3fe7542
it|32|e2faab1d0c52cadb88310a3d0a0a775497fdd871cf19f28fd510c24b178abfcb65cbdce0cd14b257bc1b6b42fcd13ed719b2b80d2af195ed25e70e37439a6e24
ja|32|ea860d4c8992b75aa101d70a39e7d3693491ea4987c49944f5d74580fe1674dfff47612454a9ac51877e97e6b15c90741a0037d9d97f089d62a9822adcaa17d8
ka|32|d25a866bb6280aa9f0953699e62b191fc800a9c758629df332bb18e2acf7622d2f368ce81feddfa979a2af532b39e49a9453e04b5418a4b6ed6bf5b3d8d5905c
kab|32|5212eeb3cf1d7fcdd97fdd901d709f7ec8354ea8cd6418b204ba61e04f2db7ccbc8bbdb3af61dd8fd9f4a11dc168dde3f30b3f57d2cb51fc5951aa34777c5a57
kk|32|8d6cc504b0d69a66f0c852f765971ffed41cf7da4d5ad82fedabfc902b153c1bfcbb3088f55ba9a14afa17728643fa14bbc2b06d60ab1b4ba147b3215a92e43b
km|32|fa3a5fd723891a26775198fd04aede8e27dedc65e3d9c1fb40ce71aa02be17c121cfe7bf3a3fe4269ffb3323d04df9d6dda9a157f39ea29ce892645d94460803
kn|32|92fc6a3537a4689a46fd04bb0731652d7c2ec9d2a7a5a2c5c86de0160b52c02cafad24ffb98bba1e9cc6790e2f4d09193850c5ef4cc3f97d68f018d494df32ab
ko|32|ed5ce9776b3c52b51515200f28b9a83d2d12f3d24574e5c19b1b9c1301b08d392293b831e5cf3200347e4bd69585519653b0d7ed0ecba2fa7891723c17b578b5
lij|32|dcc1bb1e19a98107595fe5b4fbd5cf92e6288392e20c8744a5f0c4f963cc9408e45beb72134dcfe79abfa7f68139bd432f929b391b1c64b316323e000e9a0b2a
lt|32|56f38e8d90eff37ed63dd7a75006bda216b8afb80c8ddfc47020574d842b320c28eddf8d8480ec2222d1dbc9e168cba2d20ced79a7e5a1e3d2f4ad15fb37461b
lv|32|8fa23ec1f800a14966c4614a0669094847e007fc06c1caab8712e09d090f4eeeb797c8905c61e90ad29650c10b0320857f3918876ce2773a2b57ca5b386db863
mk|32|f7b002b935db4652245cba98d7b82c2229a386b6f8998a6f6dd74ba3f8e2710069698db0c7777951e4abc17ed6f95e01b7bfbce0ae40114d3dec32d883d96669
mr|32|703300e98c90cea9650a01cf9e0001b25a27e1f262cf3af0406a67473df83ae2eff27dc20189868dbe7b0d491e514372ccf087c6245c122b9b80ffbd78d76aef
ms|32|0eec9e48229d9d8f8450aedda3290d1ac36f3f81ea006f33178d06aa3e5d0a17e67e769f651d8ac0d6e67b8bc47d3933d6753e8a30837c6fbb03e2295cff08e9
my|32|a1d832277ec33bcc284b72cb44863f4d60bce87996f75f3f003417bc0da3c8d03ec07a8e07ddbfc5d2ab6feb0a45aef13ddda6c8f29aa8bae929abba7f5df54b
nb-NO|32|62b6d549dc05ef6d5e35687ee747df94b6d8669c1f1d54123db9c1c9747b923f58ff58ea6aa30bce7cdf9e5f2bf438c114709d675de5536ba14d659df64fdc3e
ne-NP|32|ea8131ef2df7dd7b5a2f34bfaa721b357767cd5caa680fe028c19e9de4158206345eea4fd7f1884a1f61708e124fa918eb8f990e616d59f322e751e0d57260cf
nl|32|cebe9a77f0d4167b1761375742e2dc3853fdd29cb035e2ee07fa256f5e1c43897c37e3f21b9526d9c30011ae4eb9bf7ea41b582508fcf74937629d4baf96a46f
nn-NO|32|3e89f55bec9913399346aafb1f168cd951189d75dfdc2accd6cdbaff6680138df3025fa85004337c34253f28640c4b1186c639e956542ad84d092b864e3698e1
oc|32|77f34265eb2781b1eaaf3d773251897f8b7adbaf9ee4744dcd7e9bd9886abd1ee37b529fe2d21198ce491f43039c30b8e1628dfb2f211a4b18d2b0526de5fd3e
pa-IN|32|c0bd2f7c644967e16efe0e3629c3706dcd4650ad1d3d500f93d021acd64147826600061babe8f81c99fe89c9584b4a020195f297594d836e6b16981c55cf513f
pl|32|21591e5bf2235c2ec7685165f87482413b72b5e596ac303a4dc63bc9c2ad1d99a9a931448056305135efb36e50e3e95c7664dc487f05a49329274cb459c5a764
pt-BR|32|02d61fb9785ee3e69d7c29cb094baecafce2ae8229f2be54336a9eab6a628944e4565943f62963b031eed0e56a828af9942a6c5e405ef1ab8273ebbf2ce27a18
pt-PT|32|7a251261bef93eebeb252a45e1565f426e3d9cd5e3e746318df71cd036a70217eb055cee28b65234a981895d3d089cb6a2bd3f6827d402266c77ff8b0eeda074
rm|32|3def4a711aef4a543348a7a19b5f252aeb70a5172501455112977947f28dac18a226970fd804eb79e9da95b2d87c0f4b0465d8bc65336e0f1a80087dffb244ea
ro|32|a7e62f5402b04d892fa5ab7e81e6993a4d39428f00983000a87c11bf40ae9a71af04a79a323a7047deb0c10acf97b65441acb9abd8e53dda0d627fa4fd5737c9
ru|32|85f8ee9ebc62bbcd78ab111ca3a021f4a45f8611859726da13d0e6c87d236cab1cfe009f6dca5b6766bd82f76463531d0664fefe6d1e0c3f27396d86f40b5e12
sc|32|665c837a01089f183d879e6af7e8b9952388ac370878bb6861882ae7cbd3d533745f6f9cd1272dc44c564912d1444d585993184444c949723d185eefb0a9d067
sco|32|30448b19168f98c7fe65064bd80de33e680f58c392b8b99d00b673042ee5e8ebe94edadce5505e530acac4fb79dabf4d9bf59a199c70e43ead6684317ee01b18
si|32|c64a726353bc05ee83c0f2e6db5f9912e919e4356318a800540bce511ab6b7497b09bcaa8a37ac19826f233cfb7d59b813d5d8e21c53408b3d8c99ae63153b36
sk|32|2228bc17c3f68f240b7c1b34fc5d69fca1bd9dee5cf38bc214cb7200833b9e2a28664b762e0c4c1c1ae36a9ed0c0e6bfb4f0c47feea2186b2d4e587256089891
sl|32|b85743d1ce70ce77a96c15796285a009221a7f93866890a6155819073b2cb3ef1c54c5fbbed5e787ee2c799db60e865a56071f1136edfaeac6db30476e69d83b
son|32|f6f21e44c0d2999af94cd09995f2209d5d103860e523fc144e9682c0dbca4c479092ec0e977c3c4b4ed089d58f845752488664bebba4fbbd06f7935fff8c0477
sq|32|30c395c0b38f97dc94280dc9554f422c1773485d9204fd4abc387dcc038d36451e306d0424c67631bf5b751b6e5915fe16f4afba9da19b782a00b4114b1e75e2
sr|32|69e940735663fd53de1441839b14836cc4bf7ea6421103126134d5883c3b618e1071a256a4c4e5de3d813cb015f5b4541440735a4b8646c14057f3b683146bfa
sv-SE|32|327d6716b5851800df82b06b85e130cb90bec677391b2958478aae388578992f3c43ff8201abd130b48632a7463c58279b788926540e06765699cc8d223eebb0
szl|32|0a96b015db3eeca120d5fe646b756482404147f28508fec859e54d45d9d6f58b8e13aaa6dbd536e81c0ad5a1d505bc7add0ed635201d8bb60a3b9326747d9e42
ta|32|74a58b8765a93bff6a8fea1973e1b60b22c22d4abb06b693a83fa0b612c23821e2bc47279cbc6baa0954350aec1c2f8d93914d9c85f542ed4b21f319b8f3ae76
te|32|c6aad30738fda7594b7084eeffdc0641a9d25be5f08a3f3261cdffbf21a4f919df8b75a76f771a417cd935650ad26021d29b65767d7392c071ffad520f7974cc
tg|32|0b81f6c3d41de06f0b28847a681ee0e6a8a23516d01d30a9a187a3cc36189e6e299c62c5ecd1d703d883b7f52d663e6888eec1b252c04bb3a4cc2455806fd212
th|32|ad5f97c2a0e8f94bc0f85d15fc966c6b7b6a21ba6d163dc3afd09a1fadf9fa7497d55adcff825308919e05b71cc6605920e3082223c7aafe2a219bea460b04be
tl|32|940d00a80217cb52369a43f024a9736283a5fabdd6c789f8d68dc71e08a407af0ca2e45c37422796b3c10239ba05306d24cb36869743177710a1130cc59c317a
tr|32|f7d1682751fa5ee2001b4cb4e786d35bc1bd5441fde94cc4e1712052bcdc1c3cbf645ac677c6594c17993a80a79e42f9a611d01b4c4b153600bca2ab4480bd81
trs|32|db39ee952425b9dbef14190906c6e0997ff23a388866e72e6c7856ec71a47c00f0b82d986abf964ca83baf3878c3f99db174ac7133cf58becb80cb9c4233bcbc
uk|32|33c35bfad1ca3dad50931ef2562f9cbf7617e0beb0da74d48e47447538cb4c0d258e7c447fb3791bebbc3090e9d62264c240b0acb3e7488c6346ea1b487feeea
ur|32|f571929e2aeec43ab508bfc1193c4f46051268c3c3d534cba3c0d9a5524c19b0d159aec58ec6dd8310fd3bace3acc9135029c83c654a84a4c17471d8f7e4d2b8
uz|32|ca086f5a65734cf4dc8a7ea5959571dac92bfe41d328f5aa47a8393d7ccfefe375c75c876e272b1cf86f09d0e669668a1ba4964c4ffe77c138084c3ebb769646
vi|32|080cccbc5b3ae034deca7fb1ee6694f41f86be8c8dbdb42ffcac2e1ca46b904d74a76148518cd914ecd67e4d00a32c6270a18ef199065524ee1b1cba0448dac8
xh|32|dbf0f942d41888bf11f5621cff28c6501ae7f23bb0df6b5b26e1f0572edb91eeb802541e2298c61f7f7a12bad625737d336c40d45cf122df24638555c6357523
zh-CN|32|e1449941e6a9a470b8066d9bd94d067a96878fec611663defa5b27ec13b7939f67a5864459e28c56b63fb7e7c30bc50d76ed95388eb1c234badda6a62877d4f4
zh-TW|32|c10eabee68049f29f253da7e852db72f6abe3728b2d9184d0b6e1ec3726bfdeda318a23c497d2a10f1c10ccb0d917e5ef463f7004009bdb3f49e1f0d7c18144f
ach|64|d1dc91026a2bf15831547ec2abcc0f6826aba158a8cfa77abe9b1f2af736ba36eb67fc512beb50dfef1ae0cb6b18b887617a08002f285470b083319b7d0dfa52
af|64|1dcddb6b418612384799eb552e33bd3808cf24c87c5a8d7d4680ee80e91ae0349c4ee6da3a9f1460ce25bb087b99c63f7f51921563d6420b95ffc2233489da6b
an|64|b2a363a82a2284f9e2d355dd410971e7cb9d55406929d3e9706a64dc39457f2b772bcba1a5431b4a3c944c6797e15d8e7f756e160742c6dcd8428b7d0081ad98
ar|64|4acfcdf9fb1e5f24ad59905192e88d54fa07a030af28cd6a4884a41f346c03dcea867ebdd5fbd808a04fde9169e44934fe75afbde640af56e5820d5b997e788d
ast|64|2ea3e3a3aa78835b60c44bd720ebf0dd946818b2c7a22683d309c1a4f50ab5c07fabd89d07a47742cf68280968595c572801c7c49500ea10348506d94b9d259a
az|64|44d886928c603d6addf5730e0ec3451c13199c73c3d6397119aba3981b9e71bb3c71d9fafb4db7d066b64808552bca92ef61af981a55b2bb083ba667d7c03980
be|64|4f133aafb1fd4eb762814d68ad0b353fd2473c30976eb2dccb833a2b8163058e6881569972d8272a4b6384761c3ea0807459bb286f7b43ed8399c7b902826348
bg|64|85cd8a49c0dcdf82fcde464d55acec73c41f14b50a3eda03a40b4256e392e46bc2a31fd94f663f9885acda933a54c99f1459de9b6a11e7863a88f4b6773f7352
bn|64|82fb1e72e3c9279200bcb55ac65f38c81b9caf3bfddc5c1974707fac7e19a920d0dab708d002e9e2a97303cfcd9d786b84f7094aa202c398a3689160b81ecbef
br|64|1bb7d0842308ecd1df6795daca9a9d5771c67e6a3d3a46651757b3ddd787dac779e93b05793fc1d3eb136a4a549bd27305137def7c74a5bb06105fd8bca75395
bs|64|ce5c47ae5dc2f9580f0d7186cff41c821184204187deeb8de7f309dc28725b12c072ae32fa859db0aa2533ac7ede1b6614a96e379997bb7e251f20b1068227c6
ca-valencia|64|75e274b4c5400b3b9a58332bae1f6fc567af450036ba93aedb73d3157c83cf3cec75887267fda047576ed19c0c6d66aa68400ebba50d48993c2c1284e3f5e61e
ca|64|c3c52b858b66d75306976d0ab19fdf244d0ebc4def201a96b36826b9b750c92b387740b6aac02f476785663a03e077ee738c39c1439bebe7fede32e288b318a2
cak|64|3daa4567756f8954efe1aafd10e36d0113cd2cb64f3de3088c09419817e8a679ac9dbbc91dad57ca7aba0fb96cefcb4761c6fa6d2a20334f981610ef57f5e656
cs|64|420a42dbba145ce31fe374aad6b48813a43f94eb9f5a756a3b418cac372bbf17f5a924be9920dd6e99d042e0bfda9231c2b76ccf88fb3855338d7d67f5ae4780
cy|64|b4fb9a1fb8db6074f34f9441260da427f56fedc54c1411c7990f02dc9bc4344511b35f27d287ee407f96c61bd97a67d95bbfd3d051ddf678717870f2495d280f
da|64|60928c55570d977989bf2cb0e390eb2f58e7ac5945b2ca22e7faad1e7bc9bf5e94035beea08f62752a427b3b8a62b2726836b11da4e90d7bd1ed7cb4439c48b9
de|64|f08a8e50bb2b86739cd0e31f3a4897b2f2b65d65bce79c000fc57b5724cf934a75bb76f501d1ab3c5a384d485c1fffca855fae088f87c6a8203bdb98ad67e646
dsb|64|0cd8a5024b835c00505f4422cdd9738d8ab2d9821e383cbbb9a96668dc2925cad51940375c1110dada6bc31ee8efc3ff5198ec170c568f3b3a3015fbb0d5f55e
el|64|7140900d339ebb8f60e8af588e46b318535e32e0c8e95e650bff8dd7bf7f6389532ed389c81c91877c2234bf024171499efed68b80c56f344f8e015a47717072
en-CA|64|141c6ecc12e51612a6c0371de515a29eb763f977cb279d610fd1408cbabc71115133e55370e035c15165e843d4de349325e9254bc226a7c8e32aca6ff420a5f8
en-GB|64|e46bbc406a7310014f4211669c44dfe202fce4bb3d415466ff28bcc654b06ca35f15de90f8fc13d579e9bc29c4b7c2e9685db4a1b503f0f6e105bf7fcc899b9c
en-US|64|2f9b8c138d676d740c8a586d48aeb1c5ab8eeb35a5d5a35d72db8d501059b1d6130f3a113b13c051acbd58867a7daa5f2679fd298d8e99ad674086cf0b825bbb
eo|64|2e6d14f8ee039d82e70eaaa869c427582094a7901d7123d3b4cb6de37fab747718b4e906afd600d6d7d883041dd16421827527ba5956000afb6645da061d35ae
es-AR|64|e2ecb93d257466c8b66b6a229591d2be717a47931e00fe18f099092ab07d0267125f22d82dd8bfe3f3b1f9a4cbf1c11efeffe4e38f57b64d4e85248a97ead482
es-CL|64|090406516a9f43b1ed61feddca4bd4864e177d4b242226698c6dcb90e640834eae5c1b8c100b1b87de7e93bad1307dc3b22b957fd58ef7bc4811b8200b9b3d96
es-ES|64|8a1dd3c4eff2d5f041b3d9eab0cc7ac00f9c57ec03009b521960dd595d4bb972bbc21ebcdf6384444962f80cc808b68a3ae4f2e75a658c6de4e09fd654dac32e
es-MX|64|6e3e25cbaaf085d6f9e9ce15187088bfcb7599261237763e25f4256156c5ac90bef3040a77ddc7389b52091ccd21eeb195258ece9090a940d163476979ab5ab0
et|64|f252f01487831459aa054260d5628b57700c68cd59c477d27b4528d459e22971c7200a43d8df5fbfd1f0b7d3467fa8a08c8a63f9ef26f1c933bb0ca341a8f781
eu|64|3866249a1812c099fbad38c108a6a248192b23160f0ff020b7deea07548e556c02093209fa5dbc6eb2df07e4c3ad35d310760821dbfc1a80ebf1cd7f680dba46
fa|64|79198b3751c9c1cdd2c9b5171f226ca03edf9f8b250c98f3e6bec151a154d1e07ec13b81e9025e4da82d37dce24d6c9d8bf200ea5d1c0b5d47ce35646a5e1a73
ff|64|09f2394bd64a82c3caf906dc970d468cdd7126390d7f38e90bf59820e04ed9e10c3c0e78ef026a6131146583beac53947832b499016e23e4a5a08fc755b7171e
fi|64|1c035da58302271567158f0256f5a7ecb7282f2f5415484e8b2d6fd3db4ae68a35651f16df42bec02a7dd78e9b0ed6065bb7b989a92322e930ce89f13dcd6958
fr|64|6c2a4208c22841b7af2487e14feaa0988b7ffb2c42aa5c9af5894028bce91b87957d1e8a79ea2e3dd695d6a19467f3a6419c7d9e276e2d85c9a46c30d8f4facd
fur|64|65ee156db88cbdc88f274a74c4b3e579b905c3e0800f9157c283fe432915ca26446c2d7d5e94f201eb8dbbb11ce027141572dad9c9cfaad7d7ac7d3acbe94d86
fy-NL|64|e666b0f2d35a22dc1cad488f2ed46edeab31313c11da089be9e491804e352fe215abd152cda4d3427ebc5999d6c11c48650314fdc5278f8b96233403ce13aa97
ga-IE|64|c7a42ef4dd644db4a3904921cd3c213b071ca27380a3b7ac31ee31ae2373fd94e8c1c2546a1c042d870cf104615a1129c531d6d3f918c84aa655571e2a888bac
gd|64|677ca8fa5729a811a2683db544b88770d67b5d7bf3ee4f6898e511cba696d63d536977996cec8193931e0b0147e8bd7ef8cb9f6f5265ba1b0cbd905591695c74
gl|64|1a2201b46db52a9052b466791b44679165e2b481c71859741a644511a66b07b3f3753adc6ae1828a4f54508ddbfd4678ed174bc5c619d8557f48e76c78874a07
gn|64|364c6628197ee29c03a07c0ab287746cc2db7b59744cbbe76276649f7d2b0a5aa1139dda4384cd060337a345b6b932ca763b4baba58471a19033e0ae27d03fed
gu-IN|64|eb571752e325fd1b6c4aaffafb1fc4c339d589d4013c3ac9d8ba12c90ba7adc0cd1f620f71178b0d60463a6313ef9702b7049e444612c41c84da1eebfb481328
he|64|45a2326138331a2f52aabc8d42d6f687fa68cc0e77c9907c35304b796f9ec2d3cfd0a113eed48e79dc99509618fc539533a40b4443c845c22f741b361ccc49fd
hi-IN|64|44ad79f449fe8c6152206aee1775f5eb8a1ea2c32cf30fb8cde8f27351655e653928701f5ed1499cb71f686f37e61c066e04b2ea3f7fc4908bdd60246e585a70
hr|64|67478c7eb68ca9d9feafac6fc4ce388cc9831c33ad2272753e3a718e0a47757b10580ff9f9ae1096c0ac7e26bc5a440949d25ee91836ce69fc04afcb745392b6
hsb|64|91de5916891e436b9076034494331c288f907159073ef2782668b9feb6cf1dc6475a24a889363424f2e289862f57561ac45c95cd070c8e23b5d24615616110ab
hu|64|226762d16e7962e5023df2e8cd6e19076a5eaa9301bb80ecc1d9004f10a6735c6490bc098d00265cbfee941b187c8ae7fc1e68a6f5bf3484566b29cde87f9a05
hy-AM|64|88357842534d782f66f586bb3a94e7ee60e96952ff9a55b4d3d6513e75b27ebad8dfb923d3d811e12f80cba62346a6053b13d8f9b00a5b13a8cf6f9299c82257
ia|64|ad88effbf4d8a6cb777b1d97a67da93c80d0dcc9858b708da7a84701c2138d8bd56e1750c6979f88a65b97f0d0665a6a7040caa395a54af1a4692c2a3b3971ad
id|64|63f920ce0b9a89d8547c4d6aece69822d7824a227db1f910b33ec6b9a95a9c9783c770a6a37827904f4af83e29d3d9377f4b2d614686169c9d0dcb7c8ee8bef9
is|64|7ef151951ef565e6e31c5d0d52c113d5fcaa34ad65faeccc7ba36726989cece48a710bb65dae531492036c93d7640dab7e2dfb3dad25ede0efc9db3503d88869
it|64|b42162aadfa81f207687c4008bcbaa2d4965799aa7386f0203df3d524cd33d0f1a6f16e04f21fe36ef65ab8f81619969919879c5598f10dbb26e7e872b2f9417
ja|64|65ab6e13ba40b723770dc37de064717f180cfc3b37ee7c7a51d7a77417a09dc96b28b3eaf04b5dc2e11ca6729b78359eebe7dcf68fa91b0361170c5babe1f90b
ka|64|e0b9b24de1b658533022a5429016dbb0efe98cd848fbddb1cb8a2f2dd54472700a7a5c96437db87d9bc9c2840a56f80c7732d9e8c63ee6303c260d6286f55d14
kab|64|547ed8d2b9aa95f33afa7b095c49676c1774a4510cb65d5bea23629a6524169ed6cd94d6cddae9c156916d1603df13c62ccb3cc5fbbc8efe625bf15aa0322d5b
kk|64|ea5eaf6e143b086ea05b20d8228d65eca6855150c802645419846964b82ac05424edc95040e37c8a1461e6af1dd5a47a2d56d3ca8457cbeb03834bccee63a4d0
km|64|3ccb9c729299a24855c3967ec9a452787a51cfbc62304b993d7a6e5543e3254116158c52b6b07c5ef7c93f916c621ed1b197574ad0b3cadfe1352d3ed6752f8c
kn|64|0783a49999a8f4c3f6f67e6aca34b07d8d1e51f32f95f834f272218845f88591dd85225f11a1a96e9cf32de3c0c90425daa5fdfe11f0791c14ecd24227961e8e
ko|64|97d89280580575f7368bf1cd64ad9029537da8f90b40379800a478aa78b608c66ac0e62eeac3375d6dec6711a0b869f7943340bcebf7bb5d89f9c71d62aaa4e1
lij|64|bc8fb23ddb5bae94087f12c701ef08ea43a9c611f0208511c834d7e196a76c2b5ba5f5d69e335b25f198163c209c0fed82aa3205f69036490d09b767d7bb7c50
lt|64|8447c4dec37519143ea111cf4dd594f4efb0d50df524fc9663d9f0132f6feb376f92d92891645432d1931fdd0170f462930b46374a8f7a1862ce5e4d01534e49
lv|64|aeb0217befee489e17ad7c1ce14c78da44b4c47517e78f79d4972fdf4e4cae3b0d47b258ee6dd0ef3bd18baab43f5bbd7ab06384e0e4253453fc6670aca62f99
mk|64|a1c0203e2c3da993028347a58bb7c1cdf55d071a12c814badc03892e7fc126505dc6e569ebb9de0d0cdee308a08b38a9cdf92efe5c75411d4d22aeb82b046ad1
mr|64|d9b3857d9914e18d6dee4986a6df681803caf9e506eeb2ec5f22382a20dcd5d6bb2990db9a6ced903dd63db6e21848871afe994d849c449c06a37e30794d0a99
ms|64|88ee68a53b716aa32357fbd03f4b1a5b05740f501fad11a299fbed10d337834b14becdd14ffa157d1053f2c49dd774fbeab7b0cb1d397d732cca8d1352e84207
my|64|da3fd94aba39feb9b8e9e8639f44712ede2eabd36357dc4c79367439104631d1e4562b600bcd53774597806d425682167930e36dad2517a1cda7ce477b1bc0ef
nb-NO|64|c1c12cf503338850652e61d4700d5810f07753defa14b4f90bcc2abdc9c543bd9ff73e9c658f00c806eab0e07f53ddd6a601d8ec8e6afe750c35d3908491ef09
ne-NP|64|88292766581b2e6dd492fd5f03a7848901e3905e93941240a9ccce21611b7388499e4565f7615ca4b832c53dca05f87ba0dc65a8ff25d9251e2e41b17ae724f1
nl|64|9d3cc5e270909375e6f7e4c605cce4f37df93733e835b36e96d6a0c9ff93cd086c773ef375d02fc72b3f33f1744c0d2849d2094a1673cae6b68fd80a9d0e657f
nn-NO|64|885eb4ee4fc298879f1453ca8a83f07e5d210bb9699c72ab04630b8d10ac61ea218d19220d9f611462c7049a8bbc8ab627a695e24ddd5720f8fcf1fe420ea11a
oc|64|4edea25768ae7af8f660e6780b2b4a2b1d9d258d4e8a4a72932e43ecd041a2245897651ca48059f52b0b8f09fc7332f042c7803797ae39ab4d4a50ca307d0ba1
pa-IN|64|06851d995a1ba6ce87a68e0b834b1703c403d922da9077bce6d2cb3242759f3c1b40d1a9cabdc069ad4ff25c05c9f2982dfba813383fd3b3085949521f8487b7
pl|64|fe00411e78969d7d8aec48ce4c0270dd9a64265e21baa2f771eef163d30d2d4c6012c64ef43fb3a3cb225ba01355a378fc2077313b5bfafa6b4a3db211ef9f95
pt-BR|64|bda3acca0234cba80043393ab27005e8cb270e22f01ad7d8db8f4554b3e5b25c6528e351f03cf4e7988a40fddf850c2d4b5aa471371826104d2f28d60bb232c1
pt-PT|64|cfd1c68cd753a5ee65ffb2d9f3b7b6dc932c51e82b5e8ca88968b8a3bf7c105a1407f187989ce56f28603993c8819c735b69f227d17d57629e223eb78a5b0a67
rm|64|be84ff78123b263a80cb10c23fa516bc6d0f9991d0c7f682e56c60e2219fad97606f2e254c1b5fc06096d7a87fc599fd3161839c9837b60c448618bf53ff904e
ro|64|819a673cef45997fea822fcca4d4bad119a4c48e6a5b5934a3d2f745bd400cf3a14bdb5cb661b7a723f1f21e665da65dea573078a5162605e63779322ce746a3
ru|64|acbbb9621c243d0a270d6e6520f301bb6c4ef20e8e17e084e848c63b04861ac0da43d9eea1348b46c84bc22daeeacf799186a2d78bb735b1f508b0d4d19281e4
sc|64|bcceeae7f0fe7bd119eb6ebfac5c83c71b4da2f99c722fad9fa035a618a7eb8d0b0a16dd2339dc7710eab8d8d20a63f52410911410b989cab67906e0c075b8a8
sco|64|b9700ef63635ae9948664c024bcd92220be37d91a7330117b65915bddb0980d671ea0065587fe715327aa87ef6eec2d9cd1075f0d8d253341ab1002ed7650ffa
si|64|fb6aaf80bf80114cc81976851b3994585855606983174bfcc2f08a68caad3472e0c6a5155f48acdd4a05bafeac5a70182219b42f6730edddd5f743dccf28b2ba
sk|64|4d5c1dd87c97b8099e10f99fabf636fe3fcc4145042150712beaf9c28c82038913dfc09c5de5cf4534d4d2ecb4f78b8780ef5429b64472753d36161f5578eaef
sl|64|04f62cc83a54a93947a6fc3932846a86230098169a1422eaea3b712b1a75a9597d9870719e28eb97de67191fee89700d0b8379adca27c4bb4f8b30752402196d
son|64|11426b1c1ea6374a7cbb72b251dc676421cf69b396641c33da977b23c121525c53c18fd5e5d2b16d367c893039e83651157e3f64633d14160e1e41106282964c
sq|64|d3e354b3c91433b36c4854a2949e906f19cc4b72958d6a3c2dbe139db2f32a54024d31db742b6d8179c3cf350055374736415dae0942c97125d257a6cbb23470
sr|64|1b61ae9fb7d10685b10ce269afcce82047574a55301e461f916561e030dbdbe5a591f0a42325a7b291215855d5849000331507aa0db6350906200f6e74798a06
sv-SE|64|0530b0bdca52f44d1279df59e1d3c7d12194bec1069d442a8d71c2c4b8d612f1f4db2b4e3ab2c167e3e6d5b7f842f8d869496bbff95e45d475a49a4886d7153d
szl|64|856d711b608fcf53bd7f8dfd283a12e5aa68b4fd289de5fd92ca1586944ede8ff186c263f39398d1f3b2d74737504390a5638387a4ed3cbc11269634a790f4de
ta|64|001e351e5145fa2d471ef9128b40860310ea54a09373d4983313c03f97381d29496c094412c970c14998f6cd3e992ae28c62a39d9a4dc9e739442cb395a42b4b
te|64|ffa458eee9b271bbc0add06278b7acf6c231d1cbacbf102b32e1f9a1e2bed8f93fffa8a4b41e33271cd8f78f9fdc7111542c49082ec39d3bea43b154a9c88d84
tg|64|15fabd0bafb44bf6deabe042fa1d3ca177b4ba4a3b9430ed9f047aa6f3c36c69571a3ae13656c56c5f684d31a287c0487c23b17097d9843e16f7d2e01b46cf1a
th|64|011c6f2a2b949554c67cd18015b575d3e871dec53c5209e67a1f4d91ae37561150328b2c40ae2fe6b68ffecdbe60c319a9a2dbc3733777ec1988acf493f24041
tl|64|0d7b9cdd5ac00dc244b5c522f43c6a20ebabb2ccc04e995fc3e3ae446840fd85a1a40edb7f10eff2231ac97d06e6bbf5041f267cec28b4d98035a5c354811971
tr|64|bbf64ea3bd26bd4e6e0124ad78ba7a9bea1e1bf2d0cdd3e7ef9d6aac5713a9911fa2b5e1e08ab1b7cd81bf6eb251751b0750fe39d739180a76ee5ba8db2b0a41
trs|64|97e4a1beb26e299298eafdd83789f48fb27e253b72bc3e504aa6fe0e900c0b9b2f0e8d453894289befedb390da0269aa928a934fc0b4860050269fb4baebd8a8
uk|64|deea41cf8a29a7b750664d81b1d78dd32145cd6614040ca573e606a9c5599762fd54f447dfcd88bc75bbe9deb45346b53b16b6c334e9e865577fb736736b6652
ur|64|3fdf92483944a90c1ccc9fcf4224fc7144f9df70eac0c5324e7f6c8c2ec120ca6c70918deaa7c6463a2f05383f7529c3baae08a1121e72f286ba69b7461227fa
uz|64|23c8d282a7615e0db702d11283edd6f49c24dee18c5b6f33131b0f5f66f43ec366e58afafc4d6789afd50773f478d2a342b768fb87b3110d78a3fe75225f2b5f
vi|64|1eb0a8ebe325122ef3f4f07a2820246b8dacd9f037d3616dbe383ec4776340481b6d6f84735ab026f5629b7d8fcfadde8028048f7f3f75ca64c2a7ba70506b0c
xh|64|bdd9756327c41bfd99fbd6940131501c7654ec1c92edbf005677222d0c909812496ded227704074fa3cd634162cf59d1a887665d7bff0eba01798a3949feb44a
zh-CN|64|1f9e8b388b24112d8a9e1b7bc838c71519b19eae651f25dbb56b7c7d284bd2beb7b3395be4c1d0c50138231899f74d6ea681ea193036514aa4453a67acab2b22
zh-TW|64|367c92db1c0e04c8eacadf09c27717d2cc7240a0d2e89f456a2dacdae8ee6684d94b479421970f411290b15cd05eb11cef9e12fa4114406d2ad00345ea1b4be9

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