Unpacking Software Livestream

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

Learn More

Chocolatey Product Spotlight

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

Learn More

Chocolatey Coding Livestream

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

Learn More

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

Webinar from
Wednesday, 17 January 2024

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

Watch On-Demand
Chocolatey Community Coffee Break

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

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

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

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

Livestream from
Thursday, 9 June 2022

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

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

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

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

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

Watch On-Demand

Downloads:

2,545,362

Downloads of v 102.6.0:

34,586

Last Update:

13 Dec 2022

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

102.6.0 | Updated: 13 Dec 2022

Downloads:

2,545,362

Downloads of v 102.6.0:

34,586

Maintainer(s):

Software Author(s):

  • Mozilla

Mozilla Firefox 102.6.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="'102.6.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="'102.6.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: '102.6.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  '102.6.0'
end

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


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

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


package { 'firefoxesr':
  ensure   => '102.6.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 14 Dec 2022.

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 '102.6.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-102.6.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-102.6.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|e8eccae9bb2c39df81a3458bb166d5147aca3707bb723873b75a1a9c2499e651368f5e74913cf5bd26fee37ce4dd1069ea5e57c5537aae339dfa96e45864f118
af|32|c4dfc369601ec740487f0d754a878942a9f0fb5a71a41be610c74eacbfe25d3ee512ce966299d1cd1648972d9d9e3d3ccdd094acc77e36fdf15d7dfaf43ff305
an|32|750088eb663a67c8e52e7d69ab354e3eea01ed91ec04479c4de2bd3127700b2416a05ea2a458a647f9f7c965ddfcbe2c54a209451d71507762e7a777089c3ead
ar|32|c2101553c93e533e7fa77994cb191ec3b4a6da5b6a8d709003fae39424e84286b503c66ae13de2a9d4c1c09e3f6dad18801eba39bec5d65e0687485018fb3607
ast|32|b6c1a2871cb5bd49eca876d956dc0a3e08188ed53fa1666851821d205928dc4fbf847e9ba332b47afa6094ee4eaf7d0aaa27f25c85255a864bf6fa27ff5b6c42
az|32|7ccce238579283cd443bb4ef8625bbba728c8abfd1559f2af56640d7ad5e34214f118be70d2753f2312e68dcf19deb83414a8ed2889d083d089325045ab09a9e
be|32|2d8f66a2a7ec130a982a81f714254c9d043493b0a72fc0c77f11f90314aa1a5924619109f655a9800aa6eaad111770a8715e5d0fbea39a6f7c9859fd716d558a
bg|32|5646cc34458dd8bc11657a97043a778e3c1de05606d07c68eb21d459b59e814b8abedff3f2a6773bc9d924eba616030fd22a1b60ad52a62549f5c7f17250f332
bn|32|13bef029c222e8f9a6ce77b095eee2ab1825f059a41de92ea766224c28289310ede36829dec99a71101dc0925121981acc208ad1c8494f7a807f04fe6478b058
br|32|6f617e635126340b715cb28694b357281f54de9bf3dcb9d898ba79e662449cd14aebbe38562f52b186d6c6e90c7164279307032ae722049904e65a0f981e6f48
bs|32|092dea89eb27f2b11b56cd4eba9234d76721f6e79289efb800012a3f966c3237275af4a9323d0598720c4e1b18fe9146dd86a910abdf163e4d3080d8dc04ee2c
ca-valencia|32|63a9f086080e994fd3d8a98cb1181f30ddb48d673c4d6809cac961b660cdd84ea608a438a05040557e164410bd73ed6dacc923f8fd161c28e9251113b3d23fbd
ca|32|f4256f1dcc27dc84303fc12a42c2ca01eb43a7843e7635529d1d8dbf1de5c0b29a2b5aaa09c65bb85b72129c4945fc29a87129f0c2a403548ccde040cbded8d6
cak|32|ed23f56009ea55d8c73568cc0ab7baa21b10f5dd2836ac46a00d8ef92a124c0d60c387ade1317c538cf14221a94f198f9e634ccfd5757b54b710cc212eb76150
cs|32|4e32ccb08fe044db6cc1e033a899e5028b8d7c89d5f25f7cb60635749173b671faf662f8f232bb8b8a5430af137206299fbef3d3e40ba8aaf207ae0c597958a6
cy|32|3c9130818a63daca564f9687929038ee2aefbc4b08ecc5ec9ca04fb4607ddd54a490ca2344dfbfe20c2dba18d4f890680feba5990215d0e62e9f22df9c8dfe32
da|32|0c844c5c6dd896f85f871447af5941de16a5b534ebecb934d011339baadefaa71376ea5011ff5508d0b7cb342e0b7ea5a685e0338a32326563425309e22afc17
de|32|e6a97b93833ad60bb6eabf0e754196d70595246ff9f540a101b87983095ff879e64efb583a5d5b548060cf7a63f36dc80b6301a0b181f6e68e6cde66c5eae5b8
dsb|32|98c462c61e5bb9bc019f9338c111a1dec3aa0e2b272937e155d5cc01e684ac709b3b19483e65c6d297496f499100ed44a8bb15cc4dd41ef8d9a3c0bfd0f591a7
el|32|8c8db1543cbaee7f0ce774b75900efac0b2c891d3ab489f43304d98c74d3dc8c32ab3ff29f267069e3a13b92069f9c9b3874aef71dc4aa92ba7f867b62e5a71c
en-CA|32|0c6edeb69dbd7fb51ec1a4d93281c7c07e49b288a8830e4203198b8a7de02077a7b232eb0d19363caca6e549ecec5945073036ac78e109aaedb30f82d9128980
en-GB|32|433439e32ff9c12b154bcb01d74a0e4501adffca9fe8ba0a9a36ad9f46e82c8e0929c9137438a227c24323a184a5b512e112a431b96388e80798ddaaa4537ceb
en-US|32|01d0e1bc29d6e2fe5f5a732fcc6b031a5c47d168cc2546e1b90bf78b5ca14c5f4724485722e287634d185dc5cc109c19cd0dc234675eaede443915dca4edaa0a
eo|32|a70bf3e2d66fc32a4c2b61ebb39ae4671c4cdcdc0c540e28b676a4903f9b984da62ee0beb4e8d4380d8be8735f1e3451e6b56c54d44add5e225a14dd583a2d5a
es-AR|32|b10a7b1ea8a88f61a94966caae2d4b0baa8409d3ff2accc4f93875fe9075c75f581ce3532497d4149a28b772086ca11b0f6a1cdc8f8cf6e612be8af61fc4830d
es-CL|32|c7788069ac01afd0983da62bd875a520a3f70ec752200752176bf62a334ab4b9adfbe8658d50f13b78c3e939efb971c65b862082430747b3897bc2a7bed98ad0
es-ES|32|2114d0a7210a9e26dbb72c5967ad0535de5508a20a97c1d9185b952b08f74e69f1bc29792ff3ac62763e8909d1da5f2605434ad03c114f175fd5b03671a88dcc
es-MX|32|c98959d29699dbf01d1b492c69cdccd05d0377c1c366ef302c5a3556c837f6e0d661ba1b36623338d7cdcde55b06e370230ddfcc80d39f0fe8e583f721129593
et|32|c52c485d4a095c833397ba20749b7692730985afdcd9f16731dd34406b3f6c43ba013d34a7e74c611555a27f0996a2233407f271fbffc50c9ac90f9f07506bb6
eu|32|69604fedec63965490a82e868b3e7ce6e856a5f5d49f0d2822825c0c4f4eb7a006d616fa44d1f413df661ce942892dc2d6b8b0f80aad297a579679d7a1105826
fa|32|d5b70f77699d372d24d8fc2387c56810d2da75da205dfac7bada1f1947a16c65ec749362df88e3f73a9d93b52a6483131e029c58012abab0e25a5551fad9cc91
ff|32|a4cb1446e10db61e7e682b7650ddf8423e02a0cbef65a2b1e981a03e0cbb96d9e8228c384596caf2e72589e15a5a438ca97a9692c2497e477cc5ca0723ad5060
fi|32|54339ad88781290f37da9159d5ade864f7ef9cad140e3ec9e332c6af06712c4887e62d57e6bece57712fff6bf21d11ce6f1f87e7244e73b38fb47905004e3e7e
fr|32|0e31cade7197f3363ec2a90d2699ca442c3056593cdbbc388a02165cd313afffc3b31dfd5bce52ad633aec2cf0b5bc21ab95bc0587bf7e8c72fbe13f09c309c8
fy-NL|32|3951cc283f0092a6cdfcd0e33c6a9f5fa4fa5e7ee51f2cb09d66d88fbe70209d3c1c3d0da9c763ca5684e99ee15972bfe61e1f24da5b9c5ca1ae6b2031a28484
ga-IE|32|0ff162be81ea58dede1c431cc216d6f6e768ee02b2b9f5444ae481e6c931c883e6af8f358595f570f65c666f1be177e477dc071a14811da623298e81589019d2
gd|32|20adbe40b52d977eaacc69f1a20cd9c5495dd216462aac857d4975245394b8d9aaabcb48aa5710efb5269a5b9d538f2455a3d8e244d44c50a378ca0b42d5395d
gl|32|5d8a8fa693481467f276ebdaf0c624cf554bf1fcdde84f72738f8bbc41498ff3e30cb00d92dec77bb3983f2174b5e00898ca3862c5a57b4db12d824c3aff9678
gn|32|eb63f5af5b3c4521ad9304009410edff87fc0484e3c5f7467e0287d1fd4ea32f5a5b1117444deed39a4c99e4253b2ab3a687d8af2d6a57d309ade5aa11e632c0
gu-IN|32|293a322955014362dcf30edeea0d209e3b91cfdafb26d4fda12780586fb975015ef3909b50a802aa387c50c85c9bbc4ed7a5d2492fe2608d6a1ffdfb4032c641
he|32|b7023dd5ab0096e6c6768b0b2c891d88fc580eadee6b62ed5991025c93862bf9f9a69039dbf51c7bff3fc4d96e227054df17969c05ba9ee7f090f730a9f2e570
hi-IN|32|9e3f96d14d1557c968b9ccd6424b60e247317ea5c6b0d52aa0b3e7c755941f2d338c2a162203014ceff95267edeb5df27a66eeae9964ff0b8b93e13634d9bd38
hr|32|d4c802a7781fb4d67f64837b8f724ac735877d72e1679305f07d70e63dc0679065958a211401ab7df5cc7e501fafe70bcb00118f866f78ae61bfa87de9f6ecf8
hsb|32|eb4e19eef7a3e8c5678153ab5969351c1afda49736d87979ce6b365e9e9907de6666b4a91a55fb1a9c0a182ef27b67b7c3f4f8e0c15939472bd7f0f78e231767
hu|32|04284f620a0a947fa3f044649c9ebba076558bc55bebf56d8e61361f1814033a39885157aa1ead94339b824b1be12184344c0274210db3b9edbfe23689ad6014
hy-AM|32|a19c6e62a8b8078a43315f13443efc72c03ff078b70f1a44aadb45d08371733a98f866bc9d6cf0685fff62dae59494cc90c451346f7aeb4650483ef317f588ca
ia|32|0ade61e525d159f1b8f6fa8e5245063ec2ca3d86f887cf4a864b843f7d0b7d3dab3ce362bca2b74575e7587d12a74e2c4c29843bcb8d3ea4b86a1442c38c1c61
id|32|c85f9b079f551075468f185bd46ff1e2823c5500afcc5ccb83106c207911dc5c6cd1d7d591408a605df05094fe78a6c59eec294d3f702a2cc016dfd785c42f35
is|32|a8bf8a845c593c4482d0be41a2580929c0913eb909224122445ce5d344bc6b097b3b10b4be580d566cf57c282fa4458afdd1ffe96d02257b87aa0c1ee4e9c7dc
it|32|a17fa82937ef5612e7c077b7197d196bd5e49ef4970fc8f4ce343a3ae24a1a0970bc9647f937f5f544d25edfcf80f79d8e033926a34335bb37f2da59ea311896
ja|32|5e0473db3f9884743b074f3dde6c8915ee3ac5916b044940267f6de2cd7e96df239bed8e4bf407c04ed61f8b52d592b54a8e41b397c4819d275d101330274bca
ka|32|fe3de3fb54276c0189106958e98c69bd014b6dd5c7a2777e9e9cd843fdafc4a1d90552b4595b64a7132c8cc684b41c4b0c97c21c7a0d24903bf5c54b37bfbed3
kab|32|284feb494bc87a14171b10f28a4c9ec2e9b17a30966d57b2e712614a86a71c010a6e0cad8b5fd815ed34131c4df805851df96669494230c28e9a489ab507fd79
kk|32|ad0730d46beb79e6dd5c843cbe59ab03716af0dab1d1fff188e0e86a558a117f7b7a2fc7fe86af042ab3dab31048e8f9354252311479ac2b00b1dad425cd8351
km|32|e0ec4879087ab261dfb495760e27860a5d2eaae5d13acbb8d6ab623a49c6941de50d636da729106c439a44e354dceb6cb620822974912b1065ddf892c2cd0580
kn|32|5e29390b26d835e7e64a06bb3ee16863920a553d49dfbf713440258a76072fbc9c17c29edfbc32f42e64b0a4d06e17fdcac6c0c4281e204d77776bb5ed809285
ko|32|bb412e262bf6d1525d87b4b84fb5dec0a52bb2ff6bd9a713f00cf885f7aa83fd5888541fbbbfa1b3e624bfa3de7e594e87143fb8208073b2e48e6b5f5a4b23dd
lij|32|6e5cb2aae88bb2704eda423dbcbd59c600dfb06cb68978c8a9b11be8f50c0d240848f95c8bacbd7f61e02b8beb0dbe9fdac870ad78d31fab641134dec8425d12
lt|32|6face1745c2ccb7e89b69cf4efc9fdcc1dea94d989b8cc88c593ed953032cb207b900a467c79017e2e29e43ad98b376b4d9f909de74f3af698faffbae1c69c97
lv|32|09ef6ac34fbd46b7dcf234e435c1380551d29cd82da1e15a0ebfde119f890ca1978f3a04168baf38738c9d9eafc5ede3ea9ad859bafb06c059922c0205bb990a
mk|32|963944002e1af92bb88385c8f3541329c55a73ce7821bab66f5da4783fdb44680a82aa6eb1fe644aeac8b978465920480da8d5ab0fe17a27b6eedf3f937940b7
mr|32|e805a753b5b83aa383a740269eb55459614255d13fb753900f7c3332eebcc989ffd48b2ee0060fa243ba5e997f448390e63ea604f4a91cfd2e7eb43312f9d463
ms|32|57f633c767643c14ebd097fce3dd8ab41e2254786d51b52dca165cb27fbc0bd4e942e1d845d0a63902a889ecf30e87684cb273ad22bf5470f70516ac0572f5f0
my|32|9a7239f9c9c39ad84aae767a203eae6e7022fa8d6bb5aba0a7883af01b8bb876c0da5c0221a2d433b7f70f88c03ec8b2c2aa64d4c57bc41491fcfeeb60fa8d93
nb-NO|32|9ecb54148081172b876003a637c1bd18af5a586b8ed8e59add83e660922b07e05684d6087f42f25ddd069c4576c08239c39373c952f3d4f4025244b6b1a68382
ne-NP|32|e54a3edf1ce4d14b468946c5366e034f122c1fcaed5ddb1e63d06008a754a4e826a75c7f9ce99f5ec6b7b9af79a6261824a0f0208c4c30a9e24d6ff556cde7e3
nl|32|feaf1a265794b579cf8dd1a5e0be030722bd2abfac84655b4698f84cefa9c408b37220fdcd1d293cbfd60886765b39a9018e285c23967784ec087883890bc6d3
nn-NO|32|65a5330817b65e95a0b1e41bc265495d171432917cd5899c95ef96b03905c6bac7b194840a26adab6fafae3ad62dfdc1fe8fed80098b550c0c4d884d01f87a89
oc|32|d3297362e47107952dfbccdc81c5469f5fe63f2875820b0fe64be471a5bcff13b9cc04e9d31e6665f12a1e9dbc041214ed0e77f42106bed235486d2afc551713
pa-IN|32|bbb1c6099524d3f120089198b462928334a5e0025cf8f9cf2b2bc64d6696e9e9452aa6f4bd22c50fef32162002cfdd50694ca19ce3c561f131ac2337bed7d1da
pl|32|cb0a7e112d75a20c386e0e7c3bbe86f5aed35d30315db22bddf64f227dc3995880913f6ddc048a11c9c1ef43dc8444767687f105c03c50f7bec6b45065f70bed
pt-BR|32|eeda435e4ee9f6807307dacd73760fa10485750c2ccd22ced056ab50620a6553b1a8f131bdfc8c77b453969a10484c8ba48732835b01bed3e5ccabc71f43a529
pt-PT|32|83eed7cb311d5cdde13cb91f7036a9b48bbf842ff324b94f7f77b66f40f437790e0b16ab577e3e5da61a8f291da320603d2624cd68fd9ad226f7fab502989a36
rm|32|3e24cc1a598a2f66876874962172c8678cd8420f04063d741714d688469875e23204d0099ac4738fae746de7caa6bc9e2c659d6000ada1d7580463720bddfe94
ro|32|67e9de754f8bb238397dffe99bd7f21e304dedf124695d11f82f9fef4823b0ed40484951cf3f3a85e29c54e69167fc1de639485b309708ad02e5c6fc46ca245b
ru|32|89451317045e6610d866961a1ed959d17c3bf4ed9e3a788d6116e8e0d5013126a22cdf91f907577dbc23495e50a0db5040dbc2bdd64730e549da8a6a4a9fbe1c
sco|32|a52157f23e6e643bfd6615dc5e829d61766697f55032a5862bb818658f1669babd0bb53bccb76d12f26ef44edbffe4d7f2d86e819458bebe52e6df555d86d030
si|32|6c1e2f25dfc8ecd4d989aa64fae2a0eef780582a001102e6241d2fdcd8a520670e27e6f239fbd3ff6169ab9ccd43369541db5d82cd771bcef550cfc6a0bc5229
sk|32|ad4cd4d1ebbb26b0f6f939f55dbf0d2191d271d6cd33e475622512a37d343101993d4107fd77ed516a048e68a7b706ce33f917b257da076692f4433e49aa102f
sl|32|7a7fbb1316e320d9de59fdef7edd853e7f5a8adc10fd91a9502da1a83d51603596022596e2870b9d1f7e17be8b78a66e6b67a0e3704117b562d9a286632067be
son|32|541fcdecbbdd53dc301d61b2b23937fccc99197f4a9cf9746811d1a4b66af93d63d8a6eee6053d121a47d8c73a634940164add14f7bc91790fb5ad5b32282ba3
sq|32|91d2b480c21854ea3134998b6041eae8a58a1fcec8a1f8d6a8b6ba50ef53d81e2b73e22b8a8953f81731b1c38068d9a5810137b6db842694a800af6c7f29d616
sr|32|f766f38e56da1b3b984853cba8218cf79d8d8b2c0dce912fa34e6b9a825ac1a18ce4f1114198dc0d0426ec0a71a7f4c692f9b98609329525cb44c5d8636f0bd1
sv-SE|32|49d513170af91b3bd34016b34f2555ab0d9fc3fcced0677dd075085e6368a89c4a9cb77744b462e94a9a586ede3b2b592d712e3f929c5e73cdf26d122573a9b1
szl|32|24a35c2c37826c3cbf19724600a72c66fb4fa0ab5d7eb37c23e49ce26f2c035b9b198b158e01f138b26a003fc220e512a4c067e79430e5e993000d8778f62425
ta|32|d7c187f1e78a617d844bceb73d41c5fe3074749d2b7e84ef78ee2c0772b0ec23d245305da40a7082e9f11f9487f3cad70b8e92296be71d9673cbb9e9a45c2151
te|32|cea4a265b4fc8fe5893defa9c2d803a4844f5bb91f32a4196134c58869791af6a1d2bfbbd1e277a87f3cdb125422e4573990449e652fe08c52b2d60db0dbe360
th|32|f29f9d6b9cbff43b371ebda5638a026dee4eddf2c6f39918d97403d142382469e91deac8e05bf419efa002295850c04694b0900a1c7c119082d3d6d3b6301e7a
tl|32|2e859365657a4ae73d7f632f04053e011fd0532ec1441b6eca58b526e9537e29cb66dbdfa16e846ce9da9695f2c2dd390a3e250106cdda1c863dbb44f1087f4e
tr|32|3d96f5b7f783ad53d800d3754ae43059983729a607be752d1d4d97bb9b7c90fa932d916145ec4165359772280b9452fa4a3e7290c2cc7af6ec11714e61c3b57e
trs|32|07730eb9e91b024c02c4cd6038ec33fd833c66b7008d9c9597e770f504cdea6d56f93cc761870a7d31cde692697dd569ba3e915afafc723fd0a867a3312a280c
uk|32|368c5e339127cdad93859e3a22273a13e6655e765f46cb370d6a64d8eefd38c1a40b235604023b789510a79e8fdd4869546e8304b751c0403a32ca6469d26082
ur|32|6e7b3cc086f52c300409c7010329723d68d7f6432adca89012ba7c5a195242b8ee437508eb6e1bc3c84c01deaf0f48fc2b0176e0576a07ccd082b9ac81dea916
uz|32|6c555ca2160853d550179ccaecd87cb94733656edd1643b46ce446603db0378efba52c25ec260a9e01e3181b3c44611a2864f7063de1ebc5a9eb3250b3bdc777
vi|32|07c1589528c0bcfdf2c2f79568fc48f1e1860c2e6789ad9146091eaf7592dbcf5e044bf2611034d33c97d16a02db03dce17901224aa6b2dcb7593d6018f7d79a
xh|32|719f5c7899a24a5935c56ef0a9345c7104609ca6dddc342ea4c82c137f28b82564b100e4ec7dbc4a48685da689acfdf5bdc833e922a9ec20d3b46b235fed79bf
zh-CN|32|1691e39fa9888c816b4e924b3e978910a4681c5de931b8651f25a2525d787fbf755719ad516d80c4a926cf1d6eeae84bb9738da2f8c026992e4bfb804d307858
zh-TW|32|ad5a2cac3b689e1d56dbda5efd82ef30bf9171aaec1bbe3fde8e80a2671abba4dcf666c16e872f3ae668c590fa6bcd59179caea7121bd2cb1d9a532d961f97f2
ach|64|b5040c78fb29aef1d8d18edcd56e1e49ea47ea1b9119d62d7abe804c2a0c8092f86ff6bcd9eebf65917226f02d07056dc07bc5984dc75917f439bcc8ea7a7110
af|64|c1b6b87983e3c06f77c25c12590bc0f9393ce7f861cedfb7850c1bf62b3a3ec0b16cebd4ccee3220c323bff7b967ec1ab3aad8606e4e9150ac95ba4ea336d6d1
an|64|928af34e89abb3b10db4cd1c74a58ad2a7c778ab65e14ecf59bf25e6494da321c9e112f94cbed6e95898f86165e2b657f145634db7f4fad8a1cdffe2108d3c56
ar|64|b22012e8fc1a38fd906a85e5258efe4b7ed82f6d318445f40170d51824cfad5eb086c3d8db23204e4bdafe0521eae41d732c043cbb9e699369d19623952a330f
ast|64|63c4d44424871d474c441c60d55be5e36982a56a7f266417793a181542538bc7d82cbafb051fd4c14a02e64c0718899fb446c276d2643748acb453498f3d1486
az|64|96871a38eb0e1da074d5506fb5686caa079c8f0a1c68033a38a52cbf115556a0cf57be1c00bcb927c66d4d2eb2039f5979241816bc2a1d547020a65fe7060d7f
be|64|76c449f8d5be96db39b03714d1ac30d2201084e5b6e88c912ee68ab6408cd87bf2d1e86462db67157a74487969831c3ae9386da3e01a7dac8258c7ec123ffc61
bg|64|101e23b6bb980d8f95ee95be16698f1f633d5c71086f50fccefb5b585f63dcb1e5546cfe3a4860cb6c572d73f370e265551c2cf6f00aeaf588e392290b011300
bn|64|9a0c90958612153e2ea806cc9a2560d0a013cc8ce0caa9815603fb8ab3bb9498ecd7568a3da8d8a160bd6a69bb9e8ead3af470eb8daa77e8b32110d5b8bc67bb
br|64|80f0217f9dab701a1886a96c14003fe606a7fb47d17df1d0e4a9b61876093c1970810457593819feb8a34e7bcc89e9d2556f695e9d0f7cf6cbea9966c54f043f
bs|64|07f247b8d9b2062509e12b0eabcc458607ae38e96ed9632458d8190c0b4e3eea10b608757378d7de7548bc15ff06233aeb8d2fab7afc75a3ab561bcc1a8e4d86
ca-valencia|64|d04c85393107ed450c8d48c7ed08dae0d7ab70d7559a6428f1268ed2ed60c2e859a6ccb19da4ae3f9e7c8eee04ff63b442fb3b70b21d6e0975bf2e9b447522ab
ca|64|c54fb9bb49e3016ba5e376569cf75d6db5ef9f437bde2730946e697b37bc2468ebf2e132c27a67ac4f2ed01e81e1fa13fc441bef02f3ff669752f2c27b57a73a
cak|64|39b8bc69ef71fbf8f53de23a1b081898a4ad08b2fc3c3984280068905b4fb0b0dcc48e4164d116ef9af57da978b8eab8cca9077d66852404dea6e976d257e914
cs|64|679288c5e92647d236bec12bd3cb9700b283b13771fdcb2c63b034c29e130c3bff332ea261de0429df5d7e630b5a8c410b650eee772feb3b79319a71fc2e35e2
cy|64|6868c86a63dbbe5cae8aa9bec2c1ff60174f539cfcf413c72ded51d749c38104da9f7beab6897cbda6430eece0650423b450b72437238997db80cd87862660d9
da|64|bc26ef97b1a33cda2833357cdf78252a167dcc189c0d943763d6454dd39561f94a2925c28bbec95678e25b4ae391accd83d149f19f5f999e4e5159183f677e25
de|64|e7907c0fbfd666a8992e1a83f63d0a6f0e5d5374586bd5aad886a0e189d29706147b9d43b50adf46b1ae3a33ecfc9fcea65a076909f16ef7d7cc42e6832ebc9d
dsb|64|3a729246f0f953c498536b49ffdba4a4488efacab0bbc1a21624a9185dd0ba69d538bb37ed33ae240bd3867adb6091e735eab87e5d3acf3746cec229a8407e98
el|64|436e0bc9dfcca0827ee15087cf12d12dc7923ad044c724d69e6b27c9710ba8ba67d3e91a413212cf61aebe63153548bb946565aeb2c818ddabeeb7b4658313c9
en-CA|64|fe68dee37930f27cddf7968086d625042bfb20fd2fdc3631c7e8079b3b6e49791834a2c2a05bf1df59d3a97f49f953dcb40dcdff1cfa9f70f983bf8189c55a3d
en-GB|64|8b2c3eeaff5af1185c4d6057b6b12b77bdc660e85633a93ec234663732ea966d28c8785e04ae840a7f234bebd284ad5d0bbdf3266bc7c91a553582c9f6acbe6e
en-US|64|bfbd987d3ccb302027e214b9e1e79c05fd2f0dc4f07cb6a21cbee01a2a0e0cac2e039a37dba5f8af3a5ecf6e825ed02b34b75113b764c94a8bec97260c1f0ad3
eo|64|ec62a70187a9bad6c680096b5ddc8709db2c0817a77017a29058e847590447261bae786dee8c6fe0a9e65fa7c02075d12bb02abb6d19536eba857b899997f41b
es-AR|64|afd346f55fcb760dc3cde171e00449514199cea7315ea2f5f541743e22d20370f060f190bcf73a1abd83b81553bcde57ce3b1af860d52007afd0a3ac30480224
es-CL|64|0c7f410e6c08d735eb77387f4e8cc1a33154c9605ab120562175c327e3254ae1428b8240495db4895f5d6566701b486b2d840a4d395725e5f36906512cbe6e03
es-ES|64|8e4dfcab7b3e2c294b61ecd1512b7670274a782e64ea06cbe2eb47461ecdff372e9cc142db55b77a8ea0737d4730f21129dd9e19daaba43afbdb279e98f1af5a
es-MX|64|b53eb711b3b71b840cc301c3250741829a1e4ef4becee8d8d4686d38f9d9fcf2d8e3e4a437edc1e50e03aa4249e1903cf1442f0d77f447f6b00e234e414bcf1a
et|64|c802c48d70d6c90703e9fa8c1693d89b825ac1c0e8cc313cdbc1ad0da1c816ec14e3797b2babe235cc70486662f035c64b7af26bdbb20779181b4d5538ffc821
eu|64|d70fa96d5e1cf0094505ac71735db6998783ad0b615e98eb63e36003dd410f375c2d97735ca9af1e04f079a0a2426d662cd233c3edec96409e2a12334af5a21b
fa|64|6383d46ea18a68b1585e2171529ebf28d90c8a6b0d7632700dd2b191aaa5bc0e2a8cfae3a72f1f1d38fbf20345d07705ca300047553195d754cc33b0d2c7a407
ff|64|01ecc47a0e1c2e7f2f7f28d54de66107d7aeca16a34bf01a782235dc3e87eed48dc1dbd7d2c23eb0e959ce9f05d11c2b831d1d80ef0016102bf945f7f170524a
fi|64|379b08ecf665f161f54bf72dfb542d412a97bf17e307f73702fb424a4881bd6c923a70960dd615f2112ed45a7b3f74136780b4c49d8338f8747f59f0ac0325ad
fr|64|ea37ad697f9daa19f409ea4389761f2ea468888676cf421d01e9a4d9b5a0d9a7af1553de5a58741452628e60b22d774d4abb56a571bc690a5138a6acc1336ea0
fy-NL|64|70f76c3e42aa8beeb184d555b0ad438defc83a5ff4f29f2aa574a0be2d830bd2ad84a59ff3d09df8ac37dcea18c6b7ff723dd787c0e3165fd3789a27c1805d42
ga-IE|64|b5345f5ac9c444f8b1f700da95811423fa76e71d949abd324c96037f3247e261affc18aaea8de5112f03dc7edc9d452f6634395e87b11cbccdb33e3e8d9da9be
gd|64|82bdc3f050cb56f9697a3e7f83c04ba48af62bdfed75abec60c4b2d649a421b1572fc1626a033c0bc5100a29afd67ea5789aafcd0de1b89972e1fc5e88eb265a
gl|64|72381f610cfb0cf0cff41359c3f4e0731fdf54d18fa82fae6397518995d340f61506ac007ef5c90b96a0edcd1fea5dcf0f0438e6e3f39f8f67660132f3d7655a
gn|64|33198a6dd0e4b675e6dd16de79dec1c17ddb3d9efe5166757b24b225199966e14a3d35cfd132ae85e12d4ba4e9897c6ea4d352bb54ec336ad8aa66d208155c1d
gu-IN|64|9914e097644f99432320d58a53b97f698f07d91cbe33520df10a8afdf79079845112e6e97ff6f1401776db5d751bc364ec10b93441f1d248076dc98b3e2e4bc8
he|64|d3ff859b6c6c4ec3db55d1d439f425645ed0908e32a68b8027ea32468db7844129f590234bb3cb0f41930338fa33d574c9ac59483c4a3e17a6dd7d30b06ec34c
hi-IN|64|473a4f235898bf4f8fab0f7b89750052789bf4f1b99db78aea1a89a4296c26abd61cf9acd0192cdded83eef6cbf61869f72aa1ef61e3e90f5f48168ef6134647
hr|64|faf886513716426f0525e2a6f0e9b026b77d31f3cbcfe85170bcc205033bf15b0e0a358e4b2fc8efa34580671ecff1f720839b63fb760b1dee08a01f2bb58f6d
hsb|64|d00745a669beb9ebad2a8ac0deb37f6a86a6c7d130c76dfc25a1aef30921b473b09d0daf2e67ac00f44aad47bece552aff9001e11ba4059b0de79c2c49bb5d87
hu|64|c47d1a65b65578cdf7085194e669433cb8417c2738c5dea1b949a7054a293e561eb00c5c41ecf62ce969d1c8b210fa970dbd5e3bdd453922a2514206b2086078
hy-AM|64|956b389de52fa89cf510121f8c180cbca22a76d0a554b2a09bf268ef0ff0926f0b3d95e09b81e99365f3a3c6360a2a254efa243e2483ac61a8dd77998a0c9c38
ia|64|24841242bd23381f876d6e7acf7887c09bab12450e2e4e9c0f777ca50a83bf0187add582556a7e1f7995c8bb458d190fc2776683c4860557767847398880a30e
id|64|4dba46e91818e229b852eafc402056ac7fa70f08b933f062093d8bb6b68a69990d6691b9a9acd8ce2b448ea68e580d01d735964fc8edd1397b017ee39db00f7c
is|64|0ef939fff11c035c248dbaf13eac9d85a5168c952bc0513a5cc0952d6529d6351627572e85468b17d5bc38417ce76152778341fdb8830b5d99f2f99edba5c8ab
it|64|515dac7dcfbe31056a75ea0e21aaef7bb7fb5942eec1c2d87aa410327e012cc611f2aba1c20d22075052117c66d87a518e6ec5d7f8f091dd5c5ea0d51f8d87af
ja|64|c44efbb54e9104a26441df6d2700436c4933087f5ab341685eb4730c28a267a70434bda9dfb38cd70ed08e5080e5acab5862c6f341f6dd64958804d7217262f7
ka|64|6de2455621407e19d33680033ccc78babf06b553f5ee04a013870379be0bf3f1cdacc1b95995cc0a7bc9f687a3541bdb5747a8eedb7af955970dfaf1dff37b74
kab|64|efe0c92a685570816657dce9408a22ac4a23edbbd09378a5eb46d44d76ddc8525827b80405a7be096c79603b0380faa509eb2821f79457c7a57ed2cb30388664
kk|64|32db0c780f7c051bf16c6d7be1699c898ec22c79dea8ccd8e64608ef5ff4cdfa61dd2b18e8b1a35a17760e7cac8787fbabc1b09c9cef6241667d9618ad944a43
km|64|89428007416b0f7e53dec158b712597dc6693cc4eb3ae69fc6b86b231453837f7521849064de277eb03d94b132785b7c178be75ce88b1569affa5e67c028aab6
kn|64|532d42c1020aef55860b25ec52940d52ad86c9142479e8b542d24a6a547779612ce877c19d5674dbff3791aa3e1bb3cb5a8ad90c0da2247f457f5191e709540d
ko|64|42e9bea0972dff5235c71bf9e7f30c8404000a9494cd06678f4ce554fab8694f86c4b64a25ca01c7a576e90ab6ff0dd2b220c5c379ac02516754b02fc471644c
lij|64|fa4d59afb3f8d0d8f8b688b69727152cc0aafed60bac0961fc3d7e9a5dbc0f7b204a19e536b6654bf17c1f71bd75e50f505e08c352b8d28e4372dc602c27f87f
lt|64|9590902e1a3e9207f002856b776a6244a0773bbe3ff61d224201735375399371fefa94b41523813a58dbfc7cfb869302f90e50a865b3103b93cddcaedd513621
lv|64|dd09a5b8843e82fdaba6b38cbc11554b3abf20c49a2cd040ed990165d62a8b8c65bb78c348ccb9461d66a45bfd0cb9c475fd4aa8232762bca776f7916b744e55
mk|64|b61ad7e50d261ca7d99db580edbc0940f1c88a0b65ccbc44d9bfc7818b80bb441c41604480d2a383731e6ebdcf2c57023491905aa2c95573b26883358abd444b
mr|64|0b7ccc1bfecaaebee8404228e7ba5058286b69d2b8cd3a404bae01f707dddbdbd4c768c7b200bdf511f5e7082bf883f2e78c91d9e30f774dbaad8e3b7048cb76
ms|64|18b7ef77daf989c2167f95df45409f0f6cd6290f8e688759baf48e7679eb0631ee0d54f0a817846f81fb68c3f63381b16a51c541ce15c6be351e58e4b7d2240c
my|64|77d990dc71c07b1764d52171503a6c59255cc61939ed99f04e1cd2bd37ea59e65bebf43f8b8b3c3930a6b5ce5b0bd3237866a19ac74503327d3fb47a0fb07500
nb-NO|64|e6de6b259365a0922bb02def3c052156f66f5b16ceb34eeafe862eff02bad85e6663f55179484c543b19917515ed3f299df7237fe9f1992e16b0ef4acea58459
ne-NP|64|86caa91203e0a1423da8a78a57cbb4e7426b6306de390b16ba44c0ef9a00884f6627f02d5940a933497014660cd370b773c96514e9350ee42458dd59ecfc3beb
nl|64|f9c6a35bcbee6e697b7a8edb19edab12d7e27f76f92a676ce7d5dd052febbc41b9d1e1b874ffc7790ad4f98fe0ff146c4ca119e24c6381e88a4228e8201b233d
nn-NO|64|64b763f4d307226492347492a0a6c862ef6c8ee3ae36a49f6831df6abd65ee19b1d625bd6f531fc9afbba310a93c96d55f5adcf2c33d74b0008e8f191203a080
oc|64|cdeb3a764efd8f7cd150ecab85033fbd8feaaae3389735d457ce71cd161eed67fa9660332327d6e7753bca906a4480c53a1aba988a7812ca7792b98ccb42c1ad
pa-IN|64|6403e3ffd2187617b90c1f9159bdb38322f5cbc2722c9362d257b716f78f2440a8f13bb5ec6c5cb4a34d76f769a9f5045c7ecdc4a191b31db52eae099b31e0d4
pl|64|6ad6a80f332e771c967a008896d11dfe350ab36c1c1c3bb8b7bcb538227b4f7ea3d54f57a850af192ef577727fa6aa5bd7a664e52bc2ba6487a36043084d3a37
pt-BR|64|3e8d5924a2441395922b5e022703833f6febff1d7925c80597ba4f977fd8012e011f99fe508b969b4c6c65defcbf7c4e1713287955a3e34220c469a13162dbac
pt-PT|64|65dd93466d01d4a6f0a56bb66856710d10fa307d9f664bcd57a527066da1acfb2b417ba0711e711eb6e55a0029081ce39d57e2c19bfa9a2c7988f2a6c6a35a8d
rm|64|1005ae2e1f353c8f0303d682509bbed637c708ab3a3a5a4ea490b98a317edcc57c03214249f83fe62b851b859c8825e4118c01195d6cfc622c0658081c51024f
ro|64|2785d3870dfbcf21ff9e65d8a4781cd2aaf8f691fefe99469017e8460676c733b4048e04c82377d8329fe8093fd6b538d109d53c86cc41b7c14ef87242b2467e
ru|64|57e3f336796eba375ec1bbbc5b5af6fb6d6f57cae392953643a9c2f07299dd97a695b11ddcf0fd6b2a016828569e900afdd2be7913163ab9c6ce8e8e241a0489
sco|64|56a69757e94c685eb1a75b41ef3aa8dc275356ef3088accd3f8a7bb89b0f87b93b139dbf186b13df1f49e265362d5d5a8aaaf0e86a14e0e508f0b94f786e18ec
si|64|56b4f4d83e960cc4c3951d6e935c57708f68161417a3cc31066a2d61c96e87f5bd892e847b8b587dc8222024ce7fbfce2376d13680ef76ac6028b4b53b08d3bc
sk|64|508236898cd6c3f166e81520c18dc0f3cd9a6eee5a27f05362671e2c48385f5ff0555effca4c7d0ad2b837c8c180c0c6c2924a77c8c536c57cf7de46af605987
sl|64|80f78e72aceba556826fa712e0b24b7d3de8211ce8f3a7d1c55277e47ee2ab41569bf60879023594f07368e4eebf8da191a00b7161c137d870fe2c7319af751e
son|64|d85a837232396465875cf4bf62b4b30cde8902e260a2b39a7f59e7c2e7fd88b5628683969704856c2bee32ab6516793bea6ad7b7a15613fff83e2c30716e5a11
sq|64|cf88118fda7cf01d34f7ca1c73a5a9c36031e6dd7cd784c67585ad9281f60f52d03dfca2830d3d581aa585476b553024c1db953e149c0d407a0988b70b767261
sr|64|6fb3f1d474fda0ae77b63fb5475c113e299ed5ba5d00052678bdd85559fd48c8b8f09e4ae91240e871331c12f184f1e6cba7caf3d1a19865603c48296d678152
sv-SE|64|4d902aaf146f6cd75678c6780e8f99d5273cd2b3af1ff5d5b7b9644519cfd4f32f67dd2f935aa46ac7b5cb90c4392191c4e70235a2735500044b5e0ff7c20288
szl|64|cd1741d3d7365ff4f1ccd122d0725242b6c79f433f0f16bf48a6438b93be989717f78075fe14c2f04e9b544f449181c94cf16ee49354fae63cb152c91d1acb0e
ta|64|9b5daf2656a5eaff3c6ac43dc45461fbff32491e7f0ad9c4b2c004e9a61faf63d0745fee5d42d49f9d6bd18e1917fdbc46f86e5f039344ff8a847617a52c1c8f
te|64|0619853a04d8428637e72856e45741b0d4c932481eb8a8d37b85e477f1a6f214a6f77e44729d2ea8a4e5e545e76c3f4c43b04471d58f46f8d98c1ac2beda804d
th|64|b39f992685b265f1c4c4aa50b18c2a69438d2b7ac57aebbec56652aa5e27acca8edae442f2aaec081e204fd6d308b1571d4d045ff563ab4c24a2a85236612487
tl|64|3fd40bc25e7c5066d2e22a09fabbefb21a52f5c2b9a02d0987b74cfb1127b4e7e10a90ed7b567dd276149e8ce46759a75db6eedce0713b612835650c01a5548e
tr|64|2c6faafe65fdba05a3579912a1e4925426fa872d8e8ac97e4d2d848187eecd9a9b8fb52e6255b1eb96605e1745a19e4ee4aa7672ceeb961149b48d6310f0fd55
trs|64|e1bb3faa5abc5496d1422c0b50441111db120b4b6b02fe29f9f7d263c1fba1444496ba5c58e8fdeb702a71ae2c79074f4d43584ede0ebd00327dad01bf0e0d16
uk|64|ee6c09170f8fd83d809951677d38c5b4ea7037ae0c15d3b65f6fe5715cb21840de209a1ae244d7d4a8f5affccfbfa14345ea872f0dd0ece8cf348716ac56c31a
ur|64|58382b593935a0d797745556d477d73c751d75b91c02ee49a73d7348b26f4aba41cc02a1a9dafa42b33acc077ff4a1a843962dc6e933570787b9d2ab352c8a9d
uz|64|2ecdd8ca79274d8b083e2984d88d75af6c325c40199dd7d9332c67c3ab8268d67ba3e33199db482e24b134768fff2d84a54f51457ae34ac2e9cba65e59ce6444
vi|64|48a73d953149bd465e32e0cffe8acb227c3654477e78786468626278f13632507b11b5644f6839f6372cf0f16edef4016e3ee69a4d0ad83f88dc206d015b4737
xh|64|696f02ee65dd8733e61a1cbc30ef7c7ff7cbe861cbae3da3de4fe8248ec58cc991e55f3ac470a40075ef4f835ef4769c0b2163a50abb07774e454e48c60baca6
zh-CN|64|e2ea0d44088e2af9f8089751641b8bbf255cbfdf9c146b6ffa7f2f66c87951c2d26e30f06e2f43fbeb9a8da53a59831a724c8816061eb7b34ae6568a48390350
zh-TW|64|c283d4a47148e6a6da3895ccde832e26b8e842a7fb3b9730f124e4e11acef168e748b772c19967d752f84cdd28b2b20a61e2820c883c0eca0986acf25ab9c2eb

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

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

Chocolatey Pro provides runtime protection from possible malware.

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

Ground Rules:

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