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

Downloads of v 102.10.0:

31,524

Last Update:

11 Apr 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

102.10.0 | Updated: 11 Apr 2023

Downloads:

2,545,169

Downloads of v 102.10.0:

31,524

Maintainer(s):

Software Author(s):

  • Mozilla

Mozilla Firefox 102.10.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.10.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.10.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.10.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.10.0'
end

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


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

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


package { 'firefoxesr':
  ensure   => '102.10.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 11 Apr 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 '102.10.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.10.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.10.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|06d117fcc14d7f5ce8fbf06cbb557984117cecd5339b2068455b4d45d066812380eab423efe762eb1d8ea160336c38f20224cce7e8f4a955c374403bc7fb45ef
af|32|18e4751f0f7c6b6b7e8b618e46534229ff9a433131030469e77bcb5219365f63e08540dc9e2abef2fe66faae2d9f461248ab29c4040f0ef63bd6ff6149534c37
an|32|5a53609d8faea89df2c6a7537659fdd72a85e155c0bc709ee634aa7f695704372e491b02e9bc8a42c5e7b14ce6e032f0c7475a1a0f0fce90c9a89f27611d1fa5
ar|32|42ed0050370989cb8dd76b2f1ef8786d16ed13c87c20faefc72c5809f7a46881f871ed3e50cd13ddf8b34d7f7f0e9fbe577158d1ac8873be924bbb98addc3d0c
ast|32|d2e676fe2246d1bb63fb780038cbfcd543afaceebf0fe7e77443042ddf2ede03a79014b6b21cc19817894e977f6ed9cd5158afb2e175131eedaa4da0ace2fb47
az|32|391de43d5c01617c74c39077803323f47ee09585af1c9c3c300b0e440f136aeb6df05f86aa01a41a38d586af491251fe92c70c98533519360c34cbef322e7ed3
be|32|f1f1a9812d258e0da94b121f513d8c186a9ee017f9f155a62243831a4eb8b227272f3b1fc26564c20e80611b9ac2326368ee6637d1fdae598eddd3dbfb1adc01
bg|32|92c7e6faa832763d9e8017fab9bcc76aafcc0df3df14d7afb8bd611ac2639dac91abf0e4bba37e0da75557a447aa54b6f3a161e0bc44b21554572019740863e0
bn|32|5dc6b36b52adab8ae68079e58035b6f9d620dd87a4c0fc3450ea9f2ae9ce907a09e6ac38e503b727874c9c3e1e0792f755c66e84bbbd66fa008efe1b46a37974
br|32|549f47b9e9beeac778348dc1187bb78e070127b760eb800a48bf64e40cb3f6d6333b25b252736317a87a4bad5aa90e1c388188560fb4e20b11093299babc720d
bs|32|c56032818137140c69a8b1250c8f4fc6efd7e8b9663485cfd20732146fab170c71a8c600f5bdbc9bf7d128fb6278e603df31c6f9c4a7f6cb95f2479286f72050
ca-valencia|32|df6726413747941ae97226193b6e94321b6d1ea53202c4b85ff6da7b1ee1ef0b46e536456608e5abaa3c73f0fa12066c68e9bba82e021b4061dddbb59da8b5d0
ca|32|5433cb5afadd0fa8d151212a112a1cfeacc3ce31d1d6a415112191527dd5ba744d2cadf3c186029e0b71cb510bf8dfd9d466a4b84173f729b4266dbcae511120
cak|32|a15f5e5a65a2875fb8eaee7779b366cfc5832fc247575ff7343e6aa96481f2c8a7ca0db0c3ecdb5610dd37f1ccacf17e2a0dd117d710849c17eb4ff40db132a4
cs|32|ff44fb38c25026269bb1c5afb18ab31356649aeb80171389d85e107e4d29d21ad63a03d91980c574eed77dbca3cf53267a6878009e390eb1d7cfb5e02c2ef2c1
cy|32|a5fc832a69ea4131fd1d47464f5ef3b574ba64fce95d7ead09fa8b1d12e3e085e8a51f9cbf9b723072ea859229e261cf55285b0359e813ded76aedf4920748e4
da|32|43dd1897d270bfd25fb8c29527922c9e26bc94aee3f216101888da11ff3ae7a6d54154527dc093825eb9f2570be62cbdaeb059e36f792edad71203f3e09dd230
de|32|ffa8acc1d9d7f51b66d6f4152913b83523b5b680deb303628c83338d9f861cac9ad84a0678a1d6c9d41d90c49534fbe45c5e945d23537f531ae87c5224fceddf
dsb|32|d7c16a252932355a4f7348b8162d6e697e21824977a1d23f3610f0a3a876c6114c2e928d044863978809e8e9f0a1b29564fb2048f0fda1a960b747f9ce441e36
el|32|8ff9c9cadf566ddae6d167b25c26c637746985aa3fabdc2aeb65df7b988e248cbd160e863071e503624f8a09d7166af3d9a7b883faea9fe5e66c09ecbd1ba95f
en-CA|32|4d794dc98ef3b8f4b1be065ee031271310c5978cd920edef26178ee1970c8726c2f1a181fb383796eac5f5e7f9d983477b785e48dfcb1294e47066fbd66377ab
en-GB|32|f33c0af34c7f82fdb964c804f780866021de92cace44ba76737d66cddbd9e78a678a1035b312cd68a478d24f8f9dcf1c905f8ef4be62c4500689d8ce9afa49de
en-US|32|0fc42f21a624973d3ca37599037ab6e5af9060d5f149a46150cd21a1876f6ee8de814cbe7730843117f9f7da9a4692f9f0902af7a8f6d9194a24638b623177fa
eo|32|adae59e90f6378aaf650111debac5dd7ef35a350a2a6a8ebed43ffd792ce72691f2f40f4fd00f18608ff7e9aa90af00370ae3dbd458e3e9c19afd596b392c040
es-AR|32|21f70f121760e17c6a4218a1e3df3b07669b3fb7f59c64cb573f6f2605af02f1fb2fb9d54f3ea148692dcc6b989bf4c51bc2fdd328ccb028621e159b171b0a3d
es-CL|32|0ae92abf90a6ea73e08f10171900f0ba212d2c91be339bb5b5717710c4a1ece89df910eee295cda22a9764a8412ab3dbbd0608ba2370fa9ce81588423ceb4bab
es-ES|32|505b9e9840a44dc9c46aec76b6c895d352642ed69e31b94828ef587d9da3190b0332868a6fd59ef7af2982e5e4bd51105cbfd0f30efc04abe0d75bc0845dbc47
es-MX|32|b21ad9ba3863ede7311d06a13bb358431ed6fd54946d62aafe6d64e1f746ac2d26072f91ee8df35a3f1838cedd256dd1b508ace7704d0ac25c4e65246bef06af
et|32|65391e5227be06f975f43a3ea81d4ca69990426fe03b1581c1581aecd279b5f843eaec4c54af9030e5172ba2a6bbaf77450438b41ee5d68d37f319d02bf73396
eu|32|77e52d3c8862ff31082d6a70f15b72756d0c7aaba325951856e572191adc225500c747c61febbee7f69ffd6d26e09b75fa337f8410b17c6c3d2c36db778bc157
fa|32|0212c69ea5477e91cdffaf4f97dac435aa1c88f1638c9e3ba1267595e470a7b904f2e6bc4bac9da15a59c8711230b103b9669ab25019e8416918a1e0a420d7c5
ff|32|2fd83bb112f3f3a636dbcc074ca7ace363ac66ae599699c052ed60e167e6356cbdba4e15a8926a3874de2886f09cd3d09dffd21395e64fc97d7858bf0118f1cc
fi|32|bf3a7485c513f3045a3de8e4a5af944087dfb515a7b91d4de3776b8b2b8dd5ff03f710e40c7d39d9082f8ad863fe03e56bae335d24aae8065743fc1fbf3abac4
fr|32|111eb7ce1039f93a1a1d3c1b20f61b8a52c37fb04b372d2a0dfbe1b0dfee2b66ec8ec60c127fadf600aa8edcdf646333227ff26b535a3853b77d4ae4ea7019a0
fy-NL|32|94d0602371c8ea0109a8c806aa4274a20baf97649dbf314c211808ca64a9f1756da0581adac9554c7cf1cd6d803e15f28e157386da626ddbcfa39410ae1e0569
ga-IE|32|a4628ae04183dc953396685d690020e13f4db96733165eaf5bde79fcb276fe4d2b6d1c36bf588fc392cd571035d9705a04a5de8e10435e04d89f8b64d4d3c2e4
gd|32|b0718b0c002931aca17cebb72e16d70739684fb305feb13ac3df9202f15a229bdd8825fc07686b1d6e12fb580332392cf211e3629463e923b13186298ff37ed7
gl|32|ff82647e4b360fe664a9d9f243bb6b8f721037a3ffc912bb25c920932a4672d8bb6e16537cba4bbbb9a9c1c48b4f8c499639a9c3917db7bf7d0f124a3208cc63
gn|32|47682a4503eb75254da09ef9ee9e06dfa0083abf1e667c02848374ed94d666fb2629976913a4ed6a1d9a01d1a28e3d7e57f3a02ac1d68023898a7525933675c6
gu-IN|32|7ac935aba73b6bae2ae148eb0d2c4b44d8742ca434093befb14d96682882b999df8f9cbd53c4b5f47e3fc9ff6b9dcecad5256fdfcca2163704eee8b1fc3c1a89
he|32|8e244ce967a62501107f2854db1d80bfd24c80c59c36b6551e1bf853db5f39d68ed4710d9e9d76049b4ac886abc5833d95654fb347e9aaf079a6af3a9aff7083
hi-IN|32|126e97ecddf1c5049ce0164d6da6c75c1cdbbd5a4ba4901eb539fd2c921deb09434fab04c81e06469afd76d9dc50ccff65a03ee6365052b45eecc2ec69fd6582
hr|32|f29bb4dc7dadf2fdc4bdbd5fcbc8a57b8c163b82c9db526227d3ab7c27c2f4c22b8c3f2927574ae9af365d6d7c4d148b33da89a647049988fe077207e172a98a
hsb|32|a5443b39c490fc27785493f76bd9c6fc64a373dbb147036c4a5950300d62b2e902c4a9cfbfc8bbae2517c1c0d6a8f510ab22068819ca59ae7b6bf7aed893a5e3
hu|32|3cd52c7ef00fe6d8deea6364d12a99f5ab9b22bfce2b3127cfdd059c087e311ed9ee139052ed13835655b10b7f2b927878de12208e66818637c5c06baadf6bbe
hy-AM|32|3f00f1ce81d92633c8f6354ff76a562ecb0179b765c69fc645ec38815d7642123104574d02375e43310e73e88078e4b5b969876c013a63d2233141b8fe7c1b09
ia|32|a0b36a8769c0f10384f87764bfde9318dd1d906aaf3c26f0af85b916da7aa6c17141db268edc96394004adab0c091ef3ea1cd545761e0c92476826feb310818f
id|32|60c287de505eeb84d2573341dfb9c95b8a2d8ca5287971cc0c07cf94b7f9f42e9b514b0157f3af1ebaa9727f8cea1ccdb8cf07bf1b2189e1b13b9b9fb984978f
is|32|e51baa4f8314f70ae55830991b57169ca2a175267cd77268da6fbeaa994e46e9a282fe5da8122c42ccc4ffbffaa929d54207438f68f08568172daa446a31d3e0
it|32|18c1a774dc3873172c759ca45a0dfef9e085535f6ff452975ecdaf59b9c374177cb161cbf77d4c7a6e74dad261166e22c7ea4012b2867a90491171c9641c3a29
ja|32|f1c9a3eb525144654f566cd84b68bcb950fb4cfe6eabadca5e0b6766ca17e6f8244d86d4f9cebf75e43118250877edf9f3e11dc7bcb6a38b2435bc490cb26d4d
ka|32|08a666dd8f34663f1334d24be497f63e7197ef418e4988fbc5cb1c9d8df766eb7b33acd0d678851f5885bd04be2827bbaae6a4beb3c9ebd97bee4b2df015e62d
kab|32|f818199eb288066844b34551cce736cf18a52498b8f69077804084992198c464b9b5d9f88baf3a56a0ec87fd2a4f75c1461c62c161c03c5bf817a451931c6a16
kk|32|7a306371fc2503b9b79e4c56f5d85cdcb35a072a01a9ac01b20d266385d9893986fc120b46bce29986b0422a14c6ab79d7b2d1b81b2da4b5d661fda0a2ff6fe0
km|32|2369450a92fabe1775eb692d6bc49ad589f81490b728c3ac374044b6b78e51a59374440101a1ab52ef6530cda214ff46ac74031736b28cab9d9815162d34b3c0
kn|32|af81e36e502577c6a72003a791f9175a41c74401dad38b3c1f8044c1e0adac7edcba83f92073dcfbb0377be82e0ea8abeb28d1b0d6160b15be4caf79ea71187f
ko|32|9b917d58c2cbc39d44a0c18d7061cdde04c70aa178897eeb0fdc4fd1872ac76d03bc2ea94575c2d3ec5f93c5efbc77972abd66a47c7c87c779f5e2545ba3542b
lij|32|39281c544bd6d3046aaec16518f6539e3d38d4955a573a18cda5c54235850b704d9cd8c4659c9a3ce37897dcd26f4ba33114a0fc5eeda62cdc8d0167d6e82c65
lt|32|49d7575c197db9a10cfb53e130748b98c51954c43b3553ba8d6dde2235c34fe1346477a8bb696b7ad4f9900bd4d6324f180d301a363ea97aea76b566e3e15fd6
lv|32|658e5a945bd440213bf497fc50038cb3acadb3ac36bf617eeabf080d4cd617825157139ee10a45047f0d4dbcd112632632a0a543173e975957ae3fe6bf9c6a05
mk|32|061fd50ce279cf348ed7ecc85cedfeedf7dc62a5dcd2ae7f95ab4d01b7dbd81105aa5db5b2b8aa980b7c7a819c09bcfe2fa4674a19950d7b5a9b9b75af636ada
mr|32|37310dbf1d288781299c59c3f46bed192ed020e6b7c09e6ae5f266a94badc3df80e0c8605ecc9e8d9312d045a9857fed817a99a685e71c283e58536872b9688c
ms|32|8694391159947ba685ee25aabf3446b7fca121481e86af9766f246fa04a321bd4b4425bec1e6648a527cf9bea9fa512752d305c25163c0f4e22e0c8b2b628c2b
my|32|4fc45bd1daa8659d1deec52e7b786b2ed9387ce19cbe11c7e1a74b768327e822c8d2d720edbaad76faf954253d6910ee3d0a47adf3e89ddab7c62199d38ffd32
nb-NO|32|20db166ff26a625152211382e4641b6b21861ff02aee38f83825bf7a289eb0534ae22882b9d509b954125c93c08aa60d3cb2843b8f2dcf9b640f41963c3ad078
ne-NP|32|51003c0d7b6ca76cfe69ac0ad345a75de324aa4ed1e9e867c44109c2af188524f250a2b3d0e07c47310cdcec7a508ebb45e71a0eb525a28619aeda667d4adbb0
nl|32|647ab1c38e81a210d9101eaf0d15a684e19858f0635000c555f92677fe7eee80d72afd06727dddcd40e66eadf69fecc3868b0e5abf78db957ffa3a950c65ac2c
nn-NO|32|ff0016978d42891e63b9a520c655536c08409ab57242e818abfefb7792e9ddb9d7051e3d1d2728a8c9f0c62429bbcdb8026823bf661a51f02ab5a32ee12c6864
oc|32|e9a455b87cf22675efc0aba91b250eaa9f92b681aba25c35c4549c718cbc7da8dd48d1c2c70219751b657c6d9c8f82144981dc3e7fd666225ea42869c6ba27c9
pa-IN|32|b0f9d57ec1fa2f7d269df8d03179c441e3e406cb911a659a4ab8b5d6e2f4b349279a07ecda4b821c7f2a5136444f1009a7613745a1ca8db24bb550d3bd4025c9
pl|32|887ca02e660b7a62ed3e38f153c58e92c7e5a8557730c1c9b57f75736cd3fcee6071e5c32a8baa39b843a317b449f6e9d178243a215a5d0b95aaa030c6c5f2f6
pt-BR|32|0de1246e9a90138750e7bf146459f9978453a7d4b1d1a67f71e5f258d7c63814125163bbcd3efb83b3484a49c76adf271b467a9baa4ef1ced59ed87cce83a138
pt-PT|32|99575d59bf53bef8321db32e961b757ef990b245a955d8fe4d690b1c987c235ead8a63bfa91ebfdd0ad12c1b45b7b201fa4d2fe5adef25a07fdc0640edf4e465
rm|32|16f8e7ccf4bcadefc819f1c25f4d3804c22e93dba43b9a2d5c3fe5c0625fe715e490c249d9bf7123ec7bccba122ada14c57c63ec36b3e84e85386800188d1d51
ro|32|b1523f877f01907d729d9446dc9200125a843fa18014f362f3a3ef649c813194156c30e4ff68fb8e19fe70b743c211b34f3e8e9a3f16f57e4597d3c7048e5665
ru|32|6c274a77dc6852e8aa263b6bb7561d16243881e33d3aead911888d3e4f37939ddfe034dc3ed1313479f7894710f5ef3e1a924976b88400df225d1e1d8f4cdbb6
sco|32|20a79a54d489f8f0d65054dc5435f43dd9e6a93a15bf466908443007910e9e87d776e02dba0f07b8d1a60c368e97633501c9bf9956c8f7d62d20837c645f2f8b
si|32|28e42951265d6eb2cbc5fd42f8ed570e995b0774134ac5a990ed0a85d1a530514f6add7649f39dfc233a485b3593ada22258292e64695bac1291e56ec02f9b84
sk|32|6b54818cdf82f0b7ec165464b5841e3e43dfb551f4355dc6b7fcb0ee3570e45c4823e207f9d6c6463bb7794c78e90cf518a97bb864d52b4e4ec7a19701788ae9
sl|32|c7953e3f60625ab14b0f95c637f81dd735cdd4c9ff21add6847cd056b198e2f03ba1bc92bee771e7419072a023aa1710ef7659850e62ad1581311d92134a15c4
son|32|14454155b4d03711a70c50671b66a2eeaacf56a3058d9bb1436870ef80d7447c25209d2ed05353ca900e49c8348d03faf9a2ebfe4cd8701bc79a8a9af4678659
sq|32|43cce904c439dccfe908d11738f938f3e1c2b056dd0076023f237603619bb05e434dd9bf53d1b0c3282d4ff576d716fda741fb268fd99f6f6a0ce1d23f2e7ab1
sr|32|6cd529a8b4e29a2158bf8cdc31b6e68f92c13090247a41c70b0cd6dbec155ea73067e20815d529d73f79d9999182a723c63cdd1dcb9e8afa872d4ca5166f520b
sv-SE|32|8eca9ad0ddd7d8a9737995df92fdfd975dfcf684899ae22e8b6b0cc244e06a7aef0a3952f2bd21ab318e5a68d143948194b30764bd57728300b12f811453f61b
szl|32|5996fae9f6d496789f14679ec8f959f64f33e0bf7ca990f323e5106bb0e5b94bcce63773bc35c5c0435022405276063290738dd20d3faaf4a6980c256f5e158b
ta|32|8dc2bc413a4dea423242ed688601f69d1cb8a9ceab11488d63cb59f2b281b2204ed51c08d50f55e2c9ab4e9446fefb88788580ab91dec4b7edd9163a7f211c93
te|32|65686c987e0cf74d5cf03b2ec8a026aca09c390d0e0401cde1bbb20785d9e7bef71669cc57554328ebbdd10a5c3442be6a9eff85d29388cf75c5eeb48921bb13
th|32|23b9aee1b47ab93e4c855d337d1cc0e56c9b9e098df20001ecbdb9b6d169723ebf1932dcec1116b469175f71cf55c35fe37bf6cb04a7b6ab36c5cd76a8476835
tl|32|8218723485a96476b8c83feba15c94d9742dc970a211b0e873d2a0f85e086c1be84c4196b8f40fe27d01242f056cdb9b72c5b3de09dc0d17cb8abcdde6a0e274
tr|32|07ef9f4349e190e68de9900973dafaa038ba98d9ad56a31d8f16fa91deae0ee693874ba6523f0edee958c6f807f56f4de6d6b317c8f7d8b836a1f79cd0557da0
trs|32|33ed6ef7746cffb1b436c67afecbff314b329f6b2e43d16ddd6a409f90cd61668c0dffad9c6403a8252698635fdfc2c45a5d825b2352e344248ecc3c29791523
uk|32|c14a8dc47302f58a6888630144d875dcf2228ed6021ce2dea48a0c9cd6d0e25258b8f89145d9150680e296ca203afb0d6e792eee7f6ad5d96054aba48d596e78
ur|32|13e436eeb01d120608f4720ab6e7d81fa51c4026c3483f3106758e5020ce5bc8170dac4d70f24fa009fb797c7eb6f1010213df2b2288487b832d9881a84a158d
uz|32|9d343d0ece7cee5895b73ff6dcfe12961723ca4488a88876e2e8a7a4188a99212f339eac0cadd6662f5978e0d96929e4bf46d3518f79128b5498b7b4f7b0473a
vi|32|41c614380f6e4f0e1af362d622e3fd1acd26025f89858f8774ce3625f73be02e802f2a3a2a6ecbf995c2dabab6c381da296ed1bc5cee8f35a20d751c3d73bd56
xh|32|c52399e1b35a58f30c875a7605b8d1d386b8135b75958d675a2eeb5226972dcc557749091ac0a2e290eddb3e794bf2fcfd2d4bf496e8634befe7e61c65f3f0b8
zh-CN|32|e661629462e42654e231de79fe1d8d97368239a237a21fe679038bc029130d333a59ec78b133c302e9e05641260513e28d386d26cb8f4fffbcb38f12672e121b
zh-TW|32|cff68bbc8feadfaf6ec778e3ccb38bfbde396ac83eeb3930d91ad131d5dd1f7343524a015e2e32540bf42d6b86bbb0193cd7d4159381f718d8a7c3c4d36ea6cc
ach|64|5983b11a3c4feeabbf1fa0c1c8091001cf2df7c5d9ab0803b0435624d91a8f304892e38d151e97da7001c1510934ff7d512d5ad6feb74121219b5cde0754eb06
af|64|e6c3ae167d6bcc7e78b8f8d16f060ecf7d004d700132d2ab41128b185198fc9f7436e8d8242651a7739c3fc2baa9b947ab84daf488fc9ab3d20b985c09e30903
an|64|15893fd47c32d61b30c0d0ee66b8b9b802dfea05423bbc5c32d2ab814951ffdaafff6d2dcc865a92d029ee33c9d84b91f958bd501052a52936fa0cd64a859437
ar|64|be511850da5c13686ba8812ffecacdf9a5d403d87091cdaa8f2ab2f541702adbeb9c9b56d5dad6fc9a97cd99a2bea3a9364aba555efe9e9d2e7f5920a3ea519b
ast|64|e7dd7cd894673c2886fb45a551ea8220d15cdc5dece4f004b8f509b639f6c660498cfcc5a8f15e5d0751204a677b76ac3466988fefdef994311921a553b89719
az|64|64bbe5a4622e287fcd37aa2bd985981d905ce5933ee3e3dfbebec5b6ff4e9c61aa1b3b12f214943873eb465f490e64c484c71ac32da657e714b296bcc1f65bee
be|64|e48b3e43bb3c7ea8bcca39692d5413e72778e0ab724ce5f15e5aae37430ca9829359323fb3d3211153dca6a5316e1c07b1058f2037d258ba4db8af88397401c8
bg|64|24639ec21bf79970cd706053a10f9f903d96dc056884f3fff787721f7f66156fe48243f9616adb7d0ddee4c313999ccc68608b612d1e8795b1cfc788cbb0a32f
bn|64|b1b4419b02ed8d8be9bc33e8df2efbf33c389df2c89737b1debd723089c86d924754f6d259b367f4f801fc8060530d545209517309031054065c7f662c516168
br|64|e06c484c9cd4c2348eb18d5166900eacf536ef4826e3aa0e15cb28345a0a372f132315dc1e251555442e67a690eb2c1a6eedcc642bfb19e8b5df2e7887b1e7a0
bs|64|7134447d6c8e289af1b93bc5ee6227f966fd70df86a357a7262ec33e593c402e1e54c844a87e4251868a0860082252886ecc915e8d414d5893f3b2634e34f526
ca-valencia|64|ec13eca0af1bfcddcf261d209bdd552b7ff7612888432fe00fc827470a886dffd69be20afbe4b4eded8e7f49474a043c9a30d04b0f2e6a943db98be1997649e0
ca|64|ee585afb2a9031813b92ded6f787ad9f097d6c52eb3acb6ef97be05d368a585a54899ba8f0f74ecb1691cd60102db0a858366c939f8891f15777e9bf1902cc10
cak|64|4438ec6bad2a3156b392c1d9d8622f39972e5f31ab5fbea4509a01914f817bd0cc48ff306c48bd0fa1eb97d48c946f81b0722bfd10104ac297cbc4551d2fc681
cs|64|d9f5cb303820eb7b65e547aaaabea2d79e6f75f4fd4c89d259716abb3bfad4694660eb67f2821169451c38e45163c630138acdcb488a76f77e683b32f9ab029d
cy|64|7be9f8bca3fd92256b8d094e676bf1ea44e054443d7ffb2bc09ea0ff48bc98d0b27b1fc7d43bd29f4eb59e4c263ccde96ba47352be10903745ec3e397ab05fd2
da|64|867ecc915fe50f76da6820b1806a961dad507cf48482e2aeb7a64b8d1dd6a65e543d27c2c169bc32e516161c1ee2c567bcaaf0acbaab68028b182a84c866555a
de|64|c7044220160e5afc9a4ec4f24c50158c755665ff968bb4ff11e7774f8d83c170190f2fecf33a239a2790b52bb73e85e980e160f5775ebd09ebe9f8e1d4cb43ba
dsb|64|9b63a842c67eba1a4367ee1b9138c1d1824726894a74426fdcf8bec83ff033250b604043ef3286bd912747b3aa751cef97f14c9a8fa75a0788fdbfbb06fcf15c
el|64|55d628ed9edbfe917d6eb048f444db2313e4c7e860ceb935bf19a1b3719219f2c4ae145624ff7bcfd75e6299b5bbb8a4fcbcf49fdbc8ce6e2de742b818d4b5a5
en-CA|64|7681ba5b9d6f135df40f26d9231c80b47da6505273997eee442527b0c1b9936e1790557d174e1398e82f5d715d77147275335770eee4d934da1ab61e42de9e8e
en-GB|64|71e04226bdf5ff93844478cde3275085615807ded2c10989976ad31f1ed5123a250b7734ddd107a67c389b864ae498f2c18418cabe318e81308ca2aceb29aa21
en-US|64|930ffe9017352e24e44edebbc15e453bb81c990c3923a26d59f413f6de2cd6a42c1d85c6f1917c7fbb6a69f4a2d5edc7332a3ad854aff6b578d2218c6b282c9b
eo|64|d1b08ffc446c9009166980c2cb25e8dbda1f8df20c33045f3f45b874e8febeab55e4fe15452e2008df67cd5b0bd6b71ad03940fe2b142fbb4d389e9296a5dc67
es-AR|64|473cbcb85596731635f793838d979b63f2b554ebbe76ecb1365a9f4b0de9089855dc1b62714514ccea5cb378ef807cb038deae32c596d05358c57514a68bc620
es-CL|64|7fccebe0192617aa271f56ab9b8dd1993ca4948a8bd61aa853fa4a4a2efb305394810053019078fa31751fd44af40c9c32899f45e98389142aa9dbf7467ace8e
es-ES|64|37f43800484365337276b9c6a726a75513b3daf179d442678cd13900f0364e81a880302a24ca2f9c9270d0aee4dbd8538b8424bdbdab79b1d5fb0dac3876e1a6
es-MX|64|b129fe48bf45f0a28ec1eba42189f2588999b6b270047028a4ab4a8673f60c3b291a2cb262ea7249e148a6147752ad1a2a2bb3ce38cc987a703516e80df1c496
et|64|f1e692877a86516468f5cde5df8ea087951ebd9bb413e7175e4bc3aa8474a260bdf5e5c43adeabe13627f07ecdc115149f1210fe32eb60c427e4f55745b4b7a8
eu|64|b294f762de05056522b7454a11898be7c7ddfb858d5ae7ab606142241a394326e033cfb25455dead1275f82368a7aac99e7ef5a9379043a109cd0daa496d3236
fa|64|cf727c432f61cc4f23a1c696a75fa68eca2ccc50ed612d5beb89acb4189fa53c1c386800832878da43340af07858d0428053f42ba49af7e2e2fc80174f6cf50f
ff|64|6066b983d3194133c5e89e7e5ca0b08eec0ff505aced09de59b3a1a0032f656657cbcd7cc064a61f27e58d7617a358a766c6deac8e3c8391bcb8fd9e6a301ad8
fi|64|7ee234618c80fb675161096726c91b14db937d3cf53aa0a8b9932fa4f20e8696852a4be190502b5871172cc5f7e5cd7475164c8490ebef34b8a5d99d92c0af97
fr|64|b4663ae5084b46092c4eb97ed551b00e56bdfe26d1bae08fcb68e857868d29065cb338d0f4813116ff0af69687bd73fdca3d95fac7fac3a253050d5b4eea67a5
fy-NL|64|37a5b56d4ebbaf444e48e6c35b9a315dc183c1a3eb4436ae1a1c7a96467bbefe0d471a1c185f86084002d626eb5e9daa3784dd5a631cb0b093cfaabb5943d8f5
ga-IE|64|3c69b76d88221cbd22c87aa32a37f62ac21ec71398aff64a5c2909831c40e5316583e2bb2acb7d5872c46d2b60c06214c1cd724f9dc953ffd4a29d4a042e8a7d
gd|64|28e985c187e8bc14f015bec1bef1949c26770161d2d64b2f7fb036fcfd43e737669408cae41d14e01eb4318104ab4af87a1ed3cd735fac99f3232a8e12433556
gl|64|b4d3f3c7af28f49db4aa5fa9a9af4b11ab5af647cc5327af7ccd1bca818640332aba49fb893f51ca705dcb4391eb71a11fd0038743df475480c77d2447256167
gn|64|970e588440d75e6e47c5398346e3fb97ce977ef73319ca38661d510666cb894f47b841e5a43cadc9add9e0d092853a02efa62dbf71ec64b09d84d59feea4af61
gu-IN|64|cc27d414020332dd01963d94cde8b721f853606c44b529bbbfe724930a9984309e72d6c47e2e2c4687252b68eb380db8c2e4e8d62f377c162799bb71e7641aea
he|64|df4f117614e7f9b0e218411878a11d6480cdee63b0f228b0a54297a47281c292c1100edc4a1b48199e4bbf75bd8a2012ff01ecda93cd316a2b3b05d35608d845
hi-IN|64|16b9e63714d7a88d709d879de643d3d287479cdc316c640c97f5dce3c697cf8b176acf32e6a0545ca3b5098cffaf415d1302c5d6f30406ff42fccdfbf5459ccb
hr|64|3ee768fba0da2c0b50a290fc0a7100b2f5fc492acfb800d532bae10dd2ee959bf0b425aa781c939255fd11b887d4697e99b8b8ad6afd17d161c90411a981491c
hsb|64|3b31ab18910849eb91d8877de9d08e8ed8cf6756b1f88b5b5140c28082e74709671fc63c757d2e9b0624fb8f64c9741d98d50a5306d74a5e90d58679a0851241
hu|64|3ce2cb97e156ba747f9dd12f44cf95558d7d3336f940158850620e501bff5e1cffb506fa981007a8adb36dcac0a63d91784f96b34f4d768b040c450b1f87dad9
hy-AM|64|c55c66a445aace2ec7a38b7886b6c141ebed571134a5cae691d9c84f3c9431127550b20c7636d227f74871a43041de8f45c3973aeff5314c828fc5303328a2eb
ia|64|46c9450682692a8857570122240711895a3c4bd4075c6b0a8f99a22e708d3324c7450c0dd3489e21c8fdec07e1a5b00b9f1956d533f908c12dbf46de78ccb964
id|64|804c7eeeea2ea7bf96a128e797ed950f85635e6af73fe92d70eaa2c1ecb356b807ff8e91e1cb9909ed412057cae321607b6a6f2bea29637b4d27f6d33626e685
is|64|40814b3d8050fa8dfd0ffa78ab196aa9d8c00dd25d1baa16cbc39ea985d38b2607d2bb4f9579db3047199e4e20f20e9acbb04469fefa6127d022f32ca7cd0170
it|64|a073a9a62f5432b674a1759af5e7ed83dfb12ac41f2786aeb463d4f719494bd58f87f1230cb9df521e73fc738e67d3034ddba44cbaa536b8de575c4d1aae5c09
ja|64|423425620182956e4b28f1dc3b6efdd4c3f6fabfc60037d2a76e53055768d7345f363ba378ab37440d0fd1e8038480ea30fe284ae87296db8721406b4b741697
ka|64|e2b5886dc7eb0e3fbc639a84e3fd8ed75f142950d0dd439a2708125ec84c782a36b8afb235927cbe764604d0bf77bf3906b9c0ce0a68ae4e56b73a589271dc63
kab|64|99dbd108fdfc299a96e6bd7d4f8d3c5ccd0f6bdcf909e5a86bb7778ee458576cb8d65b3e95a1708ae6e0a92bb8b0d4c2d1fb045e60f042a1c5564f28d182bf58
kk|64|85b50afeeca7a23294c8b26f18bf7706dce6757304ab2909a557adaba8f04a25ae0b97ebd1e92ef3a6100048a4b2df952cbc9faed2373695889cda07bb52079e
km|64|f47e137f38c18ad8081f15c4846538abc9dc04a892045d1f266f9305f9047a7ab798515c5fc7a6d9d23b89019ccd775dee47ab6ed1765edc74cf25559880616b
kn|64|53ad7ccafe1b33061885bf652b095e4b50a532fb84bdf3ce36c14438c52998030b312c77cdc0a2d46868d96945e37994d8f9cea66ceae9c9e156d3fffb8e3bc0
ko|64|48ff8263d73f57ff2c0497c21caba1ff92a7dbe817ade3c476da882c4b2bb3fd828ed1553f46de5d6ac1df9085dd1d5c67fa84f351a7fe71f80f2278d5e1cb58
lij|64|50e43ad9a157aeb889fef20fe2e6acc2cdcb89c0754395511fe3d22afb9b8e9376e5d6836e23048e0ba90d77ee5d06b0c8f7392720329ba6f049690ccd6dd7d3
lt|64|5bb2bde34571adbc3671e3896edb177fc75e2cbb7df8438f2e743dc1cf713328e0e53ae849cb0fde16d7ac8886c65977c8dd636689b81bc01449d18729767a94
lv|64|98e526a9d32b93dfbe48239088028ce730abd002621343ddfaedf3ed06eb65e026cbd86a92e5abca065540e587b50c48a0bebbef85d010b33ffdb1bb3688f567
mk|64|9b881d359f84b79bfd3f4c594f0e1bcea01b9ba94d8e4caf85608e639ecdb45743a6f1e6e211ebe65c3c280f4d79ce7eebca4a94bde2dc9b08eee09329af79d0
mr|64|28e5d656c4d1cbacf2588b95aab0e4c8dd40ae248cc4f823f3f43541f89cc34273d70a36dc156105b12a65600d46591231b6a24cb1a5bd614eb6096bba59d6a9
ms|64|02b20fbbd7e25d78afe070059956eee8c24b53c5c33a65c7c06dc4a0d568bf19d079ab873932aa8c32a0a7f4356dde548788e549e235f0462c35600f8d8bf178
my|64|2916be58136ed2636ac6b957a51b268a3e4b43cea1bf9e646f4bf34b8756f9823ba7ca25508cb3b007f0271dda42e729294e1ec7b5b650896499ed2814b94152
nb-NO|64|c3d02407f818f19b6599cd33b58d9b085c3fdf2e025e69677d827a02fff10ca5b95b33525f104cd153c5291cfb4a39dbffdf07562946670ca8bdbc0d60bc4021
ne-NP|64|c22b6002cab9562a4d299961f84f858a7aae395dcd22d34dff3d1e9e1154eca848ddd064be20e3fa398a228811bb88b3dbe4ba2ad34c2c8b3e74eca7574cfdb6
nl|64|4a1c7e5a6e80919c93c8bdf6d4f3df0ba363a925e719b27c44db9920e21ad11cb21d45f02bcbf49b5750e80708e9ebef53e724062d1d63015cda17fb3c217e75
nn-NO|64|e85e08659bc5a9a4a24af22fe30b3f84def0f199c4f3a84adaf16dc4a6d82222feb01a5b268867d6e2a4ffd5369b3db0ad23fd979f3638bfc8bf0acc891f6aa9
oc|64|8be36d53a89860e52989c06d31e1a429968bef785bd29ba7981ff8c0a8aaa56f4c8364146ce4b984a3b25e88433c8af49bfc31d9ed4a329936edf1e53ee23c06
pa-IN|64|71ea284bfc72b0961ac0e9fd93d2355a633a1b60132f68fd95d9de4c0ab9b6608049dba7227a65125e22cb4e8dc18fd87be8ced3e4df31f5c41605990787709f
pl|64|0f3462768cc3aa8ada220d7b3bcc80011fca571eedc147f13d1479e2fe59d16a4d30177f954c86c80de1abd2787ed6d1612a62e2506212a75d5ec50858d0666b
pt-BR|64|6bdc5137469222c0ad5293aade9393518da066da7ef7542d6e475f5190649a6087b5624297f05daeb68554fabdac3a77b1b27bec32a10053b528bc55babdfd3e
pt-PT|64|71795a6685591d78252dc810774b4a59a49a92791516535b98f509011f12dd4adaaf68b8bbd452bc5039612e57734a7cf6d930dda3828eb1ca5116715df443e2
rm|64|1b09fe6bbf442d29e70bd1ed87990aa83b4700bd23ac06b3318708752d7b96c0e17ae34328149650cc8a57c0e18522dd7d8796b332394c77cb052338d4cd7dc0
ro|64|bbb128f344fbb8697150ba987553ce81f75c7ec4ffabaed5db1eced566f8999da7beeebbea1c3a17c3f9eb2c24278f4a9cacb7f02a7e5e0f7ca9c5cee9adf4d1
ru|64|f3921f731e9789ce373eb3b96505feadc08614d130d334d36fc113f72453b94dad84f71845e04cbb9b6ede6b308675b3ea3603596ab2bb2dd78fadafc0b2eb62
sco|64|11aed4c4fa2df5c2caef445d4a4ed19e2a100e1d80ccddd0db1eb0f2a8015653f81459bf79c3c0ac49589b144f911f8e2b6e3ed0e4ed23f2eeca5ec6a30e09d9
si|64|e5fddd3f85058bf3486c07de7c0f03faaa0c67845d7399190847619ece9d409971622655edd8cc7acc80595765f5bc000276d66e5834064c911a947ab3ac9f7c
sk|64|52c1598f8a62ae81c0046ce35953a5d91cf093c8c38e1b5cdbd56a8656f8af764a5cc31bcefd9c3ebf8d70a5c460fca34566c7b57e53884bb2ec5f07fe0c285e
sl|64|fbb73e76652fb043fca183245f4c353a2dddbf5eb82d745cae8fa8faba5a279f4f43a149ec7989fdf460bd7bfb55632370f1e4967ad55b2a25b4205c83f3f529
son|64|3d69661cbc83c2a0a72f31febdf5b2c1f75a3ba64671366e0510e52ddcecc33789ba3fa2cd92330ae1c8d350ebab05cefdefe44167cb44a1d190455ae83b49fc
sq|64|4e451f774d97f6d1a392b07e692dd4bef24777521f944ea6c8a9dc9f09ad4ac4c432af6b6d816bbd09812637169484bd6f7906e5953d5ed63f1deac0b2db26f8
sr|64|e079a525b817d627024dcf9ae118dd7c5d1953f8850045512077334d55b923b2b91840f90b0576f1ddfa1ec9229acdea0734d4080ac1179bda6629525c2f0229
sv-SE|64|15cef27790a3d9f815f37760b90d962196cad70f1e2db9fdab57bbaad9e264bd6baa0145ce4a36cc03733c0cf877f180b5e689b31c13c226ec523a0bd4da6897
szl|64|1cf1add9b034bb3a4ea7eb260b3635ae492a36c3b7116fc93f1c40957f579d5a1e3ee0d0169fd9a8a9814ff0a9f863238b5a75df1762b2779d47ead30669de36
ta|64|fea472d42c0a42884be93d5aefbe701ea1469aa2cfcf7bab56071d3307a25f422af6ef170b7a4595c730f1e99982a9e9afdedfb577f2e7ca8a9d10f690e101ee
te|64|cce0be2fcf51d2d339bf93a686de5bba2a1ab2969c072adbdeec3e84d91b295d2b719d5197f27270ac55502e84a6db90510ebd6cb3109a2553ac6d673d5b9d53
th|64|0f3f3750e70178137f30bbdd13facb2edd86cd63fb9c24fe1ea0c602cbf64984cac1205b906626b8376f6bbfbf1e7662c8b4e05bdb1ddfe7415af613b0b502a9
tl|64|01475233b50304cf6ccaeeb37c87cb3f3b3e8cf33330690883240ee9c8bc9d42c7bbe166be13b44115d3de7f7cfe9e453b00612bd3ab47b809e769d51a8f5931
tr|64|7a3c9b0a46d1a4c5616afee359a020e48780a79a9acc4977a20bd1c9c1c7298bd336bcd514d04cc1bb8ee4841ff57cbd420115ad0609202b9572f198d07d37fe
trs|64|9a2cc5fa3f3e2a3728f038840828728242ffca0e4a49a724e1c342e9576093196e0da6c5e52ed1eb03ce2479e4dcc2c15a895337f08812788aa8cff1fe924594
uk|64|c1420b63b90cd37df046c14321b38ec8f4ba92500e70c40b26d42b7dc73b1660d783035a81f8c161fe760ec1e7592bde96063742e0e2b9f23b6635a2c4e24933
ur|64|e511f55b37d0d2bcf4d309a65ed6b04c6ae1d5caa454b1f5b0c20170aa667d94f6e35d2c8742b91117151f500d24e0888f58988ee4bc5ff650d00e5c88269de7
uz|64|d8ad0e2bb9f5004dfeb72556ea453d79116403ce3482e72e249ce9522b8700c8505dbe2973bd42d0b4e21062ea2f99396e243a49bed4d2c0b1a4d743a173e4a7
vi|64|d5acbc584bcc2fd11fae94fd82d0521cf5d36961e270b27d236d0c3f565f244c1c9b838af9da00873208967a0216f62850138abc52149bfec76ca615a61fab89
xh|64|901a08ee44dc7ca0f2963a545224e1275ec7962f6df2a3727063f8423c4afda17b93efbaad32ab4be94a57174378741a936cd8729dbb40bfdc6d6bf1d04e527a
zh-CN|64|9327004f7e39b09c4fb5aab884c031503b57e4b5a98c673630fac051ce398d776d90d989626acf44b1c6d4c83f973ff95eb586c7fcbcf66ffb401cc90b77c6b9
zh-TW|64|c365aed308ef810fc5b6f421ca06c2660c950b451aab19b438573422fd70b8a8154de141f8bc823a20de30dde5f3f47b35d9783356679cb80955b258e42b7929

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 16422 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