diff --git a/EconDataLens.Tests/EconDataLens.Tests.csproj b/EconDataLens.Tests/EconDataLens.Tests.csproj index 731065a..ada95da 100644 --- a/EconDataLens.Tests/EconDataLens.Tests.csproj +++ b/EconDataLens.Tests/EconDataLens.Tests.csproj @@ -31,7 +31,7 @@ - + PreserveNewest diff --git a/EconDataLens.Tests/EtlParserTests/CpiAreaParserTests.cs b/EconDataLens.Tests/EtlParserTests/CpiAreaParserTests.cs index 928d32a..e9c9164 100644 --- a/EconDataLens.Tests/EtlParserTests/CpiAreaParserTests.cs +++ b/EconDataLens.Tests/EtlParserTests/CpiAreaParserTests.cs @@ -1,4 +1,4 @@ -using EconDataLens.Core.Interfaces; +using EconDataLens.Core.Interfaces; using EconDataLens.Core.Entities.Cpi; using EconDataLens.Core.Configuration; using EconDataLens.Services; @@ -8,74 +8,74 @@ namespace EconDataLens.Tests.EtlParserTests; public class CpiAreaParserTests { - private ICpiDataFileParser _parser; - - [SetUp] - public void SetUp() - { - // This isn't actually used in the test, but the parser requires it. - var blsOptions = Options.Create(new BlsOptions - { - Cpi = new CpiOptions - { - FootnoteFile = "cu.footnote" - } - }); - - // This isn't actually used in the test, but the parser requires it. - var downloadOptions = Options.Create(new DownloadOptions - { - DownloadDirectory = "downloads", - DeleteDownloadedFiles = false - }); - - _parser = new CpiDataFileParser(blsOptions, downloadOptions); - } - - [Test] - public async Task ParseCpiAreaAsync_HeaderOnly_YieldsNoResults() - { - var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "cu.area.empty"); - - var rows = new List(); - - await foreach (var row in _parser.ParseCpiAreasAsync(path)) - rows.Add(row); - - Assert.That(rows, Is.Empty); - } - - [Test] - public async Task ParseCpiAreaAsync_FileWithRecords_YieldsResults() - { - var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "cu.area.sample"); - - var rows = new List(); - - await foreach (var row in _parser.ParseCpiAreasAsync(path)) - rows.Add(row); - - Assert.That(rows, Has.Count.EqualTo(4)); - - Assert.Multiple(() => - { - Assert.That(rows[0].AreaCode, Is.EqualTo("0000")); - Assert.That(rows[0].AreaName, Is.EqualTo("U.S. city average")); - - Assert.That(rows[1].AreaCode, Is.EqualTo("0100")); - Assert.That(rows[1].AreaName, Is.EqualTo("Northeast")); - - Assert.That(rows[2].AreaCode, Is.EqualTo("0110")); - Assert.That(rows[2].AreaName, Is.EqualTo("New England")); - - Assert.That(rows[3].AreaCode, Is.EqualTo("0120")); - Assert.That(rows[3].AreaName, Is.EqualTo("Middle Atlantic")); - - // Assert row 4 throws index out of range if accessed - Assert.Throws(() => - { - var _ = rows[4].AreaCode; - }); - }); - } -} \ No newline at end of file + private ICpiDataFileParser _parser; + + [SetUp] + public void SetUp() + { + // This isn't actually used in the test, but the parser requires it. + var blsOptions = Options.Create(new BlsOptions + { + Cpi = new CpiOptions + { + FootnoteFile = "cu.footnote" + } + }); + + // This isn't actually used in the test, but the parser requires it. + var downloadOptions = Options.Create(new DownloadOptions + { + DownloadDirectory = "downloads", + DeleteDownloadedFiles = false + }); + + _parser = new CpiDataFileParser(blsOptions, downloadOptions); + } + + [Test] + public async Task ParseCpiAreaAsync_HeaderOnly_YieldsNoResults() + { + var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "ParserData", "cu.area.empty"); + + var rows = new List(); + + await foreach (var row in _parser.ParseCpiAreasAsync(path)) + rows.Add(row); + + Assert.That(rows, Is.Empty); + } + + [Test] + public async Task ParseCpiAreaAsync_FileWithRecords_YieldsResults() + { + var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "ParserData", "cu.area.sample"); + + var rows = new List(); + + await foreach (var row in _parser.ParseCpiAreasAsync(path)) + rows.Add(row); + + Assert.That(rows, Has.Count.EqualTo(4)); + + Assert.Multiple(() => + { + Assert.That(rows[0].AreaCode, Is.EqualTo("0000")); + Assert.That(rows[0].AreaName, Is.EqualTo("U.S. city average")); + + Assert.That(rows[1].AreaCode, Is.EqualTo("0100")); + Assert.That(rows[1].AreaName, Is.EqualTo("Northeast")); + + Assert.That(rows[2].AreaCode, Is.EqualTo("0110")); + Assert.That(rows[2].AreaName, Is.EqualTo("New England")); + + Assert.That(rows[3].AreaCode, Is.EqualTo("0120")); + Assert.That(rows[3].AreaName, Is.EqualTo("Middle Atlantic")); + + // Assert row 4 throws index out of range if accessed + Assert.Throws(() => + { + var _ = rows[4].AreaCode; + }); + }); + } +} diff --git a/EconDataLens.Tests/EtlParserTests/CpiDataParserTests.cs b/EconDataLens.Tests/EtlParserTests/CpiDataParserTests.cs index da64df1..27583bc 100644 --- a/EconDataLens.Tests/EtlParserTests/CpiDataParserTests.cs +++ b/EconDataLens.Tests/EtlParserTests/CpiDataParserTests.cs @@ -1,4 +1,4 @@ -using EconDataLens.Core.Configuration; +using EconDataLens.Core.Configuration; using EconDataLens.Core.Entities.Cpi; using EconDataLens.Core.Interfaces; using EconDataLens.Services; @@ -10,7 +10,7 @@ namespace EconDataLens.Tests.EtlParserTests; public class CpiDataParserTests { private ICpiDataFileParser _parser; - + [SetUp] public void SetUp() { @@ -36,12 +36,12 @@ public void SetUp() [Test] public async Task ParseCpiFootnoteAsync_HeaderOnly_YieldsNoResults() { - var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "cu.data.0.Current.empty"); + var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "ParserData", "cu.data.0.Current.empty"); var rows = new List(); await foreach (var row in _parser.ParseCpiDataAsync(path)) rows.Add(row); - + Assert.That(rows, Has.Count.EqualTo(0)); Assert.That(rows, Is.Empty); } @@ -49,14 +49,14 @@ public async Task ParseCpiFootnoteAsync_HeaderOnly_YieldsNoResults() [Test] public async Task ParseCpiDataAsync_FileWithRecords_YieldsResults() { - var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "cu.data.0.Current.sample"); + var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "ParserData", "cu.data.0.Current.sample"); var rows = new List(); - + await foreach (var row in _parser.ParseCpiDataAsync(path)) rows.Add(row); - + Assert.That(rows, Has.Count.EqualTo(2)); - + Assert.Multiple(() => { Assert.That(rows[0].SeriesId, Is.EqualTo("CUSR0000SA0")); @@ -64,7 +64,7 @@ public async Task ParseCpiDataAsync_FileWithRecords_YieldsResults() Assert.That(rows[0].Period, Is.EqualTo("M01")); Assert.That(rows[0].Value, Is.EqualTo(159.40m)); Assert.That(rows[0].FootnoteCodes, Is.Null); - + Assert.That(rows[1].SeriesId, Is.EqualTo("CUSR0000SA0")); Assert.That(rows[1].Year, Is.EqualTo(1997)); Assert.That(rows[1].Period, Is.EqualTo("M02")); @@ -72,4 +72,4 @@ public async Task ParseCpiDataAsync_FileWithRecords_YieldsResults() Assert.That(rows[1].FootnoteCodes, Is.Null); }); } -} \ No newline at end of file +} diff --git a/EconDataLens.Tests/EtlParserTests/CpiFootnoteParserTests.cs b/EconDataLens.Tests/EtlParserTests/CpiFootnoteParserTests.cs index 099c673..dcebdf2 100644 --- a/EconDataLens.Tests/EtlParserTests/CpiFootnoteParserTests.cs +++ b/EconDataLens.Tests/EtlParserTests/CpiFootnoteParserTests.cs @@ -1,4 +1,4 @@ -using EconDataLens.Core.Configuration; +using EconDataLens.Core.Configuration; using EconDataLens.Core.Entities.Cpi; using EconDataLens.Core.Interfaces; using EconDataLens.Services; @@ -37,7 +37,7 @@ public void SetUp() public async Task ParseCpiFootnoteAsync_HeaderOnly_YieldsNoResults() { // Arrange - var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "cu.footnote.empty"); + var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "ParserData", "cu.footnote.empty"); // Act var rows = new List(); @@ -53,7 +53,7 @@ public async Task ParseCpiFootnoteAsync_HeaderOnly_YieldsNoResults() public async Task ParseCpiFootnoteAsync_FileWithRecords_YieldsResults() { // Arrange - var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "cu.footnote.sample"); + var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "ParserData", "cu.footnote.sample"); // Act var rows = new List(); @@ -72,4 +72,4 @@ public async Task ParseCpiFootnoteAsync_FileWithRecords_YieldsResults() Assert.That(rows[1].FootnoteText, Is.EqualTo("This is another footnote")); }); } -} \ No newline at end of file +} diff --git a/EconDataLens.Tests/EtlParserTests/CpiItemParserTests.cs b/EconDataLens.Tests/EtlParserTests/CpiItemParserTests.cs index b223acc..65ce910 100644 --- a/EconDataLens.Tests/EtlParserTests/CpiItemParserTests.cs +++ b/EconDataLens.Tests/EtlParserTests/CpiItemParserTests.cs @@ -1,4 +1,4 @@ -using EconDataLens.Core.Interfaces; +using EconDataLens.Core.Interfaces; using EconDataLens.Core.Entities.Cpi; using EconDataLens.Core.Configuration; using EconDataLens.Services; @@ -9,7 +9,7 @@ namespace EconDataLens.Tests.EtlParserTests; public class CpiItemParserTests { private ICpiDataFileParser _parser; - + [SetUp] public void SetUp() { @@ -35,26 +35,26 @@ public void SetUp() [Test] public async Task ParseCpiItemAsync_HeaderOnly_YieldsNoResults() { - var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "cu.item.empty"); + var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "ParserData", "cu.item.empty"); var rows = new List(); - + await foreach (var row in _parser.ParseCpiItemsAsync(path)) rows.Add(row); - + Assert.That(rows, Is.Empty); } [Test] public async Task ParseCpiItemAsync_FileWithRecords_YieldsResults() { - var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "cu.item.sample"); + var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "ParserData", "cu.item.sample"); var rows = new List(); await foreach (var row in _parser.ParseCpiItemsAsync(path)) rows.Add(row); Assert.That(rows, Has.Count.EqualTo(3)); - + Assert.Multiple(() => { Assert.That(rows, Is.Not.Null); @@ -67,4 +67,4 @@ public async Task ParseCpiItemAsync_FileWithRecords_YieldsResults() }); } -} \ No newline at end of file +} diff --git a/EconDataLens.Tests/EtlParserTests/CpiPeriodParserTests.cs b/EconDataLens.Tests/EtlParserTests/CpiPeriodParserTests.cs index af53c7b..667bd55 100644 --- a/EconDataLens.Tests/EtlParserTests/CpiPeriodParserTests.cs +++ b/EconDataLens.Tests/EtlParserTests/CpiPeriodParserTests.cs @@ -1,4 +1,4 @@ -using EconDataLens.Core.Configuration; +using EconDataLens.Core.Configuration; using EconDataLens.Core.Interfaces; using EconDataLens.Core.Entities.Cpi; using EconDataLens.Services; @@ -9,7 +9,7 @@ namespace EconDataLens.Tests.EtlParserTests; public class CpiPeriodParserTests { private ICpiDataFileParser _parser; - + [SetUp] public void SetUp() { @@ -35,19 +35,19 @@ public void SetUp() [Test] public async Task ParseCpiPeriodAsync_HeaderOnly_YieldsNoResults() { - var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "cu.period.empty"); + var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "ParserData", "cu.period.empty"); var rows = new List(); - + await foreach (var row in _parser.ParseCpiPeriodsAsync(path)) rows.Add(row); - + Assert.That(rows, Is.Empty); } [Test] public async Task ParseCpiPeriodAsync_FileWithRecords_YieldsResults() { - var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "cu.period.sample"); + var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "ParserData", "cu.period.sample"); var rows = new List(); await foreach (var row in _parser.ParseCpiPeriodsAsync(path)) @@ -67,4 +67,4 @@ public async Task ParseCpiPeriodAsync_FileWithRecords_YieldsResults() }); } -} \ No newline at end of file +} diff --git a/EconDataLens.Tests/EtlParserTests/CpiSeriesParserTests.cs b/EconDataLens.Tests/EtlParserTests/CpiSeriesParserTests.cs index cf735de..01960ac 100644 --- a/EconDataLens.Tests/EtlParserTests/CpiSeriesParserTests.cs +++ b/EconDataLens.Tests/EtlParserTests/CpiSeriesParserTests.cs @@ -1,4 +1,4 @@ -using EconDataLens.Core.Interfaces; +using EconDataLens.Core.Interfaces; using EconDataLens.Core.Entities.Cpi; using EconDataLens.Core.Configuration; using EconDataLens.Services; @@ -9,7 +9,7 @@ namespace EconDataLens.Tests.EtlParserTests; public class CpiSeriesParserTests { private ICpiDataFileParser _parser; - + [SetUp] public void SetUp() { @@ -35,7 +35,7 @@ public void SetUp() [Test] public async Task ParseCpiSeriesAsync_HeaderOnly_YieldsNoResults() { - var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "cu.series.empty"); + var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "ParserData", "cu.series.empty"); var rows = new List(); await foreach (var row in _parser.ParseCpiSeriesAsync(path)) @@ -43,18 +43,18 @@ public async Task ParseCpiSeriesAsync_HeaderOnly_YieldsNoResults() Assert.That(rows, Is.Empty); } - + [Test] public async Task ParseCpiSeriesAsync_FileWithRecords_YieldsResults() { - var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "cu.series.sample"); + var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "ParserData", "cu.series.sample"); var rows = new List(); await foreach (var row in _parser.ParseCpiSeriesAsync(path)) rows.Add(row); Assert.That(rows, Has.Count.EqualTo(2)); - + Assert.Multiple(() => { Assert.That(rows, Is.Not.Null); @@ -71,7 +71,7 @@ public async Task ParseCpiSeriesAsync_FileWithRecords_YieldsResults() Assert.That(rows[0].BeginPeriod, Is.EqualTo("M01")); Assert.That(rows[0].EndYear, Is.EqualTo(2025)); Assert.That(rows[0].EndPeriod, Is.EqualTo("M08")); - + Assert.That(rows[1].SeriesId, Is.EqualTo("CUSR0000SA0E")); Assert.That(rows[1].AreaCode, Is.EqualTo("0000")); Assert.That(rows[1].ItemCode, Is.EqualTo("SA0E")); @@ -87,4 +87,4 @@ public async Task ParseCpiSeriesAsync_FileWithRecords_YieldsResults() Assert.That(rows[1].EndPeriod, Is.EqualTo("M08")); }); } -} \ No newline at end of file +} diff --git a/EconDataLens.Tests/EtlRepositoryTests/AreaEtlRepositoryTests.cs b/EconDataLens.Tests/EtlRepositoryTests/AreaEtlRepositoryTests.cs new file mode 100644 index 0000000..fdb8911 --- /dev/null +++ b/EconDataLens.Tests/EtlRepositoryTests/AreaEtlRepositoryTests.cs @@ -0,0 +1,118 @@ +using EconDataLens.Core.Entities.Cpi; +using EconDataLens.Core.Interfaces; +using EconDataLens.Core.Configuration; +using EconDataLens.Services; +using EconDataLens.Data; +using EconDataLens.Repositories; +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.Options; + +namespace EconDataLens.Tests.EtlRepositoryTests; + +public class AreaEtlTests +{ + private EconDataLensDbContext _dbContext = null!; + private ICpiDataFileParser _parser = null!; + private ICpiIngestionRepository _repository = null!; + private ICpiIngestionService _service = null!; + private string _connectionString = string.Empty; + + [SetUp] + public async Task SetUp() + { + _connectionString = PostgresFixture.ConnectionString; + var opts = new DbContextOptionsBuilder() + .UseNpgsql(_connectionString) + .UseSnakeCaseNamingConvention() + .Options; + + await DbReset.RecreateDatabaseAsync(_connectionString); + + _dbContext = new EconDataLensDbContext(opts); + + var blsOptions = Options.Create(new BlsOptions + { + Cpi = new CpiOptions + { + FootnoteFile = "cu.area.sample" + } + }); + + var downloadOptions = Options.Create(new DownloadOptions + { + DownloadDirectory = "TestData/EtlData", + DeleteDownloadedFiles = false + }); + + _parser = new CpiDataFileParser(blsOptions, downloadOptions); + _repository = new CpiIngestionRepository(_dbContext); + } + + [Test] + public async Task UpsertCpiAreaAsync_NewAreas_InsertsSuccessfully() + { + var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "EtlData", "cu.area.sample"); + + await _repository.UpsertCpiAreaAsync(_parser.ParseCpiAreasAsync(path)); + + var count = await _dbContext.CpiArea.CountAsync(); + + Assert.That(count, Is.EqualTo(58)); + + var sample = await _dbContext.CpiArea.FirstOrDefaultAsync(a => a.AreaCode == "0000"); + + Assert.That(sample, Is.Not.Null); + Assert.That(sample.AreaName, Is.EqualTo("U.S. city average")); + + sample = await _dbContext.CpiArea.FirstOrDefaultAsync(a => a.AreaCode == "S49G"); + + Assert.That(sample, Is.Not.Null); + Assert.That(sample.AreaName, Is.EqualTo("Urban Alaska")); + + } + + [Test] + public async Task UpsertCpiAreaAsync_ExistingAreas_UpdatesSuccessfully() + { + await DbReset.RecreateDatabaseAsync(_connectionString); + var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "EtlData", "cu.area.sample"); + + await _repository.UpsertCpiAreaAsync(_parser.ParseCpiAreasAsync(path)); + + var count = await _dbContext.CpiArea.CountAsync(); + + Assert.That(count, Is.EqualTo(58)); + + var sample = await _dbContext.CpiArea.FirstOrDefaultAsync(a => a.AreaCode == "0000"); + + Assert.That(sample, Is.Not.Null); + Assert.That(sample.AreaName, Is.EqualTo("U.S. city average")); + + sample = await _dbContext.CpiArea.FirstOrDefaultAsync(a => a.AreaCode == "S49G"); + + Assert.That(sample, Is.Not.Null); + Assert.That(sample.AreaName, Is.EqualTo("Urban Alaska")); + + // Ingest modified data + + path = Path.Combine(TestContext.CurrentContext.TestDirectory, "TestData", "EtlData", "cu.area.modified.sample"); + + await _repository.UpsertCpiAreaAsync(_parser.ParseCpiAreasAsync(path)); + + count = await _dbContext.CpiArea.CountAsync(); + + Assert.That(count, Is.EqualTo(58)); + + sample = await _dbContext.CpiArea.FirstOrDefaultAsync(a => a.AreaCode == "S49G"); + + Assert.That(sample, Is.Not.Null); + Assert.That(sample.AreaName, Is.EqualTo("Urban Alaska UPDATED")); + } + + [TearDown] + public async Task TearDown() + { + await _dbContext.DisposeAsync(); + } + +} diff --git a/EconDataLens.Tests/TestData/EtlData/cu.area.modified.sample b/EconDataLens.Tests/TestData/EtlData/cu.area.modified.sample new file mode 100644 index 0000000..bc2da7d --- /dev/null +++ b/EconDataLens.Tests/TestData/EtlData/cu.area.modified.sample @@ -0,0 +1,59 @@ +area_code area_name display_level selectable sort_sequence +0000 U.S. city average 0 T 1 +0100 Northeast 0 T 5 +0110 New England 1 T 10 +0120 Middle Atlantic 1 T 11 +0200 Midwest 0 T 14 +0230 East North Central 1 T 23 +0240 West North Central 1 T 24 +0300 South 0 T 28 +0350 South Atlantic 1 T 37 +0360 East South Central 1 T 38 +0370 West South Central 1 T 39 +0400 West 0 T 43 +0480 Mountain 1 T 55 +0490 Pacific 1 T 56 +A104 Pittsburgh, PA 1 T 9 +A210 Cleveland-Akron, OH 1 T 19 +A212 Milwaukee-Racine, WI 1 T 20 +A213 Cincinnati-Hamilton, OH-KY-IN 1 T 21 +A214 Kansas City, MO-KS 1 T 22 +A311 Washington-Baltimore, DC-MD-VA-WV 1 T 36 +A421 Los Angeles-Riverside-Orange County, CA 1 T 53 +A425 Portland-Salem, OR-WA 1 T 54 +D000 Size Class D 0 T 4 +D200 Midwest - Size Class D 1 T 27 +D300 South - Size Class D 1 T 42 +N000 Size Class B/C 0 T 3 +N100 Northeast - Size Class B/C 1 T 13 +N200 Midwest - Size Class B/C 1 T 26 +N300 South - Size Class B/C 1 T 41 +N400 West - Size Class B/C 1 T 58 +S000 Size Class A 0 T 2 +S100 Northeast - Size Class A 1 T 12 +S11A Boston-Cambridge-Newton, MA-NH 1 T 8 +S12A New York-Newark-Jersey City, NY-NJ-PA 1 T 6 +S12B Philadelphia-Camden-Wilmington, PA-NJ-DE-MD 1 T 7 +S200 Midwest - Size Class A 1 T 25 +S23A Chicago-Naperville-Elgin, IL-IN-WI 1 T 15 +S23B Detroit-Warren-Dearborn, MI 1 T 16 +S24A Minneapolis-St.Paul-Bloomington, MN-WI 1 T 17 +S24B St. Louis, MO-IL 1 T 18 +S300 South - Size Class A 1 T 40 +S35A Washington-Arlington-Alexandria, DC-VA-MD-WV 1 T 34 +S35B Miami-Fort Lauderdale-West Palm Beach, FL 1 T 32 +S35C Atlanta-Sandy Springs-Roswell, GA 1 T 29 +S35D Tampa-St. Petersburg-Clearwater, FL 1 T 33 +S35E Baltimore-Columbia-Towson, MD 1 T 35 +S37A Dallas-Fort Worth-Arlington, TX 1 T 30 +S37B Houston-The Woodlands-Sugar Land, TX 1 T 31 +S400 West - Size Class A 1 T 57 +S48A Phoenix-Mesa-Scottsdale, AZ 1 T 49 +S48B Denver-Aurora-Lakewood, CO 1 T 45 +S49A Los Angeles-Long Beach-Anaheim, CA 1 T 47 +S49B San Francisco-Oakland-Hayward, CA 1 T 51 +S49C Riverside-San Bernardino-Ontario, CA 1 T 48 +S49D Seattle-Tacoma-Bellevue WA 1 T 52 +S49E San Diego-Carlsbad, CA 1 T 50 +S49F Urban Hawaii 1 T 46 +S49G Urban Alaska UPDATED 1 T 44 diff --git a/EconDataLens.Tests/TestData/EtlData/cu.area.sample b/EconDataLens.Tests/TestData/EtlData/cu.area.sample new file mode 100644 index 0000000..d68ff64 --- /dev/null +++ b/EconDataLens.Tests/TestData/EtlData/cu.area.sample @@ -0,0 +1,59 @@ +area_code area_name display_level selectable sort_sequence +0000 U.S. city average 0 T 1 +0100 Northeast 0 T 5 +0110 New England 1 T 10 +0120 Middle Atlantic 1 T 11 +0200 Midwest 0 T 14 +0230 East North Central 1 T 23 +0240 West North Central 1 T 24 +0300 South 0 T 28 +0350 South Atlantic 1 T 37 +0360 East South Central 1 T 38 +0370 West South Central 1 T 39 +0400 West 0 T 43 +0480 Mountain 1 T 55 +0490 Pacific 1 T 56 +A104 Pittsburgh, PA 1 T 9 +A210 Cleveland-Akron, OH 1 T 19 +A212 Milwaukee-Racine, WI 1 T 20 +A213 Cincinnati-Hamilton, OH-KY-IN 1 T 21 +A214 Kansas City, MO-KS 1 T 22 +A311 Washington-Baltimore, DC-MD-VA-WV 1 T 36 +A421 Los Angeles-Riverside-Orange County, CA 1 T 53 +A425 Portland-Salem, OR-WA 1 T 54 +D000 Size Class D 0 T 4 +D200 Midwest - Size Class D 1 T 27 +D300 South - Size Class D 1 T 42 +N000 Size Class B/C 0 T 3 +N100 Northeast - Size Class B/C 1 T 13 +N200 Midwest - Size Class B/C 1 T 26 +N300 South - Size Class B/C 1 T 41 +N400 West - Size Class B/C 1 T 58 +S000 Size Class A 0 T 2 +S100 Northeast - Size Class A 1 T 12 +S11A Boston-Cambridge-Newton, MA-NH 1 T 8 +S12A New York-Newark-Jersey City, NY-NJ-PA 1 T 6 +S12B Philadelphia-Camden-Wilmington, PA-NJ-DE-MD 1 T 7 +S200 Midwest - Size Class A 1 T 25 +S23A Chicago-Naperville-Elgin, IL-IN-WI 1 T 15 +S23B Detroit-Warren-Dearborn, MI 1 T 16 +S24A Minneapolis-St.Paul-Bloomington, MN-WI 1 T 17 +S24B St. Louis, MO-IL 1 T 18 +S300 South - Size Class A 1 T 40 +S35A Washington-Arlington-Alexandria, DC-VA-MD-WV 1 T 34 +S35B Miami-Fort Lauderdale-West Palm Beach, FL 1 T 32 +S35C Atlanta-Sandy Springs-Roswell, GA 1 T 29 +S35D Tampa-St. Petersburg-Clearwater, FL 1 T 33 +S35E Baltimore-Columbia-Towson, MD 1 T 35 +S37A Dallas-Fort Worth-Arlington, TX 1 T 30 +S37B Houston-The Woodlands-Sugar Land, TX 1 T 31 +S400 West - Size Class A 1 T 57 +S48A Phoenix-Mesa-Scottsdale, AZ 1 T 49 +S48B Denver-Aurora-Lakewood, CO 1 T 45 +S49A Los Angeles-Long Beach-Anaheim, CA 1 T 47 +S49B San Francisco-Oakland-Hayward, CA 1 T 51 +S49C Riverside-San Bernardino-Ontario, CA 1 T 48 +S49D Seattle-Tacoma-Bellevue WA 1 T 52 +S49E San Diego-Carlsbad, CA 1 T 50 +S49F Urban Hawaii 1 T 46 +S49G Urban Alaska 1 T 44 diff --git a/EconDataLens.Tests/TestData/EtlData/cu.data.0.Current.sample b/EconDataLens.Tests/TestData/EtlData/cu.data.0.Current.sample new file mode 100644 index 0000000..ee33e9f --- /dev/null +++ b/EconDataLens.Tests/TestData/EtlData/cu.data.0.Current.sample @@ -0,0 +1,1000 @@ +series_id year period value footnote_codes +CUSR0000SA0 1997 M01 159.40 +CUSR0000SA0 1997 M02 159.70 +CUSR0000SA0 1997 M03 159.80 +CUSR0000SA0 1997 M04 159.90 +CUSR0000SA0 1997 M05 159.90 +CUSR0000SA0 1997 M06 160.20 +CUSR0000SA0 1997 M07 160.40 +CUSR0000SA0 1997 M08 160.80 +CUSR0000SA0 1997 M09 161.20 +CUSR0000SA0 1997 M10 161.50 +CUSR0000SA0 1997 M11 161.70 +CUSR0000SA0 1997 M12 161.80 +CUSR0000SA0 1998 M01 162.00 +CUSR0000SA0 1998 M02 162.00 +CUSR0000SA0 1998 M03 162.00 +CUSR0000SA0 1998 M04 162.20 +CUSR0000SA0 1998 M05 162.60 +CUSR0000SA0 1998 M06 162.80 +CUSR0000SA0 1998 M07 163.20 +CUSR0000SA0 1998 M08 163.40 +CUSR0000SA0 1998 M09 163.50 +CUSR0000SA0 1998 M10 163.90 +CUSR0000SA0 1998 M11 164.10 +CUSR0000SA0 1998 M12 164.40 +CUSR0000SA0 1999 M01 164.70 +CUSR0000SA0 1999 M02 164.70 +CUSR0000SA0 1999 M03 164.80 +CUSR0000SA0 1999 M04 165.90 +CUSR0000SA0 1999 M05 166.00 +CUSR0000SA0 1999 M06 166.00 +CUSR0000SA0 1999 M07 166.70 +CUSR0000SA0 1999 M08 167.10 +CUSR0000SA0 1999 M09 167.80 +CUSR0000SA0 1999 M10 168.10 +CUSR0000SA0 1999 M11 168.40 +CUSR0000SA0 1999 M12 168.80 +CUSR0000SA0 2000 M01 169.30 +CUSR0000SA0 2000 M02 170.00 +CUSR0000SA0 2000 M03 171.00 +CUSR0000SA0 2000 M04 170.90 +CUSR0000SA0 2000 M05 171.20 +CUSR0000SA0 2000 M06 172.20 +CUSR0000SA0 2000 M07 172.70 +CUSR0000SA0 2000 M08 172.70 +CUSR0000SA0 2000 M09 173.60 +CUSR0000SA0 2000 M10 173.90 +CUSR0000SA0 2000 M11 174.20 +CUSR0000SA0 2000 M12 174.60 +CUSR0000SA0 2001 M01 175.60 +CUSR0000SA0 2001 M02 176.00 +CUSR0000SA0 2001 M03 176.10 +CUSR0000SA0 2001 M04 176.40 +CUSR0000SA0 2001 M05 177.30 +CUSR0000SA0 2001 M06 177.70 +CUSR0000SA0 2001 M07 177.40 +CUSR0000SA0 2001 M08 177.40 +CUSR0000SA0 2001 M09 178.10 +CUSR0000SA0 2001 M10 177.60 +CUSR0000SA0 2001 M11 177.50 +CUSR0000SA0 2001 M12 177.40 +CUSR0000SA0 2002 M01 177.7 +CUSR0000SA0 2002 M02 178.0 +CUSR0000SA0 2002 M03 178.5 +CUSR0000SA0 2002 M04 179.3 +CUSR0000SA0 2002 M05 179.5 +CUSR0000SA0 2002 M06 179.6 +CUSR0000SA0 2002 M07 180.0 +CUSR0000SA0 2002 M08 180.5 +CUSR0000SA0 2002 M09 180.8 +CUSR0000SA0 2002 M10 181.2 +CUSR0000SA0 2002 M11 181.5 +CUSR0000SA0 2002 M12 181.8 +CUSR0000SA0 2003 M01 182.6 +CUSR0000SA0 2003 M02 183.6 +CUSR0000SA0 2003 M03 183.9 +CUSR0000SA0 2003 M04 183.2 +CUSR0000SA0 2003 M05 182.9 +CUSR0000SA0 2003 M06 183.1 +CUSR0000SA0 2003 M07 183.7 +CUSR0000SA0 2003 M08 184.5 +CUSR0000SA0 2003 M09 185.1 +CUSR0000SA0 2003 M10 184.9 +CUSR0000SA0 2003 M11 185.0 +CUSR0000SA0 2003 M12 185.5 +CUSR0000SA0 2004 M01 186.3 +CUSR0000SA0 2004 M02 186.7 +CUSR0000SA0 2004 M03 187.1 +CUSR0000SA0 2004 M04 187.4 +CUSR0000SA0 2004 M05 188.2 +CUSR0000SA0 2004 M06 188.9 +CUSR0000SA0 2004 M07 189.1 +CUSR0000SA0 2004 M08 189.2 +CUSR0000SA0 2004 M09 189.8 +CUSR0000SA0 2004 M10 190.8 +CUSR0000SA0 2004 M11 191.7 +CUSR0000SA0 2004 M12 191.7 +CUSR0000SA0 2005 M01 191.6 +CUSR0000SA0 2005 M02 192.4 +CUSR0000SA0 2005 M03 193.1 +CUSR0000SA0 2005 M04 193.7 +CUSR0000SA0 2005 M05 193.6 +CUSR0000SA0 2005 M06 193.7 +CUSR0000SA0 2005 M07 194.9 +CUSR0000SA0 2005 M08 196.1 +CUSR0000SA0 2005 M09 198.8 +CUSR0000SA0 2005 M10 199.1 +CUSR0000SA0 2005 M11 198.1 +CUSR0000SA0 2005 M12 198.1 +CUSR0000SA0 2006 M01 199.3 +CUSR0000SA0 2006 M02 199.4 +CUSR0000SA0 2006 M03 199.7 +CUSR0000SA0 2006 M04 200.7 +CUSR0000SA0 2006 M05 201.3 +CUSR0000SA0 2006 M06 201.8 +CUSR0000SA0 2006 M07 202.9 +CUSR0000SA0 2006 M08 203.8 +CUSR0000SA0 2006 M09 202.8 +CUSR0000SA0 2006 M10 201.9 +CUSR0000SA0 2006 M11 202.0 +CUSR0000SA0 2006 M12 203.1 +CUSR0000SA0 2007 M01 203.437 +CUSR0000SA0 2007 M02 204.226 +CUSR0000SA0 2007 M03 205.288 +CUSR0000SA0 2007 M04 205.904 +CUSR0000SA0 2007 M05 206.755 +CUSR0000SA0 2007 M06 207.234 +CUSR0000SA0 2007 M07 207.603 +CUSR0000SA0 2007 M08 207.667 +CUSR0000SA0 2007 M09 208.547 +CUSR0000SA0 2007 M10 209.190 +CUSR0000SA0 2007 M11 210.834 +CUSR0000SA0 2007 M12 211.445 +CUSR0000SA0 2008 M01 212.174 +CUSR0000SA0 2008 M02 212.687 +CUSR0000SA0 2008 M03 213.448 +CUSR0000SA0 2008 M04 213.942 +CUSR0000SA0 2008 M05 215.208 +CUSR0000SA0 2008 M06 217.463 +CUSR0000SA0 2008 M07 219.016 +CUSR0000SA0 2008 M08 218.690 +CUSR0000SA0 2008 M09 218.877 +CUSR0000SA0 2008 M10 216.995 +CUSR0000SA0 2008 M11 213.153 +CUSR0000SA0 2008 M12 211.398 +CUSR0000SA0 2009 M01 211.933 +CUSR0000SA0 2009 M02 212.705 +CUSR0000SA0 2009 M03 212.495 +CUSR0000SA0 2009 M04 212.709 +CUSR0000SA0 2009 M05 213.022 +CUSR0000SA0 2009 M06 214.790 +CUSR0000SA0 2009 M07 214.726 +CUSR0000SA0 2009 M08 215.445 +CUSR0000SA0 2009 M09 215.861 +CUSR0000SA0 2009 M10 216.509 +CUSR0000SA0 2009 M11 217.234 +CUSR0000SA0 2009 M12 217.347 +CUSR0000SA0 2010 M01 217.488 +CUSR0000SA0 2010 M02 217.281 +CUSR0000SA0 2010 M03 217.353 +CUSR0000SA0 2010 M04 217.403 +CUSR0000SA0 2010 M05 217.290 +CUSR0000SA0 2010 M06 217.199 +CUSR0000SA0 2010 M07 217.605 +CUSR0000SA0 2010 M08 217.923 +CUSR0000SA0 2010 M09 218.275 +CUSR0000SA0 2010 M10 219.035 +CUSR0000SA0 2010 M11 219.590 +CUSR0000SA0 2010 M12 220.472 +CUSR0000SA0 2011 M01 221.187 +CUSR0000SA0 2011 M02 221.898 +CUSR0000SA0 2011 M03 223.046 +CUSR0000SA0 2011 M04 224.093 +CUSR0000SA0 2011 M05 224.806 +CUSR0000SA0 2011 M06 224.806 +CUSR0000SA0 2011 M07 225.395 +CUSR0000SA0 2011 M08 226.106 +CUSR0000SA0 2011 M09 226.597 +CUSR0000SA0 2011 M10 226.750 +CUSR0000SA0 2011 M11 227.169 +CUSR0000SA0 2011 M12 227.223 +CUSR0000SA0 2012 M01 227.842 +CUSR0000SA0 2012 M02 228.329 +CUSR0000SA0 2012 M03 228.807 +CUSR0000SA0 2012 M04 229.187 +CUSR0000SA0 2012 M05 228.713 +CUSR0000SA0 2012 M06 228.524 +CUSR0000SA0 2012 M07 228.590 +CUSR0000SA0 2012 M08 229.918 +CUSR0000SA0 2012 M09 231.015 +CUSR0000SA0 2012 M10 231.638 +CUSR0000SA0 2012 M11 231.249 +CUSR0000SA0 2012 M12 231.221 +CUSR0000SA0 2013 M01 231.679 +CUSR0000SA0 2013 M02 232.937 +CUSR0000SA0 2013 M03 232.282 +CUSR0000SA0 2013 M04 231.797 +CUSR0000SA0 2013 M05 231.893 +CUSR0000SA0 2013 M06 232.445 +CUSR0000SA0 2013 M07 232.900 +CUSR0000SA0 2013 M08 233.456 +CUSR0000SA0 2013 M09 233.544 +CUSR0000SA0 2013 M10 233.669 +CUSR0000SA0 2013 M11 234.100 +CUSR0000SA0 2013 M12 234.719 +CUSR0000SA0 2014 M01 235.288 +CUSR0000SA0 2014 M02 235.547 +CUSR0000SA0 2014 M03 236.028 +CUSR0000SA0 2014 M04 236.468 +CUSR0000SA0 2014 M05 236.918 +CUSR0000SA0 2014 M06 237.231 +CUSR0000SA0 2014 M07 237.498 +CUSR0000SA0 2014 M08 237.460 +CUSR0000SA0 2014 M09 237.477 +CUSR0000SA0 2014 M10 237.430 +CUSR0000SA0 2014 M11 236.983 +CUSR0000SA0 2014 M12 236.252 +CUSR0000SA0 2015 M01 234.747 +CUSR0000SA0 2015 M02 235.342 +CUSR0000SA0 2015 M03 235.976 +CUSR0000SA0 2015 M04 236.222 +CUSR0000SA0 2015 M05 237.001 +CUSR0000SA0 2015 M06 237.657 +CUSR0000SA0 2015 M07 238.034 +CUSR0000SA0 2015 M08 238.033 +CUSR0000SA0 2015 M09 237.498 +CUSR0000SA0 2015 M10 237.733 +CUSR0000SA0 2015 M11 238.017 +CUSR0000SA0 2015 M12 237.761 +CUSR0000SA0 2016 M01 237.652 +CUSR0000SA0 2016 M02 237.336 +CUSR0000SA0 2016 M03 238.080 +CUSR0000SA0 2016 M04 238.992 +CUSR0000SA0 2016 M05 239.557 +CUSR0000SA0 2016 M06 240.222 +CUSR0000SA0 2016 M07 240.101 +CUSR0000SA0 2016 M08 240.545 +CUSR0000SA0 2016 M09 241.176 +CUSR0000SA0 2016 M10 241.741 +CUSR0000SA0 2016 M11 242.026 +CUSR0000SA0 2016 M12 242.637 +CUSR0000SA0 2017 M01 243.618 +CUSR0000SA0 2017 M02 244.006 +CUSR0000SA0 2017 M03 243.892 +CUSR0000SA0 2017 M04 244.193 +CUSR0000SA0 2017 M05 244.004 +CUSR0000SA0 2017 M06 244.163 +CUSR0000SA0 2017 M07 244.243 +CUSR0000SA0 2017 M08 245.183 +CUSR0000SA0 2017 M09 246.435 +CUSR0000SA0 2017 M10 246.626 +CUSR0000SA0 2017 M11 247.284 +CUSR0000SA0 2017 M12 247.805 +CUSR0000SA0 2018 M01 248.859 +CUSR0000SA0 2018 M02 249.529 +CUSR0000SA0 2018 M03 249.577 +CUSR0000SA0 2018 M04 250.227 +CUSR0000SA0 2018 M05 250.792 +CUSR0000SA0 2018 M06 251.018 +CUSR0000SA0 2018 M07 251.214 +CUSR0000SA0 2018 M08 251.663 +CUSR0000SA0 2018 M09 252.182 +CUSR0000SA0 2018 M10 252.772 +CUSR0000SA0 2018 M11 252.594 +CUSR0000SA0 2018 M12 252.767 +CUSR0000SA0 2019 M01 252.561 +CUSR0000SA0 2019 M02 253.319 +CUSR0000SA0 2019 M03 254.277 +CUSR0000SA0 2019 M04 255.233 +CUSR0000SA0 2019 M05 255.296 +CUSR0000SA0 2019 M06 255.213 +CUSR0000SA0 2019 M07 255.802 +CUSR0000SA0 2019 M08 256.036 +CUSR0000SA0 2019 M09 256.430 +CUSR0000SA0 2019 M10 257.155 +CUSR0000SA0 2019 M11 257.879 +CUSR0000SA0 2019 M12 258.630 +CUSR0000SA0 2020 M01 259.127 +CUSR0000SA0 2020 M02 259.250 +CUSR0000SA0 2020 M03 258.076 +CUSR0000SA0 2020 M04 256.032 +CUSR0000SA0 2020 M05 255.802 +CUSR0000SA0 2020 M06 257.042 +CUSR0000SA0 2020 M07 258.352 +CUSR0000SA0 2020 M08 259.316 +CUSR0000SA0 2020 M09 259.997 +CUSR0000SA0 2020 M10 260.319 +CUSR0000SA0 2020 M11 260.911 +CUSR0000SA0 2020 M12 262.045 +CUSR0000SA0 2021 M01 262.639 +CUSR0000SA0 2021 M02 263.573 +CUSR0000SA0 2021 M03 264.847 +CUSR0000SA0 2021 M04 266.625 +CUSR0000SA0 2021 M05 268.404 +CUSR0000SA0 2021 M06 270.710 +CUSR0000SA0 2021 M07 271.965 +CUSR0000SA0 2021 M08 272.752 +CUSR0000SA0 2021 M09 273.942 +CUSR0000SA0 2021 M10 276.528 +CUSR0000SA0 2021 M11 278.824 +CUSR0000SA0 2021 M12 280.806 +CUSR0000SA0 2022 M01 282.542 +CUSR0000SA0 2022 M02 284.525 +CUSR0000SA0 2022 M03 287.467 +CUSR0000SA0 2022 M04 288.582 +CUSR0000SA0 2022 M05 291.299 +CUSR0000SA0 2022 M06 295.072 +CUSR0000SA0 2022 M07 294.940 +CUSR0000SA0 2022 M08 295.162 +CUSR0000SA0 2022 M09 296.421 +CUSR0000SA0 2022 M10 297.979 +CUSR0000SA0 2022 M11 298.708 +CUSR0000SA0 2022 M12 298.808 +CUSR0000SA0 2023 M01 300.456 +CUSR0000SA0 2023 M02 301.476 +CUSR0000SA0 2023 M03 301.643 +CUSR0000SA0 2023 M04 302.858 +CUSR0000SA0 2023 M05 303.316 +CUSR0000SA0 2023 M06 304.099 +CUSR0000SA0 2023 M07 304.615 +CUSR0000SA0 2023 M08 306.138 +CUSR0000SA0 2023 M09 307.374 +CUSR0000SA0 2023 M10 307.653 +CUSR0000SA0 2023 M11 308.087 +CUSR0000SA0 2023 M12 308.735 +CUSR0000SA0 2024 M01 309.794 +CUSR0000SA0 2024 M02 311.022 +CUSR0000SA0 2024 M03 312.107 +CUSR0000SA0 2024 M04 313.016 +CUSR0000SA0 2024 M05 313.140 +CUSR0000SA0 2024 M06 313.131 +CUSR0000SA0 2024 M07 313.566 +CUSR0000SA0 2024 M08 314.131 +CUSR0000SA0 2024 M09 314.851 +CUSR0000SA0 2024 M10 315.564 +CUSR0000SA0 2024 M11 316.449 +CUSR0000SA0 2024 M12 317.603 +CUSR0000SA0 2025 M01 319.086 +CUSR0000SA0 2025 M02 319.775 +CUSR0000SA0 2025 M03 319.615 +CUSR0000SA0 2025 M04 320.321 +CUSR0000SA0 2025 M05 320.580 +CUSR0000SA0 2025 M06 321.500 +CUSR0000SA0 2025 M07 322.132 +CUSR0000SA0 2025 M08 323.364 +CUSR0000SA0E 1997 M01 115.2 +CUSR0000SA0E 1997 M02 115.0 +CUSR0000SA0E 1997 M03 113.0 +CUSR0000SA0E 1997 M04 111.0 +CUSR0000SA0E 1997 M05 108.8 +CUSR0000SA0E 1997 M06 110.0 +CUSR0000SA0E 1997 M07 109.1 +CUSR0000SA0E 1997 M08 110.9 +CUSR0000SA0E 1997 M09 112.4 +CUSR0000SA0E 1997 M10 111.8 +CUSR0000SA0E 1997 M11 111.4 +CUSR0000SA0E 1997 M12 109.8 +CUSR0000SA0E 1998 M01 107.5 +CUSR0000SA0E 1998 M02 105.1 +CUSR0000SA0E 1998 M03 103.3 +CUSR0000SA0E 1998 M04 102.4 +CUSR0000SA0E 1998 M05 103.2 +CUSR0000SA0E 1998 M06 103.6 +CUSR0000SA0E 1998 M07 103.3 +CUSR0000SA0E 1998 M08 102.1 +CUSR0000SA0E 1998 M09 101.3 +CUSR0000SA0E 1998 M10 101.5 +CUSR0000SA0E 1998 M11 101.1 +CUSR0000SA0E 1998 M12 100.1 +CUSR0000SA0E 1999 M01 99.7 +CUSR0000SA0E 1999 M02 99.2 +CUSR0000SA0E 1999 M03 100.4 +CUSR0000SA0E 1999 M04 105.5 +CUSR0000SA0E 1999 M05 104.9 +CUSR0000SA0E 1999 M06 104.5 +CUSR0000SA0E 1999 M07 106.7 +CUSR0000SA0E 1999 M08 109.5 +CUSR0000SA0E 1999 M09 111.8 +CUSR0000SA0E 1999 M10 112.0 +CUSR0000SA0E 1999 M11 111.5 +CUSR0000SA0E 1999 M12 113.8 +CUSR0000SA0E 2000 M01 115.0 +CUSR0000SA0E 2000 M02 118.8 +CUSR0000SA0E 2000 M03 124.3 +CUSR0000SA0E 2000 M04 120.9 +CUSR0000SA0E 2000 M05 120.0 +CUSR0000SA0E 2000 M06 126.8 +CUSR0000SA0E 2000 M07 127.3 +CUSR0000SA0E 2000 M08 123.8 +CUSR0000SA0E 2000 M09 129.2 +CUSR0000SA0E 2000 M10 129.6 +CUSR0000SA0E 2000 M11 129.2 +CUSR0000SA0E 2000 M12 130.1 +CUSR0000SA0E 2001 M01 135.0 +CUSR0000SA0E 2001 M02 134.1 +CUSR0000SA0E 2001 M03 131.7 +CUSR0000SA0E 2001 M04 132.3 +CUSR0000SA0E 2001 M05 138.4 +CUSR0000SA0E 2001 M06 136.9 +CUSR0000SA0E 2001 M07 129.6 +CUSR0000SA0E 2001 M08 127.3 +CUSR0000SA0E 2001 M09 130.9 +CUSR0000SA0E 2001 M10 122.9 +CUSR0000SA0E 2001 M11 116.9 +CUSR0000SA0E 2001 M12 113.9 +CUSR0000SA0E 2002 M01 114.2 +CUSR0000SA0E 2002 M02 113.5 +CUSR0000SA0E 2002 M03 117.6 +CUSR0000SA0E 2002 M04 121.5 +CUSR0000SA0E 2002 M05 121.9 +CUSR0000SA0E 2002 M06 121.6 +CUSR0000SA0E 2002 M07 122.4 +CUSR0000SA0E 2002 M08 123.1 +CUSR0000SA0E 2002 M09 123.7 +CUSR0000SA0E 2002 M10 126.9 +CUSR0000SA0E 2002 M11 126.7 +CUSR0000SA0E 2002 M12 127.1 +CUSR0000SA0E 2003 M01 133.5 +CUSR0000SA0E 2003 M02 140.8 +CUSR0000SA0E 2003 M03 143.9 +CUSR0000SA0E 2003 M04 136.5 +CUSR0000SA0E 2003 M05 129.4 +CUSR0000SA0E 2003 M06 129.8 +CUSR0000SA0E 2003 M07 132.2 +CUSR0000SA0E 2003 M08 137.8 +CUSR0000SA0E 2003 M09 142.9 +CUSR0000SA0E 2003 M10 137.8 +CUSR0000SA0E 2003 M11 136.9 +CUSR0000SA0E 2003 M12 138.8 +CUSR0000SA0E 2004 M01 143.9 +CUSR0000SA0E 2004 M02 145.8 +CUSR0000SA0E 2004 M03 145.1 +CUSR0000SA0E 2004 M04 143.4 +CUSR0000SA0E 2004 M05 147.6 +CUSR0000SA0E 2004 M06 151.5 +CUSR0000SA0E 2004 M07 151.1 +CUSR0000SA0E 2004 M08 151.5 +CUSR0000SA0E 2004 M09 152.9 +CUSR0000SA0E 2004 M10 158.6 +CUSR0000SA0E 2004 M11 163.8 +CUSR0000SA0E 2004 M12 162.3 +CUSR0000SA0E 2005 M01 157.2 +CUSR0000SA0E 2005 M02 161.8 +CUSR0000SA0E 2005 M03 163.5 +CUSR0000SA0E 2005 M04 166.7 +CUSR0000SA0E 2005 M05 163.3 +CUSR0000SA0E 2005 M06 163.7 +CUSR0000SA0E 2005 M07 172.8 +CUSR0000SA0E 2005 M08 183.5 +CUSR0000SA0E 2005 M09 208.2 +CUSR0000SA0E 2005 M10 205.9 +CUSR0000SA0E 2005 M11 191.0 +CUSR0000SA0E 2005 M12 187.6 +CUSR0000SA0E 2006 M01 196.6 +CUSR0000SA0E 2006 M02 194.1 +CUSR0000SA0E 2006 M03 192.0 +CUSR0000SA0E 2006 M04 198.5 +CUSR0000SA0E 2006 M05 199.8 +CUSR0000SA0E 2006 M06 199.8 +CUSR0000SA0E 2006 M07 207.9 +CUSR0000SA0E 2006 M08 211.9 +CUSR0000SA0E 2006 M09 198.1 +CUSR0000SA0E 2006 M10 184.1 +CUSR0000SA0E 2006 M11 184.1 +CUSR0000SA0E 2006 M12 192.7 +CUSR0000SA0E 2007 M01 190.281 +CUSR0000SA0E 2007 M02 192.310 +CUSR0000SA0E 2007 M03 200.206 +CUSR0000SA0E 2007 M04 203.307 +CUSR0000SA0E 2007 M05 208.635 +CUSR0000SA0E 2007 M06 209.799 +CUSR0000SA0E 2007 M07 209.639 +CUSR0000SA0E 2007 M08 206.412 +CUSR0000SA0E 2007 M09 210.742 +CUSR0000SA0E 2007 M10 212.386 +CUSR0000SA0E 2007 M11 223.814 +CUSR0000SA0E 2007 M12 225.649 +CUSR0000SA0E 2008 M01 226.775 +CUSR0000SA0E 2008 M02 229.731 +CUSR0000SA0E 2008 M03 233.349 +CUSR0000SA0E 2008 M04 234.778 +CUSR0000SA0E 2008 M05 243.924 +CUSR0000SA0E 2008 M06 262.081 +CUSR0000SA0E 2008 M07 271.149 +CUSR0000SA0E 2008 M08 262.566 +CUSR0000SA0E 2008 M09 260.125 +CUSR0000SA0E 2008 M10 238.065 +CUSR0000SA0E 2008 M11 195.155 +CUSR0000SA0E 2008 M12 176.583 +CUSR0000SA0E 2009 M01 178.661 +CUSR0000SA0E 2009 M02 183.721 +CUSR0000SA0E 2009 M03 178.415 +CUSR0000SA0E 2009 M04 177.552 +CUSR0000SA0E 2009 M05 179.830 +CUSR0000SA0E 2009 M06 197.033 +CUSR0000SA0E 2009 M07 195.778 +CUSR0000SA0E 2009 M08 201.583 +CUSR0000SA0E 2009 M09 202.777 +CUSR0000SA0E 2009 M10 204.719 +CUSR0000SA0E 2009 M11 210.932 +CUSR0000SA0E 2009 M12 209.915 +CUSR0000SA0E 2010 M01 212.807 +CUSR0000SA0E 2010 M02 209.624 +CUSR0000SA0E 2010 M03 209.326 +CUSR0000SA0E 2010 M04 209.219 +CUSR0000SA0E 2010 M05 206.631 +CUSR0000SA0E 2010 M06 203.764 +CUSR0000SA0E 2010 M07 206.877 +CUSR0000SA0E 2010 M08 208.770 +CUSR0000SA0E 2010 M09 209.832 +CUSR0000SA0E 2010 M10 216.710 +CUSR0000SA0E 2010 M11 219.496 +CUSR0000SA0E 2010 M12 227.130 +CUSR0000SA0E 2011 M01 229.258 +CUSR0000SA0E 2011 M02 232.068 +CUSR0000SA0E 2011 M03 240.079 +CUSR0000SA0E 2011 M04 247.977 +CUSR0000SA0E 2011 M05 250.744 +CUSR0000SA0E 2011 M06 245.534 +CUSR0000SA0E 2011 M07 246.187 +CUSR0000SA0E 2011 M08 246.880 +CUSR0000SA0E 2011 M09 248.550 +CUSR0000SA0E 2011 M10 246.655 +CUSR0000SA0E 2011 M11 247.640 +CUSR0000SA0E 2011 M12 243.353 +CUSR0000SA0E 2012 M01 244.876 +CUSR0000SA0E 2012 M02 248.898 +CUSR0000SA0E 2012 M03 249.742 +CUSR0000SA0E 2012 M04 249.677 +CUSR0000SA0E 2012 M05 241.806 +CUSR0000SA0E 2012 M06 235.897 +CUSR0000SA0E 2012 M07 233.568 +CUSR0000SA0E 2012 M08 244.987 +CUSR0000SA0E 2012 M09 252.987 +CUSR0000SA0E 2012 M10 256.017 +CUSR0000SA0E 2012 M11 248.819 +CUSR0000SA0E 2012 M12 244.708 +CUSR0000SA0E 2013 M01 245.025 +CUSR0000SA0E 2013 M02 255.696 +CUSR0000SA0E 2013 M03 246.595 +CUSR0000SA0E 2013 M04 240.473 +CUSR0000SA0E 2013 M05 240.468 +CUSR0000SA0E 2013 M06 242.711 +CUSR0000SA0E 2013 M07 242.986 +CUSR0000SA0E 2013 M08 244.833 +CUSR0000SA0E 2013 M09 242.745 +CUSR0000SA0E 2013 M10 241.954 +CUSR0000SA0E 2013 M11 242.718 +CUSR0000SA0E 2013 M12 245.733 +CUSR0000SA0E 2014 M01 250.340 +CUSR0000SA0E 2014 M02 249.925 +CUSR0000SA0E 2014 M03 249.961 +CUSR0000SA0E 2014 M04 249.864 +CUSR0000SA0E 2014 M05 249.213 +CUSR0000SA0E 2014 M06 249.714 +CUSR0000SA0E 2014 M07 248.744 +CUSR0000SA0E 2014 M08 245.699 +CUSR0000SA0E 2014 M09 241.610 +CUSR0000SA0E 2014 M10 237.061 +CUSR0000SA0E 2014 M11 229.016 +CUSR0000SA0E 2014 M12 218.536 +CUSR0000SA0E 2015 M01 199.926 +CUSR0000SA0E 2015 M02 203.021 +CUSR0000SA0E 2015 M03 205.757 +CUSR0000SA0E 2015 M04 203.577 +CUSR0000SA0E 2015 M05 208.973 +CUSR0000SA0E 2015 M06 212.015 +CUSR0000SA0E 2015 M07 211.623 +CUSR0000SA0E 2015 M08 208.579 +CUSR0000SA0E 2015 M09 197.246 +CUSR0000SA0E 2015 M10 195.616 +CUSR0000SA0E 2015 M11 195.114 +CUSR0000SA0E 2015 M12 190.143 +CUSR0000SA0E 2016 M01 185.235 +CUSR0000SA0E 2016 M02 176.401 +CUSR0000SA0E 2016 M03 182.234 +CUSR0000SA0E 2016 M04 186.713 +CUSR0000SA0E 2016 M05 188.596 +CUSR0000SA0E 2016 M06 192.899 +CUSR0000SA0E 2016 M07 189.046 +CUSR0000SA0E 2016 M08 188.772 +CUSR0000SA0E 2016 M09 192.243 +CUSR0000SA0E 2016 M10 195.979 +CUSR0000SA0E 2016 M11 196.372 +CUSR0000SA0E 2016 M12 199.513 +CUSR0000SA0E 2017 M01 205.369 +CUSR0000SA0E 2017 M02 204.133 +CUSR0000SA0E 2017 M03 202.528 +CUSR0000SA0E 2017 M04 202.954 +CUSR0000SA0E 2017 M05 198.449 +CUSR0000SA0E 2017 M06 197.808 +CUSR0000SA0E 2017 M07 195.994 +CUSR0000SA0E 2017 M08 201.450 +CUSR0000SA0E 2017 M09 212.723 +CUSR0000SA0E 2017 M10 208.328 +CUSR0000SA0E 2017 M11 213.047 +CUSR0000SA0E 2017 M12 213.574 +CUSR0000SA0E 2018 M01 216.855 +CUSR0000SA0E 2018 M02 220.141 +CUSR0000SA0E 2018 M03 215.720 +CUSR0000SA0E 2018 M04 219.165 +CUSR0000SA0E 2018 M05 221.045 +CUSR0000SA0E 2018 M06 220.947 +CUSR0000SA0E 2018 M07 219.929 +CUSR0000SA0E 2018 M08 222.781 +CUSR0000SA0E 2018 M09 223.955 +CUSR0000SA0E 2018 M10 226.022 +CUSR0000SA0E 2018 M11 218.500 +CUSR0000SA0E 2018 M12 213.630 +CUSR0000SA0E 2019 M01 204.340 +CUSR0000SA0E 2019 M02 208.144 +CUSR0000SA0E 2019 M03 214.934 +CUSR0000SA0E 2019 M04 222.420 +CUSR0000SA0E 2019 M05 220.523 +CUSR0000SA0E 2019 M06 214.926 +CUSR0000SA0E 2019 M07 216.696 +CUSR0000SA0E 2019 M08 213.847 +CUSR0000SA0E 2019 M09 213.015 +CUSR0000SA0E 2019 M10 215.268 +CUSR0000SA0E 2019 M11 217.488 +CUSR0000SA0E 2019 M12 221.180 +CUSR0000SA0E 2020 M01 220.147 +CUSR0000SA0E 2020 M02 214.294 +CUSR0000SA0E 2020 M03 201.681 +CUSR0000SA0E 2020 M04 182.586 +CUSR0000SA0E 2020 M05 180.040 +CUSR0000SA0E 2020 M06 188.734 +CUSR0000SA0E 2020 M07 191.966 +CUSR0000SA0E 2020 M08 193.307 +CUSR0000SA0E 2020 M09 196.705 +CUSR0000SA0E 2020 M10 196.113 +CUSR0000SA0E 2020 M11 197.017 +CUSR0000SA0E 2020 M12 205.670 +CUSR0000SA0E 2021 M01 211.551 +CUSR0000SA0E 2021 M02 219.204 +CUSR0000SA0E 2021 M03 228.068 +CUSR0000SA0E 2021 M04 227.637 +CUSR0000SA0E 2021 M05 230.260 +CUSR0000SA0E 2021 M06 234.697 +CUSR0000SA0E 2021 M07 237.425 +CUSR0000SA0E 2021 M08 241.446 +CUSR0000SA0E 2021 M09 245.525 +CUSR0000SA0E 2021 M10 254.669 +CUSR0000SA0E 2021 M11 262.745 +CUSR0000SA0E 2021 M12 267.047 +CUSR0000SA0E 2022 M01 269.670 +CUSR0000SA0E 2022 M02 275.672 +CUSR0000SA0E 2022 M03 300.345 +CUSR0000SA0E 2022 M04 296.071 +CUSR0000SA0E 2022 M05 309.418 +CUSR0000SA0E 2022 M06 332.281 +CUSR0000SA0E 2022 M07 314.944 +CUSR0000SA0E 2022 M08 298.772 +CUSR0000SA0E 2022 M09 294.581 +CUSR0000SA0E 2022 M10 299.791 +CUSR0000SA0E 2022 M11 297.403 +CUSR0000SA0E 2022 M12 285.672 +CUSR0000SA0E 2023 M01 292.447 +CUSR0000SA0E 2023 M02 289.134 +CUSR0000SA0E 2023 M03 280.323 +CUSR0000SA0E 2023 M04 281.500 +CUSR0000SA0E 2023 M05 274.466 +CUSR0000SA0E 2023 M06 277.109 +CUSR0000SA0E 2023 M07 275.900 +CUSR0000SA0E 2023 M08 287.508 +CUSR0000SA0E 2023 M09 293.194 +CUSR0000SA0E 2023 M10 286.478 +CUSR0000SA0E 2023 M11 281.732 +CUSR0000SA0E 2023 M12 280.311 +CUSR0000SA0E 2024 M01 280.238 +CUSR0000SA0E 2024 M02 283.983 +CUSR0000SA0E 2024 M03 285.463 +CUSR0000SA0E 2024 M04 288.138 +CUSR0000SA0E 2024 M05 284.275 +CUSR0000SA0E 2024 M06 279.824 +CUSR0000SA0E 2024 M07 278.634 +CUSR0000SA0E 2024 M08 275.863 +CUSR0000SA0E 2024 M09 273.238 +CUSR0000SA0E 2024 M10 272.629 +CUSR0000SA0E 2024 M11 272.863 +CUSR0000SA0E 2024 M12 279.455 +CUSR0000SA0E 2025 M01 282.481 +CUSR0000SA0E 2025 M02 283.035 +CUSR0000SA0E 2025 M03 276.274 +CUSR0000SA0E 2025 M04 278.118 +CUSR0000SA0E 2025 M05 275.406 +CUSR0000SA0E 2025 M06 278.012 +CUSR0000SA0E 2025 M07 275.044 +CUSR0000SA0E 2025 M08 276.936 +CUSR0000SA0L1 1997 M01 160.0 +CUSR0000SA0L1 1997 M02 160.3 +CUSR0000SA0L1 1997 M03 160.4 +CUSR0000SA0L1 1997 M04 160.5 +CUSR0000SA0L1 1997 M05 160.5 +CUSR0000SA0L1 1997 M06 160.8 +CUSR0000SA0L1 1997 M07 161.0 +CUSR0000SA0L1 1997 M08 161.3 +CUSR0000SA0L1 1997 M09 161.8 +CUSR0000SA0L1 1997 M10 162.1 +CUSR0000SA0L1 1997 M11 162.2 +CUSR0000SA0L1 1997 M12 162.4 +CUSR0000SA0L1 1998 M01 162.4 +CUSR0000SA0L1 1998 M02 162.4 +CUSR0000SA0L1 1998 M03 162.4 +CUSR0000SA0L1 1998 M04 162.6 +CUSR0000SA0L1 1998 M05 163.1 +CUSR0000SA0L1 1998 M06 163.3 +CUSR0000SA0L1 1998 M07 163.6 +CUSR0000SA0L1 1998 M08 163.9 +CUSR0000SA0L1 1998 M09 163.9 +CUSR0000SA0L1 1998 M10 164.2 +CUSR0000SA0L1 1998 M11 164.4 +CUSR0000SA0L1 1998 M12 164.8 +CUSR0000SA0L1 1999 M01 165.0 +CUSR0000SA0L1 1999 M02 164.9 +CUSR0000SA0L1 1999 M03 165.1 +CUSR0000SA0L1 1999 M04 166.3 +CUSR0000SA0L1 1999 M05 166.4 +CUSR0000SA0L1 1999 M06 166.5 +CUSR0000SA0L1 1999 M07 167.1 +CUSR0000SA0L1 1999 M08 167.6 +CUSR0000SA0L1 1999 M09 168.4 +CUSR0000SA0L1 1999 M10 168.7 +CUSR0000SA0L1 1999 M11 168.9 +CUSR0000SA0L1 1999 M12 169.4 +CUSR0000SA0L1 2000 M01 170.0 +CUSR0000SA0L1 2000 M02 170.7 +CUSR0000SA0L1 2000 M03 171.8 +CUSR0000SA0L1 2000 M04 171.7 +CUSR0000SA0L1 2000 M05 171.9 +CUSR0000SA0L1 2000 M06 173.1 +CUSR0000SA0L1 2000 M07 173.5 +CUSR0000SA0L1 2000 M08 173.4 +CUSR0000SA0L1 2000 M09 174.5 +CUSR0000SA0L1 2000 M10 174.7 +CUSR0000SA0L1 2000 M11 175.1 +CUSR0000SA0L1 2000 M12 175.4 +CUSR0000SA0L1 2001 M01 176.6 +CUSR0000SA0L1 2001 M02 176.8 +CUSR0000SA0L1 2001 M03 176.9 +CUSR0000SA0L1 2001 M04 177.2 +CUSR0000SA0L1 2001 M05 178.2 +CUSR0000SA0L1 2001 M06 178.6 +CUSR0000SA0L1 2001 M07 178.1 +CUSR0000SA0L1 2001 M08 178.1 +CUSR0000SA0L1 2001 M09 178.8 +CUSR0000SA0L1 2001 M10 178.1 +CUSR0000SA0L1 2001 M11 178.0 +CUSR0000SA0L1 2001 M12 177.8 +CUSR0000SA0L1 2002 M01 178.1 +CUSR0000SA0L1 2002 M02 178.4 +CUSR0000SA0L1 2002 M03 178.9 +CUSR0000SA0L1 2002 M04 179.8 +CUSR0000SA0L1 2002 M05 180.1 +CUSR0000SA0L1 2002 M06 180.3 +CUSR0000SA0L1 2002 M07 180.7 +CUSR0000SA0L1 2002 M08 181.3 +CUSR0000SA0L1 2002 M09 181.5 +CUSR0000SA0L1 2002 M10 182.0 +CUSR0000SA0L1 2002 M11 182.3 +CUSR0000SA0L1 2002 M12 182.6 +CUSR0000SA0L1 2003 M01 183.6 +CUSR0000SA0L1 2003 M02 184.5 +CUSR0000SA0L1 2003 M03 184.8 +CUSR0000SA0L1 2003 M04 184.0 +CUSR0000SA0L1 2003 M05 183.6 +CUSR0000SA0L1 2003 M06 183.7 +CUSR0000SA0L1 2003 M07 184.3 +CUSR0000SA0L1 2003 M08 185.1 +CUSR0000SA0L1 2003 M09 185.8 +CUSR0000SA0L1 2003 M10 185.5 +CUSR0000SA0L1 2003 M11 185.4 +CUSR0000SA0L1 2003 M12 185.8 +CUSR0000SA0L1 2004 M01 186.8 +CUSR0000SA0L1 2004 M02 187.2 +CUSR0000SA0L1 2004 M03 187.6 +CUSR0000SA0L1 2004 M04 187.8 +CUSR0000SA0L1 2004 M05 188.6 +CUSR0000SA0L1 2004 M06 189.3 +CUSR0000SA0L1 2004 M07 189.4 +CUSR0000SA0L1 2004 M08 189.6 +CUSR0000SA0L1 2004 M09 190.3 +CUSR0000SA0L1 2004 M10 191.3 +CUSR0000SA0L1 2004 M11 192.3 +CUSR0000SA0L1 2004 M12 192.3 +CUSR0000SA0L1 2005 M01 192.1 +CUSR0000SA0L1 2005 M02 193.0 +CUSR0000SA0L1 2005 M03 193.8 +CUSR0000SA0L1 2005 M04 194.3 +CUSR0000SA0L1 2005 M05 194.1 +CUSR0000SA0L1 2005 M06 194.3 +CUSR0000SA0L1 2005 M07 195.6 +CUSR0000SA0L1 2005 M08 197.0 +CUSR0000SA0L1 2005 M09 200.0 +CUSR0000SA0L1 2005 M10 200.3 +CUSR0000SA0L1 2005 M11 199.1 +CUSR0000SA0L1 2005 M12 199.0 +CUSR0000SA0L1 2006 M01 200.3 +CUSR0000SA0L1 2006 M02 200.3 +CUSR0000SA0L1 2006 M03 200.7 +CUSR0000SA0L1 2006 M04 201.9 +CUSR0000SA0L1 2006 M05 202.6 +CUSR0000SA0L1 2006 M06 203.0 +CUSR0000SA0L1 2006 M07 204.2 +CUSR0000SA0L1 2006 M08 205.1 +CUSR0000SA0L1 2006 M09 203.9 +CUSR0000SA0L1 2006 M10 202.8 +CUSR0000SA0L1 2006 M11 202.9 +CUSR0000SA0L1 2006 M12 204.1 +CUSR0000SA0L1 2007 M01 204.297 +CUSR0000SA0L1 2007 M02 204.992 +CUSR0000SA0L1 2007 M03 206.114 +CUSR0000SA0L1 2007 M04 206.747 +CUSR0000SA0L1 2007 M05 207.609 +CUSR0000SA0L1 2007 M06 208.032 +CUSR0000SA0L1 2007 M07 208.349 +CUSR0000SA0L1 2007 M08 208.295 +CUSR0000SA0L1 2007 M09 209.157 +CUSR0000SA0L1 2007 M10 209.799 +CUSR0000SA0L1 2007 M11 211.575 +CUSR0000SA0L1 2007 M12 212.225 +CUSR0000SA0L1 2008 M01 212.866 +CUSR0000SA0L1 2008 M02 213.336 +CUSR0000SA0L1 2008 M03 214.153 +CUSR0000SA0L1 2008 M04 214.432 +CUSR0000SA0L1 2008 M05 215.760 +CUSR0000SA0L1 2008 M06 218.168 +CUSR0000SA0L1 2008 M07 219.632 +CUSR0000SA0L1 2008 M08 219.074 +CUSR0000SA0L1 2008 M09 219.090 +CUSR0000SA0L1 2008 M10 216.751 +CUSR0000SA0L1 2008 M11 212.215 +CUSR0000SA0L1 2008 M12 210.172 +CUSR0000SA0L1 2009 M01 210.769 +CUSR0000SA0L1 2009 M02 211.713 +CUSR0000SA0L1 2009 M03 211.541 +CUSR0000SA0L1 2009 M04 211.845 +CUSR0000SA0L1 2009 M05 212.268 +CUSR0000SA0L1 2009 M06 214.326 +CUSR0000SA0L1 2009 M07 214.321 +CUSR0000SA0L1 2009 M08 215.159 +CUSR0000SA0L1 2009 M09 215.663 +CUSR0000SA0L1 2009 M10 216.385 +CUSR0000SA0L1 2009 M11 217.207 +CUSR0000SA0L1 2009 M12 217.286 +CUSR0000SA0L1 2010 M01 217.351 +CUSR0000SA0L1 2010 M02 217.101 +CUSR0000SA0L1 2010 M03 217.115 +CUSR0000SA0L1 2010 M04 217.138 +CUSR0000SA0L1 2010 M05 216.988 +CUSR0000SA0L1 2010 M06 216.890 +CUSR0000SA0L1 2010 M07 217.369 +CUSR0000SA0L1 2010 M08 217.698 +CUSR0000SA0L1 2010 M09 217.988 +CUSR0000SA0L1 2010 M10 218.821 +CUSR0000SA0L1 2010 M11 219.397 +CUSR0000SA0L1 2010 M12 220.376 +CUSR0000SA0L1 2011 M01 221.006 +CUSR0000SA0L1 2011 M02 221.665 +CUSR0000SA0L1 2011 M03 222.725 +CUSR0000SA0L1 2011 M04 223.802 +CUSR0000SA0L1 2011 M05 224.490 +CUSR0000SA0L1 2011 M06 224.400 +CUSR0000SA0L1 2011 M07 224.929 +CUSR0000SA0L1 2011 M08 225.571 +CUSR0000SA0L1 2011 M09 225.974 +CUSR0000SA0L1 2011 M10 226.116 +CUSR0000SA0L1 2011 M11 226.567 +CUSR0000SA0L1 2011 M12 226.561 +CUSR0000SA0L1 2012 M01 227.180 +CUSR0000SA0L1 2012 M02 227.758 +CUSR0000SA0L1 2012 M03 228.240 +CUSR0000SA0L1 2012 M04 228.609 +CUSR0000SA0L1 2012 M05 228.028 +CUSR0000SA0L1 2012 M06 227.734 +CUSR0000SA0L1 2012 M07 227.784 +CUSR0000SA0L1 2012 M08 229.264 +CUSR0000SA0L1 2012 M09 230.513 +CUSR0000SA0L1 2012 M10 231.165 +CUSR0000SA0L1 2012 M11 230.647 +CUSR0000SA0L1 2012 M12 230.546 +CUSR0000SA0L1 2013 M01 231.023 +CUSR0000SA0L1 2013 M02 232.489 +CUSR0000SA0L1 2013 M03 231.692 +CUSR0000SA0L1 2013 M04 231.056 +CUSR0000SA0L1 2013 M05 231.200 +CUSR0000SA0L1 2013 M06 231.757 +CUSR0000SA0L1 2013 M07 232.252 +CUSR0000SA0L1 2013 M08 232.856 +CUSR0000SA0L1 2013 M09 232.947 +CUSR0000SA0L1 2013 M10 233.055 +CUSR0000SA0L1 2013 M11 233.524 +CUSR0000SA0L1 2013 M12 234.205 +CUSR0000SA0L1 2014 M01 234.808 +CUSR0000SA0L1 2014 M02 234.964 +CUSR0000SA0L1 2014 M03 235.357 +CUSR0000SA0L1 2014 M04 235.742 +CUSR0000SA0L1 2014 M05 236.079 +CUSR0000SA0L1 2014 M06 236.403 +CUSR0000SA0L1 2014 M07 236.619 +CUSR0000SA0L1 2014 M08 236.488 +CUSR0000SA0L1 2014 M09 236.400 +CUSR0000SA0L1 2014 M10 236.284 +CUSR0000SA0L1 2014 M11 235.684 +CUSR0000SA0L1 2014 M12 234.705 +CUSR0000SA0L1 2015 M01 232.969 +CUSR0000SA0L1 2015 M02 233.611 +CUSR0000SA0L1 2015 M03 234.411 +CUSR0000SA0L1 2015 M04 234.707 +CUSR0000SA0L1 2015 M05 235.571 +CUSR0000SA0L1 2015 M06 236.220 +CUSR0000SA0L1 2015 M07 236.623 +CUSR0000SA0L1 2015 M08 236.529 +CUSR0000SA0L1 2015 M09 235.792 +CUSR0000SA0L1 2015 M10 236.022 +CUSR0000SA0L1 2015 M11 236.388 +CUSR0000SA0L1 2015 M12 236.141 +CUSR0000SA0L1 2016 M01 235.989 +CUSR0000SA0L1 2016 M02 235.585 +CUSR0000SA0L1 2016 M03 236.534 +CUSR0000SA0L1 2016 M04 237.554 +CUSR0000SA0L1 2016 M05 238.265 +CUSR0000SA0L1 2016 M06 239.059 +CUSR0000SA0L1 2016 M07 238.924 +CUSR0000SA0L1 2016 M08 239.423 +CUSR0000SA0L1 2016 M09 240.147 +CUSR0000SA0L1 2016 M10 240.792 +CUSR0000SA0L1 2016 M11 241.133 +CUSR0000SA0L1 2016 M12 241.840 +CUSR0000SA0L1 2017 M01 242.920 +CUSR0000SA0L1 2017 M02 243.265 +CUSR0000SA0L1 2017 M03 243.054 +CUSR0000SA0L1 2017 M04 243.348 +CUSR0000SA0L1 2017 M05 243.071 +CUSR0000SA0L1 2017 M06 243.287 +CUSR0000SA0L1 2017 M07 243.314 +CUSR0000SA0L1 2017 M08 244.355 +CUSR0000SA0L1 2017 M09 245.745 +CUSR0000SA0L1 2017 M10 245.932 +CUSR0000SA0L1 2017 M11 246.668 +CUSR0000SA0L1 2017 M12 247.190 +CUSR0000SA0L1 2018 M01 248.301 +CUSR0000SA0L1 2018 M02 249.089 +CUSR0000SA0L1 2018 M03 249.128 +CUSR0000SA0L1 2018 M04 249.801 +CUSR0000SA0L1 2018 M05 250.452 +CUSR0000SA0L1 2018 M06 250.666 +CUSR0000SA0L1 2018 M07 250.826 +CUSR0000SA0L1 2018 M08 251.291 +CUSR0000SA0L1 2018 M09 251.834 +CUSR0000SA0L1 2018 M10 252.534 +CUSR0000SA0L1 2018 M11 252.220 +CUSR0000SA0L1 2018 M12 252.270 +CUSR0000SA0L1 2019 M01 251.933 +CUSR0000SA0L1 2019 M02 252.697 +CUSR0000SA0L1 2019 M03 253.735 +CUSR0000SA0L1 2019 M04 254.889 +CUSR0000SA0L1 2019 M05 254.888 +CUSR0000SA0L1 2019 M06 254.772 +CUSR0000SA0L1 2019 M07 255.434 +CUSR0000SA0L1 2019 M08 255.668 +CUSR0000SA0L1 2019 M09 256.035 +CUSR0000SA0L1 2019 M10 256.783 +CUSR0000SA0L1 2019 M11 257.523 +CUSR0000SA0L1 2019 M12 258.322 +CUSR0000SA0L1 2020 M01 258.777 +CUSR0000SA0L1 2020 M02 258.813 +CUSR0000SA0L1 2020 M03 257.350 +CUSR0000SA0L1 2020 M04 254.393 +CUSR0000SA0L1 2020 M05 253.857 +CUSR0000SA0L1 2020 M06 255.061 +CUSR0000SA0L1 2020 M07 256.738 +CUSR0000SA0L1 2020 M08 257.787 +CUSR0000SA0L1 2020 M09 258.562 +CUSR0000SA0L1 2020 M10 258.839 +CUSR0000SA0L1 2020 M11 259.526 +CUSR0000SA0L1 2020 M12 260.658 +CUSR0000SA0L1 2021 M01 261.276 +CUSR0000SA0L1 2021 M02 262.314 +CUSR0000SA0L1 2021 M03 263.749 +CUSR0000SA0L1 2021 M04 265.649 +CUSR0000SA0L1 2021 M05 267.530 +CUSR0000SA0L1 2021 M06 269.866 +CUSR0000SA0L1 2021 M07 271.042 +CUSR0000SA0L1 2021 M08 271.760 +CUSR0000SA0L1 2021 M09 272.772 +CUSR0000SA0L1 2021 M10 275.345 +CUSR0000SA0L1 2021 M11 277.674 +CUSR0000SA0L1 2021 M12 279.694 +CUSR0000SA0L1 2022 M01 281.328 +CUSR0000SA0L1 2022 M02 283.183 +CUSR0000SA0L1 2022 M03 286.155 +CUSR0000SA0L1 2022 M04 287.041 +CUSR0000SA0L1 2022 M05 289.668 +CUSR0000SA0L1 2022 M06 293.531 +CUSR0000SA0L1 2022 M07 292.896 +CUSR0000SA0L1 2022 M08 292.754 +CUSR0000SA0L1 2022 M09 293.888 +CUSR0000SA0L1 2022 M10 295.351 +CUSR0000SA0L1 2022 M11 295.968 diff --git a/EconDataLens.Tests/TestData/cu.footnote.sample b/EconDataLens.Tests/TestData/EtlData/cu.footnote.sample similarity index 100% rename from EconDataLens.Tests/TestData/cu.footnote.sample rename to EconDataLens.Tests/TestData/EtlData/cu.footnote.sample diff --git a/EconDataLens.Tests/TestData/EtlData/cu.item.sample b/EconDataLens.Tests/TestData/EtlData/cu.item.sample new file mode 100644 index 0000000..2f116a7 --- /dev/null +++ b/EconDataLens.Tests/TestData/EtlData/cu.item.sample @@ -0,0 +1,401 @@ +item_code item_name display_level selectable sort_sequence +AA0 All items - old base 0 T 2 +AA0R Purchasing power of the consumer dollar - old base 0 T 400 +SA0 All items 0 T 1 +SA0E Energy 1 T 375 +SA0L1 All items less food 1 T 359 +SA0L12 All items less food and shelter 1 T 362 +SA0L12E All items less food, shelter, and energy 1 T 363 +SA0L12E4 All items less food, shelter, energy, and used cars and trucks 1 T 364 +SA0L1E All items less food and energy 1 T 360 +SA0L2 All items less shelter 1 T 361 +SA0L5 All items less medical care 1 T 357 +SA0LE All items less energy 1 T 358 +SA0R Purchasing power of the consumer dollar 0 T 399 +SA311 Apparel less footwear 1 T 365 +SAA Apparel 0 T 187 +SAA1 Men's and boys' apparel 1 T 188 +SAA2 Women's and girls' apparel 1 T 195 +SAC Commodities 1 T 366 +SACE Energy commodities 1 T 376 +SACL1 Commodities less food 1 T 367 +SACL11 Commodities less food and beverages 1 T 368 +SACL1E Commodities less food and energy commodities 1 T 369 +SACL1E4 Commodities less food, energy, and used cars and trucks 1 T 370 +SAD Durables 1 T 372 +SAE Education and communication 0 T 311 +SAE1 Education 1 T 312 +SAE2 Communication 1 T 320 +SAE21 Information and information processing 2 T 324 +SAEC Education and communication commodities 1 T 373 +SAES Education and communication services 1 T 374 +SAF Food and beverages 0 T 3 +SAF1 Food 1 T 4 +SAF11 Food at home 2 T 5 +SAF111 Cereals and bakery products 3 T 6 +SAF112 Meats, poultry, fish, and eggs 3 T 24 +SAF1121 Meats, poultry, and fish 4 T 25 +SAF11211 Meats 5 T 26 +SAF113 Fruits and vegetables 3 T 63 +SAF1131 Fresh fruits and vegetables 4 T 64 +SAF114 Nonalcoholic beverages and beverage materials 3 T 84 +SAF115 Other food at home 3 T 94 +SAF116 Alcoholic beverages 2 T 125 +SAG Other goods and services 0 T 336 +SAG1 Personal care 1 T 340 +SAGC Other goods 1 T 384 +SAGS Other personal services 1 T 385 +SAH Housing 0 T 136 +SAH1 Shelter 1 T 137 +SAH2 Fuels and utilities 1 T 145 +SAH21 Household energy 2 T 146 +SAH3 Household furnishings and operations 1 T 156 +SAH31 Household furnishings and supplies 1 T 377 +SAM Medical care 0 T 250 +SAM1 Medical care commodities 1 T 251 +SAM2 Medical care services 1 T 256 +SAN Nondurables 1 T 379 +SAN1D Domestically produced farm food 1 T 371 +SANL1 Nondurables less food 1 T 380 +SANL11 Nondurables less food and beverages 1 T 382 +SANL113 Nondurables less food, beverages, and apparel 1 T 383 +SANL13 Nondurables less food and apparel 1 T 381 +SAR Recreation 0 T 269 +SARC Recreation commodities 1 T 387 +SARS Recreation services 1 T 388 +SAS Services 1 T 390 +SAS24 Utilities and public transportation 1 T 396 +SAS2RS Rent of shelter 1 T 389 +SAS367 Other services 1 T 386 +SAS4 Transportation services 1 T 395 +SASL2RS Services less rent of shelter 1 T 393 +SASL5 Services less medical care services 1 T 392 +SASLE Services less energy services 1 T 391 +SAT Transportation 0 T 210 +SAT1 Private transportation 1 T 211 +SATCLTB Transportation commodities less motor fuel 1 T 394 +SEAA Men's apparel 2 T 189 +SEAA01 Men's suits, sport coats, and outerwear 3 T 190 +SEAA02 Men's underwear, nightwear, swimwear and accessories 3 T 191 +SEAA03 Men's shirts and sweaters 3 T 192 +SEAA04 Men's pants and shorts 3 T 193 +SEAB Boys' apparel 2 T 194 +SEAC Women's apparel 2 T 196 +SEAC01 Women's outerwear 3 T 197 +SEAC02 Women's dresses 3 T 198 +SEAC03 Women's suits and separates 3 T 199 +SEAC04 Women's underwear, nightwear, swimwear and accessories 3 T 200 +SEAD Girls' apparel 2 T 201 +SEAE Footwear 1 T 202 +SEAE01 Men's footwear 2 T 203 +SEAE02 Boys' and girls' footwear 2 T 204 +SEAE03 Women's footwear 2 T 205 +SEAF Infants' and toddlers' apparel 1 T 206 +SEAG Jewelry and watches 1 T 207 +SEAG01 Watches 2 T 208 +SEAG02 Jewelry 2 T 209 +SEEA Educational books and supplies 2 T 313 +SEEB Tuition, other school fees, and childcare 2 T 315 +SEEB01 College tuition and fees 3 T 316 +SEEB02 Elementary and high school tuition and fees 3 T 317 +SEEB03 Day care and preschool 3 T 318 +SEEB04 Technical and business school tuition and fees 3 T 319 +SEEC Postage and delivery services 2 T 321 +SEEC01 Postage 3 T 322 +SEEC02 Delivery services 3 T 323 +SEED Telephone services 3 T 325 +SEED03 Wireless telephone services 4 T 326 +SEED04 Residential telephone services 4 T 327 +SEEE Information technology, hardware and services 2 T 330 +SEEE01 Computers, peripherals, and smart home assistants 3 T 331 +SEEE02 Computer software and accessories 3 T 332 +SEEE03 Internet services and electronic information providers 3 T 333 +SEEE04 Telephone hardware, calculators, and other consumer information items 3 T 334 +SEEEC Information technology commodities 1 T 378 +SEFA Cereals and cereal products 4 T 7 +SEFA01 Flour and prepared flour mixes 5 T 8 +SEFA02 Breakfast cereal 5 T 9 +SEFA03 Rice, pasta, cornmeal 5 T 10 +SEFB Bakery products 4 T 12 +SEFB01 Bread 5 T 13 +SEFB02 Fresh biscuits, rolls, muffins 5 T 16 +SEFB03 Cakes, cupcakes, and cookies 5 T 17 +SEFB04 Other bakery products 5 T 20 +SEFC Beef and veal 6 T 27 +SEFC01 Uncooked ground beef 7 T 28 +SEFC02 Uncooked beef roasts 7 T 29 +SEFC03 Uncooked beef steaks 7 T 30 +SEFC04 Uncooked other beef and veal 7 T 31 +SEFD Pork 6 T 32 +SEFD01 Bacon, breakfast sausage, and related products 7 T 33 +SEFD02 Ham 7 T 36 +SEFD03 Pork chops 7 T 38 +SEFD04 Other pork including roasts, steaks, and ribs 7 T 39 +SEFE Other meats 6 T 40 +SEFF Poultry 6 T 45 +SEFF01 Chicken 7 T 46 +SEFF02 Other uncooked poultry including turkey 6 T 49 +SEFG Fish and seafood 5 T 50 +SEFG01 Fresh fish and seafood 6 T 51 +SEFG02 Processed fish and seafood 6 T 52 +SEFH Eggs 4 T 55 +SEFJ Dairy and related products 3 T 56 +SEFJ01 Milk 4 T 57 +SEFJ02 Cheese and related products 4 T 60 +SEFJ03 Ice cream and related products 4 T 61 +SEFJ04 Other dairy and related products 4 T 62 +SEFK Fresh fruits 5 T 65 +SEFK01 Apples 6 T 66 +SEFK02 Bananas 6 T 67 +SEFK03 Citrus fruits 6 T 68 +SEFK04 Other fresh fruits 6 T 70 +SEFL Fresh vegetables 5 T 71 +SEFL01 Potatoes 6 T 72 +SEFL02 Lettuce 6 T 73 +SEFL03 Tomatoes 6 T 74 +SEFL04 Other fresh vegetables 6 T 75 +SEFM Processed fruits and vegetables 4 T 76 +SEFM01 Canned fruits and vegetables 5 T 77 +SEFM02 Frozen fruits and vegetables 5 T 80 +SEFM03 Other processed fruits and vegetables including dried 5 T 82 +SEFN Juices and nonalcoholic drinks 4 T 85 +SEFN01 Carbonated drinks 5 T 86 +SEFN02 Frozen noncarbonated juices and drinks 5 T 87 +SEFN03 Nonfrozen noncarbonated juices and drinks 5 T 88 +SEFP Beverage materials including coffee and tea 4 T 89 +SEFP01 Coffee 5 T 90 +SEFP02 Other beverage materials including tea 5 T 93 +SEFR Sugar and sweets 4 T 95 +SEFR01 Sugar and sugar substitutes 5 T 96 +SEFR02 Candy and chewing gum 5 T 97 +SEFR03 Other sweets 5 T 98 +SEFS Fats and oils 4 T 99 +SEFS01 Butter and margarine 5 T 100 +SEFS02 Salad dressing 5 T 103 +SEFS03 Other fats and oils including peanut butter 5 T 104 +SEFT Other foods 4 T 106 +SEFT01 Soups 5 T 107 +SEFT02 Frozen and freeze dried prepared foods 5 T 108 +SEFT03 Snacks 5 T 109 +SEFT04 Spices, seasonings, condiments, sauces 5 T 110 +SEFT05 Baby food and formula 5 T 115 +SEFT06 Other miscellaneous foods 5 T 116 +SEFV Food away from home 2 T 118 +SEFV01 Full service meals and snacks 3 T 119 +SEFV02 Limited service meals and snacks 3 T 120 +SEFV03 Food at employee sites and schools 3 T 121 +SEFV04 Food from vending machines and mobile vendors 3 T 123 +SEFV05 Other food away from home 3 T 124 +SEFW Alcoholic beverages at home 3 T 126 +SEFW01 Beer, ale, and other malt beverages at home 4 T 127 +SEFW02 Distilled spirits at home 4 T 128 +SEFW03 Wine at home 4 T 131 +SEFX Alcoholic beverages away from home 3 T 132 +SEGA Tobacco and smoking products 1 T 337 +SEGA01 Cigarettes 2 T 338 +SEGA02 Tobacco products other than cigarettes 2 T 339 +SEGB Personal care products 2 T 341 +SEGB01 Hair, dental, shaving, and miscellaneous personal care products 3 T 342 +SEGB02 Cosmetics, perfume, bath, nail preparations and implements 3 T 343 +SEGC Personal care services 2 T 344 +SEGC01 Haircuts and other personal care services 3 T 345 +SEGD Miscellaneous personal services 2 T 346 +SEGD01 Legal services 3 T 347 +SEGD02 Funeral expenses 3 T 348 +SEGD03 Laundry and dry cleaning services 3 T 349 +SEGD04 Apparel services other than laundry and dry cleaning 3 T 350 +SEGD05 Financial services 3 T 351 +SEGE Miscellaneous personal goods 2 T 354 +SEHA Rent of primary residence 2 T 138 +SEHB Lodging away from home 2 T 139 +SEHB01 Housing at school, excluding board 3 T 140 +SEHB02 Other lodging away from home including hotels and motels 3 T 141 +SEHC Owners' equivalent rent of residences 2 T 142 +SEHC01 Owners' equivalent rent of primary residence 3 T 143 +SEHD Tenants' and household insurance 2 T 144 +SEHE Fuel oil and other fuels 3 T 147 +SEHE01 Fuel oil 4 T 148 +SEHE02 Propane, kerosene, and firewood 4 T 149 +SEHF Energy services 3 T 150 +SEHF01 Electricity 4 T 151 +SEHF02 Utility (piped) gas service 4 T 152 +SEHG Water and sewer and trash collection services 2 T 153 +SEHG01 Water and sewerage maintenance 3 T 154 +SEHG02 Garbage and trash collection 3 T 155 +SEHH Window and floor coverings and other linens 2 T 157 +SEHH01 Floor coverings 3 T 158 +SEHH02 Window coverings 3 T 159 +SEHH03 Other linens 3 T 160 +SEHJ Furniture and bedding 2 T 161 +SEHJ01 Bedroom furniture 3 T 162 +SEHJ02 Living room, kitchen, and dining room furniture 3 T 163 +SEHJ03 Other furniture 3 T 164 +SEHK Appliances 2 T 166 +SEHK01 Major appliances 3 T 167 +SEHK02 Other appliances 3 T 169 +SEHL Other household equipment and furnishings 2 T 170 +SEHL01 Clocks, lamps, and decorator items 3 T 171 +SEHL02 Indoor plants and flowers 3 T 172 +SEHL03 Dishes and flatware 3 T 173 +SEHL04 Nonelectric cookware and tableware 3 T 174 +SEHM Tools, hardware, outdoor equipment and supplies 2 T 175 +SEHM01 Tools, hardware and supplies 3 T 176 +SEHM02 Outdoor equipment and supplies 3 T 177 +SEHN Housekeeping supplies 2 T 178 +SEHN01 Household cleaning products 3 T 179 +SEHN02 Household paper products 3 T 180 +SEHN03 Miscellaneous household products 3 T 181 +SEHP Household operations 2 T 182 +SEHP01 Domestic services 3 T 183 +SEHP02 Gardening and lawncare services 3 T 184 +SEHP03 Moving, storage, freight expense 3 T 185 +SEHP04 Repair of household items 3 T 186 +SEMC Professional services 2 T 257 +SEMC01 Physicians' services 3 T 258 +SEMC02 Dental services 3 T 259 +SEMC03 Eyeglasses and eye care 3 T 260 +SEMC04 Services by other medical professionals 3 T 261 +SEMD Hospital and related services 2 T 262 +SEMD01 Hospital services 3 T 263 +SEMD02 Nursing homes and adult day services 3 T 266 +SEMD03 Care of invalids and elderly at home 3 T 267 +SEME Health insurance 2 T 268 +SEMF Medicinal drugs 2 T 252 +SEMF01 Prescription drugs 3 T 253 +SEMF02 Nonprescription drugs 3 T 254 +SEMG Medical equipment and supplies 2 T 255 +SERA Video and audio 1 T 270 +SERA01 Televisions 2 T 271 +SERA02 Cable, satellite, and live streaming television service 2 T 272 +SERA03 Other video equipment 2 T 273 +SERA04 Purchase, subscription, and rental of video 2 T 274 +SERA05 Audio equipment 2 T 277 +SERA06 Recorded music and music subscriptions 2 T 278 +SERAC Video and audio products 1 T 397 +SERAS Video and audio services 1 T 398 +SERB Pets, pet products and services 1 T 279 +SERB01 Pets and pet products 2 T 280 +SERB02 Pet services including veterinary 2 T 283 +SERC Sporting goods 1 T 286 +SERC01 Sports vehicles including bicycles 2 T 287 +SERC02 Sports equipment 2 T 288 +SERD Photography 1 T 289 +SERD01 Photographic equipment and supplies 2 T 290 +SERD02 Photographers and photo processing 2 T 293 +SERE Other recreational goods 1 T 296 +SERE01 Toys 2 T 297 +SERE02 Sewing machines, fabric and supplies 2 T 300 +SERE03 Music instruments and accessories 2 T 301 +SERF Other recreation services 1 T 302 +SERF01 Club membership for shopping clubs, fraternal, or other organizations, or participant sports fees 2 T 303 +SERF02 Admissions 2 T 304 +SERF03 Fees for lessons or instructions 2 T 307 +SERG Recreational reading materials 1 T 308 +SERG01 Newspapers and magazines 2 T 309 +SERG02 Recreational books 2 T 310 +SETA New and used motor vehicles 2 T 212 +SETA01 New vehicles 3 T 213 +SETA02 Used cars and trucks 3 T 218 +SETA03 Leased cars and trucks 3 T 219 +SETA04 Car and truck rental 3 T 220 +SETB Motor fuel 2 T 221 +SETB01 Gasoline (all types) 3 T 222 +SETB02 Other motor fuels 3 T 226 +SETC Motor vehicle parts and equipment 2 T 227 +SETC01 Tires 3 T 228 +SETC02 Vehicle accessories other than tires 3 T 229 +SETD Motor vehicle maintenance and repair 2 T 232 +SETD01 Motor vehicle body work 3 T 233 +SETD02 Motor vehicle maintenance and servicing 3 T 234 +SETD03 Motor vehicle repair 3 T 235 +SETE Motor vehicle insurance 2 T 236 +SETF Motor vehicle fees 2 T 237 +SETF01 State motor vehicle registration and license fees 3 T 238 +SETF03 Parking and other fees 3 T 239 +SETG Public transportation 1 T 242 +SETG01 Airline fares 2 T 243 +SETG02 Other intercity transportation 2 T 244 +SETG03 Intracity transportation 2 T 248 +SS01031 Rice 6 T 11 +SS02011 White bread 6 T 14 +SS02021 Bread other than white 6 T 15 +SS02041 Fresh cakes and cupcakes 6 T 18 +SS02042 Cookies 6 T 19 +SS02063 Fresh sweetrolls, coffeecakes, doughnuts 6 T 21 +SS0206A Crackers, bread, and cracker products 6 T 22 +SS0206B Frozen and refrigerated bakery products, pies, tarts, turnovers 6 T 23 +SS04011 Bacon and related products 8 T 34 +SS04012 Breakfast sausage and related products 8 T 35 +SS04031 Ham, excluding canned 8 T 37 +SS05011 Frankfurters 7 T 41 +SS05014 Lamb and organ meats 7 T 43 +SS05015 Lamb and mutton 7 T 44 +SS0501A Lunchmeats 7 T 42 +SS06011 Fresh whole chicken 7 T 47 +SS06021 Fresh and frozen chicken parts 7 T 48 +SS07011 Shelf stable fish and seafood 7 T 53 +SS07021 Frozen fish and seafood 7 T 54 +SS09011 Fresh whole milk 5 T 58 +SS09021 Fresh milk other than whole 5 T 59 +SS10011 Butter 6 T 101 +SS11031 Oranges, including tangerines 7 T 69 +SS13031 Canned fruits 6 T 78 +SS14011 Frozen vegetables 6 T 81 +SS14021 Canned vegetables 6 T 79 +SS14022 Dried beans, peas, and lentils 6 T 83 +SS16011 Margarine 6 T 102 +SS16014 Peanut butter 6 T 105 +SS17031 Roasted coffee 6 T 91 +SS17032 Instant coffee 6 T 92 +SS18041 Salt and other seasonings and spices 6 T 111 +SS18042 Olives, pickles, relishes 6 T 112 +SS18043 Sauces and gravies 6 T 113 +SS1804B Other condiments 6 T 114 +SS18064 Prepared salads 6 T 117 +SS20021 Whiskey at home 5 T 129 +SS20022 Distilled spirits, excluding whiskey, at home 5 T 130 +SS20051 Beer, ale, and other malt beverages away from home 4 T 133 +SS20052 Wine away from home 4 T 134 +SS20053 Distilled spirits away from home 4 T 135 +SS27051 Land-line interstate toll calls 5 T 328 +SS27061 Land-line intrastate toll calls 5 T 329 +SS30021 Laundry equipment 4 T 168 +SS31022 Video discs and other media 3 T 275 +SS31023 Video game hardware, software and accessories 3 T 299 +SS33032 Stationery, stationery supplies, gift wrap 3 T 355 +SS45011 New cars 4 T 215 +SS4501A New cars and trucks 4 T 214 +SS45021 New trucks 4 T 216 +SS45031 New motorcycles 4 T 217 +SS47014 Gasoline, unleaded regular 4 T 223 +SS47015 Gasoline, unleaded midgrade 4 T 224 +SS47016 Gasoline, unleaded premium 4 T 225 +SS47021 Motor oil, coolant, and fluids 4 T 231 +SS48021 Vehicle parts and equipment other than tires 4 T 230 +SS52051 Parking fees and tolls 4 T 240 +SS53021 Intercity bus fare 3 T 245 +SS53022 Intercity train fare 3 T 246 +SS53023 Ship fare 3 T 247 +SS53031 Intracity mass transit 3 T 249 +SS5702 Inpatient hospital services 4 T 264 +SS5703 Outpatient hospital services 4 T 265 +SS61011 Toys, games, hobbies and playground equipment 3 T 298 +SS61021 Film and photographic supplies 3 T 291 +SS61023 Photographic equipment 3 T 292 +SS61031 Pet food and treats 3 T 281 +SS61032 Purchase of pets, pet supplies, accessories 3 T 282 +SS62011 Automobile service clubs 4 T 241 +SS62031 Admission to movies, theaters, and concerts 3 T 305 +SS62032 Admission to sporting events 3 T 306 +SS62051 Photographer fees 3 T 294 +SS62052 Photo Processing 3 T 295 +SS62053 Pet services 3 T 284 +SS62054 Veterinarian services 3 T 285 +SS62055 Subscription and rental of video and video games 3 T 276 +SS68021 Checking account and other bank services 4 T 352 +SS68023 Tax return preparation and other accounting fees 4 T 353 +SSEA011 College textbooks 3 T 314 +SSEE041 Smartphones 4 T 335 +SSFV031A Food at elementary and secondary schools 3 T 122 +SSGE013 Infants' equipment 3 T 356 +SSHJ031 Infants' furniture 3 T 165 diff --git a/EconDataLens.Tests/TestData/EtlData/cu.period.sample b/EconDataLens.Tests/TestData/EtlData/cu.period.sample new file mode 100644 index 0000000..a8db0ce --- /dev/null +++ b/EconDataLens.Tests/TestData/EtlData/cu.period.sample @@ -0,0 +1,17 @@ +period period_abbr period_name +M01 JAN January +M02 FEB February +M03 MAR March +M04 APR April +M05 MAY May +M06 JUN June +M07 JUL July +M08 AUG August +M09 SEP September +M10 OCT October +M11 NOV November +M12 DEC December +M13 AN AV Annual Average +S01 HALF1 First Half +S02 HALF2 Second Half +S03 AN AV Annual Average diff --git a/EconDataLens.Tests/TestData/EtlData/cu.series.sample b/EconDataLens.Tests/TestData/EtlData/cu.series.sample new file mode 100644 index 0000000..fcadc1a --- /dev/null +++ b/EconDataLens.Tests/TestData/EtlData/cu.series.sample @@ -0,0 +1,8104 @@ +series_id area_code item_code seasonal periodicity_code base_code base_period series_title footnote_codes begin_year begin_period end_year end_period +CUSR0000SA0 0000 SA0 S R S 1982-84=100 All items in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SA0E 0000 SA0E S R S 1982-84=100 Energy in U.S. city average, all urban consumers, seasonally adjusted 1957 M01 2025 M08 +CUSR0000SA0L1 0000 SA0L1 S R S 1982-84=100 All items less food in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SA0L12 0000 SA0L12 S R S 1982-84=100 All items less food and shelter in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SA0L12E 0000 SA0L12E S R S 1982-84=100 All items less food, shelter, and energy in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SA0L12E4 0000 SA0L12E4 S R S 1982-84=100 All items less food, shelter, energy, and used cars and trucks in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SA0L1E 0000 SA0L1E S R S 1982-84=100 All items less food and energy in U.S. city average, all urban consumers, seasonally adjusted 1957 M01 2025 M08 +CUSR0000SA0L2 0000 SA0L2 S R S 1982-84=100 All items less shelter in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SA0L5 0000 SA0L5 S R S 1982-84=100 All items less medical care in U.S. city average, all urban consumers, seasonally adjusted 1957 M01 2025 M08 +CUSR0000SA0LE 0000 SA0LE S R S 1982-84=100 All items less energy in U.S. city average, all urban consumers, seasonally adjusted 1957 M01 2025 M08 +CUSR0000SA311 0000 SA311 S R S 1982-84=100 Apparel less footwear in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SAA 0000 SAA S R S 1982-84=100 Apparel in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SAA1 0000 SAA1 S R S 1982-84=100 Men's and boys' apparel in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SAA2 0000 SAA2 S R S 1982-84=100 Women's and girls' apparel in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SAC 0000 SAC S R S 1982-84=100 Commodities in U.S. city average, all urban consumers, seasonally adjusted 1956 M01 2025 M08 +CUSR0000SACE 0000 SACE S R S 1982-84=100 Energy commodities in U.S. city average, all urban consumers, seasonally adjusted 1957 M01 2025 M08 +CUSR0000SACL1 0000 SACL1 S R S 1982-84=100 Commodities less food in U.S. city average, all urban consumers, seasonally adjusted 1956 M01 2025 M08 +CUSR0000SACL11 0000 SACL11 S R S 1982-84=100 Commodities less food and beverages in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SACL1E 0000 SACL1E S R S 1982-84=100 Commodities less food and energy commodities in U.S. city average, all urban consumers, seasonally adjusted 1957 M01 2025 M08 +CUSR0000SACL1E4 0000 SACL1E4 S R S 1982-84=100 Commodities less food, energy, and used cars and trucks in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SAD 0000 SAD S R S 1982-84=100 Durables in U.S. city average, all urban consumers, seasonally adjusted 1956 M01 2025 M08 +CUSR0000SAE 0000 SAE S R S DECEMBER 1997=100 Education and communication in U.S. city average, all urban consumers, seasonally adjusted 1993 M01 2025 M08 +CUSR0000SAE1 0000 SAE1 S R S DECEMBER 1997=100 Education in U.S. city average, all urban consumers, seasonally adjusted 1993 M01 2025 M08 +CUSR0000SAE2 0000 SAE2 S R S DECEMBER 1997=100 Communication in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SAE21 0000 SAE21 S R S DECEMBER 1997=100 Information and information processing in U.S. city average, all urban consumers, seasonally adjusted 2006 M01 2025 M08 +CUSR0000SAEC 0000 SAEC S R S DECEMBER 2009=100 Education and communication commodities in U.S. city average, all urban consumers, seasonally adjusted 2010 M01 2025 M08 +CUSR0000SAES 0000 SAES S R S DECEMBER 2009=100 Education and communication services in U.S. city average, all urban consumers, seasonally adjusted 2010 M01 2025 M08 +CUSR0000SAF 0000 SAF S R S 1982-84=100 Food and beverages in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SAF1 0000 SAF1 S R S 1982-84=100 Food in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SAF11 0000 SAF11 S R S 1982-84=100 Food at home in U.S. city average, all urban consumers, seasonally adjusted 1952 M01 2025 M08 +CUSR0000SAF111 0000 SAF111 S R S 1982-84=100 Cereals and bakery products in U.S. city average, all urban consumers, seasonally adjusted 1989 M01 2025 M08 +CUSR0000SAF112 0000 SAF112 S R S 1982-84=100 Meats, poultry, fish, and eggs in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SAF1121 0000 SAF1121 S R S 1982-84=100 Meats, poultry, and fish in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SAF11211 0000 SAF11211 S R S 1982-84=100 Meats in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SAF113 0000 SAF113 S R S 1982-84=100 Fruits and vegetables in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SAF1131 0000 SAF1131 S R S 1982-84=100 Fresh fruits and vegetables in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SAF114 0000 SAF114 S R S 1982-84=100 Nonalcoholic beverages and beverage materials in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SAF115 0000 SAF115 S R S 1982-84=100 Other food at home in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SAF116 0000 SAF116 S R S 1982-84=100 Alcoholic beverages in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SAG 0000 SAG S R S 1982-84=100 Other goods and services in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SAG1 0000 SAG1 S R S 1982-84=100 Personal care in U.S. city average, all urban consumers, seasonally adjusted 1999 M01 2025 M08 +CUSR0000SAGC 0000 SAGC S R S DECEMBER 2009=100 Other goods in U.S. city average, all urban consumers, seasonally adjusted 2010 M01 2025 M08 +CUSR0000SAH 0000 SAH S R S 1982-84=100 Housing in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SAH1 0000 SAH1 S R S 1982-84=100 Shelter in U.S. city average, all urban consumers, seasonally adjusted 1953 M01 2025 M08 +CUSR0000SAH2 0000 SAH2 S R S 1982-84=100 Fuels and utilities in U.S. city average, all urban consumers, seasonally adjusted 1953 M01 2025 M08 +CUSR0000SAH21 0000 SAH21 S R S 1982-84=100 Household energy in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SAH3 0000 SAH3 S R S 1982-84=100 Household furnishings and operations in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SAH31 0000 SAH31 S R S DECEMBER 2009=100 Household furnishings and supplies in U.S. city average, all urban consumers, seasonally adjusted 2010 M01 2025 M08 +CUSR0000SAM 0000 SAM S R S 1982-84=100 Medical care in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SAM1 0000 SAM1 S R S 1982-84=100 Medical care commodities in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SAM2 0000 SAM2 S R S 1982-84=100 Medical care services in U.S. city average, all urban consumers, seasonally adjusted 1956 M01 2025 M08 +CUSR0000SAN 0000 SAN S R S 1982-84=100 Nondurables in U.S. city average, all urban consumers, seasonally adjusted 1956 M01 2025 M08 +CUSR0000SAN1D 0000 SAN1D S R S 1982-84=100 Domestically produced farm food in U.S. city average, all urban consumers, seasonally adjusted 1980 M01 2025 M08 +CUSR0000SANL1 0000 SANL1 S R S 1982-84=100 Nondurables less food in U.S. city average, all urban consumers, seasonally adjusted 1989 M01 2025 M08 +CUSR0000SANL11 0000 SANL11 S R S 1982-84=100 Nondurables less food and beverages in U.S. city average, all urban consumers, seasonally adjusted 1989 M01 2025 M08 +CUSR0000SANL113 0000 SANL113 S R S 1982-84=100 Nondurables less food, beverages, and apparel in U.S. city average, all urban consumers, seasonally adjusted 1991 M01 2025 M08 +CUSR0000SANL13 0000 SANL13 S R S 1982-84=100 Nondurables less food and apparel in U.S. city average, all urban consumers, seasonally adjusted 1991 M01 2025 M08 +CUSR0000SAR 0000 SAR S R S DECEMBER 1997=100 Recreation in U.S. city average, all urban consumers, seasonally adjusted 1993 M01 2025 M08 +CUSR0000SARC 0000 SARC S R S DECEMBER 2009=100 Recreation commodities in U.S. city average, all urban consumers, seasonally adjusted 2010 M01 2025 M08 +CUSR0000SARS 0000 SARS S R S DECEMBER 2009=100 Recreation services in U.S. city average, all urban consumers, seasonally adjusted 2010 M01 2025 M08 +CUSR0000SAS 0000 SAS S R S 1982-84=100 Services in U.S. city average, all urban consumers, seasonally adjusted 1956 M01 2025 M08 +CUSR0000SAS24 0000 SAS24 S R S 1982-84=100 Utilities and public transportation in U.S. city average, all urban consumers, seasonally adjusted 1957 M01 2025 M08 +CUSR0000SAS2RS 0000 SAS2RS S R S DECEMBER 1982=100 Rent of shelter in U.S. city average, all urban consumers, seasonally adjusted 1990 M01 2025 M08 +CUSR0000SAS367 0000 SAS367 S R S 1982-84=100 Other services in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SAS4 0000 SAS4 S R S 1982-84=100 Transportation services in U.S. city average, all urban consumers, seasonally adjusted 1956 M01 2025 M08 +CUSR0000SASL2RS 0000 SASL2RS S R S DECEMBER 1982=100 Services less rent of shelter in U.S. city average, all urban consumers, seasonally adjusted 1985 M01 2025 M08 +CUSR0000SASL5 0000 SASL5 S R S 1982-84=100 Services less medical care services in U.S. city average, all urban consumers, seasonally adjusted 1983 M01 2025 M08 +CUSR0000SASLE 0000 SASLE S R S 1982-84=100 Services less energy services in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SAT 0000 SAT S R S 1982-84=100 Transportation in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SAT1 0000 SAT1 S R S 1982-84=100 Private transportation in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SATCLTB 0000 SATCLTB S R S DECEMBER 2009=100 Transportation commodities less motor fuel in U.S. city average, all urban consumers, seasonally adjusted 2010 M01 2025 M08 +CUSR0000SEAA 0000 SEAA S R S 1982-84=100 Men's apparel in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEAA01 0000 SEAA01 S R S 1982-84=100 Men's suits, sport coats, and outerwear in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEAA02 0000 SEAA02 S R S 1982-84=100 Men's underwear, nightwear, swimwear, and accessories in U.S. city average, all urban consumers, seasonally adjusted 1984 M01 2025 M08 +CUSR0000SEAA03 0000 SEAA03 S R S DECEMBER 1997=100 Men's shirts and sweaters in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEAA04 0000 SEAA04 S R S 1982-84=100 Men's pants and shorts in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEAB 0000 SEAB S R S 1982-84=100 Boys' apparel in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEAC 0000 SEAC S R S 1982-84=100 Women's apparel in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEAC01 0000 SEAC01 S R S 1982-84=100 Women's outerwear in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEAC02 0000 SEAC02 S R S 1982-84=100 Women's dresses in U.S. city average, all urban consumers, seasonally adjusted 1969 M01 2025 M08 +CUSR0000SEAC03 0000 SEAC03 S R S DECEMBER 1997=100 Women's suits and separates in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEAC04 0000 SEAC04 S R S DECEMBER 1997=100 Women's underwear, nightwear, swimwear, and accessories in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEAD 0000 SEAD S R S 1982-84=100 Girls' apparel in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEAE 0000 SEAE S R S 1982-84=100 Footwear in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SEAE01 0000 SEAE01 S R S 1982-84=100 Men's footwear in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEAE02 0000 SEAE02 S R S 1982-84=100 Boys' and girls' footwear in U.S. city average, all urban consumers, seasonally adjusted 1989 M01 2025 M08 +CUSR0000SEAE03 0000 SEAE03 S R S 1982-84=100 Women's footwear in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEAF 0000 SEAF S R S 1982-84=100 Infants' and toddlers' apparel in U.S. city average, all urban consumers, seasonally adjusted 1989 M01 2025 M08 +CUSR0000SEAG 0000 SEAG S R S DECEMBER 1986=100 Jewelry and watches in U.S. city average, all urban consumers, seasonally adjusted 1991 M01 2025 M08 +CUSR0000SEAG01 0000 SEAG01 S R S DECEMBER 1986=100 Watches in U.S. city average, all urban consumers, seasonally adjusted 1993 M01 2025 M08 +CUSR0000SEAG02 0000 SEAG02 S R S DECEMBER 1986=100 Jewelry in U.S. city average, all urban consumers, seasonally adjusted 1991 M01 2025 M08 +CUSR0000SEEA 0000 SEEA S R S 1982-84=100 Educational books and supplies in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SEEB 0000 SEEB S R S 1982-84=100 Tuition, other school fees, and childcare in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEEB01 0000 SEEB01 S R S 1982-84=100 College tuition and fees in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEEB02 0000 SEEB02 S R S 1982-84=100 Elementary and high school tuition and fees in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEEB03 0000 SEEB03 S R S DECEMBER 1990=100 Day care and preschool in U.S. city average, all urban consumers, seasonally adjusted 1991 M01 2025 M08 +CUSR0000SEEB04 0000 SEEB04 S R S DECEMBER 1997=100 Technical and business school tuition and fees in U.S. city average, all urban consumers, seasonally adjusted 1999 M01 2025 M08 +CUSR0000SEEC 0000 SEEC S R S DECEMBER 1997=100 Postage and delivery services in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEEC01 0000 SEEC01 S R S 1982-84=100 Postage in U.S. city average, all urban consumers, seasonally adjusted 2007 M01 2025 M08 +CUSR0000SEEC02 0000 SEEC02 S R S DECEMBER 1997=100 Delivery services in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEEE 0000 SEEE S R S DECEMBER 1988=100 Information technology, hardware and services in U.S. city average, all urban consumers, seasonally adjusted 2006 M01 2025 M08 +CUSR0000SEEE01 0000 SEEE01 S R S DECEMBER 2007=100 Computers, peripherals, and smart home assistants in U.S. city average, all urban consumers, seasonally adjusted 2005 M01 2025 M08 +CUSR0000SEEE03 0000 SEEE03 S R S DECEMBER 1997=100 Internet services and electronic information providers in U.S. city average, all urban consumers, seasonally adjusted 2010 M01 2025 M08 +CUSR0000SEEE04 0000 SEEE04 S R S DECEMBER 1997=100 Telephone hardware, calculators, and other consumer information items in U.S. city average, all urban consumers, seasonally adjusted 2011 M01 2025 M08 +CUSR0000SEEEC 0000 SEEEC S R S DECEMBER 2009=100 Information technology commodities in U.S. city average, all urban consumers, seasonally adjusted 2010 M01 2025 M08 +CUSR0000SEFA 0000 SEFA S R S 1982-84=100 Cereals and cereal products in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEFA01 0000 SEFA01 S R S 1982-84=100 Flour and prepared flour mixes in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEFA02 0000 SEFA02 S R S 1982-84=100 Breakfast cereal in U.S. city average, all urban consumers, seasonally adjusted 1992 M01 2025 M08 +CUSR0000SEFA03 0000 SEFA03 S R S 1982-84=100 Rice, pasta, cornmeal in U.S. city average, all urban consumers, seasonally adjusted 1990 M01 2025 M08 +CUSR0000SEFB 0000 SEFB S R S 1982-84=100 Bakery products in U.S. city average, all urban consumers, seasonally adjusted 1992 M01 2025 M08 +CUSR0000SEFB01 0000 SEFB01 S R S DECEMBER 1997=100 Bread in U.S. city average, all urban consumers, seasonally adjusted 2005 M01 2025 M08 +CUSR0000SEFB02 0000 SEFB02 S R S DECEMBER 1997=100 Fresh biscuits, rolls, muffins in U.S. city average, all urban consumers, seasonally adjusted 2007 M01 2025 M08 +CUSR0000SEFB03 0000 SEFB03 S R S 1982-84=100 Cakes, cupcakes, and cookies in U.S. city average, all urban consumers, seasonally adjusted 1996 M01 2025 M08 +CUSR0000SEFB04 0000 SEFB04 S R S 1982-84=100 Other bakery products in U.S. city average, all urban consumers, seasonally adjusted 1984 M01 2025 M08 +CUSR0000SEFC 0000 SEFC S R S 1982-84=100 Beef and veal in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SEFC01 0000 SEFC01 S R S 1982-84=100 Uncooked ground beef in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SEFC02 0000 SEFC02 S R S DECEMBER 1997=100 Uncooked beef roasts in U.S. city average, all urban consumers, seasonally adjusted 2011 M01 2025 M08 +CUSR0000SEFC03 0000 SEFC03 S R S DECEMBER 1997=100 Uncooked beef steaks in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFD 0000 SEFD S R S 1982-84=100 Pork in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SEFD01 0000 SEFD01 S R S DECEMBER 1997=100 Bacon, breakfast sausage, and related products in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFD02 0000 SEFD02 S R S 1982-84=100 Ham in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEFD03 0000 SEFD03 S R S 1982-84=100 Pork chops in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SEFD04 0000 SEFD04 S R S DECEMBER 1997=100 Other pork including roasts, steaks, and ribs in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFE 0000 SEFE S R S 1982-84=100 Other meats in U.S. city average, all urban consumers, seasonally adjusted 1997 M01 2025 M08 +CUSR0000SEFF 0000 SEFF S R S 1982-84=100 Poultry in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFF01 0000 SEFF01 S R S DECEMBER 1997=100 Chicken in U.S. city average, all urban consumers, seasonally adjusted 2004 M01 2025 M08 +CUSR0000SEFF02 0000 SEFF02 S R S DECEMBER 1997=100 Other uncooked poultry including turkey in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFG 0000 SEFG S R S 1982-84=100 Fish and seafood in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SEFG01 0000 SEFG01 S R S DECEMBER 1997=100 Fresh fish and seafood in U.S. city average, all urban consumers, seasonally adjusted 2010 M01 2025 M08 +CUSR0000SEFG02 0000 SEFG02 S R S DECEMBER 1997=100 Processed fish and seafood in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFH 0000 SEFH S R S 1982-84=100 Eggs in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SEFJ 0000 SEFJ S R S 1982-84=100 Dairy and related products in U.S. city average, all urban consumers, seasonally adjusted 1989 M01 2025 M08 +CUSR0000SEFJ01 0000 SEFJ01 S R S DECEMBER 1997=100 Milk in U.S. city average, all urban consumers, seasonally adjusted 1999 M01 2025 M08 +CUSR0000SEFJ02 0000 SEFJ02 S R S 1982-84=100 Cheese and related products in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEFJ03 0000 SEFJ03 S R S 1982-84=100 Ice cream and related products in U.S. city average, all urban consumers, seasonally adjusted 1990 M01 2025 M08 +CUSR0000SEFJ04 0000 SEFJ04 S R S DECEMBER 1997=100 Other dairy and related products in U.S. city average, all urban consumers, seasonally adjusted 2003 M01 2025 M08 +CUSR0000SEFK 0000 SEFK S R S 1982-84=100 Fresh fruits in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SEFK01 0000 SEFK01 S R S 1982-84=100 Apples in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SEFK02 0000 SEFK02 S R S 1982-84=100 Bananas in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SEFK03 0000 SEFK03 S R S DECEMBER 1997=100 Citrus fruits in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFK04 0000 SEFK04 S R S DECEMBER 1997=100 Other fresh fruits in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFL 0000 SEFL S R S 1982-84=100 Fresh vegetables in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SEFL01 0000 SEFL01 S R S 1982-84=100 Potatoes in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SEFL02 0000 SEFL02 S R S 1982-84=100 Lettuce in U.S. city average, all urban consumers, seasonally adjusted 2006 M01 2025 M08 +CUSR0000SEFL03 0000 SEFL03 S R S 1982-84=100 Tomatoes in U.S. city average, all urban consumers, seasonally adjusted 1953 M01 2025 M08 +CUSR0000SEFL04 0000 SEFL04 S R S 1982-84=100 Other fresh vegetables in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEFM 0000 SEFM S R S DECEMBER 1997=100 Processed fruits and vegetables in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFM01 0000 SEFM01 S R S DECEMBER 1997=100 Canned fruits and vegetables in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFM02 0000 SEFM02 S R S DECEMBER 1997=100 Frozen fruits and vegetables in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFM03 0000 SEFM03 S R S DECEMBER 1997=100 Other processed fruits and vegetables including dried in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFN 0000 SEFN S R S DECEMBER 1997=100 Juices and nonalcoholic drinks in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFN01 0000 SEFN01 S R S 1982-84=100 Carbonated drinks in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEFN03 0000 SEFN03 S R S DECEMBER 1997=100 Nonfrozen noncarbonated juices and drinks in U.S. city average, all urban consumers, seasonally adjusted 2010 M01 2025 M08 +CUSR0000SEFP 0000 SEFP S R S DECEMBER 1997=100 Beverage materials including coffee and tea in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFP01 0000 SEFP01 S R S 1982-84=100 Coffee in U.S. city average, all urban consumers, seasonally adjusted 2003 M01 2025 M08 +CUSR0000SEFP02 0000 SEFP02 S R S DECEMBER 1997=100 Other beverage materials including tea in U.S. city average, all urban consumers, seasonally adjusted 2003 M01 2025 M08 +CUSR0000SEFR 0000 SEFR S R S 1982-84=100 Sugar and sweets in U.S. city average, all urban consumers, seasonally adjusted 1989 M01 2025 M08 +CUSR0000SEFR01 0000 SEFR01 S R S 1982-84=100 Sugar and sugar substitutes in U.S. city average, all urban consumers, seasonally adjusted 1989 M01 2025 M08 +CUSR0000SEFR02 0000 SEFR02 S R S DECEMBER 1997=100 Candy and chewing gum in U.S. city average, all urban consumers, seasonally adjusted 2011 M01 2025 M08 +CUSR0000SEFR03 0000 SEFR03 S R S DECEMBER 1997=100 Other sweets in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFS 0000 SEFS S R S 1982-84=100 Fats and oils in U.S. city average, all urban consumers, seasonally adjusted 1989 M01 2025 M08 +CUSR0000SEFS01 0000 SEFS01 S R S DECEMBER 1997=100 Butter and margarine in U.S. city average, all urban consumers, seasonally adjusted 2002 M01 2025 M08 +CUSR0000SEFS02 0000 SEFS02 S R S DECEMBER 1997=100 Salad dressing in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFS03 0000 SEFS03 S R S DECEMBER 1997=100 Other fats and oils including peanut butter in U.S. city average, all urban consumers, seasonally adjusted 2003 M01 2025 M08 +CUSR0000SEFT 0000 SEFT S R S 1982-84=100 Other foods in U.S. city average, all urban consumers, seasonally adjusted 1981 M01 2025 M08 +CUSR0000SEFT01 0000 SEFT01 S R S 1982-84=100 Soups in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEFT02 0000 SEFT02 S R S 1982-84=100 Frozen and freeze dried prepared foods in U.S. city average, all urban consumers, seasonally adjusted 2000 M01 2025 M08 +CUSR0000SEFT03 0000 SEFT03 S R S 1982-84=100 Snacks in U.S. city average, all urban consumers, seasonally adjusted 1985 M01 2025 M08 +CUSR0000SEFT04 0000 SEFT04 S R S 1982-84=100 Spices, seasonings, condiments, sauces in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEFT06 0000 SEFT06 S R S DECEMBER 1997=100 Other miscellaneous foods in U.S. city average, all urban consumers, seasonally adjusted 2011 M01 2025 M08 +CUSR0000SEFV 0000 SEFV S R S 1982-84=100 Food away from home in U.S. city average, all urban consumers, seasonally adjusted 1953 M01 2025 M08 +CUSR0000SEFV01 0000 SEFV01 S R S DECEMBER 1997=100 Full service meals and snacks in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFV03 0000 SEFV03 S R S DECEMBER 1997=100 Food at employee sites and schools in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFV05 0000 SEFV05 S R S DECEMBER 1997=100 Other food away from home in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEFW 0000 SEFW S R S 1982-84=100 Alcoholic beverages at home in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEFW01 0000 SEFW01 S R S 1982-84=100 Beer, ale, and other malt beverages at home in U.S. city average, all urban consumers, seasonally adjusted 1969 M01 2025 M08 +CUSR0000SEFW02 0000 SEFW02 S R S 1982-84=100 Distilled spirits at home in U.S. city average, all urban consumers, seasonally adjusted 1992 M01 2025 M08 +CUSR0000SEFW03 0000 SEFW03 S R S 1982-84=100 Wine at home in U.S. city average, all urban consumers, seasonally adjusted 1990 M01 2025 M08 +CUSR0000SEFX 0000 SEFX S R S 1982-84=100 Alcoholic beverages away from home in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEGA 0000 SEGA S R S 1982-84=100 Tobacco and smoking products in U.S. city average, all urban consumers, seasonally adjusted 1986 M01 2025 M08 +CUSR0000SEGA01 0000 SEGA01 S R S DECEMBER 1997=100 Cigarettes in U.S. city average, all urban consumers, seasonally adjusted 2010 M01 2025 M08 +CUSR0000SEGD 0000 SEGD S R S 1982-84=100 Miscellaneous personal services in U.S. city average, all urban consumers, seasonally adjusted 1990 M01 2025 M08 +CUSR0000SEGD01 0000 SEGD01 S R S DECEMBER 1986=100 Legal services in U.S. city average, all urban consumers, seasonally adjusted 2001 M01 2024 M09 +CUSR0000SEGD02 0000 SEGD02 S R S DECEMBER 1986=100 Funeral expenses in U.S. city average, all urban consumers, seasonally adjusted 1988 M01 2025 M08 +CUSR0000SEGD03 0000 SEGD03 S R S DECEMBER 1997=100 Laundry and dry cleaning services in U.S. city average, all urban consumers, seasonally adjusted 2004 M01 2025 M08 +CUSR0000SEGD05 0000 SEGD05 S R S DECEMBER 1986=100 Financial services in U.S. city average, all urban consumers, seasonally adjusted 1999 M01 2025 M08 +CUSR0000SEGE 0000 SEGE S R S DECEMBER 1997=100 Miscellaneous personal goods in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEHA 0000 SEHA S R S 1982-84=100 Rent of primary residence in U.S. city average, all urban consumers, seasonally adjusted 1981 M01 2025 M08 +CUSR0000SEHB 0000 SEHB S R S DECEMBER 1997=100 Lodging away from home in U.S. city average, all urban consumers, seasonally adjusted 1997 M12 2025 M08 +CUSR0000SEHB01 0000 SEHB01 S R S DECEMBER 1982=100 Housing at school, excluding board in U.S. city average, all urban consumers, seasonally adjusted 1984 M01 2025 M08 +CUSR0000SEHB02 0000 SEHB02 S R S 1982-84=100 Other lodging away from home including hotels and motels in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SEHC 0000 SEHC S R S DECEMBER 1982=100 Owners' equivalent rent of residences in U.S. city average, all urban consumers, seasonally adjusted 1983 M01 2025 M08 +CUSR0000SEHC01 0000 SEHC01 S R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in U.S. city average, all urban consumers, seasonally adjusted 1983 M01 2025 M08 +CUSR0000SEHE 0000 SEHE S R S 1982-84=100 Fuel oil and other fuels in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SEHE01 0000 SEHE01 S R S 1982-84=100 Fuel oil in U.S. city average, all urban consumers, seasonally adjusted 1952 M01 2025 M08 +CUSR0000SEHE02 0000 SEHE02 S R S DECEMBER 1986=100 Propane, kerosene, and firewood in U.S. city average, all urban consumers, seasonally adjusted 1994 M01 2025 M08 +CUSR0000SEHF 0000 SEHF S R S 1982-84=100 Energy services in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SEHF01 0000 SEHF01 S R S 1982-84=100 Electricity in U.S. city average, all urban consumers, seasonally adjusted 1952 M01 2025 M08 +CUSR0000SEHF02 0000 SEHF02 S R S 1982-84=100 Utility (piped) gas service in U.S. city average, all urban consumers, seasonally adjusted 1952 M01 2025 M08 +CUSR0000SEHG 0000 SEHG S R S DECEMBER 1997=100 Water and sewer and trash collection services in U.S. city average, all urban consumers, seasonally adjusted 1997 M12 2025 M08 +CUSR0000SEHG01 0000 SEHG01 S R S 1982-84=100 Water and sewerage maintenance in U.S. city average, all urban consumers, seasonally adjusted 1986 M01 2025 M08 +CUSR0000SEHG02 0000 SEHG02 S R S DECEMBER 1983=100 Garbage and trash collection in U.S. city average, all urban consumers, seasonally adjusted 1984 M01 2025 M08 +CUSR0000SEHH 0000 SEHH S R S DECEMBER 1997=100 Window and floor coverings and other linens in U.S. city average, all urban consumers, seasonally adjusted 1999 M01 2025 M08 +CUSR0000SEHH02 0000 SEHH02 S R S DECEMBER 1997=100 Window coverings in U.S. city average, all urban consumers, seasonally adjusted 2003 M01 2025 M08 +CUSR0000SEHH03 0000 SEHH03 S R S DECEMBER 1997=100 Other linens in U.S. city average, all urban consumers, seasonally adjusted 2011 M01 2025 M08 +CUSR0000SEHJ 0000 SEHJ S R S 1982-84=100 Furniture and bedding in U.S. city average, all urban consumers, seasonally adjusted 1969 M01 2025 M08 +CUSR0000SEHJ03 0000 SEHJ03 S R S DECEMBER 1997=100 Other furniture in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEHK 0000 SEHK S R S DECEMBER 1997=100 Appliances in U.S. city average, all urban consumers, seasonally adjusted 1999 M01 2025 M08 +CUSR0000SEHK01 0000 SEHK01 S R S DECEMBER 1997=100 Major appliances in U.S. city average, all urban consumers, seasonally adjusted 2006 M01 2025 M08 +CUSR0000SEHK02 0000 SEHK02 S R S DECEMBER 1997=100 Other appliances in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEHL 0000 SEHL S R S DECEMBER 1997=100 Other household equipment and furnishings in U.S. city average, all urban consumers, seasonally adjusted 1999 M01 2025 M08 +CUSR0000SEHL02 0000 SEHL02 S R S DECEMBER 1990=100 Indoor plants and flowers in U.S. city average, all urban consumers, seasonally adjusted 1993 M01 2025 M08 +CUSR0000SEHL04 0000 SEHL04 S R S DECEMBER 1997=100 Nonelectric cookware and tableware in U.S. city average, all urban consumers, seasonally adjusted 2003 M01 2025 M08 +CUSR0000SEHM 0000 SEHM S R S DECEMBER 1997=100 Tools, hardware, outdoor equipment and supplies in U.S. city average, all urban consumers, seasonally adjusted 2002 M01 2025 M08 +CUSR0000SEHM01 0000 SEHM01 S R S DECEMBER 1997=100 Tools, hardware and supplies in U.S. city average, all urban consumers, seasonally adjusted 2011 M01 2025 M08 +CUSR0000SEHM02 0000 SEHM02 S R S DECEMBER 1997=100 Outdoor equipment and supplies in U.S. city average, all urban consumers, seasonally adjusted 2000 M01 2025 M08 +CUSR0000SEHN 0000 SEHN S R S 1982-84=100 Housekeeping supplies in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SEHN01 0000 SEHN01 S R S DECEMBER 1997=100 Household cleaning products in U.S. city average, all urban consumers, seasonally adjusted 2010 M01 2025 M08 +CUSR0000SEHN03 0000 SEHN03 S R S DECEMBER 1997=100 Miscellaneous household products in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEHP03 0000 SEHP03 S R S DECEMBER 1997=100 Moving, storage, freight expense in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEMC 0000 SEMC S R S 1982-84=100 Professional services in U.S. city average, all urban consumers, seasonally adjusted 1980 M01 2025 M08 +CUSR0000SEMC01 0000 SEMC01 S R S 1982-84=100 Physicians' services in U.S. city average, all urban consumers, seasonally adjusted 1980 M01 2025 M08 +CUSR0000SEMC02 0000 SEMC02 S R S 1982-84=100 Dental services in U.S. city average, all urban consumers, seasonally adjusted 1995 M01 2025 M08 +CUSR0000SEMC03 0000 SEMC03 S R S DECEMBER 1986=100 Eyeglasses and eye care in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SEMC04 0000 SEMC04 S R S DECEMBER 1986=100 Services by other medical professionals in U.S. city average, all urban consumers, seasonally adjusted 1989 M01 2025 M06 +CUSR0000SEMD 0000 SEMD S R S 1982-84=100 Hospital and related services in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SEMD01 0000 SEMD01 S R S DECEMBER 1996=100 Hospital services in U.S. city average, all urban consumers, seasonally adjusted 1997 M01 2025 M08 +CUSR0000SEMD02 0000 SEMD02 S R S DECEMBER 1996=100 Nursing homes and adult day services in U.S. city average, all urban consumers, seasonally adjusted 1997 M01 2025 M08 +CUSR0000SEMF 0000 SEMF S R S DECEMBER 2009=100 Medicinal drugs in U.S. city average, all urban consumers, seasonally adjusted 2011 M01 2025 M08 +CUSR0000SEMF01 0000 SEMF01 S R S 1982-84=100 Prescription drugs in U.S. city average, all urban consumers, seasonally adjusted 1969 M01 2025 M08 +CUSR0000SEMF02 0000 SEMF02 S R S DECEMBER 2009=100 Nonprescription drugs in U.S. city average, all urban consumers, seasonally adjusted 2011 M01 2025 M08 +CUSR0000SERA 0000 SERA S R S DECEMBER 1997=100 Video and audio in U.S. city average, all urban consumers, seasonally adjusted 1994 M01 2025 M08 +CUSR0000SERA01 0000 SERA01 S R S 1982-84=100 Televisions in U.S. city average, all urban consumers, seasonally adjusted 1996 M01 2025 M08 +CUSR0000SERA02 0000 SERA02 S R S DECEMBER 1983=100 Cable, satellite, and live streaming television service in U.S. city average, all urban consumers, seasonally adjusted 1992 M01 2025 M08 +CUSR0000SERA03 0000 SERA03 S R S DECEMBER 1997=100 Other video equipment in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SERA05 0000 SERA05 S R S 1982-84=100 Audio equipment in U.S. city average, all urban consumers, seasonally adjusted 2009 M01 2025 M08 +CUSR0000SERAC 0000 SERAC S R S DECEMBER 2009=100 Video and audio products in U.S. city average, all urban consumers, seasonally adjusted 2010 M01 2025 M08 +CUSR0000SERAS 0000 SERAS S R S DECEMBER 2009=100 Video and audio services in U.S. city average, all urban consumers, seasonally adjusted 2010 M01 2025 M08 +CUSR0000SERB 0000 SERB S R S DECEMBER 1997=100 Pets, pet products and services in U.S. city average, all urban consumers, seasonally adjusted 1999 M01 2025 M08 +CUSR0000SERB01 0000 SERB01 S R S 1982-84=100 Pets and pet products in U.S. city average, all urban consumers, seasonally adjusted 2001 M01 2025 M08 +CUSR0000SERB02 0000 SERB02 S R S DECEMBER 1997=100 Pet services including veterinary in U.S. city average, all urban consumers, seasonally adjusted 1999 M01 2025 M08 +CUSR0000SERC 0000 SERC S R S 1982-84=100 Sporting goods in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SERC01 0000 SERC01 S R S 1982-84=100 Sports vehicles including bicycles in U.S. city average, all urban consumers, seasonally adjusted 1997 M01 2025 M08 +CUSR0000SERC02 0000 SERC02 S R S 1982-84=100 Sports equipment in U.S. city average, all urban consumers, seasonally adjusted 2008 M01 2025 M08 +CUSR0000SERD 0000 SERD S R S DECEMBER 1997=100 Photography in U.S. city average, all urban consumers, seasonally adjusted 2005 M01 2025 M08 +CUSR0000SERD01 0000 SERD01 S R S 1982-84=100 Photographic equipment and supplies in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SERE 0000 SERE S R S DECEMBER 1997=100 Other recreational goods in U.S. city average, all urban consumers, seasonally adjusted 1997 M12 2025 M08 +CUSR0000SERE01 0000 SERE01 S R S 1982-84=100 Toys in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SERE02 0000 SERE02 S R S DECEMBER 1997=100 Sewing machines, fabric and supplies in U.S. city average, all urban consumers, seasonally adjusted 2003 M01 2025 M08 +CUSR0000SERE03 0000 SERE03 S R S DECEMBER 1997=100 Music instruments and accessories in U.S. city average, all urban consumers, seasonally adjusted 2004 M01 2025 M08 +CUSR0000SERF 0000 SERF S R S DECEMBER 1997=100 Other recreation services in U.S. city average, all urban consumers, seasonally adjusted 1997 M12 2025 M08 +CUSR0000SERF01 0000 SERF01 S R S DECEMBER 1997=100 Club membership for shopping clubs, fraternal, or other organizations, or participant sports fees in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SERF02 0000 SERF02 S R S 1982-84=100 Admissions in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SERF03 0000 SERF03 S R S DECEMBER 1986=100 Fees for lessons or instructions in U.S. city average, all urban consumers, seasonally adjusted 1989 M01 2025 M08 +CUSR0000SERG 0000 SERG S R S 1982-84=100 Recreational reading materials in U.S. city average, all urban consumers, seasonally adjusted 1989 M01 2025 M08 +CUSR0000SETA 0000 SETA S R S DECEMBER 1997=100 New and used motor vehicles in U.S. city average, all urban consumers, seasonally adjusted 1993 M01 2025 M08 +CUSR0000SETA01 0000 SETA01 S R S 1982-84=100 New vehicles in U.S. city average, all urban consumers, seasonally adjusted 1953 M01 2025 M08 +CUSR0000SETA02 0000 SETA02 S R S 1982-84=100 Used cars and trucks in U.S. city average, all urban consumers, seasonally adjusted 1953 M01 2025 M08 +CUSR0000SETA03 0000 SETA03 S R S DECEMBER 2001=100 Leased cars and trucks in U.S. city average, all urban consumers, seasonally adjusted 2002 M01 2025 M08 +CUSR0000SETA04 0000 SETA04 S R S DECEMBER 1997=100 Car and truck rental in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SETB 0000 SETB S R S 1982-84=100 Motor fuel in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SETB01 0000 SETB01 S R S 1982-84=100 Gasoline (all types) in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SETB02 0000 SETB02 S R S DECEMBER 1997=100 Other motor fuels in U.S. city average, all urban consumers, seasonally adjusted 2006 M01 2025 M08 +CUSR0000SETC 0000 SETC S R S 1982-84=100 Motor vehicle parts and equipment in U.S. city average, all urban consumers, seasonally adjusted 1991 M01 2025 M08 +CUSR0000SETC01 0000 SETC01 S R S 1982-84=100 Tires in U.S. city average, all urban consumers, seasonally adjusted 1992 M01 2025 M08 +CUSR0000SETD 0000 SETD S R S 1982-84=100 Motor vehicle maintenance and repair in U.S. city average, all urban consumers, seasonally adjusted 1967 M01 2025 M08 +CUSR0000SETD03 0000 SETD03 S R S DECEMBER 1997=100 Motor vehicle repair in U.S. city average, all urban consumers, seasonally adjusted 2000 M01 2025 M08 +CUSR0000SETE 0000 SETE S R S 1982-84=100 Motor vehicle insurance in U.S. city average, all urban consumers, seasonally adjusted 1985 M01 2025 M08 +CUSR0000SETF03 0000 SETF03 S R S DECEMBER 1997=100 Parking and other fees in U.S. city average, all urban consumers, seasonally adjusted 2009 M01 2025 M08 +CUSR0000SETG 0000 SETG S R S 1982-84=100 Public transportation in U.S. city average, all urban consumers, seasonally adjusted 1989 M01 2025 M08 +CUSR0000SETG01 0000 SETG01 S R S 1982-84=100 Airline fares in U.S. city average, all urban consumers, seasonally adjusted 1989 M01 2025 M08 +CUSR0000SETG02 0000 SETG02 S R S 1982-84=100 Other intercity transportation in U.S. city average, all urban consumers, seasonally adjusted 1989 M01 2025 M08 +CUSR0000SS02042 0000 SS02042 S R S 1982-84=100 Cookies in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SS0206A 0000 SS0206A S R S 1982-84=100 Crackers, bread, and cracker products in U.S. city average, all urban consumers, seasonally adjusted 1993 M01 2025 M08 +CUSR0000SS0206B 0000 SS0206B S R S 1982-84=100 Frozen and refrigerated bakery products, pies, tarts, turnovers in U.S. city average, all urban consumers, seasonally adjusted 1995 M01 2025 M08 +CUSR0000SS04011 0000 SS04011 S R S 1982-84=100 Bacon and related products in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SS04012 0000 SS04012 S R S DECEMBER 1997=100 Breakfast sausage and related products in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SS04031 0000 SS04031 S R S 1982-84=100 Ham, excluding canned in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SS05011 0000 SS05011 S R S 1982-84=100 Frankfurters in U.S. city average, all urban consumers, seasonally adjusted 2002 M01 2025 M08 +CUSR0000SS0501A 0000 SS0501A S R S DECEMBER 1997=100 Lunchmeats in U.S. city average, all urban consumers, seasonally adjusted 2010 M01 2025 M08 +CUSR0000SS06011 0000 SS06011 S R S 1982-84=100 Fresh whole chicken in U.S. city average, all urban consumers, seasonally adjusted 1994 M01 2025 M08 +CUSR0000SS06021 0000 SS06021 S R S 1982-84=100 Fresh and frozen chicken parts in U.S. city average, all urban consumers, seasonally adjusted 2011 M03 2025 M08 +CUSR0000SS07011 0000 SS07011 S R S 1982-84=100 Shelf stable fish and seafood in U.S. city average, all urban consumers, seasonally adjusted 1994 M01 2025 M08 +CUSR0000SS07021 0000 SS07021 S R S 1982-84=100 Frozen fish and seafood in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SS09011 0000 SS09011 S R S 1982-84=100 Fresh whole milk in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SS09021 0000 SS09021 S R S DECEMBER 1997=100 Fresh milk other than whole in U.S. city average, all urban consumers, seasonally adjusted 2011 M01 2025 M08 +CUSR0000SS10011 0000 SS10011 S R S 1982-84=100 Butter in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SS11031 0000 SS11031 S R S 1982-84=100 Oranges, including tangerines in U.S. city average, all urban consumers, seasonally adjusted 1947 M01 2025 M08 +CUSR0000SS13031 0000 SS13031 S R S DECEMBER 1997=100 Canned fruits in U.S. city average, all urban consumers, seasonally adjusted 2003 M01 2025 M08 +CUSR0000SS14011 0000 SS14011 S R S 1982-84=100 Frozen vegetables in U.S. city average, all urban consumers, seasonally adjusted 1991 M01 2025 M08 +CUSR0000SS14021 0000 SS14021 S R S DECEMBER 1997=100 Canned vegetables in U.S. city average, all urban consumers, seasonally adjusted 1999 M01 2025 M08 +CUSR0000SS16011 0000 SS16011 S R S 1982-84=100 Margarine in U.S. city average, all urban consumers, seasonally adjusted 1994 M01 2025 M08 +CUSR0000SS17031 0000 SS17031 S R S 1982-84=100 Roasted coffee in U.S. city average, all urban consumers, seasonally adjusted 2002 M01 2025 M08 +CUSR0000SS18041 0000 SS18041 S R S DECEMBER 1997=100 Salt and other seasonings and spices in U.S. city average, all urban consumers, seasonally adjusted 2006 M01 2025 M08 +CUSR0000SS18042 0000 SS18042 S R S DECEMBER 1997=100 Olives, pickles, relishes in U.S. city average, all urban consumers, seasonally adjusted 2011 M03 2025 M08 +CUSR0000SS18043 0000 SS18043 S R S DECEMBER 1997=100 Sauces and gravies in U.S. city average, all urban consumers, seasonally adjusted 2006 M01 2025 M08 +CUSR0000SS1804B 0000 SS1804B S R S 1982-84=100 Other condiments in U.S. city average, all urban consumers, seasonally adjusted 1978 M01 2025 M08 +CUSR0000SS18064 0000 SS18064 S R S DECEMBER 2007=100 Prepared salads in U.S. city average, all urban consumers, seasonally adjusted 2011 M01 2025 M08 +CUSR0000SS20021 0000 SS20021 S R S 1982-84=100 Whiskey at home in U.S. city average, all urban consumers, seasonally adjusted 1994 M01 2025 M08 +CUSR0000SS20022 0000 SS20022 S R S 1982-84=100 Distilled spirits, excluding whiskey, at home in U.S. city average, all urban consumers, seasonally adjusted 1999 M01 2025 M08 +CUSR0000SS20053 0000 SS20053 S R S DECEMBER 1997=100 Distilled spirits away from home in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SS30021 0000 SS30021 S R S 1982-84=100 Laundry equipment in U.S. city average, all urban consumers, seasonally adjusted 2006 M01 2025 M08 +CUSR0000SS33032 0000 SS33032 S R S 1982-84=100 Stationery, stationery supplies, gift wrap in U.S. city average, all urban consumers, seasonally adjusted 1993 M01 2025 M08 +CUSR0000SS45011 0000 SS45011 S R S 1982-84=100 New cars in U.S. city average, all urban consumers, seasonally adjusted 1953 M01 2025 M08 +CUSR0000SS4501A 0000 SS4501A S R S DECEMBER 1997=100 New cars and trucks in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2022 M03 +CUSR0000SS45021 0000 SS45021 S R S DECEMBER 1983=100 New trucks in U.S. city average, all urban consumers, seasonally adjusted 1984 M01 2025 M08 +CUSR0000SS45031 0000 SS45031 S R S DECEMBER 1986=100 New motorcycles in U.S. city average, all urban consumers, seasonally adjusted 1990 M01 2000 M05 +CUSR0000SS47014 0000 SS47014 S R S 1982-84=100 Gasoline, unleaded regular in U.S. city average, all urban consumers, seasonally adjusted 1976 M01 2025 M08 +CUSR0000SS47015 0000 SS47015 S R S DECEMBER 1993=100 Gasoline, unleaded midgrade in U.S. city average, all urban consumers, seasonally adjusted 1994 M01 2025 M08 +CUSR0000SS47016 0000 SS47016 S R S 1982-84=100 Gasoline, unleaded premium in U.S. city average, all urban consumers, seasonally adjusted 1983 M01 2025 M08 +CUSR0000SS52051 0000 SS52051 S R S DECEMBER 1997=100 Parking fees and tolls in U.S. city average, all urban consumers, seasonally adjusted 2011 M01 2025 M08 +CUSR0000SS53022 0000 SS53022 S R S DECEMBER 2007=100 Intercity train fare in U.S. city average, all urban consumers, seasonally adjusted 2008 M01 2019 M12 +CUSR0000SS53023 0000 SS53023 S R S DECEMBER 1997=100 Ship fare in U.S. city average, all urban consumers, seasonally adjusted 2002 M01 2025 M08 +CUSR0000SS5702 0000 SS5702 S R S DECEMBER 1996=100 Inpatient hospital services in U.S. city average, all urban consumers, seasonally adjusted 1997 M01 2025 M07 +CUSR0000SS5703 0000 SS5703 S R S DECEMBER 1986=100 Outpatient hospital services in U.S. city average, all urban consumers, seasonally adjusted 1987 M01 2025 M08 +CUSR0000SS61011 0000 SS61011 S R S DECEMBER 1997=100 Toys, games, hobbies and playground equipment in U.S. city average, all urban consumers, seasonally adjusted 2008 M01 2025 M08 +CUSR0000SS61023 0000 SS61023 S R S DECEMBER 1997=100 Photographic equipment in U.S. city average, all urban consumers, seasonally adjusted 2004 M01 2025 M08 +CUSR0000SS61031 0000 SS61031 S R S DECEMBER 1997=100 Pet food and treats in U.S. city average, all urban consumers, seasonally adjusted 2002 M01 2025 M08 +CUSR0000SS61032 0000 SS61032 S R S DECEMBER 1997=100 Purchase of pets, pet supplies, accessories in U.S. city average, all urban consumers, seasonally adjusted 2002 M01 2025 M08 +CUSR0000SS62031 0000 SS62031 S R S DECEMBER 1997=100 Admission to movies, theaters, and concerts in U.S. city average, all urban consumers, seasonally adjusted 1999 M01 2025 M08 +CUSR0000SS62032 0000 SS62032 S R S DECEMBER 1997=100 Admission to sporting events in U.S. city average, all urban consumers, seasonally adjusted 1999 M01 2025 M08 +CUSR0000SS62053 0000 SS62053 S R S DECEMBER 1997=100 Pet services in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SS62054 0000 SS62054 S R S DECEMBER 1997=100 Veterinarian services in U.S. city average, all urban consumers, seasonally adjusted 2000 M01 2025 M08 +CUSR0000SS68023 0000 SS68023 S R S DECEMBER 1997=100 Tax return preparation and other accounting fees in U.S. city average, all urban consumers, seasonally adjusted 1998 M01 2025 M08 +CUSR0000SSFV031A 0000 SSFV031A S R S DECEMBER 2005=100 Food at elementary and secondary schools in U.S. city average, all urban consumers, seasonally adjusted 2009 M01 2025 M05 +CUUR0000AA0 0000 AA0 U R A 1967=100 All items - old base in U.S. city average, all urban consumers, not seasonally adjusted 1913 M01 2025 M08 +CUUR0000AA0R 0000 AA0R U R A 1967=100 Purchasing power of the consumer dollar - old base in U.S. city average, all urban consumers, not seasonally adjusted 1913 M01 2025 M08 +CUUR0000SA0 0000 SA0 U R S 1982-84=100 All items in U.S. city average, all urban consumers, not seasonally adjusted 1913 M01 2025 M08 +CUUR0000SA0E 0000 SA0E U R S 1982-84=100 Energy in U.S. city average, all urban consumers, not seasonally adjusted 1957 M01 2025 M08 +CUUR0000SA0L1 0000 SA0L1 U R S 1982-84=100 All items less food in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SA0L12 0000 SA0L12 U R S 1982-84=100 All items less food and shelter in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SA0L12E 0000 SA0L12E U R S 1982-84=100 All items less food, shelter, and energy in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SA0L12E4 0000 SA0L12E4 U R S 1982-84=100 All items less food, shelter, energy, and used cars and trucks in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SA0L1E 0000 SA0L1E U R S 1982-84=100 All items less food and energy in U.S. city average, all urban consumers, not seasonally adjusted 1957 M01 2025 M08 +CUUR0000SA0L2 0000 SA0L2 U R S 1982-84=100 All items less shelter in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SA0L5 0000 SA0L5 U R S 1982-84=100 All items less medical care in U.S. city average, all urban consumers, not seasonally adjusted 1957 M01 2025 M08 +CUUR0000SA0LE 0000 SA0LE U R S 1982-84=100 All items less energy in U.S. city average, all urban consumers, not seasonally adjusted 1957 M01 2025 M08 +CUUR0000SA0R 0000 SA0R U R S 1982-84=100 Purchasing power of the consumer dollar in U.S. city average, all urban consumers, not seasonally adjusted 1913 M01 2025 M08 +CUUR0000SA311 0000 SA311 U R S 1982-84=100 Apparel less footwear in U.S. city average, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUUR0000SAA 0000 SAA U R S 1982-84=100 Apparel in U.S. city average, all urban consumers, not seasonally adjusted 1913 M13 2025 M08 +CUUR0000SAA1 0000 SAA1 U R S 1982-84=100 Men's and boys' apparel in U.S. city average, all urban consumers, not seasonally adjusted 1935 M13 2025 M08 +CUUR0000SAA2 0000 SAA2 U R S 1982-84=100 Women's and girls' apparel in U.S. city average, all urban consumers, not seasonally adjusted 1935 M13 2025 M08 +CUUR0000SAC 0000 SAC U R S 1982-84=100 Commodities in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SACE 0000 SACE U R S 1982-84=100 Energy commodities in U.S. city average, all urban consumers, not seasonally adjusted 1957 M01 2025 M08 +CUUR0000SACL1 0000 SACL1 U R S 1982-84=100 Commodities less food in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SACL11 0000 SACL11 U R S 1982-84=100 Commodities less food and beverages in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SACL1E 0000 SACL1E U R S 1982-84=100 Commodities less food and energy commodities in U.S. city average, all urban consumers, not seasonally adjusted 1957 M01 2025 M08 +CUUR0000SACL1E4 0000 SACL1E4 U R S 1982-84=100 Commodities less food, energy, and used cars and trucks in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SAD 0000 SAD U R S 1982-84=100 Durables in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SAE 0000 SAE U R S DECEMBER 1997=100 Education and communication in U.S. city average, all urban consumers, not seasonally adjusted 1993 M01 2025 M08 +CUUR0000SAE1 0000 SAE1 U R S DECEMBER 1997=100 Education in U.S. city average, all urban consumers, not seasonally adjusted 1993 M01 2025 M08 +CUUR0000SAE2 0000 SAE2 U R S DECEMBER 1997=100 Communication in U.S. city average, all urban consumers, not seasonally adjusted 1993 M01 2025 M08 +CUUR0000SAE21 0000 SAE21 U R S DECEMBER 1997=100 Information and information processing in U.S. city average, all urban consumers, not seasonally adjusted 1993 M01 2025 M08 +CUUR0000SAEC 0000 SAEC U R S DECEMBER 2009=100 Education and communication commodities in U.S. city average, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0000SAES 0000 SAES U R S DECEMBER 2009=100 Education and communication services in U.S. city average, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0000SAF 0000 SAF U R S 1982-84=100 Food and beverages in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SAF1 0000 SAF1 U R S 1982-84=100 Food in U.S. city average, all urban consumers, not seasonally adjusted 1913 M01 2025 M08 +CUUR0000SAF11 0000 SAF11 U R S 1982-84=100 Food at home in U.S. city average, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUUR0000SAF111 0000 SAF111 U R S 1982-84=100 Cereals and bakery products in U.S. city average, all urban consumers, not seasonally adjusted 1935 M01 2025 M08 +CUUR0000SAF112 0000 SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SAF1121 0000 SAF1121 U R S 1982-84=100 Meats, poultry, and fish in U.S. city average, all urban consumers, not seasonally adjusted 1935 M01 2025 M08 +CUUR0000SAF11211 0000 SAF11211 U R S 1982-84=100 Meats in U.S. city average, all urban consumers, not seasonally adjusted 1935 M01 2025 M08 +CUUR0000SAF113 0000 SAF113 U R S 1982-84=100 Fruits and vegetables in U.S. city average, all urban consumers, not seasonally adjusted 1935 M01 2025 M08 +CUUR0000SAF1131 0000 SAF1131 U R S 1982-84=100 Fresh fruits and vegetables in U.S. city average, all urban consumers, not seasonally adjusted 1935 M01 2025 M08 +CUUR0000SAF114 0000 SAF114 U R S 1982-84=100 Nonalcoholic beverages and beverage materials in U.S. city average, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUUR0000SAF115 0000 SAF115 U R S 1982-84=100 Other food at home in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SAF116 0000 SAF116 U R S 1982-84=100 Alcoholic beverages in U.S. city average, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUUR0000SAG 0000 SAG U R S 1982-84=100 Other goods and services in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SAG1 0000 SAG1 U R S 1982-84=100 Personal care in U.S. city average, all urban consumers, not seasonally adjusted 1935 M13 2025 M08 +CUUR0000SAGC 0000 SAGC U R S DECEMBER 2009=100 Other goods in U.S. city average, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0000SAGS 0000 SAGS U R S DECEMBER 2009=100 Other personal services in U.S. city average, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0000SAH 0000 SAH U R S 1982-84=100 Housing in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SAH1 0000 SAH1 U R S 1982-84=100 Shelter in U.S. city average, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUUR0000SAH2 0000 SAH2 U R S 1982-84=100 Fuels and utilities in U.S. city average, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUUR0000SAH21 0000 SAH21 U R S 1982-84=100 Household energy in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SAH3 0000 SAH3 U R S 1982-84=100 Household furnishings and operations in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SAH31 0000 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in U.S. city average, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0000SAM 0000 SAM U R S 1982-84=100 Medical care in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SAM1 0000 SAM1 U R S 1982-84=100 Medical care commodities in U.S. city average, all urban consumers, not seasonally adjusted 1935 M13 2025 M08 +CUUR0000SAM2 0000 SAM2 U R S 1982-84=100 Medical care services in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SAN 0000 SAN U R S 1982-84=100 Nondurables in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SAN1D 0000 SAN1D U R S 1982-84=100 Domestically produced farm food in U.S. city average, all urban consumers, not seasonally adjusted 1971 M11 2025 M08 +CUUR0000SANL1 0000 SANL1 U R S 1982-84=100 Nondurables less food in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SANL11 0000 SANL11 U R S 1982-84=100 Nondurables less food and beverages in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SANL113 0000 SANL113 U R S 1982-84=100 Nondurables less food, beverages, and apparel in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SANL13 0000 SANL13 U R S 1982-84=100 Nondurables less food and apparel in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SAR 0000 SAR U R S DECEMBER 1997=100 Recreation in U.S. city average, all urban consumers, not seasonally adjusted 1993 M01 2025 M08 +CUUR0000SARC 0000 SARC U R S DECEMBER 2009=100 Recreation commodities in U.S. city average, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0000SARS 0000 SARS U R S DECEMBER 2009=100 Recreation services in U.S. city average, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0000SAS 0000 SAS U R S 1982-84=100 Services in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SAS24 0000 SAS24 U R S 1982-84=100 Utilities and public transportation in U.S. city average, all urban consumers, not seasonally adjusted 1957 M01 2025 M08 +CUUR0000SAS2RS 0000 SAS2RS U R S DECEMBER 1982=100 Rent of shelter in U.S. city average, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0000SAS367 0000 SAS367 U R S 1982-84=100 Other services in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SAS4 0000 SAS4 U R S 1982-84=100 Transportation services in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SASL2RS 0000 SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in U.S. city average, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0000SASL5 0000 SASL5 U R S 1982-84=100 Services less medical care services in U.S. city average, all urban consumers, not seasonally adjusted 1957 M03 2025 M08 +CUUR0000SASLE 0000 SASLE U R S 1982-84=100 Services less energy services in U.S. city average, all urban consumers, not seasonally adjusted 1957 M01 2025 M08 +CUUR0000SAT 0000 SAT U R S 1982-84=100 Transportation in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SAT1 0000 SAT1 U R S 1982-84=100 Private transportation in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SATCLTB 0000 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in U.S. city average, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0000SEAA 0000 SEAA U R S 1982-84=100 Men's apparel in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEAA01 0000 SEAA01 U R S 1982-84=100 Men's suits, sport coats, and outerwear in U.S. city average, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUUR0000SEAA02 0000 SEAA02 U R S 1982-84=100 Men's underwear, nightwear, swimwear, and accessories in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEAA03 0000 SEAA03 U R S DECEMBER 1997=100 Men's shirts and sweaters in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEAA04 0000 SEAA04 U R S 1982-84=100 Men's pants and shorts in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEAB 0000 SEAB U R S 1982-84=100 Boys' apparel in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEAC 0000 SEAC U R S 1982-84=100 Women's apparel in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEAC01 0000 SEAC01 U R S 1982-84=100 Women's outerwear in U.S. city average, all urban consumers, not seasonally adjusted 1935 M10 2025 M08 +CUUR0000SEAC02 0000 SEAC02 U R S 1982-84=100 Women's dresses in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SEAC03 0000 SEAC03 U R S DECEMBER 1997=100 Women's suits and separates in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEAC04 0000 SEAC04 U R S DECEMBER 1997=100 Women's underwear, nightwear, swimwear, and accessories in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEAD 0000 SEAD U R S 1982-84=100 Girls' apparel in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEAE 0000 SEAE U R S 1982-84=100 Footwear in U.S. city average, all urban consumers, not seasonally adjusted 1935 M13 2025 M08 +CUUR0000SEAE01 0000 SEAE01 U R S 1982-84=100 Men's footwear in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEAE02 0000 SEAE02 U R S 1982-84=100 Boys' and girls' footwear in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEAE03 0000 SEAE03 U R S 1982-84=100 Women's footwear in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEAF 0000 SEAF U R S 1982-84=100 Infants' and toddlers' apparel in U.S. city average, all urban consumers, not seasonally adjusted 1947 M09 2025 M08 +CUUR0000SEAG 0000 SEAG U R S DECEMBER 1986=100 Jewelry and watches in U.S. city average, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUUR0000SEAG01 0000 SEAG01 U R S DECEMBER 1986=100 Watches in U.S. city average, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUUR0000SEAG02 0000 SEAG02 U R S DECEMBER 1986=100 Jewelry in U.S. city average, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUUR0000SEEA 0000 SEEA U R S 1982-84=100 Educational books and supplies in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SEEB 0000 SEEB U R S 1982-84=100 Tuition, other school fees, and childcare in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEEB01 0000 SEEB01 U R S 1982-84=100 College tuition and fees in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEEB02 0000 SEEB02 U R S 1982-84=100 Elementary and high school tuition and fees in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEEB03 0000 SEEB03 U R S DECEMBER 1990=100 Day care and preschool in U.S. city average, all urban consumers, not seasonally adjusted 1990 M12 2025 M08 +CUUR0000SEEB04 0000 SEEB04 U R S DECEMBER 1997=100 Technical and business school tuition and fees in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEEC 0000 SEEC U R S DECEMBER 1997=100 Postage and delivery services in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEEC01 0000 SEEC01 U R S 1982-84=100 Postage in U.S. city average, all urban consumers, not seasonally adjusted 1935 M13 2025 M08 +CUUR0000SEEC02 0000 SEEC02 U R S DECEMBER 1997=100 Delivery services in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEED 0000 SEED U R S DECEMBER 1997=100 Telephone services in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEED03 0000 SEED03 U R S DECEMBER 1997=100 Wireless telephone services in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEED04 0000 SEED04 U R S DECEMBER 2009=100 Residential telephone services in U.S. city average, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0000SEEE 0000 SEEE U R S DECEMBER 1988=100 Information technology, hardware and services in U.S. city average, all urban consumers, not seasonally adjusted 1988 M12 2025 M08 +CUUR0000SEEE01 0000 SEEE01 U R S DECEMBER 2007=100 Computers, peripherals, and smart home assistants in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEEE02 0000 SEEE02 U R S DECEMBER 1997=100 Computer software and accessories in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEEE03 0000 SEEE03 U R S DECEMBER 1997=100 Internet services and electronic information providers in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEEE04 0000 SEEE04 U R S DECEMBER 1997=100 Telephone hardware, calculators, and other consumer information items in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEEEC 0000 SEEEC U R S DECEMBER 2009=100 Information technology commodities in U.S. city average, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0000SEFA 0000 SEFA U R S 1982-84=100 Cereals and cereal products in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEFA01 0000 SEFA01 U R S 1982-84=100 Flour and prepared flour mixes in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEFA02 0000 SEFA02 U R S 1982-84=100 Breakfast cereal in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEFA03 0000 SEFA03 U R S 1982-84=100 Rice, pasta, cornmeal in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEFB 0000 SEFB U R S 1982-84=100 Bakery products in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEFB01 0000 SEFB01 U R S DECEMBER 1997=100 Bread in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFB02 0000 SEFB02 U R S DECEMBER 1997=100 Fresh biscuits, rolls, muffins in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFB03 0000 SEFB03 U R S 1982-84=100 Cakes, cupcakes, and cookies in U.S. city average, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUUR0000SEFB04 0000 SEFB04 U R S 1982-84=100 Other bakery products in U.S. city average, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUUR0000SEFC 0000 SEFC U R S 1982-84=100 Beef and veal in U.S. city average, all urban consumers, not seasonally adjusted 1935 M01 2025 M08 +CUUR0000SEFC01 0000 SEFC01 U R S 1982-84=100 Uncooked ground beef in U.S. city average, all urban consumers, not seasonally adjusted 1943 M02 2025 M08 +CUUR0000SEFC02 0000 SEFC02 U R S DECEMBER 1997=100 Uncooked beef roasts in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFC03 0000 SEFC03 U R S DECEMBER 1997=100 Uncooked beef steaks in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFC04 0000 SEFC04 U R S DECEMBER 1997=100 Uncooked other beef and veal in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFD 0000 SEFD U R S 1982-84=100 Pork in U.S. city average, all urban consumers, not seasonally adjusted 1935 M01 2025 M08 +CUUR0000SEFD01 0000 SEFD01 U R S DECEMBER 1997=100 Bacon, breakfast sausage, and related products in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFD02 0000 SEFD02 U R S 1982-84=100 Ham in U.S. city average, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUUR0000SEFD03 0000 SEFD03 U R S 1982-84=100 Pork chops in U.S. city average, all urban consumers, not seasonally adjusted 1939 M01 2025 M08 +CUUR0000SEFD04 0000 SEFD04 U R S DECEMBER 1997=100 Other pork including roasts, steaks, and ribs in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFE 0000 SEFE U R S 1982-84=100 Other meats in U.S. city average, all urban consumers, not seasonally adjusted 1953 M01 2025 M08 +CUUR0000SEFF 0000 SEFF U R S 1982-84=100 Poultry in U.S. city average, all urban consumers, not seasonally adjusted 1935 M01 2025 M08 +CUUR0000SEFF01 0000 SEFF01 U R S DECEMBER 1997=100 Chicken in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFF02 0000 SEFF02 U R S DECEMBER 1997=100 Other uncooked poultry including turkey in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFG 0000 SEFG U R S 1982-84=100 Fish and seafood in U.S. city average, all urban consumers, not seasonally adjusted 1935 M01 2025 M08 +CUUR0000SEFG01 0000 SEFG01 U R S DECEMBER 1997=100 Fresh fish and seafood in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFG02 0000 SEFG02 U R S DECEMBER 1997=100 Processed fish and seafood in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFH 0000 SEFH U R S 1982-84=100 Eggs in U.S. city average, all urban consumers, not seasonally adjusted 1935 M01 2025 M08 +CUUR0000SEFJ 0000 SEFJ U R S 1982-84=100 Dairy and related products in U.S. city average, all urban consumers, not seasonally adjusted 1935 M01 2025 M08 +CUUR0000SEFJ01 0000 SEFJ01 U R S DECEMBER 1997=100 Milk in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFJ02 0000 SEFJ02 U R S 1982-84=100 Cheese and related products in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEFJ03 0000 SEFJ03 U R S 1982-84=100 Ice cream and related products in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEFJ04 0000 SEFJ04 U R S DECEMBER 1997=100 Other dairy and related products in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFK 0000 SEFK U R S 1982-84=100 Fresh fruits in U.S. city average, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUUR0000SEFK01 0000 SEFK01 U R S 1982-84=100 Apples in U.S. city average, all urban consumers, not seasonally adjusted 1939 M01 2025 M08 +CUUR0000SEFK02 0000 SEFK02 U R S 1982-84=100 Bananas in U.S. city average, all urban consumers, not seasonally adjusted 1939 M01 2025 M08 +CUUR0000SEFK03 0000 SEFK03 U R S DECEMBER 1997=100 Citrus fruits in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFK04 0000 SEFK04 U R S DECEMBER 1997=100 Other fresh fruits in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFL 0000 SEFL U R S 1982-84=100 Fresh vegetables in U.S. city average, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUUR0000SEFL01 0000 SEFL01 U R S 1982-84=100 Potatoes in U.S. city average, all urban consumers, not seasonally adjusted 1939 M01 2025 M08 +CUUR0000SEFL02 0000 SEFL02 U R S 1982-84=100 Lettuce in U.S. city average, all urban consumers, not seasonally adjusted 1939 M01 2025 M08 +CUUR0000SEFL03 0000 SEFL03 U R S 1982-84=100 Tomatoes in U.S. city average, all urban consumers, not seasonally adjusted 1953 M01 2025 M08 +CUUR0000SEFL04 0000 SEFL04 U R S 1982-84=100 Other fresh vegetables in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEFM 0000 SEFM U R S DECEMBER 1997=100 Processed fruits and vegetables in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFM01 0000 SEFM01 U R S DECEMBER 1997=100 Canned fruits and vegetables in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFM02 0000 SEFM02 U R S DECEMBER 1997=100 Frozen fruits and vegetables in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFM03 0000 SEFM03 U R S DECEMBER 1997=100 Other processed fruits and vegetables including dried in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFN 0000 SEFN U R S DECEMBER 1997=100 Juices and nonalcoholic drinks in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFN01 0000 SEFN01 U R S 1982-84=100 Carbonated drinks in U.S. city average, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUUR0000SEFN02 0000 SEFN02 U R S DECEMBER 1997=100 Frozen noncarbonated juices and drinks in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFN03 0000 SEFN03 U R S DECEMBER 1997=100 Nonfrozen noncarbonated juices and drinks in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFP 0000 SEFP U R S DECEMBER 1997=100 Beverage materials including coffee and tea in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFP01 0000 SEFP01 U R S 1982-84=100 Coffee in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SEFP02 0000 SEFP02 U R S DECEMBER 1997=100 Other beverage materials including tea in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFR 0000 SEFR U R S 1982-84=100 Sugar and sweets in U.S. city average, all urban consumers, not seasonally adjusted 1935 M01 2025 M08 +CUUR0000SEFR01 0000 SEFR01 U R S 1982-84=100 Sugar and sugar substitutes in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEFR02 0000 SEFR02 U R S DECEMBER 1997=100 Candy and chewing gum in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFR03 0000 SEFR03 U R S DECEMBER 1997=100 Other sweets in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFS 0000 SEFS U R S 1982-84=100 Fats and oils in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SEFS01 0000 SEFS01 U R S DECEMBER 1997=100 Butter and margarine in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFS02 0000 SEFS02 U R S DECEMBER 1997=100 Salad dressing in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFS03 0000 SEFS03 U R S DECEMBER 1997=100 Other fats and oils including peanut butter in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFT 0000 SEFT U R S 1982-84=100 Other foods in U.S. city average, all urban consumers, not seasonally adjusted 1963 M12 2025 M08 +CUUR0000SEFT01 0000 SEFT01 U R S 1982-84=100 Soups in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEFT02 0000 SEFT02 U R S 1982-84=100 Frozen and freeze dried prepared foods in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEFT03 0000 SEFT03 U R S 1982-84=100 Snacks in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEFT04 0000 SEFT04 U R S 1982-84=100 Spices, seasonings, condiments, sauces in U.S. city average, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUUR0000SEFT05 0000 SEFT05 U R S DECEMBER 1997=100 Baby Food and Formula in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFT06 0000 SEFT06 U R S DECEMBER 1997=100 Other miscellaneous foods in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFV 0000 SEFV U R S 1982-84=100 Food away from home in U.S. city average, all urban consumers, not seasonally adjusted 1953 M01 2025 M08 +CUUR0000SEFV01 0000 SEFV01 U R S DECEMBER 1997=100 Full service meals and snacks in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFV02 0000 SEFV02 U R S DECEMBER 1997=100 Limited service meals and snacks in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFV03 0000 SEFV03 U R S DECEMBER 1997=100 Food at employee sites and schools in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFV04 0000 SEFV04 U R S DECEMBER 1997=100 Food from vending machines and mobile vendors in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFV05 0000 SEFV05 U R S DECEMBER 1997=100 Other food away from home in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEFW 0000 SEFW U R S 1982-84=100 Alcoholic beverages at home in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEFW01 0000 SEFW01 U R S 1982-84=100 Beer, ale, and other malt beverages at home in U.S. city average, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUUR0000SEFW02 0000 SEFW02 U R S 1982-84=100 Distilled spirits at home in U.S. city average, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUUR0000SEFW03 0000 SEFW03 U R S 1982-84=100 Wine at home in U.S. city average, all urban consumers, not seasonally adjusted 1963 M12 2025 M08 +CUUR0000SEFX 0000 SEFX U R S 1982-84=100 Alcoholic beverages away from home in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEGA 0000 SEGA U R S 1982-84=100 Tobacco and smoking products in U.S. city average, all urban consumers, not seasonally adjusted 1935 M13 2025 M08 +CUUR0000SEGA01 0000 SEGA01 U R S DECEMBER 1997=100 Cigarettes in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEGA02 0000 SEGA02 U R S DECEMBER 1997=100 Tobacco products other than cigarettes in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEGB 0000 SEGB U R S 1982-84=100 Personal care products in U.S. city average, all urban consumers, not seasonally adjusted 1935 M13 2025 M08 +CUUR0000SEGB01 0000 SEGB01 U R S DECEMBER 1997=100 Hair, dental, shaving, and miscellaneous personal care products in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEGB02 0000 SEGB02 U R S 1982-84=100 Cosmetics, perfume, bath, nail preparations and implements in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEGC 0000 SEGC U R S 1982-84=100 Personal care services in U.S. city average, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUUR0000SEGC01 0000 SEGC01 U R S DECEMBER 1997=100 Haircuts and other personal care services in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEGD 0000 SEGD U R S 1982-84=100 Miscellaneous personal services in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEGD01 0000 SEGD01 U R S DECEMBER 1986=100 Legal services in U.S. city average, all urban consumers, not seasonally adjusted 1986 M12 2024 M09 +CUUR0000SEGD02 0000 SEGD02 U R S DECEMBER 1986=100 Funeral expenses in U.S. city average, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUUR0000SEGD03 0000 SEGD03 U R S DECEMBER 1997=100 Laundry and dry cleaning services in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEGD04 0000 SEGD04 U R S DECEMBER 1997=100 Apparel services other than laundry and dry cleaning in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEGD05 0000 SEGD05 U R S DECEMBER 1986=100 Financial services in U.S. city average, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUUR0000SEGE 0000 SEGE U R S DECEMBER 1997=100 Miscellaneous personal goods in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHA 0000 SEHA U R S 1982-84=100 Rent of primary residence in U.S. city average, all urban consumers, not seasonally adjusted 1913 M13 2025 M08 +CUUR0000SEHB 0000 SEHB U R S DECEMBER 1997=100 Lodging away from home in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHB01 0000 SEHB01 U R S DECEMBER 1982=100 Housing at school, excluding board in U.S. city average, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0000SEHB02 0000 SEHB02 U R S 1982-84=100 Other lodging away from home including hotels and motels in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SEHC 0000 SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in U.S. city average, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0000SEHC01 0000 SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in U.S. city average, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0000SEHD 0000 SEHD U R S DECEMBER 1997=100 Tenants' and household insurance in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHE 0000 SEHE U R S 1982-84=100 Fuel oil and other fuels in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SEHE01 0000 SEHE01 U R S 1982-84=100 Fuel oil in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SEHE02 0000 SEHE02 U R S DECEMBER 1986=100 Propane, kerosene, and firewood in U.S. city average, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUUR0000SEHF 0000 SEHF U R S 1982-84=100 Energy services in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SEHF01 0000 SEHF01 U R S 1982-84=100 Electricity in U.S. city average, all urban consumers, not seasonally adjusted 1913 M12 2025 M08 +CUUR0000SEHF02 0000 SEHF02 U R S 1982-84=100 Utility (piped) gas service in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SEHG 0000 SEHG U R S DECEMBER 1997=100 Water and sewer and trash collection services in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHG01 0000 SEHG01 U R S 1982-84=100 Water and sewerage maintenance in U.S. city average, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUUR0000SEHG02 0000 SEHG02 U R S DECEMBER 1983=100 Garbage and trash collection in U.S. city average, all urban consumers, not seasonally adjusted 1983 M12 2025 M08 +CUUR0000SEHH 0000 SEHH U R S DECEMBER 1997=100 Window and floor coverings and other linens in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHH01 0000 SEHH01 U R S DECEMBER 1997=100 Floor coverings in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHH02 0000 SEHH02 U R S DECEMBER 1997=100 Window coverings in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHH03 0000 SEHH03 U R S DECEMBER 1997=100 Other linens in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHJ 0000 SEHJ U R S 1982-84=100 Furniture and bedding in U.S. city average, all urban consumers, not seasonally adjusted 1935 M13 2025 M08 +CUUR0000SEHJ01 0000 SEHJ01 U R S 1982-84=100 Bedroom furniture in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEHJ02 0000 SEHJ02 U R S DECEMBER 1997=100 Living room, kitchen, and dining room furniture in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHJ03 0000 SEHJ03 U R S DECEMBER 1997=100 Other furniture in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHK 0000 SEHK U R S DECEMBER 1997=100 Appliances in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHK01 0000 SEHK01 U R S DECEMBER 1997=100 Major appliances in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHK02 0000 SEHK02 U R S DECEMBER 1997=100 Other appliances in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHL 0000 SEHL U R S DECEMBER 1997=100 Other household equipment and furnishings in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHL01 0000 SEHL01 U R S 1982-84=100 Clocks, lamps, and decorator items in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEHL02 0000 SEHL02 U R S DECEMBER 1990=100 Indoor plants and flowers in U.S. city average, all urban consumers, not seasonally adjusted 1990 M12 2025 M08 +CUUR0000SEHL03 0000 SEHL03 U R S DECEMBER 1997=100 Dishes and flatware in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHL04 0000 SEHL04 U R S DECEMBER 1997=100 Nonelectric cookware and tableware in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHM 0000 SEHM U R S DECEMBER 1997=100 Tools, hardware, outdoor equipment and supplies in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHM01 0000 SEHM01 U R S DECEMBER 1997=100 Tools, hardware and supplies in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHM02 0000 SEHM02 U R S DECEMBER 1997=100 Outdoor equipment and supplies in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHN 0000 SEHN U R S 1982-84=100 Housekeeping supplies in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SEHN01 0000 SEHN01 U R S DECEMBER 1997=100 Household cleaning products in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHN02 0000 SEHN02 U R S DECEMBER 1997=100 Household paper products in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHN03 0000 SEHN03 U R S DECEMBER 1997=100 Miscellaneous household products in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHP 0000 SEHP U R S DECEMBER 1997=100 Household operations in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUUR0000SEHP01 0000 SEHP01 U R S DECEMBER 1997=100 Domestic services in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2024 M11 +CUUR0000SEHP02 0000 SEHP02 U R S DECEMBER 1997=100 Gardening and lawncare services in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M07 +CUUR0000SEHP03 0000 SEHP03 U R S DECEMBER 1997=100 Moving, storage, freight expense in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SEHP04 0000 SEHP04 U R S DECEMBER 1997=100 Repair of household items in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2024 M07 +CUUR0000SEMC 0000 SEMC U R S 1982-84=100 Professional services in U.S. city average, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUUR0000SEMC01 0000 SEMC01 U R S 1982-84=100 Physicians' services in U.S. city average, all urban consumers, not seasonally adjusted 1935 M13 2025 M08 +CUUR0000SEMC02 0000 SEMC02 U R S 1982-84=100 Dental services in U.S. city average, all urban consumers, not seasonally adjusted 1935 M13 2025 M08 +CUUR0000SEMC03 0000 SEMC03 U R S DECEMBER 1986=100 Eyeglasses and eye care in U.S. city average, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUUR0000SEMC04 0000 SEMC04 U R S DECEMBER 1986=100 Services by other medical professionals in U.S. city average, all urban consumers, not seasonally adjusted 1986 M12 2025 M06 +CUUR0000SEMD 0000 SEMD U R S 1982-84=100 Hospital and related services in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SEMD01 0000 SEMD01 U R S DECEMBER 1996=100 Hospital services in U.S. city average, all urban consumers, not seasonally adjusted 1996 M12 2025 M08 +CUUR0000SEMD02 0000 SEMD02 U R S DECEMBER 1996=100 Nursing homes and adult day services in U.S. city average, all urban consumers, not seasonally adjusted 1996 M12 2025 M08 +CUUR0000SEMD03 0000 SEMD03 U R S DECEMBER 2005=100 Care of invalids and elderly at home in U.S. city average, all urban consumers, not seasonally adjusted 2005 M12 2025 M08 +CUUR0000SEME 0000 SEME U R S DECEMBER 2005=100 Health insurance in U.S. city average, all urban consumers, not seasonally adjusted 2005 M12 2025 M08 +CUUR0000SEMF 0000 SEMF U R S DECEMBER 2009=100 Medicinal drugs in U.S. city average, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0000SEMF01 0000 SEMF01 U R S 1982-84=100 Prescription drugs in U.S. city average, all urban consumers, not seasonally adjusted 1935 M13 2025 M08 +CUUR0000SEMF02 0000 SEMF02 U R S DECEMBER 2009=100 Nonprescription drugs in U.S. city average, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0000SEMG 0000 SEMG U R S DECEMBER 2009=100 Medical equipment and supplies in U.S. city average, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0000SERA 0000 SERA U R S DECEMBER 1997=100 Video and audio in U.S. city average, all urban consumers, not seasonally adjusted 1993 M01 2025 M08 +CUUR0000SERA01 0000 SERA01 U R S 1982-84=100 Televisions in U.S. city average, all urban consumers, not seasonally adjusted 1950 M12 2025 M08 +CUUR0000SERA02 0000 SERA02 U R S DECEMBER 1983=100 Cable, satellite, and live streaming television service in U.S. city average, all urban consumers, not seasonally adjusted 1983 M12 2025 M08 +CUUR0000SERA03 0000 SERA03 U R S DECEMBER 1997=100 Other video equipment in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SERA04 0000 SERA04 U R S DECEMBER 1997=100 Purchase, subscription, and rental of video in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SERA05 0000 SERA05 U R S 1982-84=100 Audio equipment in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SERA06 0000 SERA06 U R S DECEMBER 1997=100 Recorded music and music subscriptions in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SERAC 0000 SERAC U R S DECEMBER 2009=100 Video and audio products in U.S. city average, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0000SERAS 0000 SERAS U R S DECEMBER 2009=100 Video and audio services in U.S. city average, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0000SERB 0000 SERB U R S DECEMBER 1997=100 Pets, pet products and services in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SERB01 0000 SERB01 U R S 1982-84=100 Pets and pet products in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SERB02 0000 SERB02 U R S DECEMBER 1997=100 Pet services including veterinary in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SERC 0000 SERC U R S 1982-84=100 Sporting goods in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SERC01 0000 SERC01 U R S 1982-84=100 Sports vehicles including bicycles in U.S. city average, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUUR0000SERC02 0000 SERC02 U R S 1982-84=100 Sports equipment in U.S. city average, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUUR0000SERD 0000 SERD U R S DECEMBER 1997=100 Photography in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SERD01 0000 SERD01 U R S 1982-84=100 Photographic equipment and supplies in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SERD02 0000 SERD02 U R S DECEMBER 1997=100 Photographers and photo processing in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SERE 0000 SERE U R S DECEMBER 1997=100 Other recreational goods in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SERE01 0000 SERE01 U R S 1982-84=100 Toys in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SERE02 0000 SERE02 U R S DECEMBER 1997=100 Sewing machines, fabric and supplies in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SERE03 0000 SERE03 U R S DECEMBER 1997=100 Music instruments and accessories in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SERF 0000 SERF U R S DECEMBER 1997=100 Other recreation services in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SERF01 0000 SERF01 U R S DECEMBER 1997=100 Club membership for shopping clubs, fraternal, or other organizations, or participant sports fees in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SERF02 0000 SERF02 U R S 1982-84=100 Admissions in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SERF03 0000 SERF03 U R S DECEMBER 1986=100 Fees for lessons or instructions in U.S. city average, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUUR0000SERG 0000 SERG U R S 1982-84=100 Recreational reading materials in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SERG01 0000 SERG01 U R S DECEMBER 1997=100 Newspapers and magazines in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SERG02 0000 SERG02 U R S DECEMBER 1997=100 Recreational books in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SETA 0000 SETA U R S DECEMBER 1997=100 New and used motor vehicles in U.S. city average, all urban consumers, not seasonally adjusted 1993 M01 2025 M08 +CUUR0000SETA01 0000 SETA01 U R S 1982-84=100 New vehicles in U.S. city average, all urban consumers, not seasonally adjusted 1935 M13 2025 M08 +CUUR0000SETA02 0000 SETA02 U R S 1982-84=100 Used cars and trucks in U.S. city average, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUUR0000SETA03 0000 SETA03 U R S DECEMBER 2001=100 Leased cars and trucks in U.S. city average, all urban consumers, not seasonally adjusted 2001 M12 2025 M08 +CUUR0000SETA04 0000 SETA04 U R S DECEMBER 1997=100 Car and truck rental in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SETB 0000 SETB U R S 1982-84=100 Motor fuel in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SETB01 0000 SETB01 U R S 1982-84=100 Gasoline (all types) in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SETB02 0000 SETB02 U R S DECEMBER 1997=100 Other motor fuels in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SETC 0000 SETC U R S 1982-84=100 Motor vehicle parts and equipment in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SETC01 0000 SETC01 U R S 1982-84=100 Tires in U.S. city average, all urban consumers, not seasonally adjusted 1935 M13 2025 M08 +CUUR0000SETC02 0000 SETC02 U R S DECEMBER 1997=100 Vehicle accessories other than tires in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SETD 0000 SETD U R S 1982-84=100 Motor vehicle maintenance and repair in U.S. city average, all urban consumers, not seasonally adjusted 1935 M13 2025 M08 +CUUR0000SETD01 0000 SETD01 U R S 1982-84=100 Motor vehicle body work in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M07 +CUUR0000SETD02 0000 SETD02 U R S 1982-84=100 Motor vehicle maintenance and servicing in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SETD03 0000 SETD03 U R S DECEMBER 1997=100 Motor vehicle repair in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SETE 0000 SETE U R S 1982-84=100 Motor vehicle insurance in U.S. city average, all urban consumers, not seasonally adjusted 1935 M13 2025 M08 +CUUR0000SETF 0000 SETF U R S DECEMBER 1997=100 Motor vehicle fees in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SETF01 0000 SETF01 U R S DECEMBER 1997=100 State motor vehicle registration and license fees in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SETF03 0000 SETF03 U R S DECEMBER 1997=100 Parking and other fees in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SETG 0000 SETG U R S 1982-84=100 Public transportation in U.S. city average, all urban consumers, not seasonally adjusted 1935 M03 2025 M08 +CUUR0000SETG01 0000 SETG01 U R S 1982-84=100 Airline fares in U.S. city average, all urban consumers, not seasonally adjusted 1963 M12 2025 M08 +CUUR0000SETG02 0000 SETG02 U R S 1982-84=100 Other intercity transportation in U.S. city average, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUUR0000SETG03 0000 SETG03 U R S 1982-84=100 Intracity transportation in U.S. city average, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUUR0000SS01031 0000 SS01031 U R S DECEMBER 1997=100 Rice in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS02011 0000 SS02011 U R S 1982-84=100 White bread in U.S. city average, all urban consumers, not seasonally adjusted 1939 M01 2025 M08 +CUUR0000SS02021 0000 SS02021 U R S 1982-84=100 Bread other than white in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SS02041 0000 SS02041 U R S 1982-84=100 Fresh cakes and cupcakes in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SS02042 0000 SS02042 U R S 1982-84=100 Cookies in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SS02063 0000 SS02063 U R S 1982-84=100 Fresh sweetrolls, coffeecakes, doughnuts in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SS0206A 0000 SS0206A U R S 1982-84=100 Crackers, bread, and cracker products in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SS0206B 0000 SS0206B U R S 1982-84=100 Frozen and refrigerated bakery products, pies, tarts, turnovers in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SS04011 0000 SS04011 U R S 1982-84=100 Bacon and related products in U.S. city average, all urban consumers, not seasonally adjusted 1939 M01 2025 M08 +CUUR0000SS04012 0000 SS04012 U R S DECEMBER 1997=100 Breakfast sausage and related products in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS04031 0000 SS04031 U R S 1982-84=100 Ham, excluding canned in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SS05011 0000 SS05011 U R S 1982-84=100 Frankfurters in U.S. city average, all urban consumers, not seasonally adjusted 1951 M01 2025 M08 +CUUR0000SS05014 0000 SS05014 U R S 1982-84=100 Lamb and organ meats in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUUR0000SS05015 0000 SS05015 U R S DECEMBER 1997=100 Lamb and mutton in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2017 M04 +CUUR0000SS0501A 0000 SS0501A U R S DECEMBER 1997=100 Lunchmeats in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS06011 0000 SS06011 U R S 1982-84=100 Fresh whole chicken in U.S. city average, all urban consumers, not seasonally adjusted 1935 M01 2025 M08 +CUUR0000SS06021 0000 SS06021 U R S 1982-84=100 Fresh and frozen chicken parts in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SS07011 0000 SS07011 U R S 1982-84=100 Shelf stable fish and seafood in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SS07021 0000 SS07021 U R S 1982-84=100 Frozen fish and seafood in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SS09011 0000 SS09011 U R S 1982-84=100 Fresh whole milk in U.S. city average, all urban consumers, not seasonally adjusted 1939 M01 2025 M08 +CUUR0000SS09021 0000 SS09021 U R S DECEMBER 1997=100 Fresh milk other than whole in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS10011 0000 SS10011 U R S 1982-84=100 Butter in U.S. city average, all urban consumers, not seasonally adjusted 1939 M01 2025 M08 +CUUR0000SS11031 0000 SS11031 U R S 1982-84=100 Oranges, including tangerines in U.S. city average, all urban consumers, not seasonally adjusted 1939 M01 2025 M08 +CUUR0000SS13031 0000 SS13031 U R S DECEMBER 1997=100 Canned fruits in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS14011 0000 SS14011 U R S 1982-84=100 Frozen vegetables in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SS14021 0000 SS14021 U R S DECEMBER 1997=100 Canned vegetables in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS14022 0000 SS14022 U R S DECEMBER 1997=100 Dried beans, peas, and lentils in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS16011 0000 SS16011 U R S 1982-84=100 Margarine in U.S. city average, all urban consumers, not seasonally adjusted 1939 M01 2025 M08 +CUUR0000SS16014 0000 SS16014 U R S DECEMBER 1997=100 Peanut butter in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS17031 0000 SS17031 U R S 1982-84=100 Roasted coffee in U.S. city average, all urban consumers, not seasonally adjusted 1939 M01 2025 M08 +CUUR0000SS17032 0000 SS17032 U R S 1982-84=100 Instant coffee in U.S. city average, all urban consumers, not seasonally adjusted 1961 M07 2025 M08 +CUUR0000SS18041 0000 SS18041 U R S DECEMBER 1997=100 Salt and other seasonings and spices in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS18042 0000 SS18042 U R S DECEMBER 1997=100 Olives, pickles, relishes in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS18043 0000 SS18043 U R S DECEMBER 1997=100 Sauces and gravies in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS1804B 0000 SS1804B U R S 1982-84=100 Other condiments in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SS18064 0000 SS18064 U R S DECEMBER 2007=100 Prepared salads in U.S. city average, all urban consumers, not seasonally adjusted 2007 M12 2025 M08 +CUUR0000SS20021 0000 SS20021 U R S 1982-84=100 Whiskey at home in U.S. city average, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUUR0000SS20022 0000 SS20022 U R S 1982-84=100 Distilled spirits, excluding whiskey, at home in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SS20051 0000 SS20051 U R S DECEMBER 1997=100 Beer, ale, and other malt beverages away from home in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS20052 0000 SS20052 U R S DECEMBER 1997=100 Wine away from home in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS20053 0000 SS20053 U R S DECEMBER 1997=100 Distilled spirits away from home in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS27051 0000 SS27051 U R S 1982-84=100 Land-line interstate toll calls in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2009 M13 +CUUR0000SS27061 0000 SS27061 U R S 1982-84=100 Land-line intrastate toll calls in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2009 M13 +CUUR0000SS30021 0000 SS30021 U R S 1982-84=100 Laundry equipment in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SS31022 0000 SS31022 U R S DECEMBER 1997=100 Video discs and other media in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS31023 0000 SS31023 U R S DECEMBER 1997=100 Video game hardware, software and accessories in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 1998 M01 +CUUR0000SS33032 0000 SS33032 U R S 1982-84=100 Stationery, stationery supplies, gift wrap in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SS45011 0000 SS45011 U R S 1982-84=100 New cars in U.S. city average, all urban consumers, not seasonally adjusted 1935 M13 2025 M08 +CUUR0000SS4501A 0000 SS4501A U R S DECEMBER 1997=100 New cars and trucks in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2022 M03 +CUUR0000SS45021 0000 SS45021 U R S DECEMBER 1983=100 New trucks in U.S. city average, all urban consumers, not seasonally adjusted 1983 M12 2025 M08 +CUUR0000SS45031 0000 SS45031 U R S DECEMBER 1986=100 New motorcycles in U.S. city average, all urban consumers, not seasonally adjusted 1986 M12 2000 M05 +CUUR0000SS47014 0000 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in U.S. city average, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUUR0000SS47015 0000 SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in U.S. city average, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUUR0000SS47016 0000 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in U.S. city average, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUUR0000SS47021 0000 SS47021 U R S 1982-84=100 Motor oil, coolant, and fluids in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SS48021 0000 SS48021 U R S 1982-84=100 Vehicle parts and equipment other than tires in U.S. city average, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0000SS52051 0000 SS52051 U R S DECEMBER 1997=100 Parking fees and tolls in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS53021 0000 SS53021 U R S DECEMBER 2007=100 Intercity bus fare in U.S. city average, all urban consumers, not seasonally adjusted 2007 M12 2020 M13 +CUUR0000SS53022 0000 SS53022 U R S DECEMBER 2007=100 Intercity train fare in U.S. city average, all urban consumers, not seasonally adjusted 2007 M12 2019 M12 +CUUR0000SS53023 0000 SS53023 U R S DECEMBER 1997=100 Ship fare in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS53031 0000 SS53031 U R S DECEMBER 2009=100 Intracity mass transit in U.S. city average, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0000SS5702 0000 SS5702 U R S DECEMBER 1996=100 Inpatient hospital services in U.S. city average, all urban consumers, not seasonally adjusted 1996 M12 2025 M07 +CUUR0000SS5703 0000 SS5703 U R S DECEMBER 1986=100 Outpatient hospital services in U.S. city average, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUUR0000SS61011 0000 SS61011 U R S DECEMBER 1997=100 Toys, games, hobbies and playground equipment in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS61021 0000 SS61021 U R S DECEMBER 1997=100 Film and photographic supplies in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2016 M13 +CUUR0000SS61023 0000 SS61023 U R S DECEMBER 1997=100 Photographic equipment in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS61031 0000 SS61031 U R S DECEMBER 1997=100 Pet food and treats in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS61032 0000 SS61032 U R S DECEMBER 1997=100 Purchase of pets, pet supplies, accessories in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS62011 0000 SS62011 U R S DECEMBER 1997=100 Automobile service clubs in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2020 M13 +CUUR0000SS62031 0000 SS62031 U R S DECEMBER 1997=100 Admission to movies, theaters, and concerts in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS62032 0000 SS62032 U R S DECEMBER 1997=100 Admission to sporting events in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS62051 0000 SS62051 U R S DECEMBER 1997=100 Photographer fees in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2020 M13 +CUUR0000SS62052 0000 SS62052 U R S DECEMBER 1997=100 Photo processing in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2020 M13 +CUUR0000SS62053 0000 SS62053 U R S DECEMBER 1997=100 Pet services in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS62054 0000 SS62054 U R S DECEMBER 1997=100 Veterinarian services in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS62055 0000 SS62055 U R S DECEMBER 1997=100 Subscription and rental of video and video games in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS68021 0000 SS68021 U R S DECEMBER 1997=100 Checking account and other bank services in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SS68023 0000 SS68023 U R S DECEMBER 1997=100 Tax return preparation and other accounting fees in U.S. city average, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0000SSEA011 0000 SSEA011 U R S DECEMBER 2001=100 College textbooks in U.S. city average, all urban consumers, not seasonally adjusted 2001 M12 2025 M08 +CUUR0000SSEE041 0000 SSEE041 U R S DECEMBER 2019=100 Smartphones in U.S. city average, all urban consumers, not seasonally adjusted 2019 M12 2025 M08 +CUUR0000SSFV031A 0000 SSFV031A U R S DECEMBER 2005=100 Food at elementary and secondary schools in U.S. city average, all urban consumers, not seasonally adjusted 2005 M12 2025 M05 +CUUR0000SSGE013 0000 SSGE013 U R S DECEMBER 2005=100 Infants' equipment in U.S. city average, all urban consumers, not seasonally adjusted 2005 M12 2020 M13 +CUUR0000SSHJ031 0000 SSHJ031 U R S DECEMBER 2005=100 Infants' furniture in U.S. city average, all urban consumers, not seasonally adjusted 2005 M12 2020 M13 +CUUR0100AA0 0100 AA0 U R A DECEMBER 1977=100 All items - old base in Northeast urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0100SA0 0100 SA0 U R S 1982-84=100 All items in Northeast urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0100SA0E 0100 SA0E U R S 1982-84=100 Energy in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SA0L1 0100 SA0L1 U R S 1982-84=100 All items less food in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SA0L1E 0100 SA0L1E U R S 1982-84=100 All items less food and energy in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SA0L2 0100 SA0L2 U R S 1982-84=100 All items less shelter in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SA0L5 0100 SA0L5 U R S 1982-84=100 All items less medical care in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SA0LE 0100 SA0LE U R S 1982-84=100 All items less energy in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAA 0100 SAA U R S 1982-84=100 Apparel in Northeast urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0100SAC 0100 SAC U R S 1982-84=100 Commodities in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SACE 0100 SACE U R S 1982-84=100 Energy commodities in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SACL1 0100 SACL1 U R S 1982-84=100 Commodities less food in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SACL11 0100 SACL11 U R S 1982-84=100 Commodities less food and beverages in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SACL1E 0100 SACL1E U R S 1982-84=100 Commodities less food and energy commodities in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAD 0100 SAD U R S 1982-84=100 Durables in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAE 0100 SAE U R S DECEMBER 1997=100 Education and communication in Northeast urban, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0100SAEC 0100 SAEC U R S DECEMBER 2009=100 Education and communication commodities in Northeast urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0100SAES 0100 SAES U R S DECEMBER 2009=100 Education and communication services in Northeast urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0100SAF 0100 SAF U R S 1982-84=100 Food and beverages in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAF1 0100 SAF1 U R S 1982-84=100 Food in Northeast urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0100SAF11 0100 SAF11 U R S 1982-84=100 Food at home in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAF111 0100 SAF111 U R S 1982-84=100 Cereals and bakery products in Northeast urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0100SAF112 0100 SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Northeast urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0100SAF113 0100 SAF113 U R S 1982-84=100 Fruits and vegetables in Northeast urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0100SAF114 0100 SAF114 U R S 1982-84=100 Nonalcoholic beverages and beverage materials in Northeast urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0100SAF115 0100 SAF115 U R S 1982-84=100 Other food at home in Northeast urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0100SAF116 0100 SAF116 U R S 1982-84=100 Alcoholic beverages in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAG 0100 SAG U R S 1982-84=100 Other goods and services in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAGC 0100 SAGC U R S DECEMBER 2009=100 Other goods in Northeast urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0100SAGS 0100 SAGS U R S DECEMBER 2009=100 Other personal services in Northeast urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0100SAH 0100 SAH U R S 1982-84=100 Housing in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAH1 0100 SAH1 U R S 1982-84=100 Shelter in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAH2 0100 SAH2 U R S 1982-84=100 Fuels and utilities in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAH21 0100 SAH21 U R S 1982-84=100 Household energy in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAH3 0100 SAH3 U R S 1982-84=100 Household furnishings and operations in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAH31 0100 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Northeast urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0100SAM 0100 SAM U R S 1982-84=100 Medical care in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAM1 0100 SAM1 U R S 1982-84=100 Medical care commodities in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAM2 0100 SAM2 U R S 1982-84=100 Medical care services in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAN 0100 SAN U R S 1982-84=100 Nondurables in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SANL1 0100 SANL1 U R S 1982-84=100 Nondurables less food in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SANL11 0100 SANL11 U R S 1982-84=100 Nondurables less food and beverages in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SANL113 0100 SANL113 U R S 1982-84=100 Nondurables less food, beverages, and apparel in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SANL13 0100 SANL13 U R S 1982-84=100 Nondurables less food and apparel in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAR 0100 SAR U R S DECEMBER 1997=100 Recreation in Northeast urban, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0100SARC 0100 SARC U R S DECEMBER 2009=100 Recreation commodities in Northeast urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0100SARS 0100 SARS U R S DECEMBER 2009=100 Recreation services in Northeast urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0100SAS 0100 SAS U R S 1982-84=100 Services in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAS2RS 0100 SAS2RS U R S DECEMBER 1982=100 Rent of shelter in Northeast urban, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0100SAS367 0100 SAS367 U R S 1982-84=100 Other services in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAS4 0100 SAS4 U R S 1982-84=100 Transportation services in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SASL2RS 0100 SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Northeast urban, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0100SASL5 0100 SASL5 U R S 1982-84=100 Services less medical care services in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SASLE 0100 SASLE U R S 1982-84=100 Services less energy services in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SAT 0100 SAT U R S 1982-84=100 Transportation in Northeast urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0100SAT1 0100 SAT1 U R S 1982-84=100 Private transportation in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SATCLTB 0100 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Northeast urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0100SEEB 0100 SEEB U R S DECEMBER 1977=100 Tuition, other school fees, and childcare in Northeast urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0100SEFJ 0100 SEFJ U R S 1982-84=100 Dairy and related products in Northeast urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0100SEFV 0100 SEFV U R S 1982-84=100 Food away from home in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SEHA 0100 SEHA U R S 1982-84=100 Rent of primary residence in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SEHC 0100 SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Northeast urban, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0100SEHC01 0100 SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Northeast urban, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0100SEHF 0100 SEHF U R S 1982-84=100 Energy services in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SEHF01 0100 SEHF01 U R S 1982-84=100 Electricity in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SEHF02 0100 SEHF02 U R S 1982-84=100 Utility (piped) gas service in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SEMC 0100 SEMC U R S 1982-84=100 Professional services in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SETA 0100 SETA U R S DECEMBER 1997=100 New and used motor vehicles in Northeast urban, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0100SETA01 0100 SETA01 U R S 1982-84=100 New vehicles in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SETA02 0100 SETA02 U R S 1982-84=100 Used cars and trucks in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SETB 0100 SETB U R S 1982-84=100 Motor fuel in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SETB01 0100 SETB01 U R S 1982-84=100 Gasoline (all types) in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SETE 0100 SETE U R S DECEMBER 1977=100 Motor vehicle insurance in Northeast urban, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUUR0100SS45011 0100 SS45011 U R S 1982-84=100 New cars in Northeast urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0100SS4501A 0100 SS4501A U R S DECEMBER 1997=100 New cars and trucks in Northeast urban, all urban consumers, not seasonally adjusted 1997 M12 2022 M03 +CUUR0100SS47014 0100 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Northeast urban, all urban consumers, not seasonally adjusted 1978 M06 2025 M08 +CUUR0100SS47015 0100 SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Northeast urban, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUUR0100SS47016 0100 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Northeast urban, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUUR0110SA0 0110 SA0 U R S DECEMBER 2017=100 All items in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SA0E 0110 SA0E U R S DECEMBER 2017=100 Energy in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SA0L1E 0110 SA0L1E U R S DECEMBER 2017=100 All items less food and energy in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SA0L2 0110 SA0L2 U R S DECEMBER 2017=100 All items less shelter in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SA0L5 0110 SA0L5 U R S DECEMBER 2017=100 All items less medical care in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SA0LE 0110 SA0LE U R S DECEMBER 2017=100 All items less energy in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAA 0110 SAA U R S DECEMBER 2017=100 Apparel in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAC 0110 SAC U R S DECEMBER 2017=100 Commodities in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SACL1 0110 SACL1 U R S DECEMBER 2017=100 Commodities less food in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SACL11 0110 SACL11 U R S DECEMBER 2017=100 Commodities less food and beverages in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAD 0110 SAD U R S DECEMBER 2017=100 Durables in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAE 0110 SAE U R S DECEMBER 2017=100 Education and communication in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAEC 0110 SAEC U R S DECEMBER 2017=100 Education and communication commodities in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAES 0110 SAES U R S DECEMBER 2017=100 Education and communication services in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAF 0110 SAF U R S DECEMBER 2017=100 Food and beverages in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAF1 0110 SAF1 U R S DECEMBER 2017=100 Food in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAF11 0110 SAF11 U R S DECEMBER 2017=100 Food at home in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAF111 0110 SAF111 U R S DECEMBER 2017=100 Cereals and bakery products in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAF112 0110 SAF112 U R S DECEMBER 2017=100 Meats, poultry, fish, and eggs in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAF113 0110 SAF113 U R S DECEMBER 2017=100 Fruits and vegetables in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAF114 0110 SAF114 U R S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAF115 0110 SAF115 U R S DECEMBER 2017=100 Other food at home in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAF116 0110 SAF116 U R S DECEMBER 2017=100 Alcoholic beverages in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAG 0110 SAG U R S DECEMBER 2017=100 Other goods and services in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAGC 0110 SAGC U R S DECEMBER 2017=100 Other goods in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAGS 0110 SAGS U R S DECEMBER 2017=100 Other personal services in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAH 0110 SAH U R S DECEMBER 2017=100 Housing in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAH1 0110 SAH1 U R S DECEMBER 2017=100 Shelter in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAH2 0110 SAH2 U R S DECEMBER 2017=100 Fuels and utilities in New England, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0110SAH21 0110 SAH21 U R S DECEMBER 2017=100 Household energy in New England, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0110SAH3 0110 SAH3 U R S DECEMBER 2017=100 Household furnishings and operations in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAH31 0110 SAH31 U R S DECEMBER 2017=100 Household furnishings and supplies in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAM 0110 SAM U R S DECEMBER 2017=100 Medical care in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAN 0110 SAN U R S DECEMBER 2017=100 Nondurables in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SANL1 0110 SANL1 U R S DECEMBER 2017=100 Nondurables less food in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SANL11 0110 SANL11 U R S DECEMBER 2017=100 Nondurables less food and beverages in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAR 0110 SAR U R S DECEMBER 2017=100 Recreation in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAS 0110 SAS U R S DECEMBER 2017=100 Services in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SASL2RS 0110 SASL2RS U R S DECEMBER 2017=100 Services less rent of shelter in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SASL5 0110 SASL5 U R S DECEMBER 2017=100 Services less medical care services in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAT 0110 SAT U R S DECEMBER 2017=100 Transportation in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SAT1 0110 SAT1 U R S DECEMBER 2017=100 Private transportation in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SATCLTB 0110 SATCLTB U R S DECEMBER 2017=100 Transportation commodities less motor fuel in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SEEB 0110 SEEB U R S DECEMBER 2017=100 Tuition, other school fees, and childcare in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SEFJ 0110 SEFJ U R S DECEMBER 2017=100 Dairy and related products in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SEFV 0110 SEFV U R S DECEMBER 2017=100 Food away from home in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SEHA 0110 SEHA U R S DECEMBER 2017=100 Rent of primary residence in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SEHC 0110 SEHC U R S DECEMBER 2017=100 Owners' equivalent rent of residences in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SEHC01 0110 SEHC01 U R S DECEMBER 2017=100 Owners' equivalent rent of primary residence in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SEHF 0110 SEHF U R S DECEMBER 2017=100 Energy services in New England, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0110SEHF01 0110 SEHF01 U R S DECEMBER 2017=100 Electricity in New England, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0110SEHF02 0110 SEHF02 U R S DECEMBER 2017=100 Utility (piped) gas service in New England, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0110SETA 0110 SETA U R S DECEMBER 2017=100 New and used motor vehicles in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SETA01 0110 SETA01 U R S DECEMBER 2017=100 New vehicles in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SETA02 0110 SETA02 U R S DECEMBER 2017=100 Used cars and trucks in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SETB 0110 SETB U R S DECEMBER 2017=100 Motor fuel in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SETB01 0110 SETB01 U R S DECEMBER 2017=100 Gasoline (all types) in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SETE 0110 SETE U R S DECEMBER 2017=100 Motor vehicle insurance in New England, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUUR0110SS47014 0110 SS47014 U R S DECEMBER 2017=100 Gasoline, unleaded regular in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SS47015 0110 SS47015 U R S DECEMBER 2017=100 Gasoline, unleaded midgrade in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0110SS47016 0110 SS47016 U R S DECEMBER 2017=100 Gasoline, unleaded premium in New England, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SA0 0120 SA0 U R S DECEMBER 2017=100 All items in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SA0E 0120 SA0E U R S DECEMBER 2017=100 Energy in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SA0L1E 0120 SA0L1E U R S DECEMBER 2017=100 All items less food and energy in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SA0L2 0120 SA0L2 U R S DECEMBER 2017=100 All items less shelter in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SA0L5 0120 SA0L5 U R S DECEMBER 2017=100 All items less medical care in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SA0LE 0120 SA0LE U R S DECEMBER 2017=100 All items less energy in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAA 0120 SAA U R S DECEMBER 2017=100 Apparel in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAC 0120 SAC U R S DECEMBER 2017=100 Commodities in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SACL1 0120 SACL1 U R S DECEMBER 2017=100 Commodities less food in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SACL11 0120 SACL11 U R S DECEMBER 2017=100 Commodities less food and beverages in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAD 0120 SAD U R S DECEMBER 2017=100 Durables in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAE 0120 SAE U R S DECEMBER 2017=100 Education and communication in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAEC 0120 SAEC U R S DECEMBER 2017=100 Education and communication commodities in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAES 0120 SAES U R S DECEMBER 2017=100 Education and communication services in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAF 0120 SAF U R S DECEMBER 2017=100 Food and beverages in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAF1 0120 SAF1 U R S DECEMBER 2017=100 Food in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAF11 0120 SAF11 U R S DECEMBER 2017=100 Food at home in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAF111 0120 SAF111 U R S DECEMBER 2017=100 Cereals and bakery products in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAF112 0120 SAF112 U R S DECEMBER 2017=100 Meats, poultry, fish, and eggs in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAF113 0120 SAF113 U R S DECEMBER 2017=100 Fruits and vegetables in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAF114 0120 SAF114 U R S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAF115 0120 SAF115 U R S DECEMBER 2017=100 Other food at home in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAF116 0120 SAF116 U R S DECEMBER 2017=100 Alcoholic beverages in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAG 0120 SAG U R S DECEMBER 2017=100 Other goods and services in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAGC 0120 SAGC U R S DECEMBER 2017=100 Other goods in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAGS 0120 SAGS U R S DECEMBER 2017=100 Other personal services in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAH 0120 SAH U R S DECEMBER 2017=100 Housing in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAH1 0120 SAH1 U R S DECEMBER 2017=100 Shelter in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAH2 0120 SAH2 U R S DECEMBER 2017=100 Fuels and utilities in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0120SAH21 0120 SAH21 U R S DECEMBER 2017=100 Household energy in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0120SAH3 0120 SAH3 U R S DECEMBER 2017=100 Household furnishings and operations in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAH31 0120 SAH31 U R S DECEMBER 2017=100 Household furnishings and supplies in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAM 0120 SAM U R S DECEMBER 2017=100 Medical care in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAN 0120 SAN U R S DECEMBER 2017=100 Nondurables in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SANL1 0120 SANL1 U R S DECEMBER 2017=100 Nondurables less food in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SANL11 0120 SANL11 U R S DECEMBER 2017=100 Nondurables less food and beverages in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAR 0120 SAR U R S DECEMBER 2017=100 Recreation in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAS 0120 SAS U R S DECEMBER 2017=100 Services in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SASL2RS 0120 SASL2RS U R S DECEMBER 2017=100 Services less rent of shelter in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SASL5 0120 SASL5 U R S DECEMBER 2017=100 Services less medical care services in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAT 0120 SAT U R S DECEMBER 2017=100 Transportation in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SAT1 0120 SAT1 U R S DECEMBER 2017=100 Private transportation in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SATCLTB 0120 SATCLTB U R S DECEMBER 2017=100 Transportation commodities less motor fuel in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SEEB 0120 SEEB U R S DECEMBER 2017=100 Tuition, other school fees, and childcare in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SEFJ 0120 SEFJ U R S DECEMBER 2017=100 Dairy and related products in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SEFV 0120 SEFV U R S DECEMBER 2017=100 Food away from home in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SEHA 0120 SEHA U R S DECEMBER 2017=100 Rent of primary residence in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SEHC 0120 SEHC U R S DECEMBER 2017=100 Owners' equivalent rent of residences in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SEHC01 0120 SEHC01 U R S DECEMBER 2017=100 Owners' equivalent rent of primary residence in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SEHF 0120 SEHF U R S DECEMBER 2017=100 Energy services in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0120SEHF01 0120 SEHF01 U R S DECEMBER 2017=100 Electricity in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0120SEHF02 0120 SEHF02 U R S DECEMBER 2017=100 Utility (piped) gas service in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0120SETA 0120 SETA U R S DECEMBER 2017=100 New and used motor vehicles in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SETA01 0120 SETA01 U R S DECEMBER 2017=100 New vehicles in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SETA02 0120 SETA02 U R S DECEMBER 2017=100 Used cars and trucks in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SETB 0120 SETB U R S DECEMBER 2017=100 Motor fuel in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SETB01 0120 SETB01 U R S DECEMBER 2017=100 Gasoline (all types) in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SETE 0120 SETE U R S DECEMBER 2017=100 Motor vehicle insurance in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUUR0120SS47014 0120 SS47014 U R S DECEMBER 2017=100 Gasoline, unleaded regular in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SS47015 0120 SS47015 U R S DECEMBER 2017=100 Gasoline, unleaded midgrade in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0120SS47016 0120 SS47016 U R S DECEMBER 2017=100 Gasoline, unleaded premium in Middle Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0200AA0 0200 AA0 U R A DECEMBER 1977=100 All items - old base in Midwest urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0200SA0 0200 SA0 U R S 1982-84=100 All items in Midwest urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0200SA0E 0200 SA0E U R S 1982-84=100 Energy in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SA0L1 0200 SA0L1 U R S 1982-84=100 All items less food in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SA0L1E 0200 SA0L1E U R S 1982-84=100 All items less food and energy in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SA0L2 0200 SA0L2 U R S 1982-84=100 All items less shelter in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SA0L5 0200 SA0L5 U R S 1982-84=100 All items less medical care in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SA0LE 0200 SA0LE U R S 1982-84=100 All items less energy in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAA 0200 SAA U R S 1982-84=100 Apparel in Midwest urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0200SAC 0200 SAC U R S 1982-84=100 Commodities in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SACE 0200 SACE U R S 1982-84=100 Energy commodities in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SACL1 0200 SACL1 U R S 1982-84=100 Commodities less food in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SACL11 0200 SACL11 U R S 1982-84=100 Commodities less food and beverages in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SACL1E 0200 SACL1E U R S 1982-84=100 Commodities less food and energy commodities in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAD 0200 SAD U R S 1982-84=100 Durables in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAE 0200 SAE U R S DECEMBER 1997=100 Education and communication in Midwest urban, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0200SAEC 0200 SAEC U R S DECEMBER 2009=100 Education and communication commodities in Midwest urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0200SAES 0200 SAES U R S DECEMBER 2009=100 Education and communication services in Midwest urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0200SAF 0200 SAF U R S 1982-84=100 Food and beverages in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAF1 0200 SAF1 U R S 1982-84=100 Food in Midwest urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0200SAF11 0200 SAF11 U R S 1982-84=100 Food at home in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAF111 0200 SAF111 U R S 1982-84=100 Cereals and bakery products in Midwest urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0200SAF112 0200 SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Midwest urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0200SAF113 0200 SAF113 U R S 1982-84=100 Fruits and vegetables in Midwest urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0200SAF114 0200 SAF114 U R S 1982-84=100 Nonalcoholic beverages and beverage materials in Midwest urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0200SAF115 0200 SAF115 U R S 1982-84=100 Other food at home in Midwest urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0200SAF116 0200 SAF116 U R S 1982-84=100 Alcoholic beverages in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAG 0200 SAG U R S 1982-84=100 Other goods and services in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAGC 0200 SAGC U R S DECEMBER 2009=100 Other goods in Midwest urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0200SAGS 0200 SAGS U R S DECEMBER 2009=100 Other personal services in Midwest urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0200SAH 0200 SAH U R S 1982-84=100 Housing in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAH1 0200 SAH1 U R S 1982-84=100 Shelter in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAH2 0200 SAH2 U R S 1982-84=100 Fuels and utilities in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAH21 0200 SAH21 U R S 1982-84=100 Household energy in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAH3 0200 SAH3 U R S 1982-84=100 Household furnishings and operations in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAH31 0200 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Midwest urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0200SAM 0200 SAM U R S 1982-84=100 Medical care in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAM1 0200 SAM1 U R S 1982-84=100 Medical care commodities in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAM2 0200 SAM2 U R S 1982-84=100 Medical care services in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAN 0200 SAN U R S 1982-84=100 Nondurables in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SANL1 0200 SANL1 U R S 1982-84=100 Nondurables less food in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SANL11 0200 SANL11 U R S 1982-84=100 Nondurables less food and beverages in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SANL113 0200 SANL113 U R S 1982-84=100 Nondurables less food, beverages, and apparel in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SANL13 0200 SANL13 U R S 1982-84=100 Nondurables less food and apparel in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAR 0200 SAR U R S DECEMBER 1997=100 Recreation in Midwest urban, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0200SARC 0200 SARC U R S DECEMBER 2009=100 Recreation commodities in Midwest urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0200SARS 0200 SARS U R S DECEMBER 2009=100 Recreation services in Midwest urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0200SAS 0200 SAS U R S 1982-84=100 Services in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAS2RS 0200 SAS2RS U R S DECEMBER 1982=100 Rent of shelter in Midwest urban, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0200SAS367 0200 SAS367 U R S 1982-84=100 Other services in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAS4 0200 SAS4 U R S 1982-84=100 Transportation services in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SASL2RS 0200 SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Midwest urban, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0200SASL5 0200 SASL5 U R S 1982-84=100 Services less medical care services in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SASLE 0200 SASLE U R S 1982-84=100 Services less energy services in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SAT 0200 SAT U R S 1982-84=100 Transportation in Midwest urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0200SAT1 0200 SAT1 U R S 1982-84=100 Private transportation in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SATCLTB 0200 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Midwest urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0200SEEB 0200 SEEB U R S DECEMBER 1977=100 Tuition, other school fees, and childcare in Midwest urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0200SEFJ 0200 SEFJ U R S 1982-84=100 Dairy and related products in Midwest urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0200SEFV 0200 SEFV U R S 1982-84=100 Food away from home in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SEHA 0200 SEHA U R S 1982-84=100 Rent of primary residence in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SEHC 0200 SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Midwest urban, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0200SEHC01 0200 SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Midwest urban, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0200SEHF 0200 SEHF U R S 1982-84=100 Energy services in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SEHF01 0200 SEHF01 U R S 1982-84=100 Electricity in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SEHF02 0200 SEHF02 U R S 1982-84=100 Utility (piped) gas service in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SEMC 0200 SEMC U R S 1982-84=100 Professional services in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SETA 0200 SETA U R S DECEMBER 1997=100 New and used motor vehicles in Midwest urban, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0200SETA01 0200 SETA01 U R S 1982-84=100 New vehicles in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SETA02 0200 SETA02 U R S 1982-84=100 Used cars and trucks in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SETB 0200 SETB U R S 1982-84=100 Motor fuel in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SETB01 0200 SETB01 U R S 1982-84=100 Gasoline (all types) in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SETE 0200 SETE U R S DECEMBER 1977=100 Motor vehicle insurance in Midwest urban, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUUR0200SS45011 0200 SS45011 U R S 1982-84=100 New cars in Midwest urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0200SS4501A 0200 SS4501A U R S DECEMBER 1997=100 New cars and trucks in Midwest urban, all urban consumers, not seasonally adjusted 1997 M12 2022 M03 +CUUR0200SS47014 0200 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Midwest urban, all urban consumers, not seasonally adjusted 1978 M06 2025 M08 +CUUR0200SS47015 0200 SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Midwest urban, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUUR0200SS47016 0200 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Midwest urban, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUUR0230SA0 0230 SA0 U R S DECEMBER 2017=100 All items in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SA0E 0230 SA0E U R S DECEMBER 2017=100 Energy in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SA0L1E 0230 SA0L1E U R S DECEMBER 2017=100 All items less food and energy in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SA0L2 0230 SA0L2 U R S DECEMBER 2017=100 All items less shelter in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SA0L5 0230 SA0L5 U R S DECEMBER 2017=100 All items less medical care in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SA0LE 0230 SA0LE U R S DECEMBER 2017=100 All items less energy in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAA 0230 SAA U R S DECEMBER 2017=100 Apparel in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAC 0230 SAC U R S DECEMBER 2017=100 Commodities in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SACL1 0230 SACL1 U R S DECEMBER 2017=100 Commodities less food in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SACL11 0230 SACL11 U R S DECEMBER 2017=100 Commodities less food and beverages in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAD 0230 SAD U R S DECEMBER 2017=100 Durables in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAE 0230 SAE U R S DECEMBER 2017=100 Education and communication in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAEC 0230 SAEC U R S DECEMBER 2017=100 Education and communication commodities in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAES 0230 SAES U R S DECEMBER 2017=100 Education and communication services in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAF 0230 SAF U R S DECEMBER 2017=100 Food and beverages in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAF1 0230 SAF1 U R S DECEMBER 2017=100 Food in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAF11 0230 SAF11 U R S DECEMBER 2017=100 Food at home in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAF111 0230 SAF111 U R S DECEMBER 2017=100 Cereals and bakery products in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAF112 0230 SAF112 U R S DECEMBER 2017=100 Meats, poultry, fish, and eggs in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAF113 0230 SAF113 U R S DECEMBER 2017=100 Fruits and vegetables in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAF114 0230 SAF114 U R S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAF115 0230 SAF115 U R S DECEMBER 2017=100 Other food at home in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAF116 0230 SAF116 U R S DECEMBER 2017=100 Alcoholic beverages in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAG 0230 SAG U R S DECEMBER 2017=100 Other goods and services in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAGC 0230 SAGC U R S DECEMBER 2017=100 Other goods in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAGS 0230 SAGS U R S DECEMBER 2017=100 Other personal services in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAH 0230 SAH U R S DECEMBER 2017=100 Housing in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAH1 0230 SAH1 U R S DECEMBER 2017=100 Shelter in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAH2 0230 SAH2 U R S DECEMBER 2017=100 Fuels and utilities in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0230SAH21 0230 SAH21 U R S DECEMBER 2017=100 Household energy in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0230SAH3 0230 SAH3 U R S DECEMBER 2017=100 Household furnishings and operations in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAH31 0230 SAH31 U R S DECEMBER 2017=100 Household furnishings and supplies in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAM 0230 SAM U R S DECEMBER 2017=100 Medical care in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAN 0230 SAN U R S DECEMBER 2017=100 Nondurables in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SANL1 0230 SANL1 U R S DECEMBER 2017=100 Nondurables less food in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SANL11 0230 SANL11 U R S DECEMBER 2017=100 Nondurables less food and beverages in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAR 0230 SAR U R S DECEMBER 2017=100 Recreation in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAS 0230 SAS U R S DECEMBER 2017=100 Services in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SASL2RS 0230 SASL2RS U R S DECEMBER 2017=100 Services less rent of shelter in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SASL5 0230 SASL5 U R S DECEMBER 2017=100 Services less medical care services in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAT 0230 SAT U R S DECEMBER 2017=100 Transportation in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SAT1 0230 SAT1 U R S DECEMBER 2017=100 Private transportation in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SATCLTB 0230 SATCLTB U R S DECEMBER 2017=100 Transportation commodities less motor fuel in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SEEB 0230 SEEB U R S DECEMBER 2017=100 Tuition, other school fees, and childcare in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SEFJ 0230 SEFJ U R S DECEMBER 2017=100 Dairy and related products in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SEFV 0230 SEFV U R S DECEMBER 2017=100 Food away from home in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SEHA 0230 SEHA U R S DECEMBER 2017=100 Rent of primary residence in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SEHC 0230 SEHC U R S DECEMBER 2017=100 Owners' equivalent rent of residences in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SEHC01 0230 SEHC01 U R S DECEMBER 2017=100 Owners' equivalent rent of primary residence in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SEHF 0230 SEHF U R S DECEMBER 2017=100 Energy services in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0230SEHF01 0230 SEHF01 U R S DECEMBER 2017=100 Electricity in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0230SEHF02 0230 SEHF02 U R S DECEMBER 2017=100 Utility (piped) gas service in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0230SETA 0230 SETA U R S DECEMBER 2017=100 New and used motor vehicles in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SETA01 0230 SETA01 U R S DECEMBER 2017=100 New vehicles in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SETA02 0230 SETA02 U R S DECEMBER 2017=100 Used cars and trucks in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SETB 0230 SETB U R S DECEMBER 2017=100 Motor fuel in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SETB01 0230 SETB01 U R S DECEMBER 2017=100 Gasoline (all types) in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SETE 0230 SETE U R S DECEMBER 2017=100 Motor vehicle insurance in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUUR0230SS47014 0230 SS47014 U R S DECEMBER 2017=100 Gasoline, unleaded regular in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SS47015 0230 SS47015 U R S DECEMBER 2017=100 Gasoline, unleaded midgrade in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0230SS47016 0230 SS47016 U R S DECEMBER 2017=100 Gasoline, unleaded premium in East North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SA0 0240 SA0 U R S DECEMBER 2017=100 All items in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SA0E 0240 SA0E U R S DECEMBER 2017=100 Energy in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SA0L1E 0240 SA0L1E U R S DECEMBER 2017=100 All items less food and energy in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SA0L2 0240 SA0L2 U R S DECEMBER 2017=100 All items less shelter in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SA0L5 0240 SA0L5 U R S DECEMBER 2017=100 All items less medical care in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SA0LE 0240 SA0LE U R S DECEMBER 2017=100 All items less energy in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAA 0240 SAA U R S DECEMBER 2017=100 Apparel in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAC 0240 SAC U R S DECEMBER 2017=100 Commodities in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SACL1 0240 SACL1 U R S DECEMBER 2017=100 Commodities less food in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SACL11 0240 SACL11 U R S DECEMBER 2017=100 Commodities less food and beverages in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAD 0240 SAD U R S DECEMBER 2017=100 Durables in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAE 0240 SAE U R S DECEMBER 2017=100 Education and communication in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAEC 0240 SAEC U R S DECEMBER 2017=100 Education and communication commodities in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAES 0240 SAES U R S DECEMBER 2017=100 Education and communication services in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAF 0240 SAF U R S DECEMBER 2017=100 Food and beverages in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAF1 0240 SAF1 U R S DECEMBER 2017=100 Food in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAF11 0240 SAF11 U R S DECEMBER 2017=100 Food at home in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAF111 0240 SAF111 U R S DECEMBER 2017=100 Cereals and bakery products in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAF112 0240 SAF112 U R S DECEMBER 2017=100 Meats, poultry, fish, and eggs in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAF113 0240 SAF113 U R S DECEMBER 2017=100 Fruits and vegetables in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAF114 0240 SAF114 U R S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAF115 0240 SAF115 U R S DECEMBER 2017=100 Other food at home in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAF116 0240 SAF116 U R S DECEMBER 2017=100 Alcoholic beverages in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAG 0240 SAG U R S DECEMBER 2017=100 Other goods and services in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAGC 0240 SAGC U R S DECEMBER 2017=100 Other goods in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAGS 0240 SAGS U R S DECEMBER 2017=100 Other personal services in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAH 0240 SAH U R S DECEMBER 2017=100 Housing in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAH1 0240 SAH1 U R S DECEMBER 2017=100 Shelter in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAH2 0240 SAH2 U R S DECEMBER 2017=100 Fuels and utilities in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0240SAH21 0240 SAH21 U R S DECEMBER 2017=100 Household energy in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0240SAH3 0240 SAH3 U R S DECEMBER 2017=100 Household furnishings and operations in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAH31 0240 SAH31 U R S DECEMBER 2017=100 Household furnishings and supplies in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAM 0240 SAM U R S DECEMBER 2017=100 Medical care in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAN 0240 SAN U R S DECEMBER 2017=100 Nondurables in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SANL1 0240 SANL1 U R S DECEMBER 2017=100 Nondurables less food in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SANL11 0240 SANL11 U R S DECEMBER 2017=100 Nondurables less food and beverages in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAR 0240 SAR U R S DECEMBER 2017=100 Recreation in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAS 0240 SAS U R S DECEMBER 2017=100 Services in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SASL2RS 0240 SASL2RS U R S DECEMBER 2017=100 Services less rent of shelter in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SASL5 0240 SASL5 U R S DECEMBER 2017=100 Services less medical care services in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAT 0240 SAT U R S DECEMBER 2017=100 Transportation in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SAT1 0240 SAT1 U R S DECEMBER 2017=100 Private transportation in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SATCLTB 0240 SATCLTB U R S DECEMBER 2017=100 Transportation commodities less motor fuel in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SEEB 0240 SEEB U R S DECEMBER 2017=100 Tuition, other school fees, and childcare in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SEFJ 0240 SEFJ U R S DECEMBER 2017=100 Dairy and related products in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SEFV 0240 SEFV U R S DECEMBER 2017=100 Food away from home in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SEHA 0240 SEHA U R S DECEMBER 2017=100 Rent of primary residence in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SEHC 0240 SEHC U R S DECEMBER 2017=100 Owners' equivalent rent of residences in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SEHC01 0240 SEHC01 U R S DECEMBER 2017=100 Owners' equivalent rent of primary residence in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SEHF 0240 SEHF U R S DECEMBER 2017=100 Energy services in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0240SEHF01 0240 SEHF01 U R S DECEMBER 2017=100 Electricity in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0240SEHF02 0240 SEHF02 U R S DECEMBER 2017=100 Utility (piped) gas service in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0240SETA 0240 SETA U R S DECEMBER 2017=100 New and used motor vehicles in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SETA01 0240 SETA01 U R S DECEMBER 2017=100 New vehicles in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SETA02 0240 SETA02 U R S DECEMBER 2017=100 Used cars and trucks in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SETB 0240 SETB U R S DECEMBER 2017=100 Motor fuel in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SETB01 0240 SETB01 U R S DECEMBER 2017=100 Gasoline (all types) in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SETE 0240 SETE U R S DECEMBER 2017=100 Motor vehicle insurance in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUUR0240SS47014 0240 SS47014 U R S DECEMBER 2017=100 Gasoline, unleaded regular in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SS47015 0240 SS47015 U R S DECEMBER 2017=100 Gasoline, unleaded midgrade in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0240SS47016 0240 SS47016 U R S DECEMBER 2017=100 Gasoline, unleaded premium in West North Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0300AA0 0300 AA0 U R A DECEMBER 1977=100 All items - old base in South urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0300SA0 0300 SA0 U R S 1982-84=100 All items in South urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0300SA0E 0300 SA0E U R S 1982-84=100 Energy in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SA0L1 0300 SA0L1 U R S 1982-84=100 All items less food in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SA0L1E 0300 SA0L1E U R S 1982-84=100 All items less food and energy in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SA0L2 0300 SA0L2 U R S 1982-84=100 All items less shelter in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SA0L5 0300 SA0L5 U R S 1982-84=100 All items less medical care in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SA0LE 0300 SA0LE U R S 1982-84=100 All items less energy in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAA 0300 SAA U R S 1982-84=100 Apparel in South urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0300SAC 0300 SAC U R S 1982-84=100 Commodities in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SACE 0300 SACE U R S 1982-84=100 Energy commodities in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SACL1 0300 SACL1 U R S 1982-84=100 Commodities less food in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SACL11 0300 SACL11 U R S 1982-84=100 Commodities less food and beverages in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SACL1E 0300 SACL1E U R S 1982-84=100 Commodities less food and energy commodities in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAD 0300 SAD U R S 1982-84=100 Durables in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAE 0300 SAE U R S DECEMBER 1997=100 Education and communication in South urban, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0300SAEC 0300 SAEC U R S DECEMBER 2009=100 Education and communication commodities in South urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0300SAES 0300 SAES U R S DECEMBER 2009=100 Education and communication services in South urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0300SAF 0300 SAF U R S 1982-84=100 Food and beverages in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAF1 0300 SAF1 U R S 1982-84=100 Food in South urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0300SAF11 0300 SAF11 U R S 1982-84=100 Food at home in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAF111 0300 SAF111 U R S 1982-84=100 Cereals and bakery products in South urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0300SAF112 0300 SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in South urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0300SAF113 0300 SAF113 U R S 1982-84=100 Fruits and vegetables in South urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0300SAF114 0300 SAF114 U R S 1982-84=100 Nonalcoholic beverages and beverage materials in South urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0300SAF115 0300 SAF115 U R S 1982-84=100 Other food at home in South urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0300SAF116 0300 SAF116 U R S 1982-84=100 Alcoholic beverages in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAG 0300 SAG U R S 1982-84=100 Other goods and services in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAGC 0300 SAGC U R S DECEMBER 2009=100 Other goods in South urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0300SAGS 0300 SAGS U R S DECEMBER 2009=100 Other personal services in South urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0300SAH 0300 SAH U R S 1982-84=100 Housing in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAH1 0300 SAH1 U R S 1982-84=100 Shelter in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAH2 0300 SAH2 U R S 1982-84=100 Fuels and utilities in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAH21 0300 SAH21 U R S 1982-84=100 Household energy in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAH3 0300 SAH3 U R S 1982-84=100 Household furnishings and operations in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAH31 0300 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in South urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0300SAM 0300 SAM U R S 1982-84=100 Medical care in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAM1 0300 SAM1 U R S 1982-84=100 Medical care commodities in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAM2 0300 SAM2 U R S 1982-84=100 Medical care services in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAN 0300 SAN U R S 1982-84=100 Nondurables in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SANL1 0300 SANL1 U R S 1982-84=100 Nondurables less food in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SANL11 0300 SANL11 U R S 1982-84=100 Nondurables less food and beverages in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SANL113 0300 SANL113 U R S 1982-84=100 Nondurables less food, beverages, and apparel in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SANL13 0300 SANL13 U R S 1982-84=100 Nondurables less food and apparel in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAR 0300 SAR U R S DECEMBER 1997=100 Recreation in South urban, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0300SARC 0300 SARC U R S DECEMBER 2009=100 Recreation commodities in South urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0300SARS 0300 SARS U R S DECEMBER 2009=100 Recreation services in South urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0300SAS 0300 SAS U R S 1982-84=100 Services in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAS2RS 0300 SAS2RS U R S DECEMBER 1982=100 Rent of shelter in South urban, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0300SAS367 0300 SAS367 U R S 1982-84=100 Other services in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAS4 0300 SAS4 U R S 1982-84=100 Transportation services in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SASL2RS 0300 SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in South urban, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0300SASL5 0300 SASL5 U R S 1982-84=100 Services less medical care services in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SASLE 0300 SASLE U R S 1982-84=100 Services less energy services in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SAT 0300 SAT U R S 1982-84=100 Transportation in South urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0300SAT1 0300 SAT1 U R S 1982-84=100 Private transportation in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SATCLTB 0300 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in South urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0300SEEB 0300 SEEB U R S DECEMBER 1977=100 Tuition, other school fees, and childcare in South urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0300SEFJ 0300 SEFJ U R S 1982-84=100 Dairy and related products in South urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0300SEFV 0300 SEFV U R S 1982-84=100 Food away from home in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SEHA 0300 SEHA U R S 1982-84=100 Rent of primary residence in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SEHC 0300 SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in South urban, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0300SEHC01 0300 SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in South urban, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0300SEHF 0300 SEHF U R S 1982-84=100 Energy services in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SEHF01 0300 SEHF01 U R S 1982-84=100 Electricity in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SEHF02 0300 SEHF02 U R S 1982-84=100 Utility (piped) gas service in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SEMC 0300 SEMC U R S 1982-84=100 Professional services in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SETA 0300 SETA U R S DECEMBER 1997=100 New and used motor vehicles in South urban, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0300SETA01 0300 SETA01 U R S 1982-84=100 New vehicles in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SETA02 0300 SETA02 U R S 1982-84=100 Used cars and trucks in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SETB 0300 SETB U R S 1982-84=100 Motor fuel in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SETB01 0300 SETB01 U R S 1982-84=100 Gasoline (all types) in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SETE 0300 SETE U R S DECEMBER 1977=100 Motor vehicle insurance in South urban, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUUR0300SS45011 0300 SS45011 U R S 1982-84=100 New cars in South urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0300SS4501A 0300 SS4501A U R S DECEMBER 1997=100 New cars and trucks in South urban, all urban consumers, not seasonally adjusted 1997 M12 2022 M03 +CUUR0300SS47014 0300 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in South urban, all urban consumers, not seasonally adjusted 1978 M06 2025 M08 +CUUR0300SS47015 0300 SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in South urban, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUUR0300SS47016 0300 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in South urban, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUUR0350SA0 0350 SA0 U R S DECEMBER 2017=100 All items in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SA0E 0350 SA0E U R S DECEMBER 2017=100 Energy in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SA0L1E 0350 SA0L1E U R S DECEMBER 2017=100 All items less food and energy in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SA0L2 0350 SA0L2 U R S DECEMBER 2017=100 All items less shelter in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SA0L5 0350 SA0L5 U R S DECEMBER 2017=100 All items less medical care in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SA0LE 0350 SA0LE U R S DECEMBER 2017=100 All items less energy in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAA 0350 SAA U R S DECEMBER 2017=100 Apparel in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAC 0350 SAC U R S DECEMBER 2017=100 Commodities in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SACL1 0350 SACL1 U R S DECEMBER 2017=100 Commodities less food in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SACL11 0350 SACL11 U R S DECEMBER 2017=100 Commodities less food and beverages in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAD 0350 SAD U R S DECEMBER 2017=100 Durables in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAE 0350 SAE U R S DECEMBER 2017=100 Education and communication in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAEC 0350 SAEC U R S DECEMBER 2017=100 Education and communication commodities in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAES 0350 SAES U R S DECEMBER 2017=100 Education and communication services in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAF 0350 SAF U R S DECEMBER 2017=100 Food and beverages in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAF1 0350 SAF1 U R S DECEMBER 2017=100 Food in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAF11 0350 SAF11 U R S DECEMBER 2017=100 Food at home in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAF111 0350 SAF111 U R S DECEMBER 2017=100 Cereals and bakery products in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAF112 0350 SAF112 U R S DECEMBER 2017=100 Meats, poultry, fish, and eggs in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAF113 0350 SAF113 U R S DECEMBER 2017=100 Fruits and vegetables in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAF114 0350 SAF114 U R S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAF115 0350 SAF115 U R S DECEMBER 2017=100 Other food at home in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAF116 0350 SAF116 U R S DECEMBER 2017=100 Alcoholic beverages in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAG 0350 SAG U R S DECEMBER 2017=100 Other goods and services in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAGC 0350 SAGC U R S DECEMBER 2017=100 Other goods in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAGS 0350 SAGS U R S DECEMBER 2017=100 Other personal services in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAH 0350 SAH U R S DECEMBER 2017=100 Housing in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAH1 0350 SAH1 U R S DECEMBER 2017=100 Shelter in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAH2 0350 SAH2 U R S DECEMBER 2017=100 Fuels and utilities in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0350SAH21 0350 SAH21 U R S DECEMBER 2017=100 Household energy in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0350SAH3 0350 SAH3 U R S DECEMBER 2017=100 Household furnishings and operations in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAH31 0350 SAH31 U R S DECEMBER 2017=100 Household furnishings and supplies in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAM 0350 SAM U R S DECEMBER 2017=100 Medical care in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAN 0350 SAN U R S DECEMBER 2017=100 Nondurables in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SANL1 0350 SANL1 U R S DECEMBER 2017=100 Nondurables less food in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SANL11 0350 SANL11 U R S DECEMBER 2017=100 Nondurables less food and beverages in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAR 0350 SAR U R S DECEMBER 2017=100 Recreation in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAS 0350 SAS U R S DECEMBER 2017=100 Services in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SASL2RS 0350 SASL2RS U R S DECEMBER 2017=100 Services less rent of shelter in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SASL5 0350 SASL5 U R S DECEMBER 2017=100 Services less medical care services in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAT 0350 SAT U R S DECEMBER 2017=100 Transportation in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SAT1 0350 SAT1 U R S DECEMBER 2017=100 Private transportation in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SATCLTB 0350 SATCLTB U R S DECEMBER 2017=100 Transportation commodities less motor fuel in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SEEB 0350 SEEB U R S DECEMBER 2017=100 Tuition, other school fees, and childcare in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SEFJ 0350 SEFJ U R S DECEMBER 2017=100 Dairy and related products in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SEFV 0350 SEFV U R S DECEMBER 2017=100 Food away from home in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SEHA 0350 SEHA U R S DECEMBER 2017=100 Rent of primary residence in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SEHC 0350 SEHC U R S DECEMBER 2017=100 Owners' equivalent rent of residences in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SEHC01 0350 SEHC01 U R S DECEMBER 2017=100 Owners' equivalent rent of primary residence in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SEHF 0350 SEHF U R S DECEMBER 2017=100 Energy services in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0350SEHF01 0350 SEHF01 U R S DECEMBER 2017=100 Electricity in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0350SEHF02 0350 SEHF02 U R S DECEMBER 2017=100 Utility (piped) gas service in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0350SETA 0350 SETA U R S DECEMBER 2017=100 New and used motor vehicles in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SETA01 0350 SETA01 U R S DECEMBER 2017=100 New vehicles in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SETA02 0350 SETA02 U R S DECEMBER 2017=100 Used cars and trucks in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SETB 0350 SETB U R S DECEMBER 2017=100 Motor fuel in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SETB01 0350 SETB01 U R S DECEMBER 2017=100 Gasoline (all types) in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SETE 0350 SETE U R S DECEMBER 2017=100 Motor vehicle insurance in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUUR0350SS47014 0350 SS47014 U R S DECEMBER 2017=100 Gasoline, unleaded regular in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SS47015 0350 SS47015 U R S DECEMBER 2017=100 Gasoline, unleaded midgrade in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0350SS47016 0350 SS47016 U R S DECEMBER 2017=100 Gasoline, unleaded premium in South Atlantic, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SA0 0360 SA0 U R S DECEMBER 2017=100 All items in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SA0E 0360 SA0E U R S DECEMBER 2017=100 Energy in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SA0L1E 0360 SA0L1E U R S DECEMBER 2017=100 All items less food and energy in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SA0L2 0360 SA0L2 U R S DECEMBER 2017=100 All items less shelter in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SA0L5 0360 SA0L5 U R S DECEMBER 2017=100 All items less medical care in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SA0LE 0360 SA0LE U R S DECEMBER 2017=100 All items less energy in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAA 0360 SAA U R S DECEMBER 2017=100 Apparel in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAC 0360 SAC U R S DECEMBER 2017=100 Commodities in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SACL1 0360 SACL1 U R S DECEMBER 2017=100 Commodities less food in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SACL11 0360 SACL11 U R S DECEMBER 2017=100 Commodities less food and beverages in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAD 0360 SAD U R S DECEMBER 2017=100 Durables in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAE 0360 SAE U R S DECEMBER 2017=100 Education and communication in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAEC 0360 SAEC U R S DECEMBER 2017=100 Education and communication commodities in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAES 0360 SAES U R S DECEMBER 2017=100 Education and communication services in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAF 0360 SAF U R S DECEMBER 2017=100 Food and beverages in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAF1 0360 SAF1 U R S DECEMBER 2017=100 Food in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAF11 0360 SAF11 U R S DECEMBER 2017=100 Food at home in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAF111 0360 SAF111 U R S DECEMBER 2017=100 Cereals and bakery products in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAF112 0360 SAF112 U R S DECEMBER 2017=100 Meats, poultry, fish, and eggs in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAF113 0360 SAF113 U R S DECEMBER 2017=100 Fruits and vegetables in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAF114 0360 SAF114 U R S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAF115 0360 SAF115 U R S DECEMBER 2017=100 Other food at home in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAF116 0360 SAF116 U R S DECEMBER 2017=100 Alcoholic beverages in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAG 0360 SAG U R S DECEMBER 2017=100 Other goods and services in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAGC 0360 SAGC U R S DECEMBER 2017=100 Other goods in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAGS 0360 SAGS U R S DECEMBER 2017=100 Other personal services in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAH 0360 SAH U R S DECEMBER 2017=100 Housing in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAH1 0360 SAH1 U R S DECEMBER 2017=100 Shelter in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAH2 0360 SAH2 U R S DECEMBER 2017=100 Fuels and utilities in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0360SAH21 0360 SAH21 U R S DECEMBER 2017=100 Household energy in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0360SAH3 0360 SAH3 U R S DECEMBER 2017=100 Household furnishings and operations in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAH31 0360 SAH31 U R S DECEMBER 2017=100 Household furnishings and supplies in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAM 0360 SAM U R S DECEMBER 2017=100 Medical care in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAN 0360 SAN U R S DECEMBER 2017=100 Nondurables in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SANL1 0360 SANL1 U R S DECEMBER 2017=100 Nondurables less food in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SANL11 0360 SANL11 U R S DECEMBER 2017=100 Nondurables less food and beverages in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAR 0360 SAR U R S DECEMBER 2017=100 Recreation in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAS 0360 SAS U R S DECEMBER 2017=100 Services in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SASL2RS 0360 SASL2RS U R S DECEMBER 2017=100 Services less rent of shelter in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SASL5 0360 SASL5 U R S DECEMBER 2017=100 Services less medical care services in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAT 0360 SAT U R S DECEMBER 2017=100 Transportation in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SAT1 0360 SAT1 U R S DECEMBER 2017=100 Private transportation in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SATCLTB 0360 SATCLTB U R S DECEMBER 2017=100 Transportation commodities less motor fuel in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SEEB 0360 SEEB U R S DECEMBER 2017=100 Tuition, other school fees, and childcare in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SEFJ 0360 SEFJ U R S DECEMBER 2017=100 Dairy and related products in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SEFV 0360 SEFV U R S DECEMBER 2017=100 Food away from home in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SEHA 0360 SEHA U R S DECEMBER 2017=100 Rent of primary residence in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SEHC 0360 SEHC U R S DECEMBER 2017=100 Owners' equivalent rent of residences in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SEHC01 0360 SEHC01 U R S DECEMBER 2017=100 Owners' equivalent rent of primary residence in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SEHF 0360 SEHF U R S DECEMBER 2017=100 Energy services in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0360SEHF01 0360 SEHF01 U R S DECEMBER 2017=100 Electricity in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0360SEHF02 0360 SEHF02 U R S DECEMBER 2017=100 Utility (piped) gas service in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0360SETA 0360 SETA U R S DECEMBER 2017=100 New and used motor vehicles in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SETA01 0360 SETA01 U R S DECEMBER 2017=100 New vehicles in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SETA02 0360 SETA02 U R S DECEMBER 2017=100 Used cars and trucks in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SETB 0360 SETB U R S DECEMBER 2017=100 Motor fuel in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SETB01 0360 SETB01 U R S DECEMBER 2017=100 Gasoline (all types) in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SETE 0360 SETE U R S DECEMBER 2017=100 Motor vehicle insurance in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUUR0360SS47014 0360 SS47014 U R S DECEMBER 2017=100 Gasoline, unleaded regular in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SS47015 0360 SS47015 U R S DECEMBER 2017=100 Gasoline, unleaded midgrade in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0360SS47016 0360 SS47016 U R S DECEMBER 2017=100 Gasoline, unleaded premium in East South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SA0 0370 SA0 U R S DECEMBER 2017=100 All items in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SA0E 0370 SA0E U R S DECEMBER 2017=100 Energy in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SA0L1E 0370 SA0L1E U R S DECEMBER 2017=100 All items less food and energy in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SA0L2 0370 SA0L2 U R S DECEMBER 2017=100 All items less shelter in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SA0L5 0370 SA0L5 U R S DECEMBER 2017=100 All items less medical care in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SA0LE 0370 SA0LE U R S DECEMBER 2017=100 All items less energy in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAA 0370 SAA U R S DECEMBER 2017=100 Apparel in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAC 0370 SAC U R S DECEMBER 2017=100 Commodities in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SACL1 0370 SACL1 U R S DECEMBER 2017=100 Commodities less food in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SACL11 0370 SACL11 U R S DECEMBER 2017=100 Commodities less food and beverages in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAD 0370 SAD U R S DECEMBER 2017=100 Durables in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAE 0370 SAE U R S DECEMBER 2017=100 Education and communication in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAEC 0370 SAEC U R S DECEMBER 2017=100 Education and communication commodities in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAES 0370 SAES U R S DECEMBER 2017=100 Education and communication services in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAF 0370 SAF U R S DECEMBER 2017=100 Food and beverages in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAF1 0370 SAF1 U R S DECEMBER 2017=100 Food in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAF11 0370 SAF11 U R S DECEMBER 2017=100 Food at home in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAF111 0370 SAF111 U R S DECEMBER 2017=100 Cereals and bakery products in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAF112 0370 SAF112 U R S DECEMBER 2017=100 Meats, poultry, fish, and eggs in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAF113 0370 SAF113 U R S DECEMBER 2017=100 Fruits and vegetables in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAF114 0370 SAF114 U R S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAF115 0370 SAF115 U R S DECEMBER 2017=100 Other food at home in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAF116 0370 SAF116 U R S DECEMBER 2017=100 Alcoholic beverages in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAG 0370 SAG U R S DECEMBER 2017=100 Other goods and services in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAGC 0370 SAGC U R S DECEMBER 2017=100 Other goods in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAGS 0370 SAGS U R S DECEMBER 2017=100 Other personal services in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAH 0370 SAH U R S DECEMBER 2017=100 Housing in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAH1 0370 SAH1 U R S DECEMBER 2017=100 Shelter in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAH2 0370 SAH2 U R S DECEMBER 2017=100 Fuels and utilities in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0370SAH21 0370 SAH21 U R S DECEMBER 2017=100 Household energy in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0370SAH3 0370 SAH3 U R S DECEMBER 2017=100 Household furnishings and operations in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAH31 0370 SAH31 U R S DECEMBER 2017=100 Household furnishings and supplies in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAM 0370 SAM U R S DECEMBER 2017=100 Medical care in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAN 0370 SAN U R S DECEMBER 2017=100 Nondurables in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SANL1 0370 SANL1 U R S DECEMBER 2017=100 Nondurables less food in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SANL11 0370 SANL11 U R S DECEMBER 2017=100 Nondurables less food and beverages in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAR 0370 SAR U R S DECEMBER 2017=100 Recreation in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAS 0370 SAS U R S DECEMBER 2017=100 Services in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SASL2RS 0370 SASL2RS U R S DECEMBER 2017=100 Services less rent of shelter in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SASL5 0370 SASL5 U R S DECEMBER 2017=100 Services less medical care services in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAT 0370 SAT U R S DECEMBER 2017=100 Transportation in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SAT1 0370 SAT1 U R S DECEMBER 2017=100 Private transportation in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SATCLTB 0370 SATCLTB U R S DECEMBER 2017=100 Transportation commodities less motor fuel in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SEEB 0370 SEEB U R S DECEMBER 2017=100 Tuition, other school fees, and childcare in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SEFJ 0370 SEFJ U R S DECEMBER 2017=100 Dairy and related products in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SEFV 0370 SEFV U R S DECEMBER 2017=100 Food away from home in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SEHA 0370 SEHA U R S DECEMBER 2017=100 Rent of primary residence in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SEHC 0370 SEHC U R S DECEMBER 2017=100 Owners' equivalent rent of residences in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SEHC01 0370 SEHC01 U R S DECEMBER 2017=100 Owners' equivalent rent of primary residence in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SEHF 0370 SEHF U R S DECEMBER 2017=100 Energy services in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0370SEHF01 0370 SEHF01 U R S DECEMBER 2017=100 Electricity in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0370SEHF02 0370 SEHF02 U R S DECEMBER 2017=100 Utility (piped) gas service in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0370SETA 0370 SETA U R S DECEMBER 2017=100 New and used motor vehicles in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SETA01 0370 SETA01 U R S DECEMBER 2017=100 New vehicles in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SETA02 0370 SETA02 U R S DECEMBER 2017=100 Used cars and trucks in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SETB 0370 SETB U R S DECEMBER 2017=100 Motor fuel in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SETB01 0370 SETB01 U R S DECEMBER 2017=100 Gasoline (all types) in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SETE 0370 SETE U R S DECEMBER 2017=100 Motor vehicle insurance in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUUR0370SS47014 0370 SS47014 U R S DECEMBER 2017=100 Gasoline, unleaded regular in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SS47015 0370 SS47015 U R S DECEMBER 2017=100 Gasoline, unleaded midgrade in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0370SS47016 0370 SS47016 U R S DECEMBER 2017=100 Gasoline, unleaded premium in West South Central, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0400AA0 0400 AA0 U R A DECEMBER 1977=100 All items - old base in West urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0400SA0 0400 SA0 U R S 1982-84=100 All items in West urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0400SA0E 0400 SA0E U R S 1982-84=100 Energy in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SA0L1 0400 SA0L1 U R S 1982-84=100 All items less food in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SA0L1E 0400 SA0L1E U R S 1982-84=100 All items less food and energy in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SA0L2 0400 SA0L2 U R S 1982-84=100 All items less shelter in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SA0L5 0400 SA0L5 U R S 1982-84=100 All items less medical care in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SA0LE 0400 SA0LE U R S 1982-84=100 All items less energy in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAA 0400 SAA U R S 1982-84=100 Apparel in West urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0400SAC 0400 SAC U R S 1982-84=100 Commodities in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SACE 0400 SACE U R S 1982-84=100 Energy commodities in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SACL1 0400 SACL1 U R S 1982-84=100 Commodities less food in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SACL11 0400 SACL11 U R S 1982-84=100 Commodities less food and beverages in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SACL1E 0400 SACL1E U R S 1982-84=100 Commodities less food and energy commodities in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAD 0400 SAD U R S 1982-84=100 Durables in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAE 0400 SAE U R S DECEMBER 1997=100 Education and communication in West urban, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0400SAEC 0400 SAEC U R S DECEMBER 2009=100 Education and communication commodities in West urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0400SAES 0400 SAES U R S DECEMBER 2009=100 Education and communication services in West urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0400SAF 0400 SAF U R S 1982-84=100 Food and beverages in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAF1 0400 SAF1 U R S 1982-84=100 Food in West urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0400SAF11 0400 SAF11 U R S 1982-84=100 Food at home in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAF111 0400 SAF111 U R S 1982-84=100 Cereals and bakery products in West urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0400SAF112 0400 SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in West urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0400SAF113 0400 SAF113 U R S 1982-84=100 Fruits and vegetables in West urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0400SAF114 0400 SAF114 U R S 1982-84=100 Nonalcoholic beverages and beverage materials in West urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0400SAF115 0400 SAF115 U R S 1982-84=100 Other food at home in West urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0400SAF116 0400 SAF116 U R S 1982-84=100 Alcoholic beverages in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAG 0400 SAG U R S 1982-84=100 Other goods and services in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAGC 0400 SAGC U R S DECEMBER 2009=100 Other goods in West urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0400SAGS 0400 SAGS U R S DECEMBER 2009=100 Other personal services in West urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0400SAH 0400 SAH U R S 1982-84=100 Housing in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAH1 0400 SAH1 U R S 1982-84=100 Shelter in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAH2 0400 SAH2 U R S 1982-84=100 Fuels and utilities in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAH21 0400 SAH21 U R S 1982-84=100 Household energy in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAH3 0400 SAH3 U R S 1982-84=100 Household furnishings and operations in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAH31 0400 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in West urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0400SAM 0400 SAM U R S 1982-84=100 Medical care in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAM1 0400 SAM1 U R S 1982-84=100 Medical care commodities in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAM2 0400 SAM2 U R S 1982-84=100 Medical care services in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAN 0400 SAN U R S 1982-84=100 Nondurables in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SANL1 0400 SANL1 U R S 1982-84=100 Nondurables less food in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SANL11 0400 SANL11 U R S 1982-84=100 Nondurables less food and beverages in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SANL113 0400 SANL113 U R S 1982-84=100 Nondurables less food, beverages, and apparel in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SANL13 0400 SANL13 U R S 1982-84=100 Nondurables less food and apparel in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAR 0400 SAR U R S DECEMBER 1997=100 Recreation in West urban, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0400SARC 0400 SARC U R S DECEMBER 2009=100 Recreation commodities in West urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0400SARS 0400 SARS U R S DECEMBER 2009=100 Recreation services in West urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0400SAS 0400 SAS U R S 1982-84=100 Services in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAS2RS 0400 SAS2RS U R S DECEMBER 1982=100 Rent of shelter in West urban, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0400SAS367 0400 SAS367 U R S 1982-84=100 Other services in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAS4 0400 SAS4 U R S 1982-84=100 Transportation services in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SASL2RS 0400 SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in West urban, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0400SASL5 0400 SASL5 U R S 1982-84=100 Services less medical care services in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SASLE 0400 SASLE U R S 1982-84=100 Services less energy services in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SAT 0400 SAT U R S 1982-84=100 Transportation in West urban, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUUR0400SAT1 0400 SAT1 U R S 1982-84=100 Private transportation in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SATCLTB 0400 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in West urban, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUUR0400SEEB 0400 SEEB U R S DECEMBER 1977=100 Tuition, other school fees, and childcare in West urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0400SEFJ 0400 SEFJ U R S 1982-84=100 Dairy and related products in West urban, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0400SEFV 0400 SEFV U R S 1982-84=100 Food away from home in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SEHA 0400 SEHA U R S 1982-84=100 Rent of primary residence in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SEHC 0400 SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in West urban, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0400SEHC01 0400 SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in West urban, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUUR0400SEHF 0400 SEHF U R S 1982-84=100 Energy services in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SEHF01 0400 SEHF01 U R S 1982-84=100 Electricity in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SEHF02 0400 SEHF02 U R S 1982-84=100 Utility (piped) gas service in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SEMC 0400 SEMC U R S 1982-84=100 Professional services in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SETA 0400 SETA U R S DECEMBER 1997=100 New and used motor vehicles in West urban, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUUR0400SETA01 0400 SETA01 U R S 1982-84=100 New vehicles in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SETA02 0400 SETA02 U R S 1982-84=100 Used cars and trucks in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SETB 0400 SETB U R S 1982-84=100 Motor fuel in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SETB01 0400 SETB01 U R S 1982-84=100 Gasoline (all types) in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SETE 0400 SETE U R S DECEMBER 1977=100 Motor vehicle insurance in West urban, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUUR0400SS45011 0400 SS45011 U R S 1982-84=100 New cars in West urban, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUUR0400SS4501A 0400 SS4501A U R S DECEMBER 1997=100 New cars and trucks in West urban, all urban consumers, not seasonally adjusted 1997 M12 2022 M03 +CUUR0400SS47014 0400 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in West urban, all urban consumers, not seasonally adjusted 1978 M06 2025 M08 +CUUR0400SS47015 0400 SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in West urban, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUUR0400SS47016 0400 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in West urban, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUUR0480SA0 0480 SA0 U R S DECEMBER 2017=100 All items in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SA0E 0480 SA0E U R S DECEMBER 2017=100 Energy in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SA0L1E 0480 SA0L1E U R S DECEMBER 2017=100 All items less food and energy in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SA0L2 0480 SA0L2 U R S DECEMBER 2017=100 All items less shelter in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SA0L5 0480 SA0L5 U R S DECEMBER 2017=100 All items less medical care in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SA0LE 0480 SA0LE U R S DECEMBER 2017=100 All items less energy in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAA 0480 SAA U R S DECEMBER 2017=100 Apparel in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAC 0480 SAC U R S DECEMBER 2017=100 Commodities in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SACL1 0480 SACL1 U R S DECEMBER 2017=100 Commodities less food in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SACL11 0480 SACL11 U R S DECEMBER 2017=100 Commodities less food and beverages in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAD 0480 SAD U R S DECEMBER 2017=100 Durables in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAE 0480 SAE U R S DECEMBER 2017=100 Education and communication in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAEC 0480 SAEC U R S DECEMBER 2017=100 Education and communication commodities in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAES 0480 SAES U R S DECEMBER 2017=100 Education and communication services in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAF 0480 SAF U R S DECEMBER 2017=100 Food and beverages in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAF1 0480 SAF1 U R S DECEMBER 2017=100 Food in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAF11 0480 SAF11 U R S DECEMBER 2017=100 Food at home in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAF111 0480 SAF111 U R S DECEMBER 2017=100 Cereals and bakery products in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAF112 0480 SAF112 U R S DECEMBER 2017=100 Meats, poultry, fish, and eggs in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAF113 0480 SAF113 U R S DECEMBER 2017=100 Fruits and vegetables in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAF114 0480 SAF114 U R S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAF115 0480 SAF115 U R S DECEMBER 2017=100 Other food at home in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAF116 0480 SAF116 U R S DECEMBER 2017=100 Alcoholic beverages in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAG 0480 SAG U R S DECEMBER 2017=100 Other goods and services in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAGC 0480 SAGC U R S DECEMBER 2017=100 Other goods in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAGS 0480 SAGS U R S DECEMBER 2017=100 Other personal services in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAH 0480 SAH U R S DECEMBER 2017=100 Housing in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAH1 0480 SAH1 U R S DECEMBER 2017=100 Shelter in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAH2 0480 SAH2 U R S DECEMBER 2017=100 Fuels and utilities in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0480SAH21 0480 SAH21 U R S DECEMBER 2017=100 Household energy in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0480SAH3 0480 SAH3 U R S DECEMBER 2017=100 Household furnishings and operations in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAH31 0480 SAH31 U R S DECEMBER 2017=100 Household furnishings and supplies in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAM 0480 SAM U R S DECEMBER 2017=100 Medical care in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAN 0480 SAN U R S DECEMBER 2017=100 Nondurables in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SANL1 0480 SANL1 U R S DECEMBER 2017=100 Nondurables less food in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SANL11 0480 SANL11 U R S DECEMBER 2017=100 Nondurables less food and beverages in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAR 0480 SAR U R S DECEMBER 2017=100 Recreation in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAS 0480 SAS U R S DECEMBER 2017=100 Services in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SASL2RS 0480 SASL2RS U R S DECEMBER 2017=100 Services less rent of shelter in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SASL5 0480 SASL5 U R S DECEMBER 2017=100 Services less medical care services in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAT 0480 SAT U R S DECEMBER 2017=100 Transportation in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SAT1 0480 SAT1 U R S DECEMBER 2017=100 Private transportation in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SATCLTB 0480 SATCLTB U R S DECEMBER 2017=100 Transportation commodities less motor fuel in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SEEB 0480 SEEB U R S DECEMBER 2017=100 Tuition, other school fees, and childcare in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SEFJ 0480 SEFJ U R S DECEMBER 2017=100 Dairy and related products in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SEFV 0480 SEFV U R S DECEMBER 2017=100 Food away from home in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SEHA 0480 SEHA U R S DECEMBER 2017=100 Rent of primary residence in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SEHC 0480 SEHC U R S DECEMBER 2017=100 Owners' equivalent rent of residences in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SEHC01 0480 SEHC01 U R S DECEMBER 2017=100 Owners' equivalent rent of primary residence in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SEHF 0480 SEHF U R S DECEMBER 2017=100 Energy services in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0480SEHF01 0480 SEHF01 U R S DECEMBER 2017=100 Electricity in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0480SEHF02 0480 SEHF02 U R S DECEMBER 2017=100 Utility (piped) gas service in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0480SETA 0480 SETA U R S DECEMBER 2017=100 New and used motor vehicles in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SETA01 0480 SETA01 U R S DECEMBER 2017=100 New vehicles in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SETA02 0480 SETA02 U R S DECEMBER 2017=100 Used cars and trucks in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SETB 0480 SETB U R S DECEMBER 2017=100 Motor fuel in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SETB01 0480 SETB01 U R S DECEMBER 2017=100 Gasoline (all types) in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SETE 0480 SETE U R S DECEMBER 2017=100 Motor vehicle insurance in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUUR0480SS47014 0480 SS47014 U R S DECEMBER 2017=100 Gasoline, unleaded regular in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SS47015 0480 SS47015 U R S DECEMBER 2017=100 Gasoline, unleaded midgrade in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0480SS47016 0480 SS47016 U R S DECEMBER 2017=100 Gasoline, unleaded premium in Mountain, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SA0 0490 SA0 U R S DECEMBER 2017=100 All items in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SA0E 0490 SA0E U R S DECEMBER 2017=100 Energy in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SA0L1E 0490 SA0L1E U R S DECEMBER 2017=100 All items less food and energy in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SA0L2 0490 SA0L2 U R S DECEMBER 2017=100 All items less shelter in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SA0L5 0490 SA0L5 U R S DECEMBER 2017=100 All items less medical care in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SA0LE 0490 SA0LE U R S DECEMBER 2017=100 All items less energy in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAA 0490 SAA U R S DECEMBER 2017=100 Apparel in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAC 0490 SAC U R S DECEMBER 2017=100 Commodities in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SACL1 0490 SACL1 U R S DECEMBER 2017=100 Commodities less food in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SACL11 0490 SACL11 U R S DECEMBER 2017=100 Commodities less food and beverages in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAD 0490 SAD U R S DECEMBER 2017=100 Durables in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAE 0490 SAE U R S DECEMBER 2017=100 Education and communication in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAEC 0490 SAEC U R S DECEMBER 2017=100 Education and communication commodities in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAES 0490 SAES U R S DECEMBER 2017=100 Education and communication services in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAF 0490 SAF U R S DECEMBER 2017=100 Food and beverages in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAF1 0490 SAF1 U R S DECEMBER 2017=100 Food in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAF11 0490 SAF11 U R S DECEMBER 2017=100 Food at home in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAF111 0490 SAF111 U R S DECEMBER 2017=100 Cereals and bakery products in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAF112 0490 SAF112 U R S DECEMBER 2017=100 Meats, poultry, fish, and eggs in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAF113 0490 SAF113 U R S DECEMBER 2017=100 Fruits and vegetables in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAF114 0490 SAF114 U R S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAF115 0490 SAF115 U R S DECEMBER 2017=100 Other food at home in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAF116 0490 SAF116 U R S DECEMBER 2017=100 Alcoholic beverages in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAG 0490 SAG U R S DECEMBER 2017=100 Other goods and services in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAGC 0490 SAGC U R S DECEMBER 2017=100 Other goods in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAGS 0490 SAGS U R S DECEMBER 2017=100 Other personal services in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAH 0490 SAH U R S DECEMBER 2017=100 Housing in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAH1 0490 SAH1 U R S DECEMBER 2017=100 Shelter in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAH2 0490 SAH2 U R S DECEMBER 2017=100 Fuels and utilities in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0490SAH21 0490 SAH21 U R S DECEMBER 2017=100 Household energy in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0490SAH3 0490 SAH3 U R S DECEMBER 2017=100 Household furnishings and operations in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAH31 0490 SAH31 U R S DECEMBER 2017=100 Household furnishings and supplies in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAM 0490 SAM U R S DECEMBER 2017=100 Medical care in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAN 0490 SAN U R S DECEMBER 2017=100 Nondurables in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SANL1 0490 SANL1 U R S DECEMBER 2017=100 Nondurables less food in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SANL11 0490 SANL11 U R S DECEMBER 2017=100 Nondurables less food and beverages in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAR 0490 SAR U R S DECEMBER 2017=100 Recreation in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAS 0490 SAS U R S DECEMBER 2017=100 Services in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SASL2RS 0490 SASL2RS U R S DECEMBER 2017=100 Services less rent of shelter in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SASL5 0490 SASL5 U R S DECEMBER 2017=100 Services less medical care services in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAT 0490 SAT U R S DECEMBER 2017=100 Transportation in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SAT1 0490 SAT1 U R S DECEMBER 2017=100 Private transportation in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SATCLTB 0490 SATCLTB U R S DECEMBER 2017=100 Transportation commodities less motor fuel in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SEEB 0490 SEEB U R S DECEMBER 2017=100 Tuition, other school fees, and childcare in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SEFJ 0490 SEFJ U R S DECEMBER 2017=100 Dairy and related products in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SEFV 0490 SEFV U R S DECEMBER 2017=100 Food away from home in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SEHA 0490 SEHA U R S DECEMBER 2017=100 Rent of primary residence in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SEHC 0490 SEHC U R S DECEMBER 2017=100 Owners' equivalent rent of residences in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SEHC01 0490 SEHC01 U R S DECEMBER 2017=100 Owners' equivalent rent of primary residence in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SEHF 0490 SEHF U R S DECEMBER 2017=100 Energy services in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0490SEHF01 0490 SEHF01 U R S DECEMBER 2017=100 Electricity in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0490SEHF02 0490 SEHF02 U R S DECEMBER 2017=100 Utility (piped) gas service in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUUR0490SETA 0490 SETA U R S DECEMBER 2017=100 New and used motor vehicles in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SETA01 0490 SETA01 U R S DECEMBER 2017=100 New vehicles in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SETA02 0490 SETA02 U R S DECEMBER 2017=100 Used cars and trucks in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SETB 0490 SETB U R S DECEMBER 2017=100 Motor fuel in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SETB01 0490 SETB01 U R S DECEMBER 2017=100 Gasoline (all types) in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SETE 0490 SETE U R S DECEMBER 2017=100 Motor vehicle insurance in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUUR0490SS47014 0490 SS47014 U R S DECEMBER 2017=100 Gasoline, unleaded regular in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SS47015 0490 SS47015 U R S DECEMBER 2017=100 Gasoline, unleaded midgrade in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUUR0490SS47016 0490 SS47016 U R S DECEMBER 2017=100 Gasoline, unleaded premium in Pacific, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURA104AA0 A104 AA0 U R A 1967=100 All items - old base in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1917 M12 1997 M13 +CUURA104SA0 A104 SA0 U R S 1982-84=100 All items in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1917 M12 1997 M13 +CUURA104SA0E A104 SA0E U R S 1982-84=100 Energy in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1978 M04 1997 M13 +CUURA104SA0L1E A104 SA0L1E U R S 1982-84=100 All items less food and energy in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1982 M02 1997 M13 +CUURA104SA0L2 A104 SA0L2 U R S 1982-84=100 All items less shelter in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1976 M01 1997 M13 +CUURA104SA0L5 A104 SA0L5 U R S 1982-84=100 All items less medical care in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1967 M01 1997 M13 +CUURA104SA0LE A104 SA0LE U R S 1982-84=100 All items less energy in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1978 M04 1997 M13 +CUURA104SAA A104 SAA U R S 1982-84=100 Apparel in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1952 M10 1997 M13 +CUURA104SAC A104 SAC U R S 1982-84=100 Commodities in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1967 M01 1997 M13 +CUURA104SACL1 A104 SACL1 U R S 1982-84=100 Commodities less food in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1967 M01 1997 M13 +CUURA104SACL11 A104 SACL11 U R S 1982-84=100 Commodities less food and beverages in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1976 M01 1997 M13 +CUURA104SAD A104 SAD U R S 1982-84=100 Durables in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1967 M01 1997 M13 +CUURA104SAE A104 SAE U R S DECEMBER 1997=100 Education and communication in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1997 M12 1997 M12 +CUURA104SAF A104 SAF U R S 1982-84=100 Food and beverages in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1976 M01 1997 M13 +CUURA104SAF1 A104 SAF1 U R S 1982-84=100 Food in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1917 M12 1997 M13 +CUURA104SAF11 A104 SAF11 U R S 1982-84=100 Food at home in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1953 M01 1997 M13 +CUURA104SAF116 A104 SAF116 U R S 1982-84=100 Alcoholic beverages in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1976 M01 1997 M13 +CUURA104SAG A104 SAG U R S 1982-84=100 Other goods and services in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1976 M01 1997 M13 +CUURA104SAH A104 SAH U R S 1982-84=100 Housing in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1976 M01 1997 M13 +CUURA104SAH1 A104 SAH1 U R S 1982-84=100 Shelter in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1952 M10 1997 M13 +CUURA104SAH2 A104 SAH2 U R S 1982-84=100 Fuels and utilities in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1952 M12 1997 M13 +CUURA104SAH21 A104 SAH21 U R S 1982-84=100 Household energy in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1976 M01 1997 M13 +CUURA104SAH3 A104 SAH3 U R S 1982-84=100 Household furnishings and operations in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1976 M01 1997 M13 +CUURA104SAM A104 SAM U R S 1982-84=100 Medical care in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1947 M01 1997 M13 +CUURA104SAN A104 SAN U R S 1982-84=100 Nondurables in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1967 M01 1997 M13 +CUURA104SANL1 A104 SANL1 U R S 1982-84=100 Nondurables less food in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1967 M01 1997 M13 +CUURA104SANL11 A104 SANL11 U R S 1982-84=100 Nondurables less food and beverages in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1976 M01 1997 M13 +CUURA104SAR A104 SAR U R S DECEMBER 1997=100 Recreation in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1997 M12 1997 M12 +CUURA104SAS A104 SAS U R S 1982-84=100 Services in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1967 M01 1997 M13 +CUURA104SASL2RS A104 SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1982 M12 1997 M13 +CUURA104SASL5 A104 SASL5 U R S 1982-84=100 Services less medical care services in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1967 M01 1997 M13 +CUURA104SAT A104 SAT U R S 1982-84=100 Transportation in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1947 M01 1997 M13 +CUURA104SAT1 A104 SAT1 U R S 1982-84=100 Private transportation in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1947 M01 1997 M13 +CUURA104SEFV A104 SEFV U R S 1982-84=100 Food away from home in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1952 M12 1997 M13 +CUURA104SEHA A104 SEHA U R S 1982-84=100 Rent of primary residence in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1917 M12 1997 M13 +CUURA104SEHC A104 SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1982 M12 1997 M13 +CUURA104SEHC01 A104 SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1982 M12 1997 M13 +CUURA104SEHF A104 SEHF U R S 1982-84=100 Energy services in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1935 M01 1997 M13 +CUURA104SEHF01 A104 SEHF01 U R S 1982-84=100 Electricity in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1971 M05 1997 M13 +CUURA104SEHF02 A104 SEHF02 U R S 1982-84=100 Utility (piped) gas service in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1971 M05 1997 M13 +CUURA104SETB A104 SETB U R S 1982-84=100 Motor fuel in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1978 M04 1997 M13 +CUURA104SETB01 A104 SETB01 U R S 1982-84=100 Gasoline (all types) in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1978 M04 1997 M13 +CUURA104SS47014 A104 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1976 M01 1997 M13 +CUURA104SS47015 A104 SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1993 M12 1997 M13 +CUURA104SS47016 A104 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1981 M08 1997 M13 +CUURA210AA0 A210 AA0 U R A 1967=100 All items - old base in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1914 M12 2017 M13 +CUURA210SA0 A210 SA0 U R S 1982-84=100 All items in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1914 M12 2017 M13 +CUURA210SA0E A210 SA0E U R S 1982-84=100 Energy in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1978 M02 2017 M13 +CUURA210SA0L1E A210 SA0L1E U R S 1982-84=100 All items less food and energy in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1982 M02 2017 M13 +CUURA210SA0L2 A210 SA0L2 U R S 1982-84=100 All items less shelter in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1975 M11 2017 M13 +CUURA210SA0L5 A210 SA0L5 U R S 1982-84=100 All items less medical care in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1966 M11 2017 M13 +CUURA210SA0LE A210 SA0LE U R S 1982-84=100 All items less energy in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1978 M02 2017 M13 +CUURA210SAA A210 SAA U R S 1982-84=100 Apparel in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1952 M11 2017 M13 +CUURA210SAC A210 SAC U R S 1982-84=100 Commodities in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1966 M11 2017 M13 +CUURA210SACL1 A210 SACL1 U R S 1982-84=100 Commodities less food in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1966 M11 2017 M13 +CUURA210SACL11 A210 SACL11 U R S 1982-84=100 Commodities less food and beverages in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1975 M11 2017 M13 +CUURA210SAD A210 SAD U R S 1982-84=100 Durables in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1966 M11 2017 M13 +CUURA210SAE A210 SAE U R S DECEMBER 1997=100 Education and communication in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA210SAEC A210 SAEC U R S DECEMBER 2009=100 Education and communication commodities in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 2010 M01 2017 M13 +CUURA210SAES A210 SAES U R S DECEMBER 2009=100 Education and communication services in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 2010 M01 2017 M13 +CUURA210SAF A210 SAF U R S 1982-84=100 Food and beverages in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1975 M11 2017 M13 +CUURA210SAF1 A210 SAF1 U R S 1982-84=100 Food in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1914 M12 2017 M13 +CUURA210SAF11 A210 SAF11 U R S 1982-84=100 Food at home in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1953 M01 2017 M13 +CUURA210SAF116 A210 SAF116 U R S 1982-84=100 Alcoholic beverages in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1975 M11 2017 M13 +CUURA210SAG A210 SAG U R S 1982-84=100 Other goods and services in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1975 M11 2017 M13 +CUURA210SAGC A210 SAGC U R S DECEMBER 2009=100 Other goods in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 2010 M01 2017 M13 +CUURA210SAGS A210 SAGS U R S DECEMBER 2009=100 Other personal services in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 2010 M01 2017 M13 +CUURA210SAH A210 SAH U R S 1982-84=100 Housing in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1975 M11 2017 M13 +CUURA210SAH1 A210 SAH1 U R S 1982-84=100 Shelter in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1952 M11 2017 M13 +CUURA210SAH2 A210 SAH2 U R S 1982-84=100 Fuels and utilities in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1952 M11 2017 M13 +CUURA210SAH21 A210 SAH21 U R S 1982-84=100 Household energy in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1976 M01 2017 M13 +CUURA210SAH3 A210 SAH3 U R S 1982-84=100 Household furnishings and operations in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1975 M11 2017 M13 +CUURA210SAH31 A210 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 2010 M01 2017 M13 +CUURA210SAM A210 SAM U R S 1982-84=100 Medical care in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1947 M01 2017 M13 +CUURA210SAN A210 SAN U R S 1982-84=100 Nondurables in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1966 M11 2017 M13 +CUURA210SANL1 A210 SANL1 U R S 1982-84=100 Nondurables less food in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1966 M11 2017 M13 +CUURA210SANL11 A210 SANL11 U R S 1982-84=100 Nondurables less food and beverages in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1975 M11 2017 M13 +CUURA210SAR A210 SAR U R S DECEMBER 1997=100 Recreation in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA210SAS A210 SAS U R S 1982-84=100 Services in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1966 M11 2017 M13 +CUURA210SASL2RS A210 SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1982 M12 2017 M13 +CUURA210SASL5 A210 SASL5 U R S 1982-84=100 Services less medical care services in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1966 M11 2017 M13 +CUURA210SAT A210 SAT U R S 1982-84=100 Transportation in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1947 M01 2017 M13 +CUURA210SAT1 A210 SAT1 U R S 1982-84=100 Private transportation in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1947 M01 2017 M13 +CUURA210SATCLTB A210 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 2010 M01 2017 M13 +CUURA210SEFV A210 SEFV U R S 1982-84=100 Food away from home in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1952 M12 2017 M13 +CUURA210SEHA A210 SEHA U R S 1982-84=100 Rent of primary residence in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1914 M12 2017 M13 +CUURA210SEHC A210 SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1982 M12 2017 M13 +CUURA210SEHC01 A210 SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1982 M12 2017 M13 +CUURA210SEHF A210 SEHF U R S 1982-84=100 Energy services in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1935 M03 2017 M13 +CUURA210SEHF01 A210 SEHF01 U R S 1982-84=100 Electricity in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1971 M05 2017 M13 +CUURA210SEHF02 A210 SEHF02 U R S 1982-84=100 Utility (piped) gas service in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1971 M05 2017 M13 +CUURA210SETB A210 SETB U R S 1982-84=100 Motor fuel in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1978 M02 2017 M13 +CUURA210SETB01 A210 SETB01 U R S 1982-84=100 Gasoline (all types) in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1978 M02 2017 M13 +CUURA210SS47014 A210 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1976 M01 2017 M13 +CUURA210SS47015 A210 SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1993 M12 2017 M13 +CUURA210SS47016 A210 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1981 M08 2017 M13 +CUURA212AA0 A212 AA0 U R A 1967=100 All items - old base in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1935 M03 1986 M13 +CUURA212SA0 A212 SA0 U R S 1982-84=100 All items in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1935 M03 1986 M13 +CUURA212SA0E A212 SA0E U R S 1982-84=100 Energy in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1977 M11 1986 M13 +CUURA212SA0L1E A212 SA0L1E U R S 1982-84=100 All items less food and energy in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1982 M01 1986 M13 +CUURA212SA0L2 A212 SA0L2 U R S 1982-84=100 All items less shelter in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1975 M11 1986 M13 +CUURA212SA0L5 A212 SA0L5 U R S 1982-84=100 All items less medical care in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1966 M11 1986 M13 +CUURA212SA0LE A212 SA0LE U R S 1982-84=100 All items less energy in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1977 M11 1986 M13 +CUURA212SAA A212 SAA U R S 1982-84=100 Apparel in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1952 M11 1986 M13 +CUURA212SAC A212 SAC U R S 1982-84=100 Commodities in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1966 M11 1986 M13 +CUURA212SACL1 A212 SACL1 U R S 1982-84=100 Commodities less food in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1966 M11 1986 M13 +CUURA212SACL11 A212 SACL11 U R S 1982-84=100 Commodities less food and beverages in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1975 M11 1986 M13 +CUURA212SAD A212 SAD U R S 1982-84=100 Durables in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1966 M11 1986 M13 +CUURA212SAE A212 SAE U R S DECEMBER 1997=100 Education and communication in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1997 M12 1997 M12 +CUURA212SAF A212 SAF U R S 1982-84=100 Food and beverages in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1975 M11 1986 M13 +CUURA212SAF1 A212 SAF1 U R S 1982-84=100 Food in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1935 M03 1986 M13 +CUURA212SAF11 A212 SAF11 U R S 1982-84=100 Food at home in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1952 M12 1986 M13 +CUURA212SAF116 A212 SAF116 U R S 1982-84=100 Alcoholic beverages in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1975 M11 1986 M13 +CUURA212SAG A212 SAG U R S 1982-84=100 Other goods and services in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1975 M11 1986 M13 +CUURA212SAH A212 SAH U R S 1982-84=100 Housing in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1975 M11 1986 M13 +CUURA212SAH1 A212 SAH1 U R S 1982-84=100 Shelter in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1952 M12 1986 M13 +CUURA212SAH2 A212 SAH2 U R S 1982-84=100 Fuels and utilities in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1952 M12 1986 M13 +CUURA212SAH21 A212 SAH21 U R S 1982-84=100 Household energy in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA212SAH3 A212 SAH3 U R S 1982-84=100 Household furnishings and operations in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1975 M11 1986 M13 +CUURA212SAM A212 SAM U R S 1982-84=100 Medical care in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1946 M12 1986 M13 +CUURA212SAN A212 SAN U R S 1982-84=100 Nondurables in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1966 M11 1986 M13 +CUURA212SANL1 A212 SANL1 U R S 1982-84=100 Nondurables less food in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1966 M11 1986 M13 +CUURA212SANL11 A212 SANL11 U R S 1982-84=100 Nondurables less food and beverages in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1975 M11 1986 M13 +CUURA212SAR A212 SAR U R S DECEMBER 1997=100 Recreation in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1997 M12 1997 M12 +CUURA212SAS A212 SAS U R S 1982-84=100 Services in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1966 M11 1986 M13 +CUURA212SASL2RS A212 SASL2RS U R S NOVEMBER 1982=100 Services less rent of shelter in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1982 M11 1986 M13 +CUURA212SASL5 A212 SASL5 U R S 1982-84=100 Services less medical care services in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1966 M11 1986 M13 +CUURA212SAT A212 SAT U R S 1982-84=100 Transportation in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1946 M11 1986 M13 +CUURA212SAT1 A212 SAT1 U R S 1982-84=100 Private transportation in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1946 M12 1986 M13 +CUURA212SEFV A212 SEFV U R S 1982-84=100 Food away from home in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1952 M12 1986 M13 +CUURA212SEHA A212 SEHA U R S 1982-84=100 Rent of primary residence in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1935 M03 1986 M13 +CUURA212SEHC A212 SEHC U R S NOVEMBER 1982=100 Owners' equivalent rent of residences in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1982 M11 1986 M13 +CUURA212SEHC01 A212 SEHC01 U R S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1982 M11 1986 M13 +CUURA212SEHF A212 SEHF U R S 1982-84=100 Energy services in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1935 M03 1986 M13 +CUURA212SEHF01 A212 SEHF01 U R S 1982-84=100 Electricity in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1971 M05 1986 M13 +CUURA212SEHF02 A212 SEHF02 U R S 1982-84=100 Utility (piped) gas service in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1971 M05 1986 M13 +CUURA212SETB A212 SETB U R S 1982-84=100 Motor fuel in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1977 M11 1986 M13 +CUURA212SETB01 A212 SETB01 U R S 1982-84=100 Gasoline (all types) in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1977 M11 1986 M13 +CUURA212SS47014 A212 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA212SS47016 A212 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1981 M08 1986 M13 +CUURA213AA0 A213 AA0 U R A 1967=100 All items - old base in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1917 M12 1986 M13 +CUURA213SA0 A213 SA0 U R S 1982-84=100 All items in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1917 M12 1986 M13 +CUURA213SA0E A213 SA0E U R S 1982-84=100 Energy in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1978 M03 1986 M13 +CUURA213SA0L1E A213 SA0L1E U R S 1982-84=100 All items less food and energy in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1982 M01 1986 M13 +CUURA213SA0L2 A213 SA0L2 U R S 1982-84=100 All items less shelter in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1975 M12 1986 M13 +CUURA213SA0L5 A213 SA0L5 U R S 1982-84=100 All items less medical care in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1966 M12 1986 M13 +CUURA213SA0LE A213 SA0LE U R S 1982-84=100 All items less energy in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1978 M03 1986 M13 +CUURA213SAA A213 SAA U R S 1982-84=100 Apparel in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1952 M12 1986 M13 +CUURA213SAC A213 SAC U R S 1982-84=100 Commodities in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1966 M12 1986 M13 +CUURA213SACL1 A213 SACL1 U R S 1982-84=100 Commodities less food in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1966 M12 1986 M13 +CUURA213SACL11 A213 SACL11 U R S 1982-84=100 Commodities less food and beverages in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1975 M12 1986 M13 +CUURA213SAD A213 SAD U R S 1982-84=100 Durables in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1966 M12 1986 M13 +CUURA213SAE A213 SAE U R S DECEMBER 1997=100 Education and communication in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1997 M12 1997 M12 +CUURA213SAF A213 SAF U R S 1982-84=100 Food and beverages in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1975 M12 1986 M13 +CUURA213SAF1 A213 SAF1 U R S 1982-84=100 Food in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1917 M12 1986 M13 +CUURA213SAF11 A213 SAF11 U R S 1982-84=100 Food at home in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1953 M01 1986 M13 +CUURA213SAF116 A213 SAF116 U R S 1982-84=100 Alcoholic beverages in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1975 M12 1986 M13 +CUURA213SAG A213 SAG U R S 1982-84=100 Other goods and services in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1975 M12 1986 M13 +CUURA213SAH A213 SAH U R S 1982-84=100 Housing in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1975 M12 1986 M13 +CUURA213SAH1 A213 SAH1 U R S 1982-84=100 Shelter in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1952 M12 1986 M13 +CUURA213SAH2 A213 SAH2 U R S 1982-84=100 Fuels and utilities in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1952 M12 1986 M13 +CUURA213SAH21 A213 SAH21 U R S 1982-84=100 Household energy in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA213SAH3 A213 SAH3 U R S 1982-84=100 Household furnishings and operations in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1975 M12 1986 M13 +CUURA213SAM A213 SAM U R S 1982-84=100 Medical care in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1947 M01 1986 M13 +CUURA213SAN A213 SAN U R S 1982-84=100 Nondurables in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1966 M12 1986 M13 +CUURA213SANL1 A213 SANL1 U R S 1982-84=100 Nondurables less food in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1966 M12 1986 M13 +CUURA213SANL11 A213 SANL11 U R S 1982-84=100 Nondurables less food and beverages in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1975 M12 1986 M13 +CUURA213SAR A213 SAR U R S DECEMBER 1997=100 Recreation in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1997 M12 1997 M12 +CUURA213SAS A213 SAS U R S 1982-84=100 Services in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1966 M12 1986 M13 +CUURA213SASL2RS A213 SASL2RS U R S NOVEMBER 1982=100 Services less rent of shelter in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1982 M11 1986 M13 +CUURA213SASL5 A213 SASL5 U R S 1982-84=100 Services less medical care services in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1966 M12 1986 M13 +CUURA213SAT A213 SAT U R S 1982-84=100 Transportation in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1947 M01 1986 M13 +CUURA213SAT1 A213 SAT1 U R S 1982-84=100 Private transportation in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1947 M01 1986 M13 +CUURA213SEFV A213 SEFV U R S 1982-84=100 Food away from home in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1952 M12 1986 M13 +CUURA213SEHA A213 SEHA U R S 1982-84=100 Rent of primary residence in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1917 M12 1986 M13 +CUURA213SEHC A213 SEHC U R S NOVEMBER 1982=100 Owners' equivalent rent of residences in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1982 M11 1986 M13 +CUURA213SEHC01 A213 SEHC01 U R S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1982 M11 1986 M13 +CUURA213SEHF A213 SEHF U R S 1982-84=100 Energy services in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1935 M03 1986 M13 +CUURA213SEHF01 A213 SEHF01 U R S 1982-84=100 Electricity in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1971 M05 1986 M13 +CUURA213SEHF02 A213 SEHF02 U R S 1982-84=100 Utility (piped) gas service in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1971 M05 1986 M13 +CUURA213SETB A213 SETB U R S 1982-84=100 Motor fuel in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1978 M03 1986 M13 +CUURA213SETB01 A213 SETB01 U R S 1982-84=100 Gasoline (all types) in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1978 M03 1986 M13 +CUURA213SS47014 A213 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA213SS47016 A213 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1981 M08 1986 M13 +CUURA214AA0 A214 AA0 U R A 1967=100 All items - old base in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1917 M12 1986 M13 +CUURA214SA0 A214 SA0 U R S 1982-84=100 All items in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1917 M12 1986 M13 +CUURA214SA0E A214 SA0E U R S 1982-84=100 Energy in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1977 M12 1986 M13 +CUURA214SA0L1E A214 SA0L1E U R S 1982-84=100 All items less food and energy in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1982 M02 1986 M13 +CUURA214SA0L2 A214 SA0L2 U R S 1982-84=100 All items less shelter in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1975 M12 1986 M13 +CUURA214SA0L5 A214 SA0L5 U R S 1982-84=100 All items less medical care in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1966 M12 1986 M13 +CUURA214SA0LE A214 SA0LE U R S 1982-84=100 All items less energy in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1977 M12 1986 M13 +CUURA214SAA A214 SAA U R S 1982-84=100 Apparel in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1952 M10 1986 M13 +CUURA214SAC A214 SAC U R S 1982-84=100 Commodities in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1966 M12 1986 M13 +CUURA214SACL1 A214 SACL1 U R S 1982-84=100 Commodities less food in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1966 M12 1986 M13 +CUURA214SACL11 A214 SACL11 U R S 1982-84=100 Commodities less food and beverages in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1975 M12 1986 M13 +CUURA214SAD A214 SAD U R S 1982-84=100 Durables in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1966 M12 1986 M13 +CUURA214SAE A214 SAE U R S DECEMBER 1997=100 Education and communication in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1997 M12 1997 M12 +CUURA214SAF A214 SAF U R S 1982-84=100 Food and beverages in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1975 M12 1986 M13 +CUURA214SAF1 A214 SAF1 U R S 1982-84=100 Food in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1917 M12 1986 M13 +CUURA214SAF11 A214 SAF11 U R S 1982-84=100 Food at home in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1953 M01 1986 M13 +CUURA214SAF116 A214 SAF116 U R S 1982-84=100 Alcoholic beverages in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1975 M12 1986 M13 +CUURA214SAG A214 SAG U R S 1982-84=100 Other goods and services in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1975 M12 1986 M13 +CUURA214SAH A214 SAH U R S 1982-84=100 Housing in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1975 M12 1986 M13 +CUURA214SAH1 A214 SAH1 U R S 1982-84=100 Shelter in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1952 M10 1986 M13 +CUURA214SAH2 A214 SAH2 U R S 1982-84=100 Fuels and utilities in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1952 M10 1986 M13 +CUURA214SAH21 A214 SAH21 U R S 1982-84=100 Household energy in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA214SAH3 A214 SAH3 U R S 1982-84=100 Household furnishings and operations in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1975 M12 1986 M13 +CUURA214SAM A214 SAM U R S 1982-84=100 Medical care in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1947 M01 1986 M13 +CUURA214SAN A214 SAN U R S 1982-84=100 Nondurables in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1966 M12 1986 M13 +CUURA214SANL1 A214 SANL1 U R S 1982-84=100 Nondurables less food in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1966 M12 1986 M13 +CUURA214SANL11 A214 SANL11 U R S 1982-84=100 Nondurables less food and beverages in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1975 M12 1986 M13 +CUURA214SAR A214 SAR U R S DECEMBER 1997=100 Recreation in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1997 M12 1997 M12 +CUURA214SAS A214 SAS U R S 1982-84=100 Services in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1966 M12 1986 M13 +CUURA214SASL2RS A214 SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1982 M12 1986 M13 +CUURA214SASL5 A214 SASL5 U R S 1982-84=100 Services less medical care services in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1966 M12 1986 M13 +CUURA214SAT A214 SAT U R S 1982-84=100 Transportation in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1947 M01 1986 M13 +CUURA214SAT1 A214 SAT1 U R S 1982-84=100 Private transportation in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1947 M01 1986 M13 +CUURA214SEFV A214 SEFV U R S 1982-84=100 Food away from home in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1952 M12 1986 M13 +CUURA214SEHA A214 SEHA U R S 1982-84=100 Rent of primary residence in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1917 M12 1986 M13 +CUURA214SEHC A214 SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1982 M12 1986 M13 +CUURA214SEHC01 A214 SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1982 M12 1986 M13 +CUURA214SEHF A214 SEHF U R S 1982-84=100 Energy services in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1935 M03 1986 M13 +CUURA214SEHF01 A214 SEHF01 U R S 1982-84=100 Electricity in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1971 M05 1986 M13 +CUURA214SEHF02 A214 SEHF02 U R S 1982-84=100 Utility (piped) gas service in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1971 M05 1986 M13 +CUURA214SETB A214 SETB U R S 1982-84=100 Motor fuel in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1977 M12 1986 M13 +CUURA214SETB01 A214 SETB01 U R S 1982-84=100 Gasoline (all types) in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1977 M12 1986 M13 +CUURA214SS47014 A214 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA214SS47016 A214 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1981 M08 1986 M13 +CUURA311SA0 A311 SA0 U R S NOVEMBER 1996=100 All items in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1996 M11 2017 M13 +CUURA311SA0E A311 SA0E U R S NOVEMBER 1996=100 Energy in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1996 M11 2017 M13 +CUURA311SA0L1E A311 SA0L1E U R S NOVEMBER 1996=100 All items less food and energy in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1996 M11 2017 M13 +CUURA311SA0L2 A311 SA0L2 U R S DECEMBER 1997=100 All items less shelter in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SA0L5 A311 SA0L5 U R S NOVEMBER 1996=100 All items less medical care in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1996 M11 2017 M13 +CUURA311SA0LE A311 SA0LE U R S DECEMBER 1997=100 All items less energy in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SAA A311 SAA U R S NOVEMBER 1996=100 Apparel in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1996 M11 2017 M13 +CUURA311SAC A311 SAC U R S DECEMBER 1997=100 Commodities in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SACL1 A311 SACL1 U R S DECEMBER 1997=100 Commodities less food in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SACL11 A311 SACL11 U R S DECEMBER 1997=100 Commodities less food and beverages in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SAD A311 SAD U R S DECEMBER 1997=100 Durables in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SAE A311 SAE U R S DECEMBER 1997=100 Education and communication in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SAEC A311 SAEC U R S DECEMBER 2009=100 Education and communication commodities in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 2010 M01 2017 M13 +CUURA311SAES A311 SAES U R S DECEMBER 2009=100 Education and communication services in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 2010 M01 2017 M13 +CUURA311SAF A311 SAF U R S NOVEMBER 1996=100 Food and beverages in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1996 M11 2017 M13 +CUURA311SAF1 A311 SAF1 U R S NOVEMBER 1996=100 Food in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1996 M11 2017 M13 +CUURA311SAF11 A311 SAF11 U R S DECEMBER 1997=100 Food at home in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SAF116 A311 SAF116 U R S NOVEMBER 1997=100 Alcoholic beverages in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M11 2017 M13 +CUURA311SAG A311 SAG U R S NOVEMBER 1996=100 Other goods and services in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1996 M11 2017 M13 +CUURA311SAGC A311 SAGC U R S DECEMBER 2009=100 Other goods in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 2010 M01 2017 M13 +CUURA311SAGS A311 SAGS U R S DECEMBER 2009=100 Other personal services in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 2010 M01 2017 M13 +CUURA311SAH A311 SAH U R S NOVEMBER 1996=100 Housing in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1996 M11 2017 M13 +CUURA311SAH1 A311 SAH1 U R S DECEMBER 1997=100 Shelter in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SAH2 A311 SAH2 U R S DECEMBER 1997=100 Fuels and utilities in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SAH21 A311 SAH21 U R S DECEMBER 1997=100 Household energy in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SAH3 A311 SAH3 U R S DECEMBER 1997=100 Household furnishings and operations in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SAH31 A311 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 2010 M01 2017 M13 +CUURA311SAM A311 SAM U R S NOVEMBER 1996=100 Medical care in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1996 M11 2017 M13 +CUURA311SAN A311 SAN U R S DECEMBER 1997=100 Nondurables in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SANL1 A311 SANL1 U R S DECEMBER 1997=100 Nondurables less food in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SANL11 A311 SANL11 U R S DECEMBER 1997=100 Nondurables less food and beverages in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SAR A311 SAR U R S DECEMBER 1997=100 Recreation in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SAS A311 SAS U R S DECEMBER 1997=100 Services in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SASL2RS A311 SASL2RS U R S DECEMBER 1997=100 Services less rent of shelter in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SASL5 A311 SASL5 U R S DECEMBER 1997=100 Services less medical care services in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SAT A311 SAT U R S NOVEMBER 1996=100 Transportation in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1996 M11 2017 M13 +CUURA311SAT1 A311 SAT1 U R S DECEMBER 1997=100 Private transportation in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SATCLTB A311 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 2010 M01 2017 M13 +CUURA311SEFV A311 SEFV U R S NOVEMBER 1997=100 Food away from home in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M11 2017 M13 +CUURA311SEHA A311 SEHA U R S NOVEMBER 1996=100 Rent of primary residence in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1996 M11 2017 M13 +CUURA311SEHC A311 SEHC U R S DECEMBER 1997=100 Owners' equivalent rent of residences in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SEHC01 A311 SEHC01 U R S DECEMBER 1997=100 Owners' equivalent rent of primary residence in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SEHF A311 SEHF U R S DECEMBER 1997=100 Energy services in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SEHF01 A311 SEHF01 U R S DECEMBER 1997=100 Electricity in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SEHF02 A311 SEHF02 U R S DECEMBER 1997=100 Utility (piped) gas service in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SETB A311 SETB U R S DECEMBER 1997=100 Motor fuel in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SETB01 A311 SETB01 U R S DECEMBER 1997=100 Gasoline (all types) in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SS47014 A311 SS47014 U R S DECEMBER 1997=100 Gasoline, unleaded regular in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SS47015 A311 SS47015 U R S DECEMBER 1997=100 Gasoline, unleaded midgrade in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA311SS47016 A311 SS47016 U R S DECEMBER 1997=100 Gasoline, unleaded premium in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA421AA0 A421 AA0 U R A 1967=100 All items - old base in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1914 M12 2017 M13 +CUURA421SA0 A421 SA0 U R S 1982-84=100 All items in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1914 M12 2017 M13 +CUURA421SA0E A421 SA0E U R S 1982-84=100 Energy in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURA421SA0L1E A421 SA0L1E U R S 1982-84=100 All items less food and energy in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1982 M01 2017 M13 +CUURA421SA0L2 A421 SA0L2 U R S 1982-84=100 All items less shelter in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1975 M12 2017 M13 +CUURA421SA0L5 A421 SA0L5 U R S 1982-84=100 All items less medical care in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1967 M01 2017 M13 +CUURA421SA0LE A421 SA0LE U R S 1982-84=100 All items less energy in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURA421SAA A421 SAA U R S 1982-84=100 Apparel in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1952 M12 2017 M13 +CUURA421SAC A421 SAC U R S 1982-84=100 Commodities in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1967 M01 2017 M13 +CUURA421SACL1 A421 SACL1 U R S 1982-84=100 Commodities less food in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1967 M01 2017 M13 +CUURA421SACL11 A421 SACL11 U R S 1982-84=100 Commodities less food and beverages in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1976 M01 2017 M13 +CUURA421SAD A421 SAD U R S 1982-84=100 Durables in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1967 M01 2017 M13 +CUURA421SAE A421 SAE U R S DECEMBER 1997=100 Education and communication in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA421SAEC A421 SAEC U R S DECEMBER 2009=100 Education and communication commodities in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURA421SAES A421 SAES U R S DECEMBER 2009=100 Education and communication services in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURA421SAF A421 SAF U R S 1982-84=100 Food and beverages in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1976 M01 2017 M13 +CUURA421SAF1 A421 SAF1 U R S 1982-84=100 Food in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1914 M12 2017 M13 +CUURA421SAF11 A421 SAF11 U R S 1982-84=100 Food at home in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1953 M01 2017 M13 +CUURA421SAF116 A421 SAF116 U R S 1982-84=100 Alcoholic beverages in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1976 M01 2017 M13 +CUURA421SAG A421 SAG U R S 1982-84=100 Other goods and services in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1976 M01 2017 M13 +CUURA421SAGC A421 SAGC U R S DECEMBER 2009=100 Other goods in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURA421SAGS A421 SAGS U R S DECEMBER 2009=100 Other personal services in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURA421SAH A421 SAH U R S 1982-84=100 Housing in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1976 M01 2017 M13 +CUURA421SAH1 A421 SAH1 U R S 1982-84=100 Shelter in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1952 M12 2017 M13 +CUURA421SAH2 A421 SAH2 U R S 1982-84=100 Fuels and utilities in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1952 M12 2017 M13 +CUURA421SAH21 A421 SAH21 U R S 1982-84=100 Household energy in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1976 M01 2017 M13 +CUURA421SAH3 A421 SAH3 U R S 1982-84=100 Household furnishings and operations in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1976 M01 2017 M13 +CUURA421SAH31 A421 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURA421SAM A421 SAM U R S 1982-84=100 Medical care in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1947 M01 2017 M13 +CUURA421SAN A421 SAN U R S 1982-84=100 Nondurables in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1967 M01 2017 M13 +CUURA421SANL1 A421 SANL1 U R S 1982-84=100 Nondurables less food in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1967 M01 2017 M13 +CUURA421SANL11 A421 SANL11 U R S 1982-84=100 Nondurables less food and beverages in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1976 M01 2017 M13 +CUURA421SAR A421 SAR U R S DECEMBER 1997=100 Recreation in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURA421SAS A421 SAS U R S 1982-84=100 Services in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1967 M01 2017 M13 +CUURA421SASL2RS A421 SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1982 M12 2017 M13 +CUURA421SASL5 A421 SASL5 U R S 1982-84=100 Services less medical care services in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1967 M01 2017 M13 +CUURA421SAT A421 SAT U R S 1982-84=100 Transportation in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1947 M01 2017 M13 +CUURA421SAT1 A421 SAT1 U R S 1982-84=100 Private transportation in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1947 M01 2017 M13 +CUURA421SATCLTB A421 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURA421SEFV A421 SEFV U R S 1982-84=100 Food away from home in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1952 M12 2017 M13 +CUURA421SEHA A421 SEHA U R S 1982-84=100 Rent of primary residence in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1914 M12 2017 M13 +CUURA421SEHC A421 SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1982 M12 2017 M13 +CUURA421SEHC01 A421 SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1982 M12 2017 M13 +CUURA421SEHF A421 SEHF U R S 1982-84=100 Energy services in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1935 M03 2017 M13 +CUURA421SEHF01 A421 SEHF01 U R S 1982-84=100 Electricity in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1971 M05 2017 M13 +CUURA421SEHF02 A421 SEHF02 U R S 1982-84=100 Utility (piped) gas service in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1971 M05 2017 M13 +CUURA421SETB A421 SETB U R S 1982-84=100 Motor fuel in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURA421SETB01 A421 SETB01 U R S 1982-84=100 Gasoline (all types) in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURA421SS47014 A421 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1976 M01 2017 M13 +CUURA421SS47015 A421 SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1993 M12 2017 M13 +CUURA421SS47016 A421 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1981 M08 2017 M13 +CUURA425AA0 A425 AA0 U R A 1967=100 All items - old base in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1914 M12 1986 M13 +CUURA425SA0 A425 SA0 U R S 1982-84=100 All items in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1914 M12 1986 M13 +CUURA425SA0E A425 SA0E U R S 1982-84=100 Energy in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1978 M01 1986 M13 +CUURA425SA0L1E A425 SA0L1E U R S 1982-84=100 All items less food and energy in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1982 M01 1986 M13 +CUURA425SA0L2 A425 SA0L2 U R S 1982-84=100 All items less shelter in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SA0L5 A425 SA0L5 U R S 1982-84=100 All items less medical care in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SA0LE A425 SA0LE U R S 1982-84=100 All items less energy in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1978 M01 1986 M13 +CUURA425SAA A425 SAA U R S 1982-84=100 Apparel in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1914 M12 1986 M13 +CUURA425SAC A425 SAC U R S 1982-84=100 Commodities in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SACL1 A425 SACL1 U R S 1982-84=100 Commodities less food in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SACL11 A425 SACL11 U R S 1982-84=100 Commodities less food and beverages in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SAD A425 SAD U R S 1982-84=100 Durables in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SAE A425 SAE U R S DECEMBER 1997=100 Education and communication in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1997 M12 1997 M12 +CUURA425SAF A425 SAF U R S 1982-84=100 Food and beverages in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SAF1 A425 SAF1 U R S 1982-84=100 Food in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1914 M12 1986 M13 +CUURA425SAF11 A425 SAF11 U R S 1982-84=100 Food at home in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1953 M01 1986 M13 +CUURA425SAF116 A425 SAF116 U R S 1982-84=100 Alcoholic beverages in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SAG A425 SAG U R S 1982-84=100 Other goods and services in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SAH A425 SAH U R S 1982-84=100 Housing in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SAH1 A425 SAH1 U R S 1982-84=100 Shelter in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SAH2 A425 SAH2 U R S 1982-84=100 Fuels and utilities in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SAH21 A425 SAH21 U R S 1982-84=100 Household energy in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SAH3 A425 SAH3 U R S 1982-84=100 Household furnishings and operations in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SAM A425 SAM U R S 1982-84=100 Medical care in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1947 M03 1986 M13 +CUURA425SAN A425 SAN U R S 1982-84=100 Nondurables in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SANL1 A425 SANL1 U R S 1982-84=100 Nondurables less food in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SANL11 A425 SANL11 U R S 1982-84=100 Nondurables less food and beverages in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SAR A425 SAR U R S DECEMBER 1997=100 Recreation in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1997 M12 1997 M12 +CUURA425SAS A425 SAS U R S 1982-84=100 Services in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SASL2RS A425 SASL2RS U R S NOVEMBER 1982=100 Services less rent of shelter in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1982 M11 1986 M13 +CUURA425SASL5 A425 SASL5 U R S 1982-84=100 Services less medical care services in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SAT A425 SAT U R S 1982-84=100 Transportation in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1947 M03 1986 M13 +CUURA425SAT1 A425 SAT1 U R S 1982-84=100 Private transportation in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1947 M03 1986 M13 +CUURA425SEFV A425 SEFV U R S 1982-84=100 Food away from home in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1976 M01 1986 M13 +CUURA425SEHA A425 SEHA U R S 1982-84=100 Rent of primary residence in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1914 M12 1986 M13 +CUURA425SEHC A425 SEHC U R S NOVEMBER 1982=100 Owners' equivalent rent of residences in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1982 M11 1986 M13 +CUURA425SEHC01 A425 SEHC01 U R S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1982 M11 1986 M13 +CUURA425SEHF A425 SEHF U R S 1982-84=100 Energy services in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1935 M03 1986 M13 +CUURA425SEHF01 A425 SEHF01 U R S 1982-84=100 Electricity in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1978 M01 1986 M13 +CUURA425SEHF02 A425 SEHF02 U R S 1982-84=100 Utility (piped) gas service in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1978 M01 1986 M13 +CUURA425SETB A425 SETB U R S 1982-84=100 Motor fuel in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1978 M01 1986 M13 +CUURA425SETB01 A425 SETB01 U R S 1982-84=100 Gasoline (all types) in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1978 M01 1986 M13 +CUURA425SS47014 A425 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1978 M06 1986 M13 +CUURA425SS47016 A425 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1981 M08 1986 M13 +CUURD000AA0 D000 AA0 U R A DECEMBER 1977=100 All items - old base in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SA0 D000 SA0 U R S 1982-84=100 All items in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SA0E D000 SA0E U R S 1982-84=100 Energy in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SA0L1 D000 SA0L1 U R S 1982-84=100 All items less food in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SA0L1E D000 SA0L1E U R S 1982-84=100 All items less food and energy in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SA0L2 D000 SA0L2 U R S 1982-84=100 All items less shelter in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SA0L5 D000 SA0L5 U R S 1982-84=100 All items less medical care in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SA0LE D000 SA0LE U R S 1982-84=100 All items less energy in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAA D000 SAA U R S 1982-84=100 Apparel in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAC D000 SAC U R S 1982-84=100 Commodities in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SACE D000 SACE U R S 1982-84=100 Energy commodities in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SACL1 D000 SACL1 U R S 1982-84=100 Commodities less food in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SACL11 D000 SACL11 U R S 1982-84=100 Commodities less food and beverages in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SACL1E D000 SACL1E U R S 1982-84=100 Commodities less food and energy commodities in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAD D000 SAD U R S 1982-84=100 Durables in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAE D000 SAE U R S DECEMBER 1997=100 Education and communication in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURD000SAEC D000 SAEC U R S DECEMBER 2009=100 Education and communication commodities in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD000SAES D000 SAES U R S DECEMBER 2009=100 Education and communication services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD000SAF D000 SAF U R S 1982-84=100 Food and beverages in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAF1 D000 SAF1 U R S 1982-84=100 Food in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAF11 D000 SAF11 U R S 1982-84=100 Food at home in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAF116 D000 SAF116 U R S 1982-84=100 Alcoholic beverages in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAG D000 SAG U R S 1982-84=100 Other goods and services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAGC D000 SAGC U R S DECEMBER 2009=100 Other goods in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD000SAGS D000 SAGS U R S DECEMBER 2009=100 Other personal services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD000SAH D000 SAH U R S 1982-84=100 Housing in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAH1 D000 SAH1 U R S 1982-84=100 Shelter in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAH2 D000 SAH2 U R S 1982-84=100 Fuels and utilities in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAH21 D000 SAH21 U R S 1982-84=100 Household energy in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAH3 D000 SAH3 U R S 1982-84=100 Household furnishings and operations in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAH31 D000 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD000SAM D000 SAM U R S 1982-84=100 Medical care in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAM1 D000 SAM1 U R S 1982-84=100 Medical care commodities in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAM2 D000 SAM2 U R S 1982-84=100 Medical care services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAN D000 SAN U R S 1982-84=100 Nondurables in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SANL1 D000 SANL1 U R S 1982-84=100 Nondurables less food in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SANL11 D000 SANL11 U R S 1982-84=100 Nondurables less food and beverages in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SANL113 D000 SANL113 U R S 1982-84=100 Nondurables less food, beverages, and apparel in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SANL13 D000 SANL13 U R S 1982-84=100 Nondurables less food and apparel in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAR D000 SAR U R S DECEMBER 1997=100 Recreation in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURD000SARC D000 SARC U R S DECEMBER 2009=100 Recreation commodities in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD000SARS D000 SARS U R S DECEMBER 2009=100 Recreation services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD000SAS D000 SAS U R S 1982-84=100 Services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAS2RS D000 SAS2RS U R S DECEMBER 1982=100 Rent of shelter in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1982 M12 2017 M13 +CUURD000SAS367 D000 SAS367 U R S 1982-84=100 Other services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAS4 D000 SAS4 U R S 1982-84=100 Transportation services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SASL2RS D000 SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1982 M12 2017 M13 +CUURD000SASL5 D000 SASL5 U R S 1982-84=100 Services less medical care services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SASLE D000 SASLE U R S 1982-84=100 Services less energy services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAT D000 SAT U R S 1982-84=100 Transportation in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SAT1 D000 SAT1 U R S 1982-84=100 Private transportation in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SATCLTB D000 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD000SEFV D000 SEFV U R S 1982-84=100 Food away from home in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SEHA D000 SEHA U R S 1982-84=100 Rent of primary residence in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SEHC D000 SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1982 M12 2017 M13 +CUURD000SEHC01 D000 SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1982 M12 2017 M13 +CUURD000SEHF D000 SEHF U R S 1982-84=100 Energy services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SEHF01 D000 SEHF01 U R S 1982-84=100 Electricity in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1982 M01 2017 M13 +CUURD000SEHF02 D000 SEHF02 U R S 1982-84=100 Utility (piped) gas service in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1982 M01 2017 M13 +CUURD000SEMC D000 SEMC U R S 1982-84=100 Professional services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SETA D000 SETA U R S DECEMBER 1997=100 New and used motor vehicles in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURD000SETA01 D000 SETA01 U R S 1982-84=100 New vehicles in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SETA02 D000 SETA02 U R S 1982-84=100 Used cars and trucks in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SETB D000 SETB U R S 1982-84=100 Motor fuel in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SETB01 D000 SETB01 U R S 1982-84=100 Gasoline (all types) in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SS45011 D000 SS45011 U R S 1982-84=100 New cars in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD000SS4501A D000 SS4501A U R S DECEMBER 1997=100 New cars and trucks in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURD000SS47014 D000 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1982 M01 2017 M13 +CUURD000SS47015 D000 SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1993 M12 2017 M13 +CUURD000SS47016 D000 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1982 M01 2017 M13 +CUURD200AA0 D200 AA0 U R A DECEMBER 1977=100 All items - old base in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SA0 D200 SA0 U R S 1982-84=100 All items in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SA0E D200 SA0E U R S 1982-84=100 Energy in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SA0L1E D200 SA0L1E U R S 1982-84=100 All items less food and energy in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1982 M02 2017 M13 +CUURD200SA0L2 D200 SA0L2 U R S 1982-84=100 All items less shelter in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SA0L5 D200 SA0L5 U R S 1982-84=100 All items less medical care in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SA0LE D200 SA0LE U R S 1982-84=100 All items less energy in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SAA D200 SAA U R S 1982-84=100 Apparel in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SAC D200 SAC U R S 1982-84=100 Commodities in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SACL1 D200 SACL1 U R S 1982-84=100 Commodities less food in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SACL11 D200 SACL11 U R S 1982-84=100 Commodities less food and beverages in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SAD D200 SAD U R S 1982-84=100 Durables in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SAE D200 SAE U R S DECEMBER 1997=100 Education and communication in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURD200SAEC D200 SAEC U R S DECEMBER 2009=100 Education and communication commodities in Midwest - Size Class D, all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD200SAES D200 SAES U R S DECEMBER 2009=100 Education and communication services in Midwest - Size Class D, all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD200SAF D200 SAF U R S 1982-84=100 Food and beverages in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SAF1 D200 SAF1 U R S 1982-84=100 Food in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SAF11 D200 SAF11 U R S 1982-84=100 Food at home in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SAF116 D200 SAF116 U R S 1982-84=100 Alcoholic beverages in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SAG D200 SAG U R S 1982-84=100 Other goods and services in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SAGC D200 SAGC U R S DECEMBER 2009=100 Other goods in Midwest - Size Class D, all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD200SAGS D200 SAGS U R S DECEMBER 2009=100 Other personal services in Midwest - Size Class D, all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD200SAH D200 SAH U R S 1982-84=100 Housing in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SAH1 D200 SAH1 U R S 1982-84=100 Shelter in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SAH2 D200 SAH2 U R S 1982-84=100 Fuels and utilities in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SAH21 D200 SAH21 U R S 1982-84=100 Household energy in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SAH3 D200 SAH3 U R S 1982-84=100 Household furnishings and operations in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SAH31 D200 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Midwest - Size Class D, all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD200SAM D200 SAM U R S 1982-84=100 Medical care in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SAN D200 SAN U R S 1982-84=100 Nondurables in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SANL1 D200 SANL1 U R S 1982-84=100 Nondurables less food in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SANL11 D200 SANL11 U R S 1982-84=100 Nondurables less food and beverages in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SAR D200 SAR U R S DECEMBER 1997=100 Recreation in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURD200SAS D200 SAS U R S 1982-84=100 Services in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SASL2RS D200 SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1982 M12 2017 M13 +CUURD200SASL5 D200 SASL5 U R S 1982-84=100 Services less medical care services in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SAT D200 SAT U R S 1982-84=100 Transportation in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SAT1 D200 SAT1 U R S 1982-84=100 Private transportation in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SATCLTB D200 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Midwest - Size Class D, all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD200SEFV D200 SEFV U R S 1982-84=100 Food away from home in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SEHA D200 SEHA U R S 1982-84=100 Rent of primary residence in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SEHC D200 SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1982 M12 2017 M13 +CUURD200SEHC01 D200 SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1982 M12 2017 M13 +CUURD200SEHF D200 SEHF U R S 1982-84=100 Energy services in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SEHF01 D200 SEHF01 U R S 1982-84=100 Electricity in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SEHF02 D200 SEHF02 U R S 1982-84=100 Utility (piped) gas service in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SETB D200 SETB U R S 1982-84=100 Motor fuel in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SETB01 D200 SETB01 U R S 1982-84=100 Gasoline (all types) in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD200SS47014 D200 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1978 M06 2017 M13 +CUURD200SS47015 D200 SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1993 M12 2017 M13 +CUURD200SS47016 D200 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1981 M08 2017 M13 +CUURD300AA0 D300 AA0 U R A DECEMBER 1977=100 All items - old base in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SA0 D300 SA0 U R S 1982-84=100 All items in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SA0E D300 SA0E U R S 1982-84=100 Energy in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SA0L1E D300 SA0L1E U R S 1982-84=100 All items less food and energy in South - Size Class D, all urban consumers, not seasonally adjusted 1982 M02 2017 M13 +CUURD300SA0L2 D300 SA0L2 U R S 1982-84=100 All items less shelter in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SA0L5 D300 SA0L5 U R S 1982-84=100 All items less medical care in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SA0LE D300 SA0LE U R S 1982-84=100 All items less energy in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SAA D300 SAA U R S 1982-84=100 Apparel in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SAC D300 SAC U R S 1982-84=100 Commodities in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SACL1 D300 SACL1 U R S 1982-84=100 Commodities less food in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SACL11 D300 SACL11 U R S 1982-84=100 Commodities less food and beverages in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SAD D300 SAD U R S 1982-84=100 Durables in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SAE D300 SAE U R S DECEMBER 1997=100 Education and communication in South - Size Class D, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURD300SAEC D300 SAEC U R S DECEMBER 2009=100 Education and communication commodities in South - Size Class D, all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD300SAES D300 SAES U R S DECEMBER 2009=100 Education and communication services in South - Size Class D, all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD300SAF D300 SAF U R S 1982-84=100 Food and beverages in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SAF1 D300 SAF1 U R S 1982-84=100 Food in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SAF11 D300 SAF11 U R S 1982-84=100 Food at home in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SAF116 D300 SAF116 U R S 1982-84=100 Alcoholic beverages in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SAG D300 SAG U R S 1982-84=100 Other goods and services in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SAGC D300 SAGC U R S DECEMBER 2009=100 Other goods in South - Size Class D, all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD300SAGS D300 SAGS U R S DECEMBER 2009=100 Other personal services in South - Size Class D, all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD300SAH D300 SAH U R S 1982-84=100 Housing in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SAH1 D300 SAH1 U R S 1982-84=100 Shelter in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SAH2 D300 SAH2 U R S 1982-84=100 Fuels and utilities in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SAH21 D300 SAH21 U R S 1982-84=100 Household energy in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SAH3 D300 SAH3 U R S 1982-84=100 Household furnishings and operations in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SAH31 D300 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in South - Size Class D, all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD300SAM D300 SAM U R S 1982-84=100 Medical care in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SAN D300 SAN U R S 1982-84=100 Nondurables in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SANL1 D300 SANL1 U R S 1982-84=100 Nondurables less food in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SANL11 D300 SANL11 U R S 1982-84=100 Nondurables less food and beverages in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SAR D300 SAR U R S DECEMBER 1997=100 Recreation in South - Size Class D, all urban consumers, not seasonally adjusted 1997 M12 2017 M13 +CUURD300SAS D300 SAS U R S 1982-84=100 Services in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SASL2RS D300 SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in South - Size Class D, all urban consumers, not seasonally adjusted 1982 M12 2017 M13 +CUURD300SASL5 D300 SASL5 U R S 1982-84=100 Services less medical care services in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SAT D300 SAT U R S 1982-84=100 Transportation in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SAT1 D300 SAT1 U R S 1982-84=100 Private transportation in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SATCLTB D300 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in South - Size Class D, all urban consumers, not seasonally adjusted 2009 M12 2017 M13 +CUURD300SEFV D300 SEFV U R S 1982-84=100 Food away from home in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SEHA D300 SEHA U R S 1982-84=100 Rent of primary residence in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SEHC D300 SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in South - Size Class D, all urban consumers, not seasonally adjusted 1982 M12 2017 M13 +CUURD300SEHC01 D300 SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in South - Size Class D, all urban consumers, not seasonally adjusted 1982 M12 2017 M13 +CUURD300SEHF D300 SEHF U R S 1982-84=100 Energy services in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SEHF01 D300 SEHF01 U R S 1982-84=100 Electricity in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SEHF02 D300 SEHF02 U R S 1982-84=100 Utility (piped) gas service in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SETB D300 SETB U R S 1982-84=100 Motor fuel in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SETB01 D300 SETB01 U R S 1982-84=100 Gasoline (all types) in South - Size Class D, all urban consumers, not seasonally adjusted 1977 M12 2017 M13 +CUURD300SS47014 D300 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in South - Size Class D, all urban consumers, not seasonally adjusted 1978 M06 2017 M13 +CUURD300SS47015 D300 SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in South - Size Class D, all urban consumers, not seasonally adjusted 1993 M12 2017 M13 +CUURD300SS47016 D300 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in South - Size Class D, all urban consumers, not seasonally adjusted 1981 M08 2017 M13 +CUURN000SA0 N000 SA0 U R S DECEMBER 1996=100 All items in Size Class B/C, all urban consumers, not seasonally adjusted 1996 M12 2025 M08 +CUURN000SA0E N000 SA0E U R S DECEMBER 1997=100 Energy in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SA0L1 N000 SA0L1 U R S DECEMBER 1997=100 All items less food in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SA0L1E N000 SA0L1E U R S DECEMBER 1997=100 All items less food and energy in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SA0L2 N000 SA0L2 U R S DECEMBER 1997=100 All items less shelter in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SA0L5 N000 SA0L5 U R S DECEMBER 1997=100 All items less medical care in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SA0LE N000 SA0LE U R S DECEMBER 1997=100 All items less energy in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAA N000 SAA U R S DECEMBER 1997=100 Apparel in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAC N000 SAC U R S DECEMBER 1997=100 Commodities in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SACE N000 SACE U R S DECEMBER 1997=100 Energy commodities in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SACL1 N000 SACL1 U R S DECEMBER 1997=100 Commodities less food in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SACL11 N000 SACL11 U R S DECEMBER 1997=100 Commodities less food and beverages in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SACL1E N000 SACL1E U R S DECEMBER 1997=100 Commodities less food and energy commodities in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAD N000 SAD U R S DECEMBER 1997=100 Durables in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAE N000 SAE U R S DECEMBER 1997=100 Education and communication in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAEC N000 SAEC U R S DECEMBER 2009=100 Education and communication commodities in Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN000SAES N000 SAES U R S DECEMBER 2009=100 Education and communication services in Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN000SAF N000 SAF U R S DECEMBER 1997=100 Food and beverages in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAF1 N000 SAF1 U R S DECEMBER 1997=100 Food in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAF11 N000 SAF11 U R S DECEMBER 1997=100 Food at home in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAF111 N000 SAF111 U R S DECEMBER 1997=100 Cereals and bakery products in Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN000SAF112 N000 SAF112 U R S DECEMBER 1997=100 Meats, poultry, fish, and eggs in Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN000SAF113 N000 SAF113 U R S DECEMBER 1997=100 Fruits and vegetables in Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN000SAF114 N000 SAF114 U R S DECEMBER 1997=100 Nonalcoholic beverages and beverage materials in Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN000SAF115 N000 SAF115 U R S DECEMBER 1997=100 Other food at home in Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN000SAF116 N000 SAF116 U R S DECEMBER 1997=100 Alcoholic beverages in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAG N000 SAG U R S DECEMBER 1997=100 Other goods and services in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAGC N000 SAGC U R S DECEMBER 2009=100 Other goods in Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN000SAGS N000 SAGS U R S DECEMBER 2009=100 Other personal services in Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN000SAH N000 SAH U R S DECEMBER 1997=100 Housing in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAH1 N000 SAH1 U R S DECEMBER 1997=100 Shelter in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAH2 N000 SAH2 U R S DECEMBER 1997=100 Fuels and utilities in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAH21 N000 SAH21 U R S DECEMBER 1997=100 Household energy in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAH3 N000 SAH3 U R S DECEMBER 1997=100 Household furnishings and operations in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAH31 N000 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN000SAM N000 SAM U R S DECEMBER 1997=100 Medical care in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAM1 N000 SAM1 U R S DECEMBER 1997=100 Medical care commodities in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAM2 N000 SAM2 U R S DECEMBER 1997=100 Medical care services in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAN N000 SAN U R S DECEMBER 1997=100 Nondurables in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SANL1 N000 SANL1 U R S DECEMBER 1997=100 Nondurables less food in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SANL11 N000 SANL11 U R S DECEMBER 1997=100 Nondurables less food and beverages in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SANL113 N000 SANL113 U R S DECEMBER 1997=100 Nondurables less food, beverages, and apparel in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SANL13 N000 SANL13 U R S DECEMBER 1997=100 Nondurables less food and apparel in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAR N000 SAR U R S DECEMBER 1997=100 Recreation in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SARC N000 SARC U R S DECEMBER 2009=100 Recreation commodities in Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN000SARS N000 SARS U R S DECEMBER 2009=100 Recreation services in Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN000SAS N000 SAS U R S DECEMBER 1997=100 Services in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAS2RS N000 SAS2RS U R S DECEMBER 1997=100 Rent of shelter in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAS367 N000 SAS367 U R S DECEMBER 1997=100 Other services in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAS4 N000 SAS4 U R S DECEMBER 1997=100 Transportation services in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SASL2RS N000 SASL2RS U R S DECEMBER 1997=100 Services less rent of shelter in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SASL5 N000 SASL5 U R S DECEMBER 1997=100 Services less medical care services in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SASLE N000 SASLE U R S DECEMBER 1997=100 Services less energy services in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAT N000 SAT U R S DECEMBER 1997=100 Transportation in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SAT1 N000 SAT1 U R S DECEMBER 1997=100 Private transportation in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SATCLTB N000 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN000SEEB N000 SEEB U R S DECEMBER 1997=100 Tuition, other school fees, and childcare in Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN000SEFJ N000 SEFJ U R S DECEMBER 1997=100 Dairy and related products in Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN000SEFV N000 SEFV U R S DECEMBER 1997=100 Food away from home in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SEHA N000 SEHA U R S DECEMBER 1997=100 Rent of primary residence in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SEHC N000 SEHC U R S DECEMBER 1997=100 Owners' equivalent rent of residences in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SEHC01 N000 SEHC01 U R S DECEMBER 1997=100 Owners' equivalent rent of primary residence in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SEHF N000 SEHF U R S DECEMBER 1997=100 Energy services in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SEHF01 N000 SEHF01 U R S DECEMBER 1997=100 Electricity in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SEHF02 N000 SEHF02 U R S DECEMBER 1997=100 Utility (piped) gas service in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SEMC N000 SEMC U R S DECEMBER 1997=100 Professional services in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SETA N000 SETA U R S DECEMBER 1997=100 New and used motor vehicles in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SETA01 N000 SETA01 U R S DECEMBER 1997=100 New vehicles in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SETA02 N000 SETA02 U R S DECEMBER 1997=100 Used cars and trucks in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SETB N000 SETB U R S DECEMBER 1997=100 Motor fuel in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SETB01 N000 SETB01 U R S DECEMBER 1997=100 Gasoline (all types) in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SETE N000 SETE U R S DECEMBER 1997=100 Motor vehicle insurance in Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURN000SS45011 N000 SS45011 U R S DECEMBER 1997=100 New cars in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SS4501A N000 SS4501A U R S DECEMBER 1997=100 New cars and trucks in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2022 M03 +CUURN000SS47014 N000 SS47014 U R S DECEMBER 1997=100 Gasoline, unleaded regular in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SS47015 N000 SS47015 U R S DECEMBER 1997=100 Gasoline, unleaded midgrade in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN000SS47016 N000 SS47016 U R S DECEMBER 1997=100 Gasoline, unleaded premium in Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SA0 N100 SA0 U R S DECEMBER 1996=100 All items in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1996 M12 2025 M08 +CUURN100SA0E N100 SA0E U R S DECEMBER 1997=100 Energy in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SA0L1E N100 SA0L1E U R S DECEMBER 1997=100 All items less food and energy in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SA0L2 N100 SA0L2 U R S DECEMBER 1997=100 All items less shelter in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SA0L5 N100 SA0L5 U R S DECEMBER 1997=100 All items less medical care in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SA0LE N100 SA0LE U R S DECEMBER 1997=100 All items less energy in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SAA N100 SAA U R S DECEMBER 1997=100 Apparel in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SAC N100 SAC U R S DECEMBER 1997=100 Commodities in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SACL1 N100 SACL1 U R S DECEMBER 1997=100 Commodities less food in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SACL11 N100 SACL11 U R S DECEMBER 1997=100 Commodities less food and beverages in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SAD N100 SAD U R S DECEMBER 1997=100 Durables in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SAE N100 SAE U R S DECEMBER 1997=100 Education and communication in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SAEC N100 SAEC U R S DECEMBER 2009=100 Education and communication commodities in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN100SAES N100 SAES U R S DECEMBER 2009=100 Education and communication services in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN100SAF N100 SAF U R S DECEMBER 1997=100 Food and beverages in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SAF1 N100 SAF1 U R S DECEMBER 1997=100 Food in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SAF11 N100 SAF11 U R S DECEMBER 1997=100 Food at home in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SAF111 N100 SAF111 U R S DECEMBER 1997=100 Cereals and bakery products in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN100SAF112 N100 SAF112 U R S DECEMBER 1997=100 Meats, poultry, fish, and eggs in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN100SAF113 N100 SAF113 U R S DECEMBER 1997=100 Fruits and vegetables in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN100SAF114 N100 SAF114 U R S DECEMBER 1997=100 Nonalcoholic beverages and beverage materials in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN100SAF115 N100 SAF115 U R S DECEMBER 1997=100 Other food at home in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN100SAF116 N100 SAF116 U R S DECEMBER 1997=100 Alcoholic beverages in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SAG N100 SAG U R S DECEMBER 1997=100 Other goods and services in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SAGC N100 SAGC U R S DECEMBER 2009=100 Other goods in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN100SAGS N100 SAGS U R S DECEMBER 2009=100 Other personal services in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN100SAH N100 SAH U R S DECEMBER 1997=100 Housing in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SAH1 N100 SAH1 U R S DECEMBER 1997=100 Shelter in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SAH2 N100 SAH2 U R S DECEMBER 1997=100 Fuels and utilities in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN100SAH21 N100 SAH21 U R S DECEMBER 1997=100 Household energy in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN100SAH3 N100 SAH3 U R S DECEMBER 1997=100 Household furnishings and operations in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SAH31 N100 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN100SAM N100 SAM U R S DECEMBER 1997=100 Medical care in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SAN N100 SAN U R S DECEMBER 1997=100 Nondurables in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SANL1 N100 SANL1 U R S DECEMBER 1997=100 Nondurables less food in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SANL11 N100 SANL11 U R S DECEMBER 1997=100 Nondurables less food and beverages in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SAR N100 SAR U R S DECEMBER 1997=100 Recreation in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SAS N100 SAS U R S DECEMBER 1997=100 Services in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SASL2RS N100 SASL2RS U R S DECEMBER 1997=100 Services less rent of shelter in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SASL5 N100 SASL5 U R S DECEMBER 1997=100 Services less medical care services in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SAT N100 SAT U R S DECEMBER 1997=100 Transportation in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SAT1 N100 SAT1 U R S DECEMBER 1997=100 Private transportation in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SATCLTB N100 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN100SEEB N100 SEEB U R S DECEMBER 1997=100 Tuition, other school fees, and childcare in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN100SEFJ N100 SEFJ U R S DECEMBER 1997=100 Dairy and related products in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN100SEFV N100 SEFV U R S DECEMBER 1997=100 Food away from home in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SEHA N100 SEHA U R S DECEMBER 1997=100 Rent of primary residence in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SEHC N100 SEHC U R S DECEMBER 1997=100 Owners' equivalent rent of residences in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SEHC01 N100 SEHC01 U R S DECEMBER 1997=100 Owners' equivalent rent of primary residence in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SEHF N100 SEHF U R S DECEMBER 1997=100 Energy services in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN100SEHF01 N100 SEHF01 U R S DECEMBER 1997=100 Electricity in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN100SEHF02 N100 SEHF02 U R S DECEMBER 1997=100 Utility (piped) gas service in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN100SETA N100 SETA U R S DECEMBER 1997=100 New and used motor vehicles in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN100SETA01 N100 SETA01 U R S DECEMBER 1997=100 New vehicles in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN100SETA02 N100 SETA02 U R S DECEMBER 1997=100 Used cars and trucks in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN100SETB N100 SETB U R S DECEMBER 1997=100 Motor fuel in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SETB01 N100 SETB01 U R S DECEMBER 1997=100 Gasoline (all types) in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SETE N100 SETE U R S DECEMBER 1997=100 Motor vehicle insurance in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURN100SS47014 N100 SS47014 U R S DECEMBER 1997=100 Gasoline, unleaded regular in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SS47015 N100 SS47015 U R S DECEMBER 1997=100 Gasoline, unleaded midgrade in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN100SS47016 N100 SS47016 U R S DECEMBER 1997=100 Gasoline, unleaded premium in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SA0 N200 SA0 U R S DECEMBER 1996=100 All items in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1996 M12 2025 M08 +CUURN200SA0E N200 SA0E U R S DECEMBER 1997=100 Energy in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SA0L1E N200 SA0L1E U R S DECEMBER 1997=100 All items less food and energy in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SA0L2 N200 SA0L2 U R S DECEMBER 1997=100 All items less shelter in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SA0L5 N200 SA0L5 U R S DECEMBER 1997=100 All items less medical care in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SA0LE N200 SA0LE U R S DECEMBER 1997=100 All items less energy in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SAA N200 SAA U R S DECEMBER 1997=100 Apparel in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SAC N200 SAC U R S DECEMBER 1997=100 Commodities in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SACL1 N200 SACL1 U R S DECEMBER 1997=100 Commodities less food in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SACL11 N200 SACL11 U R S DECEMBER 1997=100 Commodities less food and beverages in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SAD N200 SAD U R S DECEMBER 1997=100 Durables in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SAE N200 SAE U R S DECEMBER 1997=100 Education and communication in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SAEC N200 SAEC U R S DECEMBER 2009=100 Education and communication commodities in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN200SAES N200 SAES U R S DECEMBER 2009=100 Education and communication services in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN200SAF N200 SAF U R S DECEMBER 1997=100 Food and beverages in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SAF1 N200 SAF1 U R S DECEMBER 1997=100 Food in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SAF11 N200 SAF11 U R S DECEMBER 1997=100 Food at home in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SAF111 N200 SAF111 U R S DECEMBER 1997=100 Cereals and bakery products in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN200SAF112 N200 SAF112 U R S DECEMBER 1997=100 Meats, poultry, fish, and eggs in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN200SAF113 N200 SAF113 U R S DECEMBER 1997=100 Fruits and vegetables in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN200SAF114 N200 SAF114 U R S DECEMBER 1997=100 Nonalcoholic beverages and beverage materials in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN200SAF115 N200 SAF115 U R S DECEMBER 1997=100 Other food at home in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN200SAF116 N200 SAF116 U R S DECEMBER 1997=100 Alcoholic beverages in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SAG N200 SAG U R S DECEMBER 1997=100 Other goods and services in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SAGC N200 SAGC U R S DECEMBER 2009=100 Other goods in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN200SAGS N200 SAGS U R S DECEMBER 2009=100 Other personal services in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN200SAH N200 SAH U R S DECEMBER 1997=100 Housing in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SAH1 N200 SAH1 U R S DECEMBER 1997=100 Shelter in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SAH2 N200 SAH2 U R S DECEMBER 1997=100 Fuels and utilities in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN200SAH21 N200 SAH21 U R S DECEMBER 1997=100 Household energy in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN200SAH3 N200 SAH3 U R S DECEMBER 1997=100 Household furnishings and operations in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SAH31 N200 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN200SAM N200 SAM U R S DECEMBER 1997=100 Medical care in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SAN N200 SAN U R S DECEMBER 1997=100 Nondurables in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SANL1 N200 SANL1 U R S DECEMBER 1997=100 Nondurables less food in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SANL11 N200 SANL11 U R S DECEMBER 1997=100 Nondurables less food and beverages in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SAR N200 SAR U R S DECEMBER 1997=100 Recreation in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SAS N200 SAS U R S DECEMBER 1997=100 Services in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SASL2RS N200 SASL2RS U R S DECEMBER 1997=100 Services less rent of shelter in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SASL5 N200 SASL5 U R S DECEMBER 1997=100 Services less medical care services in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SAT N200 SAT U R S DECEMBER 1997=100 Transportation in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SAT1 N200 SAT1 U R S DECEMBER 1997=100 Private transportation in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SATCLTB N200 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN200SEEB N200 SEEB U R S DECEMBER 1997=100 Tuition, other school fees, and childcare in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN200SEFJ N200 SEFJ U R S DECEMBER 1997=100 Dairy and related products in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN200SEFV N200 SEFV U R S DECEMBER 1997=100 Food away from home in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SEHA N200 SEHA U R S DECEMBER 1997=100 Rent of primary residence in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SEHC N200 SEHC U R S DECEMBER 1997=100 Owners' equivalent rent of residences in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SEHC01 N200 SEHC01 U R S DECEMBER 1997=100 Owners' equivalent rent of primary residence in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SEHF N200 SEHF U R S DECEMBER 1997=100 Energy services in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN200SEHF01 N200 SEHF01 U R S DECEMBER 1997=100 Electricity in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN200SEHF02 N200 SEHF02 U R S DECEMBER 1997=100 Utility (piped) gas service in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN200SETA N200 SETA U R S DECEMBER 1997=100 New and used motor vehicles in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN200SETA01 N200 SETA01 U R S DECEMBER 1997=100 New vehicles in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN200SETA02 N200 SETA02 U R S DECEMBER 1997=100 Used cars and trucks in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN200SETB N200 SETB U R S DECEMBER 1997=100 Motor fuel in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SETB01 N200 SETB01 U R S DECEMBER 1997=100 Gasoline (all types) in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SETE N200 SETE U R S DECEMBER 1997=100 Motor vehicle insurance in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURN200SS47014 N200 SS47014 U R S DECEMBER 1997=100 Gasoline, unleaded regular in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SS47015 N200 SS47015 U R S DECEMBER 1997=100 Gasoline, unleaded midgrade in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN200SS47016 N200 SS47016 U R S DECEMBER 1997=100 Gasoline, unleaded premium in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SA0 N300 SA0 U R S DECEMBER 1996=100 All items in South - Size Class B/C, all urban consumers, not seasonally adjusted 1996 M12 2025 M08 +CUURN300SA0E N300 SA0E U R S DECEMBER 1997=100 Energy in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SA0L1E N300 SA0L1E U R S DECEMBER 1997=100 All items less food and energy in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SA0L2 N300 SA0L2 U R S DECEMBER 1997=100 All items less shelter in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SA0L5 N300 SA0L5 U R S DECEMBER 1997=100 All items less medical care in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SA0LE N300 SA0LE U R S DECEMBER 1997=100 All items less energy in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SAA N300 SAA U R S DECEMBER 1997=100 Apparel in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SAC N300 SAC U R S DECEMBER 1997=100 Commodities in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SACL1 N300 SACL1 U R S DECEMBER 1997=100 Commodities less food in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SACL11 N300 SACL11 U R S DECEMBER 1997=100 Commodities less food and beverages in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SAD N300 SAD U R S DECEMBER 1997=100 Durables in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SAE N300 SAE U R S DECEMBER 1997=100 Education and communication in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SAEC N300 SAEC U R S DECEMBER 2009=100 Education and communication commodities in South - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN300SAES N300 SAES U R S DECEMBER 2009=100 Education and communication services in South - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN300SAF N300 SAF U R S DECEMBER 1997=100 Food and beverages in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SAF1 N300 SAF1 U R S DECEMBER 1997=100 Food in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SAF11 N300 SAF11 U R S DECEMBER 1997=100 Food at home in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SAF111 N300 SAF111 U R S DECEMBER 1997=100 Cereals and bakery products in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN300SAF112 N300 SAF112 U R S DECEMBER 1997=100 Meats, poultry, fish, and eggs in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN300SAF113 N300 SAF113 U R S DECEMBER 1997=100 Fruits and vegetables in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN300SAF114 N300 SAF114 U R S DECEMBER 1997=100 Nonalcoholic beverages and beverage materials in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN300SAF115 N300 SAF115 U R S DECEMBER 1997=100 Other food at home in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN300SAF116 N300 SAF116 U R S DECEMBER 1997=100 Alcoholic beverages in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SAG N300 SAG U R S DECEMBER 1997=100 Other goods and services in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SAGC N300 SAGC U R S DECEMBER 2009=100 Other goods in South - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN300SAGS N300 SAGS U R S DECEMBER 2009=100 Other personal services in South - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN300SAH N300 SAH U R S DECEMBER 1997=100 Housing in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SAH1 N300 SAH1 U R S DECEMBER 1997=100 Shelter in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SAH2 N300 SAH2 U R S DECEMBER 1997=100 Fuels and utilities in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN300SAH21 N300 SAH21 U R S DECEMBER 1997=100 Household energy in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN300SAH3 N300 SAH3 U R S DECEMBER 1997=100 Household furnishings and operations in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SAH31 N300 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in South - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN300SAM N300 SAM U R S DECEMBER 1997=100 Medical care in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SAN N300 SAN U R S DECEMBER 1997=100 Nondurables in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SANL1 N300 SANL1 U R S DECEMBER 1997=100 Nondurables less food in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SANL11 N300 SANL11 U R S DECEMBER 1997=100 Nondurables less food and beverages in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SAR N300 SAR U R S DECEMBER 1997=100 Recreation in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SAS N300 SAS U R S DECEMBER 1997=100 Services in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SASL2RS N300 SASL2RS U R S DECEMBER 1997=100 Services less rent of shelter in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SASL5 N300 SASL5 U R S DECEMBER 1997=100 Services less medical care services in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SAT N300 SAT U R S DECEMBER 1997=100 Transportation in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SAT1 N300 SAT1 U R S DECEMBER 1997=100 Private transportation in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SATCLTB N300 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in South - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN300SEEB N300 SEEB U R S DECEMBER 1997=100 Tuition, other school fees, and childcare in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN300SEFJ N300 SEFJ U R S DECEMBER 1997=100 Dairy and related products in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN300SEFV N300 SEFV U R S DECEMBER 1997=100 Food away from home in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SEHA N300 SEHA U R S DECEMBER 1997=100 Rent of primary residence in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SEHC N300 SEHC U R S DECEMBER 1997=100 Owners' equivalent rent of residences in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SEHC01 N300 SEHC01 U R S DECEMBER 1997=100 Owners' equivalent rent of primary residence in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SEHF N300 SEHF U R S DECEMBER 1997=100 Energy services in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN300SEHF01 N300 SEHF01 U R S DECEMBER 1997=100 Electricity in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN300SEHF02 N300 SEHF02 U R S DECEMBER 1997=100 Utility (piped) gas service in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN300SETA N300 SETA U R S DECEMBER 1997=100 New and used motor vehicles in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN300SETA01 N300 SETA01 U R S DECEMBER 1997=100 New vehicles in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN300SETA02 N300 SETA02 U R S DECEMBER 1997=100 Used cars and trucks in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN300SETB N300 SETB U R S DECEMBER 1997=100 Motor fuel in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SETB01 N300 SETB01 U R S DECEMBER 1997=100 Gasoline (all types) in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SETE N300 SETE U R S DECEMBER 1997=100 Motor vehicle insurance in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURN300SS47014 N300 SS47014 U R S DECEMBER 1997=100 Gasoline, unleaded regular in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SS47015 N300 SS47015 U R S DECEMBER 1997=100 Gasoline, unleaded midgrade in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN300SS47016 N300 SS47016 U R S DECEMBER 1997=100 Gasoline, unleaded premium in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SA0 N400 SA0 U R S DECEMBER 1996=100 All items in West - Size Class B/C, all urban consumers, not seasonally adjusted 1996 M12 2025 M08 +CUURN400SA0E N400 SA0E U R S DECEMBER 1997=100 Energy in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SA0L1E N400 SA0L1E U R S DECEMBER 1997=100 All items less food and energy in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SA0L2 N400 SA0L2 U R S DECEMBER 1997=100 All items less shelter in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SA0L5 N400 SA0L5 U R S DECEMBER 1997=100 All items less medical care in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SA0LE N400 SA0LE U R S DECEMBER 1997=100 All items less energy in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SAA N400 SAA U R S DECEMBER 1997=100 Apparel in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SAC N400 SAC U R S DECEMBER 1997=100 Commodities in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SACL1 N400 SACL1 U R S DECEMBER 1997=100 Commodities less food in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SACL11 N400 SACL11 U R S DECEMBER 1997=100 Commodities less food and beverages in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SAD N400 SAD U R S DECEMBER 1997=100 Durables in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SAE N400 SAE U R S DECEMBER 1997=100 Education and communication in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SAEC N400 SAEC U R S DECEMBER 2009=100 Education and communication commodities in West - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN400SAES N400 SAES U R S DECEMBER 2009=100 Education and communication services in West - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN400SAF N400 SAF U R S DECEMBER 1997=100 Food and beverages in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SAF1 N400 SAF1 U R S DECEMBER 1997=100 Food in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SAF11 N400 SAF11 U R S DECEMBER 1997=100 Food at home in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SAF111 N400 SAF111 U R S DECEMBER 1997=100 Cereals and bakery products in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN400SAF112 N400 SAF112 U R S DECEMBER 1997=100 Meats, poultry, fish, and eggs in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN400SAF113 N400 SAF113 U R S DECEMBER 1997=100 Fruits and vegetables in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN400SAF114 N400 SAF114 U R S DECEMBER 1997=100 Nonalcoholic beverages and beverage materials in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN400SAF115 N400 SAF115 U R S DECEMBER 1997=100 Other food at home in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN400SAF116 N400 SAF116 U R S DECEMBER 1997=100 Alcoholic beverages in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SAG N400 SAG U R S DECEMBER 1997=100 Other goods and services in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SAGC N400 SAGC U R S DECEMBER 2009=100 Other goods in West - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN400SAGS N400 SAGS U R S DECEMBER 2009=100 Other personal services in West - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN400SAH N400 SAH U R S DECEMBER 1997=100 Housing in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SAH1 N400 SAH1 U R S DECEMBER 1997=100 Shelter in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SAH2 N400 SAH2 U R S DECEMBER 1997=100 Fuels and utilities in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN400SAH21 N400 SAH21 U R S DECEMBER 1997=100 Household energy in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN400SAH3 N400 SAH3 U R S DECEMBER 1997=100 Household furnishings and operations in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SAH31 N400 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in West - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN400SAM N400 SAM U R S DECEMBER 1997=100 Medical care in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SAN N400 SAN U R S DECEMBER 1997=100 Nondurables in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SANL1 N400 SANL1 U R S DECEMBER 1997=100 Nondurables less food in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SANL11 N400 SANL11 U R S DECEMBER 1997=100 Nondurables less food and beverages in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SAR N400 SAR U R S DECEMBER 1997=100 Recreation in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SAS N400 SAS U R S DECEMBER 1997=100 Services in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SASL2RS N400 SASL2RS U R S DECEMBER 1997=100 Services less rent of shelter in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SASL5 N400 SASL5 U R S DECEMBER 1997=100 Services less medical care services in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SAT N400 SAT U R S DECEMBER 1997=100 Transportation in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SAT1 N400 SAT1 U R S DECEMBER 1997=100 Private transportation in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SATCLTB N400 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in West - Size Class B/C, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURN400SEEB N400 SEEB U R S DECEMBER 1997=100 Tuition, other school fees, and childcare in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN400SEFJ N400 SEFJ U R S DECEMBER 1997=100 Dairy and related products in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN400SEFV N400 SEFV U R S DECEMBER 1997=100 Food away from home in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SEHA N400 SEHA U R S DECEMBER 1997=100 Rent of primary residence in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SEHC N400 SEHC U R S DECEMBER 1997=100 Owners' equivalent rent of residences in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SEHC01 N400 SEHC01 U R S DECEMBER 1997=100 Owners' equivalent rent of primary residence in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SEHF N400 SEHF U R S DECEMBER 1997=100 Energy services in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN400SEHF01 N400 SEHF01 U R S DECEMBER 1997=100 Electricity in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN400SEHF02 N400 SEHF02 U R S DECEMBER 1997=100 Utility (piped) gas service in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2024 M13 +CUURN400SETA N400 SETA U R S DECEMBER 1997=100 New and used motor vehicles in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN400SETA01 N400 SETA01 U R S DECEMBER 1997=100 New vehicles in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN400SETA02 N400 SETA02 U R S DECEMBER 1997=100 Used cars and trucks in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURN400SETB N400 SETB U R S DECEMBER 1997=100 Motor fuel in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SETB01 N400 SETB01 U R S DECEMBER 1997=100 Gasoline (all types) in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SETE N400 SETE U R S DECEMBER 1997=100 Motor vehicle insurance in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURN400SS47014 N400 SS47014 U R S DECEMBER 1997=100 Gasoline, unleaded regular in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SS47015 N400 SS47015 U R S DECEMBER 1997=100 Gasoline, unleaded midgrade in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURN400SS47016 N400 SS47016 U R S DECEMBER 1997=100 Gasoline, unleaded premium in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS000AA0 S000 AA0 U R A DECEMBER 1986=100 All items - old base in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SA0 S000 SA0 U R S DECEMBER 1986=100 All items in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SA0E S000 SA0E U R S DECEMBER 1986=100 Energy in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SA0L1 S000 SA0L1 U R S DECEMBER 1986=100 All items less food in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SA0L1E S000 SA0L1E U R S DECEMBER 1986=100 All items less food and energy in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SA0L2 S000 SA0L2 U R S DECEMBER 1986=100 All items less shelter in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SA0L5 S000 SA0L5 U R S DECEMBER 1986=100 All items less medical care in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SA0LE S000 SA0LE U R S DECEMBER 1986=100 All items less energy in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAA S000 SAA U R S DECEMBER 1986=100 Apparel in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAC S000 SAC U R S DECEMBER 1986=100 Commodities in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SACE S000 SACE U R S DECEMBER 1986=100 Energy commodities in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SACL1 S000 SACL1 U R S DECEMBER 1986=100 Commodities less food in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SACL11 S000 SACL11 U R S DECEMBER 1986=100 Commodities less food and beverages in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SACL1E S000 SACL1E U R S DECEMBER 1986=100 Commodities less food and energy commodities in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAD S000 SAD U R S DECEMBER 1986=100 Durables in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAE S000 SAE U R S DECEMBER 1997=100 Education and communication in Size Class A, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS000SAEC S000 SAEC U R S DECEMBER 2009=100 Education and communication commodities in Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS000SAES S000 SAES U R S DECEMBER 2009=100 Education and communication services in Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS000SAF S000 SAF U R S DECEMBER 1986=100 Food and beverages in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAF1 S000 SAF1 U R S DECEMBER 1986=100 Food in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAF11 S000 SAF11 U R S DECEMBER 1986=100 Food at home in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAF111 S000 SAF111 U R S DECEMBER 1986=100 Cereals and bakery products in Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS000SAF112 S000 SAF112 U R S DECEMBER 1986=100 Meats, poultry, fish, and eggs in Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS000SAF113 S000 SAF113 U R S DECEMBER 1986=100 Fruits and vegetables in Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS000SAF114 S000 SAF114 U R S DECEMBER 1986=100 Nonalcoholic beverages and beverage materials in Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS000SAF115 S000 SAF115 U R S DECEMBER 1986=100 Other food at home in Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS000SAF116 S000 SAF116 U R S DECEMBER 1986=100 Alcoholic beverages in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAG S000 SAG U R S DECEMBER 1986=100 Other goods and services in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAGC S000 SAGC U R S DECEMBER 2009=100 Other goods in Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS000SAGS S000 SAGS U R S DECEMBER 2009=100 Other personal services in Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS000SAH S000 SAH U R S DECEMBER 1986=100 Housing in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAH1 S000 SAH1 U R S DECEMBER 1986=100 Shelter in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAH2 S000 SAH2 U R S DECEMBER 1986=100 Fuels and utilities in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAH21 S000 SAH21 U R S DECEMBER 1986=100 Household energy in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAH3 S000 SAH3 U R S DECEMBER 1986=100 Household furnishings and operations in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAH31 S000 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS000SAM S000 SAM U R S DECEMBER 1986=100 Medical care in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAM1 S000 SAM1 U R S DECEMBER 1986=100 Medical care commodities in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAM2 S000 SAM2 U R S DECEMBER 1986=100 Medical care services in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAN S000 SAN U R S DECEMBER 1986=100 Nondurables in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SANL1 S000 SANL1 U R S DECEMBER 1986=100 Nondurables less food in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SANL11 S000 SANL11 U R S DECEMBER 1986=100 Nondurables less food and beverages in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SANL113 S000 SANL113 U R S DECEMBER 1986=100 Nondurables less food, beverages, and apparel in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SANL13 S000 SANL13 U R S DECEMBER 1986=100 Nondurables less food and apparel in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAR S000 SAR U R S DECEMBER 1997=100 Recreation in Size Class A, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS000SARC S000 SARC U R S DECEMBER 2009=100 Recreation commodities in Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS000SARS S000 SARS U R S DECEMBER 2009=100 Recreation services in Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS000SAS S000 SAS U R S DECEMBER 1986=100 Services in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAS2RS S000 SAS2RS U R S DECEMBER 1986=100 Rent of shelter in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAS367 S000 SAS367 U R S DECEMBER 1986=100 Other services in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAS4 S000 SAS4 U R S DECEMBER 1986=100 Transportation services in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SASL2RS S000 SASL2RS U R S DECEMBER 1986=100 Services less rent of shelter in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SASL5 S000 SASL5 U R S DECEMBER 1986=100 Services less medical care services in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SASLE S000 SASLE U R S DECEMBER 1986=100 Services less energy services in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAT S000 SAT U R S DECEMBER 1986=100 Transportation in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SAT1 S000 SAT1 U R S DECEMBER 1986=100 Private transportation in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SATCLTB S000 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS000SEEB S000 SEEB U R S DECEMBER 1986=100 Tuition, other school fees, and childcare in Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS000SEFJ S000 SEFJ U R S DECEMBER 1986=100 Dairy and related products in Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS000SEFV S000 SEFV U R S DECEMBER 1986=100 Food away from home in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SEHA S000 SEHA U R S DECEMBER 1986=100 Rent of primary residence in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SEHC S000 SEHC U R S DECEMBER 1986=100 Owners' equivalent rent of residences in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SEHC01 S000 SEHC01 U R S DECEMBER 1986=100 Owners' equivalent rent of primary residence in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SEHF S000 SEHF U R S DECEMBER 1986=100 Energy services in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SEHF01 S000 SEHF01 U R S DECEMBER 1986=100 Electricity in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SEHF02 S000 SEHF02 U R S DECEMBER 1986=100 Utility (piped) gas service in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SEMC S000 SEMC U R S DECEMBER 1986=100 Professional services in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SETA S000 SETA U R S DECEMBER 1997=100 New and used motor vehicles in Size Class A, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS000SETA01 S000 SETA01 U R S DECEMBER 1986=100 New vehicles in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SETA02 S000 SETA02 U R S DECEMBER 1986=100 Used cars and trucks in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SETB S000 SETB U R S DECEMBER 1986=100 Motor fuel in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SETB01 S000 SETB01 U R S DECEMBER 1986=100 Gasoline (all types) in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SETE S000 SETE U R S DECEMBER 1986=100 Motor vehicle insurance in Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS000SS45011 S000 SS45011 U R S DECEMBER 1986=100 New cars in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SS4501A S000 SS4501A U R S DECEMBER 1997=100 New cars and trucks in Size Class A, all urban consumers, not seasonally adjusted 1997 M12 2022 M03 +CUURS000SS47014 S000 SS47014 U R S DECEMBER 1986=100 Gasoline, unleaded regular in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS000SS47015 S000 SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Size Class A, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUURS000SS47016 S000 SS47016 U R S DECEMBER 1986=100 Gasoline, unleaded premium in Size Class A, all urban consumers, not seasonally adjusted 1986 M12 2025 M08 +CUURS100AA0 S100 AA0 U R A DECEMBER 1977=100 All items - old base in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SA0 S100 SA0 U R S 1982-84=100 All items in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SA0E S100 SA0E U R S 1982-84=100 Energy in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SA0L1E S100 SA0L1E U R S 1982-84=100 All items less food and energy in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1982 M02 2025 M08 +CUURS100SA0L2 S100 SA0L2 U R S 1982-84=100 All items less shelter in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SA0L5 S100 SA0L5 U R S 1982-84=100 All items less medical care in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SA0LE S100 SA0LE U R S 1982-84=100 All items less energy in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SAA S100 SAA U R S 1982-84=100 Apparel in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SAC S100 SAC U R S 1982-84=100 Commodities in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SACL1 S100 SACL1 U R S 1982-84=100 Commodities less food in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SACL11 S100 SACL11 U R S 1982-84=100 Commodities less food and beverages in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SAD S100 SAD U R S 1982-84=100 Durables in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SAE S100 SAE U R S DECEMBER 1997=100 Education and communication in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS100SAEC S100 SAEC U R S DECEMBER 2009=100 Education and communication commodities in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS100SAES S100 SAES U R S DECEMBER 2009=100 Education and communication services in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS100SAF S100 SAF U R S 1982-84=100 Food and beverages in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SAF1 S100 SAF1 U R S 1982-84=100 Food in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SAF11 S100 SAF11 U R S 1982-84=100 Food at home in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SAF111 S100 SAF111 U R S 1982-84=100 Cereals and bakery products in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS100SAF112 S100 SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS100SAF113 S100 SAF113 U R S 1982-84=100 Fruits and vegetables in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS100SAF114 S100 SAF114 U R S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS100SAF115 S100 SAF115 U R S 1982-84=100 Other food at home in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS100SAF116 S100 SAF116 U R S 1982-84=100 Alcoholic beverages in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SAG S100 SAG U R S 1982-84=100 Other goods and services in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SAGC S100 SAGC U R S DECEMBER 2009=100 Other goods in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS100SAGS S100 SAGS U R S DECEMBER 2009=100 Other personal services in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS100SAH S100 SAH U R S 1982-84=100 Housing in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SAH1 S100 SAH1 U R S 1982-84=100 Shelter in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SAH2 S100 SAH2 U R S 1982-84=100 Fuels and utilities in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS100SAH21 S100 SAH21 U R S 1982-84=100 Household energy in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS100SAH3 S100 SAH3 U R S 1982-84=100 Household furnishings and operations in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SAH31 S100 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS100SAM S100 SAM U R S 1982-84=100 Medical care in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SAN S100 SAN U R S 1982-84=100 Nondurables in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SANL1 S100 SANL1 U R S 1982-84=100 Nondurables less food in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SANL11 S100 SANL11 U R S 1982-84=100 Nondurables less food and beverages in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SAR S100 SAR U R S DECEMBER 1997=100 Recreation in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS100SAS S100 SAS U R S 1982-84=100 Services in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SASL2RS S100 SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS100SASL5 S100 SASL5 U R S 1982-84=100 Services less medical care services in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SAT S100 SAT U R S 1982-84=100 Transportation in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SAT1 S100 SAT1 U R S 1982-84=100 Private transportation in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SATCLTB S100 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS100SEEB S100 SEEB U R S DECEMBER 1977=100 Tuition, other school fees, and childcare in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS100SEFJ S100 SEFJ U R S 1982-84=100 Dairy and related products in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS100SEFV S100 SEFV U R S 1982-84=100 Food away from home in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SEHA S100 SEHA U R S 1982-84=100 Rent of primary residence in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SEHC S100 SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS100SEHC01 S100 SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS100SEHF S100 SEHF U R S 1982-84=100 Energy services in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS100SEHF01 S100 SEHF01 U R S 1982-84=100 Electricity in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS100SEHF02 S100 SEHF02 U R S 1982-84=100 Utility (piped) gas service in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS100SETA S100 SETA U R S DECEMBER 1997=100 New and used motor vehicles in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS100SETA01 S100 SETA01 U R S DECEMBER 1977=100 New vehicles in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS100SETA02 S100 SETA02 U R S DECEMBER 1977=100 Used cars and trucks in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS100SETB S100 SETB U R S 1982-84=100 Motor fuel in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SETB01 S100 SETB01 U R S 1982-84=100 Gasoline (all types) in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS100SETE S100 SETE U R S DECEMBER 1977=100 Motor vehicle insurance in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS100SS47014 S100 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1978 M06 2025 M08 +CUURS100SS47015 S100 SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUURS100SS47016 S100 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS11AAA0 S11A AA0 U R A 1967=100 All items - old base in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1914 M12 2025 M07 +CUURS11ASA0 S11A SA0 U R S 1982-84=100 All items in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1914 M12 2025 M07 +CUURS11ASA0E S11A SA0E U R S 1982-84=100 Energy in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUURS11ASA0L1E S11A SA0L1E U R S 1982-84=100 All items less food and energy in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1982 M01 2025 M07 +CUURS11ASA0L2 S11A SA0L2 U R S 1982-84=100 All items less shelter in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS11ASA0L5 S11A SA0L5 U R S 1982-84=100 All items less medical care in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1967 M01 2025 M07 +CUURS11ASA0LE S11A SA0LE U R S 1982-84=100 All items less energy in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1978 M01 2025 M07 +CUURS11ASAA S11A SAA U R S 1982-84=100 Apparel in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1952 M10 2025 M07 +CUURS11ASAC S11A SAC U R S 1982-84=100 Commodities in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1967 M01 2025 M07 +CUURS11ASACL1 S11A SACL1 U R S 1982-84=100 Commodities less food in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1967 M01 2025 M07 +CUURS11ASACL11 S11A SACL11 U R S 1982-84=100 Commodities less food and beverages in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS11ASAD S11A SAD U R S 1982-84=100 Durables in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1967 M01 2025 M07 +CUURS11ASAE S11A SAE U R S DECEMBER 1997=100 Education and communication in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1997 M12 2025 M07 +CUURS11ASAEC S11A SAEC U R S DECEMBER 2009=100 Education and communication commodities in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2010 M01 2025 M07 +CUURS11ASAES S11A SAES U R S DECEMBER 2009=100 Education and communication services in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2010 M01 2025 M07 +CUURS11ASAF S11A SAF U R S 1982-84=100 Food and beverages in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS11ASAF1 S11A SAF1 U R S 1982-84=100 Food in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1914 M12 2025 M07 +CUURS11ASAF11 S11A SAF11 U R S 1982-84=100 Food at home in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1953 M01 2025 M08 +CUURS11ASAF111 S11A SAF111 U R S 1982-84=100 Cereals and bakery products in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS11ASAF112 S11A SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS11ASAF113 S11A SAF113 U R S 1982-84=100 Fruits and vegetables in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS11ASAF114 S11A SAF114 U R S JANUARY 1978=100 Nonalcoholic beverages and beverage materials in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS11ASAF115 S11A SAF115 U R S 1982-84=100 Other food at home in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS11ASAF116 S11A SAF116 U R S 1982-84=100 Alcoholic beverages in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS11ASAG S11A SAG U R S 1982-84=100 Other goods and services in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS11ASAGC S11A SAGC U R S DECEMBER 2009=100 Other goods in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2010 M01 2025 M07 +CUURS11ASAGS S11A SAGS U R S DECEMBER 2009=100 Other personal services in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2010 M01 2025 M07 +CUURS11ASAH S11A SAH U R S 1982-84=100 Housing in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS11ASAH1 S11A SAH1 U R S 1982-84=100 Shelter in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1952 M10 2025 M08 +CUURS11ASAH2 S11A SAH2 U R S 1982-84=100 Fuels and utilities in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1952 M12 2024 M13 +CUURS11ASAH21 S11A SAH21 U R S 1982-84=100 Household energy in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1976 M01 2024 M13 +CUURS11ASAH3 S11A SAH3 U R S 1982-84=100 Household furnishings and operations in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS11ASAH31 S11A SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2010 M01 2025 M07 +CUURS11ASAM S11A SAM U R S 1982-84=100 Medical care in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1947 M01 2025 M07 +CUURS11ASAN S11A SAN U R S 1982-84=100 Nondurables in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1967 M01 2025 M07 +CUURS11ASANL1 S11A SANL1 U R S 1982-84=100 Nondurables less food in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1967 M01 2025 M07 +CUURS11ASANL11 S11A SANL11 U R S 1982-84=100 Nondurables less food and beverages in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS11ASAR S11A SAR U R S DECEMBER 1997=100 Recreation in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1997 M12 2025 M07 +CUURS11ASAS S11A SAS U R S 1982-84=100 Services in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1967 M01 2025 M07 +CUURS11ASASL2RS S11A SASL2RS U R S NOVEMBER 1982=100 Services less rent of shelter in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1982 M11 2025 M07 +CUURS11ASASL5 S11A SASL5 U R S 1982-84=100 Services less medical care services in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1967 M01 2025 M07 +CUURS11ASAT S11A SAT U R S 1982-84=100 Transportation in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1947 M01 2025 M07 +CUURS11ASAT1 S11A SAT1 U R S 1982-84=100 Private transportation in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1947 M01 2025 M07 +CUURS11ASATCLTB S11A SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2010 M01 2025 M07 +CUURS11ASEEB S11A SEEB U R S JANUARY 1978=100 Tuition, other school fees, and childcare in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS11ASEFJ S11A SEFJ U R S 1982-84=100 Dairy and related products in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS11ASEFV S11A SEFV U R S 1982-84=100 Food away from home in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1952 M12 2025 M07 +CUURS11ASEHA S11A SEHA U R S 1982-84=100 Rent of primary residence in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS11ASEHC S11A SEHC U R S NOVEMBER 1982=100 Owners' equivalent rent of residences in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS11ASEHC01 S11A SEHC01 U R S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS11ASEHF S11A SEHF U R S 1982-84=100 Energy services in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1935 M03 2024 M13 +CUURS11ASEHF01 S11A SEHF01 U R S 1982-84=100 Electricity in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS11ASEHF02 S11A SEHF02 U R S 1982-84=100 Utility (piped) gas service in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS11ASETA S11A SETA U R S DECEMBER 1997=100 New and used motor vehicles in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS11ASETA01 S11A SETA01 U R S JANUARY 1978=100 New vehicles in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS11ASETA02 S11A SETA02 U R S JANUARY 1978=100 Used cars and trucks in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS11ASETB S11A SETB U R S 1982-84=100 Motor fuel in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUURS11ASETB01 S11A SETB01 U R S 1982-84=100 Gasoline (all types) in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUURS11ASS47014 S11A SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS11ASS47015 S11A SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUURS11ASS47016 S11A SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS12AAA0 S12A AA0 U R A 1967=100 All items - old base in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS12ASA0 S12A SA0 U R S 1982-84=100 All items in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS12ASA0E S12A SA0E U R S 1982-84=100 Energy in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS12ASA0L1E S12A SA0L1E U R S 1982-84=100 All items less food and energy in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1982 M01 2025 M08 +CUURS12ASA0L2 S12A SA0L2 U R S 1982-84=100 All items less shelter in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS12ASA0L5 S12A SA0L5 U R S 1982-84=100 All items less medical care in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS12ASA0LE S12A SA0LE U R S 1982-84=100 All items less energy in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS12ASAA S12A SAA U R S 1982-84=100 Apparel in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS12ASAC S12A SAC U R S 1982-84=100 Commodities in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS12ASACL1 S12A SACL1 U R S 1982-84=100 Commodities less food in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS12ASACL11 S12A SACL11 U R S 1982-84=100 Commodities less food and beverages in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS12ASAD S12A SAD U R S 1982-84=100 Durables in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS12ASAE S12A SAE U R S DECEMBER 1997=100 Education and communication in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS12ASAEC S12A SAEC U R S DECEMBER 2009=100 Education and communication commodities in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS12ASAES S12A SAES U R S DECEMBER 2009=100 Education and communication services in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS12ASAF S12A SAF U R S 1982-84=100 Food and beverages in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS12ASAF1 S12A SAF1 U R S 1982-84=100 Food in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS12ASAF11 S12A SAF11 U R S 1982-84=100 Food at home in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1953 M01 2025 M08 +CUURS12ASAF111 S12A SAF111 U R S 1982-84=100 Cereals and bakery products in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12ASAF112 S12A SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12ASAF113 S12A SAF113 U R S 1982-84=100 Fruits and vegetables in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12ASAF114 S12A SAF114 U R S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12ASAF115 S12A SAF115 U R S 1982-84=100 Other food at home in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12ASAF116 S12A SAF116 U R S 1982-84=100 Alcoholic beverages in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS12ASAG S12A SAG U R S 1982-84=100 Other goods and services in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS12ASAGC S12A SAGC U R S DECEMBER 2009=100 Other goods in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS12ASAGS S12A SAGS U R S DECEMBER 2009=100 Other personal services in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS12ASAH S12A SAH U R S 1982-84=100 Housing in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS12ASAH1 S12A SAH1 U R S 1982-84=100 Shelter in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS12ASAH2 S12A SAH2 U R S 1982-84=100 Fuels and utilities in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1952 M12 2024 M13 +CUURS12ASAH21 S12A SAH21 U R S 1982-84=100 Household energy in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1976 M01 2024 M13 +CUURS12ASAH3 S12A SAH3 U R S 1982-84=100 Household furnishings and operations in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS12ASAH31 S12A SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS12ASAM S12A SAM U R S 1982-84=100 Medical care in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS12ASAN S12A SAN U R S 1982-84=100 Nondurables in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS12ASANL1 S12A SANL1 U R S 1982-84=100 Nondurables less food in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS12ASANL11 S12A SANL11 U R S 1982-84=100 Nondurables less food and beverages in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS12ASAR S12A SAR U R S DECEMBER 1997=100 Recreation in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS12ASAS S12A SAS U R S 1982-84=100 Services in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS12ASASL2RS S12A SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS12ASASL5 S12A SASL5 U R S 1982-84=100 Services less medical care services in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS12ASAT S12A SAT U R S 1982-84=100 Transportation in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS12ASAT1 S12A SAT1 U R S 1982-84=100 Private transportation in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS12ASATCLTB S12A SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS12ASEEB S12A SEEB U R S DECEMBER 1977=100 Tuition, other school fees, and childcare in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12ASEFJ S12A SEFJ U R S 1982-84=100 Dairy and related products in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12ASEFV S12A SEFV U R S 1982-84=100 Food away from home in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS12ASEHA S12A SEHA U R S 1982-84=100 Rent of primary residence in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS12ASEHC S12A SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS12ASEHC01 S12A SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS12ASEHF S12A SEHF U R S 1982-84=100 Energy services in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1935 M03 2024 M13 +CUURS12ASEHF01 S12A SEHF01 U R S 1982-84=100 Electricity in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS12ASEHF02 S12A SEHF02 U R S 1982-84=100 Utility (piped) gas service in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS12ASETA S12A SETA U R S DECEMBER 1997=100 New and used motor vehicles in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12ASETA01 S12A SETA01 U R S DECEMBER 1977=100 New vehicles in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12ASETA02 S12A SETA02 U R S DECEMBER 1977=100 Used cars and trucks in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12ASETB S12A SETB U R S 1982-84=100 Motor fuel in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS12ASETB01 S12A SETB01 U R S 1982-84=100 Gasoline (all types) in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS12ASETE S12A SETE U R S DECEMBER 1977=100 Motor vehicle insurance in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS12ASS47014 S12A SS47014 U R S 1982-84=100 Gasoline, unleaded regular in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS12ASS47015 S12A SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUURS12ASS47016 S12A SS47016 U R S 1982-84=100 Gasoline, unleaded premium in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS12BAA0 S12B AA0 U R A 1967=100 All items - old base in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS12BSA0 S12B SA0 U R S 1982-84=100 All items in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS12BSA0E S12B SA0E U R S 1982-84=100 Energy in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS12BSA0L1E S12B SA0L1E U R S 1982-84=100 All items less food and energy in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1982 M01 2025 M08 +CUURS12BSA0L2 S12B SA0L2 U R S 1982-84=100 All items less shelter in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS12BSA0L5 S12B SA0L5 U R S 1982-84=100 All items less medical care in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS12BSA0LE S12B SA0LE U R S 1982-84=100 All items less energy in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS12BSAA S12B SAA U R S 1982-84=100 Apparel in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS12BSAC S12B SAC U R S 1982-84=100 Commodities in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS12BSACL1 S12B SACL1 U R S 1982-84=100 Commodities less food in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS12BSACL11 S12B SACL11 U R S 1982-84=100 Commodities less food and beverages in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS12BSAD S12B SAD U R S 1982-84=100 Durables in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS12BSAE S12B SAE U R S DECEMBER 1997=100 Education and communication in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS12BSAEC S12B SAEC U R S DECEMBER 2009=100 Education and communication commodities in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS12BSAES S12B SAES U R S DECEMBER 2009=100 Education and communication services in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS12BSAF S12B SAF U R S 1982-84=100 Food and beverages in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS12BSAF1 S12B SAF1 U R S 1982-84=100 Food in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS12BSAF11 S12B SAF11 U R S 1982-84=100 Food at home in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1953 M01 2025 M08 +CUURS12BSAF111 S12B SAF111 U R S 1982-84=100 Cereals and bakery products in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12BSAF112 S12B SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12BSAF113 S12B SAF113 U R S 1982-84=100 Fruits and vegetables in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12BSAF114 S12B SAF114 U R S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12BSAF115 S12B SAF115 U R S 1982-84=100 Other food at home in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12BSAF116 S12B SAF116 U R S 1982-84=100 Alcoholic beverages in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS12BSAG S12B SAG U R S 1982-84=100 Other goods and services in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS12BSAGC S12B SAGC U R S DECEMBER 2009=100 Other goods in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS12BSAGS S12B SAGS U R S DECEMBER 2009=100 Other personal services in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS12BSAH S12B SAH U R S 1982-84=100 Housing in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS12BSAH1 S12B SAH1 U R S 1982-84=100 Shelter in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS12BSAH2 S12B SAH2 U R S 1982-84=100 Fuels and utilities in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1952 M12 2024 M13 +CUURS12BSAH21 S12B SAH21 U R S 1982-84=100 Household energy in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1976 M01 2024 M13 +CUURS12BSAH3 S12B SAH3 U R S 1982-84=100 Household furnishings and operations in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS12BSAH31 S12B SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS12BSAM S12B SAM U R S 1982-84=100 Medical care in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS12BSAN S12B SAN U R S 1982-84=100 Nondurables in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS12BSANL1 S12B SANL1 U R S 1982-84=100 Nondurables less food in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS12BSANL11 S12B SANL11 U R S 1982-84=100 Nondurables less food and beverages in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS12BSAR S12B SAR U R S DECEMBER 1997=100 Recreation in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS12BSAS S12B SAS U R S 1982-84=100 Services in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS12BSASL2RS S12B SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS12BSASL5 S12B SASL5 U R S 1982-84=100 Services less medical care services in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS12BSAT S12B SAT U R S 1982-84=100 Transportation in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS12BSAT1 S12B SAT1 U R S 1982-84=100 Private transportation in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS12BSATCLTB S12B SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS12BSEEB S12B SEEB U R S DECEMBER 1977=100 Tuition, other school fees, and childcare in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12BSEFJ S12B SEFJ U R S 1982-84=100 Dairy and related products in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12BSEFV S12B SEFV U R S 1982-84=100 Food away from home in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS12BSEHA S12B SEHA U R S 1982-84=100 Rent of primary residence in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS12BSEHC S12B SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS12BSEHC01 S12B SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS12BSEHF S12B SEHF U R S 1982-84=100 Energy services in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1935 M03 2024 M13 +CUURS12BSEHF01 S12B SEHF01 U R S 1982-84=100 Electricity in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS12BSEHF02 S12B SEHF02 U R S 1982-84=100 Utility (piped) gas service in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS12BSETA S12B SETA U R S DECEMBER 1997=100 New and used motor vehicles in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12BSETA01 S12B SETA01 U R S DECEMBER 1977=100 New vehicles in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12BSETA02 S12B SETA02 U R S DECEMBER 1977=100 Used cars and trucks in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS12BSETB S12B SETB U R S 1982-84=100 Motor fuel in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS12BSETB01 S12B SETB01 U R S 1982-84=100 Gasoline (all types) in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS12BSETE S12B SETE U R S DECEMBER 1977=100 Motor vehicle insurance in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS12BSS47014 S12B SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS12BSS47015 S12B SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUURS12BSS47016 S12B SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS200AA0 S200 AA0 U R A DECEMBER 1977=100 All items - old base in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SA0 S200 SA0 U R S 1982-84=100 All items in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SA0E S200 SA0E U R S 1982-84=100 Energy in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SA0L1E S200 SA0L1E U R S 1982-84=100 All items less food and energy in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1982 M02 2025 M08 +CUURS200SA0L2 S200 SA0L2 U R S 1982-84=100 All items less shelter in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SA0L5 S200 SA0L5 U R S 1982-84=100 All items less medical care in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SA0LE S200 SA0LE U R S 1982-84=100 All items less energy in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SAA S200 SAA U R S 1982-84=100 Apparel in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SAC S200 SAC U R S 1982-84=100 Commodities in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SACL1 S200 SACL1 U R S 1982-84=100 Commodities less food in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SACL11 S200 SACL11 U R S 1982-84=100 Commodities less food and beverages in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SAD S200 SAD U R S 1982-84=100 Durables in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SAE S200 SAE U R S DECEMBER 1997=100 Education and communication in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS200SAEC S200 SAEC U R S DECEMBER 2009=100 Education and communication commodities in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS200SAES S200 SAES U R S DECEMBER 2009=100 Education and communication services in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS200SAF S200 SAF U R S 1982-84=100 Food and beverages in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SAF1 S200 SAF1 U R S 1982-84=100 Food in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SAF11 S200 SAF11 U R S 1982-84=100 Food at home in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SAF111 S200 SAF111 U R S 1982-84=100 Cereals and bakery products in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS200SAF112 S200 SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS200SAF113 S200 SAF113 U R S 1982-84=100 Fruits and vegetables in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS200SAF114 S200 SAF114 U R S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS200SAF115 S200 SAF115 U R S 1982-84=100 Other food at home in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS200SAF116 S200 SAF116 U R S 1982-84=100 Alcoholic beverages in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SAG S200 SAG U R S 1982-84=100 Other goods and services in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SAGC S200 SAGC U R S DECEMBER 2009=100 Other goods in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS200SAGS S200 SAGS U R S DECEMBER 2009=100 Other personal services in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS200SAH S200 SAH U R S 1982-84=100 Housing in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SAH1 S200 SAH1 U R S 1982-84=100 Shelter in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SAH2 S200 SAH2 U R S 1982-84=100 Fuels and utilities in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS200SAH21 S200 SAH21 U R S 1982-84=100 Household energy in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS200SAH3 S200 SAH3 U R S 1982-84=100 Household furnishings and operations in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SAH31 S200 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS200SAM S200 SAM U R S 1982-84=100 Medical care in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SAN S200 SAN U R S 1982-84=100 Nondurables in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SANL1 S200 SANL1 U R S 1982-84=100 Nondurables less food in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SANL11 S200 SANL11 U R S 1982-84=100 Nondurables less food and beverages in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SAR S200 SAR U R S DECEMBER 1997=100 Recreation in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS200SAS S200 SAS U R S 1982-84=100 Services in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SASL2RS S200 SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS200SASL5 S200 SASL5 U R S 1982-84=100 Services less medical care services in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SAT S200 SAT U R S 1982-84=100 Transportation in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SAT1 S200 SAT1 U R S 1982-84=100 Private transportation in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SATCLTB S200 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS200SEEB S200 SEEB U R S DECEMBER 1977=100 Tuition, other school fees, and childcare in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS200SEFJ S200 SEFJ U R S 1982-84=100 Dairy and related products in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS200SEFV S200 SEFV U R S 1982-84=100 Food away from home in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SEHA S200 SEHA U R S 1982-84=100 Rent of primary residence in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SEHC S200 SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS200SEHC01 S200 SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS200SEHF S200 SEHF U R S 1982-84=100 Energy services in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS200SEHF01 S200 SEHF01 U R S 1982-84=100 Electricity in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS200SEHF02 S200 SEHF02 U R S 1982-84=100 Utility (piped) gas service in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS200SETA S200 SETA U R S DECEMBER 1997=100 New and used motor vehicles in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS200SETA01 S200 SETA01 U R S DECEMBER 1977=100 New vehicles in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS200SETA02 S200 SETA02 U R S DECEMBER 1977=100 Used cars and trucks in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS200SETB S200 SETB U R S 1982-84=100 Motor fuel in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SETB01 S200 SETB01 U R S 1982-84=100 Gasoline (all types) in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS200SETE S200 SETE U R S DECEMBER 1977=100 Motor vehicle insurance in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS200SS47014 S200 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1978 M06 2025 M08 +CUURS200SS47015 S200 SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUURS200SS47016 S200 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS23AAA0 S23A AA0 U R A 1967=100 All items - old base in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS23ASA0 S23A SA0 U R S 1982-84=100 All items in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS23ASA0E S23A SA0E U R S 1982-84=100 Energy in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS23ASA0L1E S23A SA0L1E U R S 1982-84=100 All items less food and energy in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1982 M01 2025 M08 +CUURS23ASA0L2 S23A SA0L2 U R S 1982-84=100 All items less shelter in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS23ASA0L5 S23A SA0L5 U R S 1982-84=100 All items less medical care in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS23ASA0LE S23A SA0LE U R S 1982-84=100 All items less energy in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS23ASAA S23A SAA U R S 1982-84=100 Apparel in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS23ASAC S23A SAC U R S 1982-84=100 Commodities in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS23ASACL1 S23A SACL1 U R S 1982-84=100 Commodities less food in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS23ASACL11 S23A SACL11 U R S 1982-84=100 Commodities less food and beverages in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS23ASAD S23A SAD U R S 1982-84=100 Durables in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS23ASAE S23A SAE U R S DECEMBER 1997=100 Education and communication in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS23ASAEC S23A SAEC U R S DECEMBER 2009=100 Education and communication commodities in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS23ASAES S23A SAES U R S DECEMBER 2009=100 Education and communication services in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS23ASAF S23A SAF U R S 1982-84=100 Food and beverages in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS23ASAF1 S23A SAF1 U R S 1982-84=100 Food in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS23ASAF11 S23A SAF11 U R S 1982-84=100 Food at home in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1953 M01 2025 M08 +CUURS23ASAF111 S23A SAF111 U R S 1982-84=100 Cereals and bakery products in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23ASAF112 S23A SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23ASAF113 S23A SAF113 U R S 1982-84=100 Fruits and vegetables in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23ASAF114 S23A SAF114 U R S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23ASAF115 S23A SAF115 U R S 1982-84=100 Other food at home in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23ASAF116 S23A SAF116 U R S 1982-84=100 Alcoholic beverages in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS23ASAG S23A SAG U R S 1982-84=100 Other goods and services in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS23ASAGC S23A SAGC U R S DECEMBER 2009=100 Other goods in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS23ASAGS S23A SAGS U R S DECEMBER 2009=100 Other personal services in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2009 M12 2025 M04 +CUURS23ASAH S23A SAH U R S 1982-84=100 Housing in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS23ASAH1 S23A SAH1 U R S 1982-84=100 Shelter in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1952 M10 2025 M08 +CUURS23ASAH2 S23A SAH2 U R S 1982-84=100 Fuels and utilities in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1952 M12 2024 M13 +CUURS23ASAH21 S23A SAH21 U R S 1982-84=100 Household energy in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1976 M01 2024 M13 +CUURS23ASAH3 S23A SAH3 U R S 1982-84=100 Household furnishings and operations in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS23ASAH31 S23A SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS23ASAM S23A SAM U R S 1982-84=100 Medical care in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS23ASAN S23A SAN U R S 1982-84=100 Nondurables in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS23ASANL1 S23A SANL1 U R S 1982-84=100 Nondurables less food in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS23ASANL11 S23A SANL11 U R S 1982-84=100 Nondurables less food and beverages in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS23ASAR S23A SAR U R S DECEMBER 1997=100 Recreation in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS23ASAS S23A SAS U R S 1982-84=100 Services in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS23ASASL2RS S23A SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS23ASASL5 S23A SASL5 U R S 1982-84=100 Services less medical care services in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS23ASAT S23A SAT U R S 1982-84=100 Transportation in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS23ASAT1 S23A SAT1 U R S 1982-84=100 Private transportation in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS23ASATCLTB S23A SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS23ASEEB S23A SEEB U R S DECEMBER 1977=100 Tuition, other school fees, and childcare in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23ASEFJ S23A SEFJ U R S 1982-84=100 Dairy and related products in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23ASEFV S23A SEFV U R S 1982-84=100 Food away from home in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS23ASEHA S23A SEHA U R S 1982-84=100 Rent of primary residence in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS23ASEHC S23A SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS23ASEHC01 S23A SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS23ASEHF S23A SEHF U R S 1982-84=100 Energy services in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1935 M03 2024 M13 +CUURS23ASEHF01 S23A SEHF01 U R S 1982-84=100 Electricity in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS23ASEHF02 S23A SEHF02 U R S 1982-84=100 Utility (piped) gas service in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS23ASETA S23A SETA U R S DECEMBER 1997=100 New and used motor vehicles in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23ASETA01 S23A SETA01 U R S DECEMBER 1977=100 New vehicles in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23ASETA02 S23A SETA02 U R S DECEMBER 1977=100 Used cars and trucks in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23ASETB S23A SETB U R S 1982-84=100 Motor fuel in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS23ASETB01 S23A SETB01 U R S 1982-84=100 Gasoline (all types) in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS23ASETE S23A SETE U R S DECEMBER 1977=100 Motor vehicle insurance in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS23ASS47014 S23A SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS23ASS47015 S23A SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUURS23ASS47016 S23A SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS23BAA0 S23B AA0 U R A 1967=100 All items - old base in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS23BSA0 S23B SA0 U R S 1982-84=100 All items in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS23BSA0E S23B SA0E U R S 1982-84=100 Energy in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS23BSA0L1E S23B SA0L1E U R S 1982-84=100 All items less food and energy in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1982 M01 2025 M08 +CUURS23BSA0L2 S23B SA0L2 U R S 1982-84=100 All items less shelter in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS23BSA0L5 S23B SA0L5 U R S 1982-84=100 All items less medical care in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS23BSA0LE S23B SA0LE U R S 1982-84=100 All items less energy in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS23BSAA S23B SAA U R S 1982-84=100 Apparel in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS23BSAC S23B SAC U R S 1982-84=100 Commodities in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS23BSACL1 S23B SACL1 U R S 1982-84=100 Commodities less food in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS23BSACL11 S23B SACL11 U R S 1982-84=100 Commodities less food and beverages in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS23BSAD S23B SAD U R S 1982-84=100 Durables in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS23BSAE S23B SAE U R S DECEMBER 1997=100 Education and communication in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS23BSAEC S23B SAEC U R S DECEMBER 2009=100 Education and communication commodities in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS23BSAES S23B SAES U R S DECEMBER 2009=100 Education and communication services in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS23BSAF S23B SAF U R S 1982-84=100 Food and beverages in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS23BSAF1 S23B SAF1 U R S 1982-84=100 Food in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS23BSAF11 S23B SAF11 U R S 1982-84=100 Food at home in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1953 M01 2025 M08 +CUURS23BSAF111 S23B SAF111 U R S 1982-84=100 Cereals and bakery products in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23BSAF112 S23B SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23BSAF113 S23B SAF113 U R S 1982-84=100 Fruits and vegetables in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23BSAF114 S23B SAF114 U R S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23BSAF115 S23B SAF115 U R S 1982-84=100 Other food at home in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23BSAF116 S23B SAF116 U R S 1982-84=100 Alcoholic beverages in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS23BSAG S23B SAG U R S 1982-84=100 Other goods and services in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS23BSAGC S23B SAGC U R S DECEMBER 2009=100 Other goods in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS23BSAGS S23B SAGS U R S DECEMBER 2009=100 Other personal services in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS23BSAH S23B SAH U R S 1982-84=100 Housing in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS23BSAH1 S23B SAH1 U R S 1982-84=100 Shelter in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS23BSAH2 S23B SAH2 U R S 1982-84=100 Fuels and utilities in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1952 M12 2024 M13 +CUURS23BSAH21 S23B SAH21 U R S 1982-84=100 Household energy in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1976 M01 2024 M13 +CUURS23BSAH3 S23B SAH3 U R S 1982-84=100 Household furnishings and operations in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS23BSAH31 S23B SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS23BSAM S23B SAM U R S 1982-84=100 Medical care in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS23BSAN S23B SAN U R S 1982-84=100 Nondurables in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS23BSANL1 S23B SANL1 U R S 1982-84=100 Nondurables less food in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS23BSANL11 S23B SANL11 U R S 1982-84=100 Nondurables less food and beverages in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS23BSAR S23B SAR U R S DECEMBER 1997=100 Recreation in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS23BSAS S23B SAS U R S 1982-84=100 Services in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS23BSASL2RS S23B SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS23BSASL5 S23B SASL5 U R S 1982-84=100 Services less medical care services in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS23BSAT S23B SAT U R S 1982-84=100 Transportation in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS23BSAT1 S23B SAT1 U R S 1982-84=100 Private transportation in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS23BSATCLTB S23B SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS23BSEEB S23B SEEB U R S DECEMBER 1977=100 Tuition, other school fees, and childcare in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUURS23BSEFJ S23B SEFJ U R S 1982-84=100 Dairy and related products in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23BSEFV S23B SEFV U R S 1982-84=100 Food away from home in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS23BSEHA S23B SEHA U R S 1982-84=100 Rent of primary residence in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS23BSEHC S23B SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS23BSEHC01 S23B SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS23BSEHF S23B SEHF U R S 1982-84=100 Energy services in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1935 M03 2024 M13 +CUURS23BSEHF01 S23B SEHF01 U R S 1982-84=100 Electricity in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS23BSEHF02 S23B SEHF02 U R S 1982-84=100 Utility (piped) gas service in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS23BSETA S23B SETA U R S DECEMBER 1997=100 New and used motor vehicles in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23BSETA01 S23B SETA01 U R S DECEMBER 1977=100 New vehicles in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23BSETA02 S23B SETA02 U R S DECEMBER 1977=100 Used cars and trucks in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS23BSETB S23B SETB U R S 1982-84=100 Motor fuel in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS23BSETB01 S23B SETB01 U R S 1982-84=100 Gasoline (all types) in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS23BSETE S23B SETE U R S DECEMBER 1977=100 Motor vehicle insurance in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS23BSS47014 S23B SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS23BSS47015 S23B SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUURS23BSS47016 S23B SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS24AAA0 S24A AA0 U R A 1967=100 All items - old base in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1917 M12 2025 M07 +CUURS24ASA0 S24A SA0 U R S 1982-84=100 All items in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1917 M12 2025 M07 +CUURS24ASA0E S24A SA0E U R S 1982-84=100 Energy in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1978 M04 2025 M08 +CUURS24ASA0L1E S24A SA0L1E U R S 1982-84=100 All items less food and energy in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1982 M02 2025 M07 +CUURS24ASA0L2 S24A SA0L2 U R S 1982-84=100 All items less shelter in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS24ASA0L5 S24A SA0L5 U R S 1982-84=100 All items less medical care in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1967 M01 2025 M07 +CUURS24ASA0LE S24A SA0LE U R S 1982-84=100 All items less energy in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1978 M04 2025 M07 +CUURS24ASAA S24A SAA U R S 1982-84=100 Apparel in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1952 M12 2025 M07 +CUURS24ASAC S24A SAC U R S 1982-84=100 Commodities in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1967 M01 2025 M07 +CUURS24ASACL1 S24A SACL1 U R S 1982-84=100 Commodities less food in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1967 M01 2025 M07 +CUURS24ASACL11 S24A SACL11 U R S 1982-84=100 Commodities less food and beverages in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS24ASAD S24A SAD U R S 1982-84=100 Durables in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1967 M01 2025 M07 +CUURS24ASAE S24A SAE U R S DECEMBER 1997=100 Education and communication in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1997 M12 2025 M07 +CUURS24ASAEC S24A SAEC U R S DECEMBER 2009=100 Education and communication commodities in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS24ASAES S24A SAES U R S DECEMBER 2009=100 Education and communication services in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS24ASAF S24A SAF U R S 1982-84=100 Food and beverages in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS24ASAF1 S24A SAF1 U R S 1982-84=100 Food in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1917 M12 2025 M07 +CUURS24ASAF11 S24A SAF11 U R S 1982-84=100 Food at home in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1953 M01 2025 M08 +CUURS24ASAF111 S24A SAF111 U R S 1982-84=100 Cereals and bakery products in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS24ASAF112 S24A SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS24ASAF113 S24A SAF113 U R S 1982-84=100 Fruits and vegetables in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS24ASAF114 S24A SAF114 U R S APRIL 1978=100 Nonalcoholic beverages and beverage materials in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS24ASAF115 S24A SAF115 U R S 1982-84=100 Other food at home in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS24ASAF116 S24A SAF116 U R S 1982-84=100 Alcoholic beverages in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS24ASAG S24A SAG U R S 1982-84=100 Other goods and services in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS24ASAGC S24A SAGC U R S DECEMBER 2009=100 Other goods in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS24ASAGS S24A SAGS U R S DECEMBER 2009=100 Other personal services in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 M11 2025 M05 +CUURS24ASAH S24A SAH U R S 1982-84=100 Housing in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS24ASAH1 S24A SAH1 U R S 1982-84=100 Shelter in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS24ASAH2 S24A SAH2 U R S 1982-84=100 Fuels and utilities in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1952 M12 2024 M13 +CUURS24ASAH21 S24A SAH21 U R S 1982-84=100 Household energy in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1976 M01 2024 M13 +CUURS24ASAH3 S24A SAH3 U R S 1982-84=100 Household furnishings and operations in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS24ASAH31 S24A SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS24ASAM S24A SAM U R S 1982-84=100 Medical care in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1947 M01 2025 M07 +CUURS24ASAN S24A SAN U R S 1982-84=100 Nondurables in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1967 M01 2025 M07 +CUURS24ASANL1 S24A SANL1 U R S 1982-84=100 Nondurables less food in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1967 M01 2025 M07 +CUURS24ASANL11 S24A SANL11 U R S 1982-84=100 Nondurables less food and beverages in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS24ASAR S24A SAR U R S DECEMBER 1997=100 Recreation in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1997 M12 2025 M07 +CUURS24ASAS S24A SAS U R S 1982-84=100 Services in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1967 M01 2025 M07 +CUURS24ASASL2RS S24A SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1982 M12 2025 M07 +CUURS24ASASL5 S24A SASL5 U R S 1982-84=100 Services less medical care services in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1967 M01 2025 M07 +CUURS24ASAT S24A SAT U R S 1982-84=100 Transportation in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1947 M01 2025 M07 +CUURS24ASAT1 S24A SAT1 U R S 1982-84=100 Private transportation in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1947 M01 2025 M07 +CUURS24ASATCLTB S24A SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS24ASEEB S24A SEEB U R S APRIL 1978=100 Tuition, other school fees, and childcare in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS24ASEFJ S24A SEFJ U R S 1982-84=100 Dairy and related products in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS24ASEFV S24A SEFV U R S 1982-84=100 Food away from home in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1952 M12 2025 M07 +CUURS24ASEHA S24A SEHA U R S 1982-84=100 Rent of primary residence in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1917 M12 2025 M08 +CUURS24ASEHC S24A SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS24ASEHC01 S24A SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS24ASEHF S24A SEHF U R S 1982-84=100 Energy services in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1947 M01 2024 M13 +CUURS24ASEHF01 S24A SEHF01 U R S 1982-84=100 Electricity in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS24ASEHF02 S24A SEHF02 U R S 1982-84=100 Utility (piped) gas service in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS24ASETA S24A SETA U R S DECEMBER 1997=100 New and used motor vehicles in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS24ASETA01 S24A SETA01 U R S APRIL 1978=100 New vehicles in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS24ASETA02 S24A SETA02 U R S APRIL 1978=100 Used cars and trucks in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS24ASETB S24A SETB U R S 1982-84=100 Motor fuel in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1978 M04 2025 M08 +CUURS24ASETB01 S24A SETB01 U R S 1982-84=100 Gasoline (all types) in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1978 M04 2025 M08 +CUURS24ASETE S24A SETE U R S APRIL 1978=100 Motor vehicle insurance in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 M11 2021 M13 +CUURS24ASS47014 S24A SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS24ASS47015 S24A SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS24ASS47016 S24A SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS24BAA0 S24B AA0 U R A 1967=100 All items - old base in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1917 M12 2025 M08 +CUURS24BSA0 S24B SA0 U R S 1982-84=100 All items in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1917 M12 2025 M08 +CUURS24BSA0E S24B SA0E U R S 1982-84=100 Energy in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1978 M03 2025 M08 +CUURS24BSA0L1E S24B SA0L1E U R S 1982-84=100 All items less food and energy in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1982 M01 2025 M08 +CUURS24BSA0L2 S24B SA0L2 U R S 1982-84=100 All items less shelter in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS24BSA0L5 S24B SA0L5 U R S 1982-84=100 All items less medical care in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS24BSA0LE S24B SA0LE U R S 1982-84=100 All items less energy in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1978 M03 2025 M08 +CUURS24BSAA S24B SAA U R S 1982-84=100 Apparel in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS24BSAC S24B SAC U R S 1982-84=100 Commodities in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS24BSACL1 S24B SACL1 U R S 1982-84=100 Commodities less food in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS24BSACL11 S24B SACL11 U R S 1982-84=100 Commodities less food and beverages in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS24BSAD S24B SAD U R S 1982-84=100 Durables in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS24BSAE S24B SAE U R S DECEMBER 1997=100 Education and communication in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS24BSAEC S24B SAEC U R S DECEMBER 2009=100 Education and communication commodities in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS24BSAES S24B SAES U R S DECEMBER 2009=100 Education and communication services in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS24BSAF S24B SAF U R S 1982-84=100 Food and beverages in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS24BSAF1 S24B SAF1 U R S 1982-84=100 Food in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1917 M12 2025 M08 +CUURS24BSAF11 S24B SAF11 U R S 1982-84=100 Food at home in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1953 M01 2025 M08 +CUURS24BSAF111 S24B SAF111 U R S 1982-84=100 Cereals and bakery products in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS24BSAF112 S24B SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS24BSAF113 S24B SAF113 U R S 1982-84=100 Fruits and vegetables in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS24BSAF114 S24B SAF114 U R S MARCH 1978=100 Nonalcoholic beverages and beverage materials in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS24BSAF115 S24B SAF115 U R S 1982-84=100 Other food at home in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS24BSAF116 S24B SAF116 U R S 1982-84=100 Alcoholic beverages in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS24BSAG S24B SAG U R S 1982-84=100 Other goods and services in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS24BSAGC S24B SAGC U R S DECEMBER 2009=100 Other goods in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS24BSAGS S24B SAGS U R S DECEMBER 2009=100 Other personal services in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS24BSAH S24B SAH U R S 1982-84=100 Housing in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS24BSAH1 S24B SAH1 U R S 1982-84=100 Shelter in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS24BSAH2 S24B SAH2 U R S 1982-84=100 Fuels and utilities in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1952 M12 2024 M13 +CUURS24BSAH21 S24B SAH21 U R S 1982-84=100 Household energy in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1976 M01 2024 M13 +CUURS24BSAH3 S24B SAH3 U R S 1982-84=100 Household furnishings and operations in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS24BSAH31 S24B SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS24BSAM S24B SAM U R S 1982-84=100 Medical care in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS24BSAN S24B SAN U R S 1982-84=100 Nondurables in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS24BSANL1 S24B SANL1 U R S 1982-84=100 Nondurables less food in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS24BSANL11 S24B SANL11 U R S 1982-84=100 Nondurables less food and beverages in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS24BSAR S24B SAR U R S DECEMBER 1997=100 Recreation in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS24BSAS S24B SAS U R S 1982-84=100 Services in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS24BSASL2RS S24B SASL2RS U R S NOVEMBER 1982=100 Services less rent of shelter in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS24BSASL5 S24B SASL5 U R S 1982-84=100 Services less medical care services in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS24BSAT S24B SAT U R S 1982-84=100 Transportation in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS24BSAT1 S24B SAT1 U R S 1982-84=100 Private transportation in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS24BSATCLTB S24B SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS24BSEEB S24B SEEB U R S MARCH 1978=100 Tuition, other school fees, and childcare in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS24BSEFJ S24B SEFJ U R S 1982-84=100 Dairy and related products in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS24BSEFV S24B SEFV U R S 1982-84=100 Food away from home in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS24BSEHA S24B SEHA U R S 1982-84=100 Rent of primary residence in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1917 M12 2025 M08 +CUURS24BSEHC S24B SEHC U R S NOVEMBER 1982=100 Owners' equivalent rent of residences in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS24BSEHC01 S24B SEHC01 U R S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS24BSEHF S24B SEHF U R S 1982-84=100 Energy services in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1935 M03 2024 M13 +CUURS24BSEHF01 S24B SEHF01 U R S 1982-84=100 Electricity in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS24BSEHF02 S24B SEHF02 U R S 1982-84=100 Utility (piped) gas service in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS24BSETA S24B SETA U R S DECEMBER 1997=100 New and used motor vehicles in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS24BSETA01 S24B SETA01 U R S MARCH 1978=100 New vehicles in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS24BSETA02 S24B SETA02 U R S MARCH 1978=100 Used cars and trucks in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS24BSETB S24B SETB U R S 1982-84=100 Motor fuel in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1978 M03 2025 M08 +CUURS24BSETB01 S24B SETB01 U R S 1982-84=100 Gasoline (all types) in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1978 M03 2025 M08 +CUURS24BSETE S24B SETE U R S MARCH 1978=100 Motor vehicle insurance in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS24BSS47014 S24B SS47014 U R S 1982-84=100 Gasoline, unleaded regular in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS24BSS47015 S24B SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUURS24BSS47016 S24B SS47016 U R S 1982-84=100 Gasoline, unleaded premium in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS300AA0 S300 AA0 U R A DECEMBER 1977=100 All items - old base in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SA0 S300 SA0 U R S 1982-84=100 All items in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SA0E S300 SA0E U R S 1982-84=100 Energy in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SA0L1E S300 SA0L1E U R S 1982-84=100 All items less food and energy in South - Size Class A, all urban consumers, not seasonally adjusted 1982 M02 2025 M08 +CUURS300SA0L2 S300 SA0L2 U R S 1982-84=100 All items less shelter in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SA0L5 S300 SA0L5 U R S 1982-84=100 All items less medical care in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SA0LE S300 SA0LE U R S 1982-84=100 All items less energy in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SAA S300 SAA U R S 1982-84=100 Apparel in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SAC S300 SAC U R S 1982-84=100 Commodities in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SACL1 S300 SACL1 U R S 1982-84=100 Commodities less food in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SACL11 S300 SACL11 U R S 1982-84=100 Commodities less food and beverages in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SAD S300 SAD U R S 1982-84=100 Durables in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SAE S300 SAE U R S DECEMBER 1997=100 Education and communication in South - Size Class A, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS300SAEC S300 SAEC U R S DECEMBER 2009=100 Education and communication commodities in South - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS300SAES S300 SAES U R S DECEMBER 2009=100 Education and communication services in South - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS300SAF S300 SAF U R S 1982-84=100 Food and beverages in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SAF1 S300 SAF1 U R S 1982-84=100 Food in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SAF11 S300 SAF11 U R S 1982-84=100 Food at home in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SAF111 S300 SAF111 U R S 1982-84=100 Cereals and bakery products in South - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS300SAF112 S300 SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in South - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS300SAF113 S300 SAF113 U R S 1982-84=100 Fruits and vegetables in South - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS300SAF114 S300 SAF114 U R S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in South - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS300SAF115 S300 SAF115 U R S 1982-84=100 Other food at home in South - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS300SAF116 S300 SAF116 U R S 1982-84=100 Alcoholic beverages in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SAG S300 SAG U R S 1982-84=100 Other goods and services in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SAGC S300 SAGC U R S DECEMBER 2009=100 Other goods in South - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS300SAGS S300 SAGS U R S DECEMBER 2009=100 Other personal services in South - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS300SAH S300 SAH U R S 1982-84=100 Housing in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SAH1 S300 SAH1 U R S 1982-84=100 Shelter in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SAH2 S300 SAH2 U R S 1982-84=100 Fuels and utilities in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS300SAH21 S300 SAH21 U R S 1982-84=100 Household energy in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS300SAH3 S300 SAH3 U R S 1982-84=100 Household furnishings and operations in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SAH31 S300 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in South - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS300SAM S300 SAM U R S 1982-84=100 Medical care in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SAN S300 SAN U R S 1982-84=100 Nondurables in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SANL1 S300 SANL1 U R S 1982-84=100 Nondurables less food in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SANL11 S300 SANL11 U R S 1982-84=100 Nondurables less food and beverages in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SAR S300 SAR U R S DECEMBER 1997=100 Recreation in South - Size Class A, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS300SAS S300 SAS U R S 1982-84=100 Services in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SASL2RS S300 SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in South - Size Class A, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS300SASL5 S300 SASL5 U R S 1982-84=100 Services less medical care services in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SAT S300 SAT U R S 1982-84=100 Transportation in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SAT1 S300 SAT1 U R S 1982-84=100 Private transportation in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SATCLTB S300 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in South - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS300SEEB S300 SEEB U R S DECEMBER 1977=100 Tuition, other school fees, and childcare in South - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS300SEFJ S300 SEFJ U R S 1982-84=100 Dairy and related products in South - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS300SEFV S300 SEFV U R S 1982-84=100 Food away from home in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SEHA S300 SEHA U R S 1982-84=100 Rent of primary residence in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SEHC S300 SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in South - Size Class A, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS300SEHC01 S300 SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in South - Size Class A, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS300SEHF S300 SEHF U R S 1982-84=100 Energy services in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS300SEHF01 S300 SEHF01 U R S 1982-84=100 Electricity in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS300SEHF02 S300 SEHF02 U R S 1982-84=100 Utility (piped) gas service in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS300SETA S300 SETA U R S DECEMBER 1997=100 New and used motor vehicles in South - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS300SETA01 S300 SETA01 U R S DECEMBER 1977=100 New vehicles in South - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS300SETA02 S300 SETA02 U R S DECEMBER 1977=100 Used cars and trucks in South - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS300SETB S300 SETB U R S 1982-84=100 Motor fuel in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SETB01 S300 SETB01 U R S 1982-84=100 Gasoline (all types) in South - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS300SETE S300 SETE U R S DECEMBER 1977=100 Motor vehicle insurance in South - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS300SS47014 S300 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in South - Size Class A, all urban consumers, not seasonally adjusted 1978 M06 2025 M08 +CUURS300SS47015 S300 SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in South - Size Class A, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUURS300SS47016 S300 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in South - Size Class A, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS35AAA0 S35A AA0 U R A 1967=100 All items - old base in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1914 M12 2025 M07 +CUURS35ASA0 S35A SA0 U R S 1982-84=100 All items in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1914 M12 2025 M07 +CUURS35ASA0E S35A SA0E U R S 1982-84=100 Energy in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35ASA0L1E S35A SA0L1E U R S 1982-84=100 All items less food and energy in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1982 M01 2025 M07 +CUURS35ASA0L2 S35A SA0L2 U R S 1982-84=100 All items less shelter in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1975 M11 2025 M07 +CUURS35ASA0L5 S35A SA0L5 U R S 1982-84=100 All items less medical care in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS35ASA0LE S35A SA0LE U R S 1982-84=100 All items less energy in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1977 M11 2025 M07 +CUURS35ASAA S35A SAA U R S 1982-84=100 Apparel in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M07 +CUURS35ASAC S35A SAC U R S 1982-84=100 Commodities in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS35ASACL1 S35A SACL1 U R S 1982-84=100 Commodities less food in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS35ASACL11 S35A SACL11 U R S 1982-84=100 Commodities less food and beverages in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1975 M11 2025 M07 +CUURS35ASAD S35A SAD U R S 1982-84=100 Durables in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS35ASAE S35A SAE U R S DECEMBER 1997=100 Education and communication in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M07 +CUURS35ASAEC S35A SAEC U R S DECEMBER 2009=100 Education and communication commodities in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2010 M01 2025 M07 +CUURS35ASAES S35A SAES U R S DECEMBER 2009=100 Education and communication services in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2010 M01 2025 M07 +CUURS35ASAF S35A SAF U R S 1982-84=100 Food and beverages in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M07 +CUURS35ASAF1 S35A SAF1 U R S 1982-84=100 Food in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M07 +CUURS35ASAF11 S35A SAF11 U R S 1982-84=100 Food at home in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ASAF111 S35A SAF111 U R S 1982-84=100 Cereals and bakery products in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS35ASAF112 S35A SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS35ASAF113 S35A SAF113 U R S 1982-84=100 Fruits and vegetables in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS35ASAF114 S35A SAF114 U R S NOVEMBER 1977=100 Nonalcoholic beverages and beverage materials in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS35ASAF115 S35A SAF115 U R S 1982-84=100 Other food at home in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS35ASAF116 S35A SAF116 U R S 1982-84=100 Alcoholic beverages in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M07 +CUURS35ASAG S35A SAG U R S 1982-84=100 Other goods and services in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M07 +CUURS35ASAGC S35A SAGC U R S DECEMBER 2009=100 Other goods in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2010 M01 2025 M07 +CUURS35ASAGS S35A SAGS U R S DECEMBER 2009=100 Other personal services in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2010 M01 2025 M07 +CUURS35ASAH S35A SAH U R S 1982-84=100 Housing in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M07 +CUURS35ASAH1 S35A SAH1 U R S 1982-84=100 Shelter in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ASAH2 S35A SAH2 U R S 1982-84=100 Fuels and utilities in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2024 M13 +CUURS35ASAH21 S35A SAH21 U R S 1982-84=100 Household energy in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2024 M13 +CUURS35ASAH3 S35A SAH3 U R S 1982-84=100 Household furnishings and operations in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M07 +CUURS35ASAH31 S35A SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2010 M01 2025 M07 +CUURS35ASAM S35A SAM U R S 1982-84=100 Medical care in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M07 +CUURS35ASAN S35A SAN U R S 1982-84=100 Nondurables in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS35ASANL1 S35A SANL1 U R S 1982-84=100 Nondurables less food in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS35ASANL11 S35A SANL11 U R S 1982-84=100 Nondurables less food and beverages in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1975 M11 2025 M07 +CUURS35ASAR S35A SAR U R S DECEMBER 1997=100 Recreation in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M07 +CUURS35ASAS S35A SAS U R S 1982-84=100 Services in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS35ASASL2RS S35A SASL2RS U R S NOVEMBER 1982=100 Services less rent of shelter in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1982 M11 2025 M07 +CUURS35ASASL5 S35A SASL5 U R S 1982-84=100 Services less medical care services in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS35ASAT S35A SAT U R S 1982-84=100 Transportation in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M07 +CUURS35ASAT1 S35A SAT1 U R S 1982-84=100 Private transportation in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M07 +CUURS35ASATCLTB S35A SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2010 M01 2025 M07 +CUURS35ASEEB S35A SEEB U R S NOVEMBER 1977=100 Tuition, other school fees, and childcare in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35ASEFJ S35A SEFJ U R S 1982-84=100 Dairy and related products in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS35ASEFV S35A SEFV U R S 1982-84=100 Food away from home in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M07 +CUURS35ASEHA S35A SEHA U R S 1982-84=100 Rent of primary residence in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ASEHC S35A SEHC U R S NOVEMBER 1982=100 Owners' equivalent rent of residences in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ASEHC01 S35A SEHC01 U R S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ASEHF S35A SEHF U R S 1982-84=100 Energy services in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2024 M13 +CUURS35ASEHF01 S35A SEHF01 U R S 1982-84=100 Electricity in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2024 M13 +CUURS35ASEHF02 S35A SEHF02 U R S 1982-84=100 Utility (piped) gas service in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2024 M13 +CUURS35ASETA S35A SETA U R S DECEMBER 1997=100 New and used motor vehicles in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35ASETA01 S35A SETA01 U R S NOVEMBER 1977=100 New vehicles in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35ASETA02 S35A SETA02 U R S NOVEMBER 1977=100 Used cars and trucks in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35ASETB S35A SETB U R S 1982-84=100 Motor fuel in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ASETB01 S35A SETB01 U R S 1982-84=100 Gasoline (all types) in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ASETE S35A SETE U R S NOVEMBER 1977=100 Motor vehicle insurance in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 M11 2021 M13 +CUURS35ASS47014 S35A SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS35ASS47015 S35A SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUURS35ASS47016 S35A SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS35BAA0 S35B AA0 U R A NOVEMBER 1977=100 All items - old base in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSA0 S35B SA0 U R S 1982-84=100 All items in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSA0E S35B SA0E U R S 1982-84=100 Energy in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSA0L1E S35B SA0L1E U R S 1982-84=100 All items less food and energy in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1982 M01 2025 M08 +CUURS35BSA0L2 S35B SA0L2 U R S 1982-84=100 All items less shelter in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSA0L5 S35B SA0L5 U R S 1982-84=100 All items less medical care in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSA0LE S35B SA0LE U R S 1982-84=100 All items less energy in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSAA S35B SAA U R S 1982-84=100 Apparel in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSAC S35B SAC U R S 1982-84=100 Commodities in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSACL1 S35B SACL1 U R S 1982-84=100 Commodities less food in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSACL11 S35B SACL11 U R S 1982-84=100 Commodities less food and beverages in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSAD S35B SAD U R S 1982-84=100 Durables in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSAE S35B SAE U R S DECEMBER 1997=100 Education and communication in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS35BSAEC S35B SAEC U R S DECEMBER 2009=100 Education and communication commodities in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS35BSAES S35B SAES U R S DECEMBER 2009=100 Education and communication services in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS35BSAF S35B SAF U R S 1982-84=100 Food and beverages in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSAF1 S35B SAF1 U R S 1982-84=100 Food in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSAF11 S35B SAF11 U R S 1982-84=100 Food at home in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSAF111 S35B SAF111 U R S 1982-84=100 Cereals and bakery products in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35BSAF112 S35B SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35BSAF113 S35B SAF113 U R S 1982-84=100 Fruits and vegetables in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35BSAF114 S35B SAF114 U R S NOVEMBER 1977=100 Nonalcoholic beverages and beverage materials in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35BSAF115 S35B SAF115 U R S 1982-84=100 Other food at home in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35BSAF116 S35B SAF116 U R S 1982-84=100 Alcoholic beverages in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSAG S35B SAG U R S 1982-84=100 Other goods and services in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSAGC S35B SAGC U R S DECEMBER 2009=100 Other goods in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS35BSAGS S35B SAGS U R S DECEMBER 2009=100 Other personal services in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS35BSAH S35B SAH U R S 1982-84=100 Housing in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSAH1 S35B SAH1 U R S 1982-84=100 Shelter in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSAH2 S35B SAH2 U R S 1982-84=100 Fuels and utilities in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2024 M13 +CUURS35BSAH21 S35B SAH21 U R S 1982-84=100 Household energy in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2024 M13 +CUURS35BSAH3 S35B SAH3 U R S 1982-84=100 Household furnishings and operations in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSAH31 S35B SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS35BSAM S35B SAM U R S 1982-84=100 Medical care in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSAN S35B SAN U R S 1982-84=100 Nondurables in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSANL1 S35B SANL1 U R S 1982-84=100 Nondurables less food in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSANL11 S35B SANL11 U R S 1982-84=100 Nondurables less food and beverages in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSAR S35B SAR U R S DECEMBER 1997=100 Recreation in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS35BSAS S35B SAS U R S 1982-84=100 Services in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSASL2RS S35B SASL2RS U R S NOVEMBER 1982=100 Services less rent of shelter in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS35BSASL5 S35B SASL5 U R S 1982-84=100 Services less medical care services in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSAT S35B SAT U R S 1982-84=100 Transportation in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSAT1 S35B SAT1 U R S 1982-84=100 Private transportation in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSATCLTB S35B SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS35BSEEB S35B SEEB U R S NOVEMBER 1977=100 Tuition, other school fees, and childcare in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M04 +CUURS35BSEFJ S35B SEFJ U R S 1982-84=100 Dairy and related products in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35BSEFV S35B SEFV U R S 1982-84=100 Food away from home in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSEHA S35B SEHA U R S 1982-84=100 Rent of primary residence in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSEHC S35B SEHC U R S NOVEMBER 1982=100 Owners' equivalent rent of residences in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS35BSEHC01 S35B SEHC01 U R S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS35BSEHF S35B SEHF U R S 1982-84=100 Energy services in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2024 M13 +CUURS35BSEHF01 S35B SEHF01 U R S 1982-84=100 Electricity in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2024 M13 +CUURS35BSEHF02 S35B SEHF02 U R S 1982-84=100 Utility (piped) gas service in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2024 M13 +CUURS35BSETA S35B SETA U R S DECEMBER 1997=100 New and used motor vehicles in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35BSETA01 S35B SETA01 U R S NOVEMBER 1977=100 New vehicles in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35BSETA02 S35B SETA02 U R S NOVEMBER 1977=100 Used cars and trucks in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35BSETB S35B SETB U R S 1982-84=100 Motor fuel in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSETB01 S35B SETB01 U R S 1982-84=100 Gasoline (all types) in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS35BSETE S35B SETE U R S NOVEMBER 1977=100 Motor vehicle insurance in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS35BSS47014 S35B SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1978 M06 2025 M08 +CUURS35BSS47015 S35B SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUURS35BSS47016 S35B SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS35CAA0 S35C AA0 U R A 1967=100 All items - old base in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1917 M12 2025 M08 +CUURS35CSA0 S35C SA0 U R S 1982-84=100 All items in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1917 M12 2025 M08 +CUURS35CSA0E S35C SA0E U R S 1982-84=100 Energy in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS35CSA0L1E S35C SA0L1E U R S 1982-84=100 All items less food and energy in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1982 M02 2025 M08 +CUURS35CSA0L2 S35C SA0L2 U R S 1982-84=100 All items less shelter in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS35CSA0L5 S35C SA0L5 U R S 1982-84=100 All items less medical care in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS35CSA0LE S35C SA0LE U R S 1982-84=100 All items less energy in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS35CSAA S35C SAA U R S 1982-84=100 Apparel in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1952 M11 2025 M08 +CUURS35CSAC S35C SAC U R S 1982-84=100 Commodities in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS35CSACL1 S35C SACL1 U R S 1982-84=100 Commodities less food in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS35CSACL11 S35C SACL11 U R S 1982-84=100 Commodities less food and beverages in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS35CSAD S35C SAD U R S 1982-84=100 Durables in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS35CSAE S35C SAE U R S DECEMBER 1997=100 Education and communication in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS35CSAEC S35C SAEC U R S DECEMBER 2009=100 Education and communication commodities in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS35CSAES S35C SAES U R S DECEMBER 2009=100 Education and communication services in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS35CSAF S35C SAF U R S 1982-84=100 Food and beverages in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS35CSAF1 S35C SAF1 U R S 1982-84=100 Food in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1917 M12 2025 M08 +CUURS35CSAF11 S35C SAF11 U R S 1982-84=100 Food at home in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1953 M01 2025 M08 +CUURS35CSAF111 S35C SAF111 U R S 1982-84=100 Cereals and bakery products in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35CSAF112 S35C SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35CSAF113 S35C SAF113 U R S 1982-84=100 Fruits and vegetables in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35CSAF114 S35C SAF114 U R S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35CSAF115 S35C SAF115 U R S 1982-84=100 Other food at home in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35CSAF116 S35C SAF116 U R S 1982-84=100 Alcoholic beverages in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1975 M12 2025 M02 +CUURS35CSAG S35C SAG U R S 1982-84=100 Other goods and services in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1975 M12 2025 M02 +CUURS35CSAGC S35C SAGC U R S DECEMBER 2009=100 Other goods in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS35CSAGS S35C SAGS U R S DECEMBER 2009=100 Other personal services in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2009 M12 2025 M02 +CUURS35CSAH S35C SAH U R S 1982-84=100 Housing in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS35CSAH1 S35C SAH1 U R S 1982-84=100 Shelter in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1952 M11 2025 M08 +CUURS35CSAH2 S35C SAH2 U R S 1982-84=100 Fuels and utilities in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1952 M11 2024 M13 +CUURS35CSAH21 S35C SAH21 U R S 1982-84=100 Household energy in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1976 M01 2024 M13 +CUURS35CSAH3 S35C SAH3 U R S 1982-84=100 Household furnishings and operations in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS35CSAH31 S35C SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS35CSAM S35C SAM U R S 1982-84=100 Medical care in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1947 M03 2025 M08 +CUURS35CSAN S35C SAN U R S 1982-84=100 Nondurables in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS35CSANL1 S35C SANL1 U R S 1982-84=100 Nondurables less food in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS35CSANL11 S35C SANL11 U R S 1982-84=100 Nondurables less food and beverages in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS35CSAR S35C SAR U R S DECEMBER 1997=100 Recreation in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS35CSAS S35C SAS U R S 1982-84=100 Services in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS35CSASL2RS S35C SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS35CSASL5 S35C SASL5 U R S 1982-84=100 Services less medical care services in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS35CSAT S35C SAT U R S 1982-84=100 Transportation in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1947 M03 2025 M08 +CUURS35CSAT1 S35C SAT1 U R S 1982-84=100 Private transportation in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1947 M03 2025 M08 +CUURS35CSATCLTB S35C SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS35CSEEB S35C SEEB U R S DECEMBER 1977=100 Tuition, other school fees, and childcare in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35CSEFJ S35C SEFJ U R S 1982-84=100 Dairy and related products in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35CSEFV S35C SEFV U R S 1982-84=100 Food away from home in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS35CSEHA S35C SEHA U R S 1982-84=100 Rent of primary residence in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1917 M12 2025 M08 +CUURS35CSEHC S35C SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS35CSEHC01 S35C SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS35CSEHF S35C SEHF U R S 1982-84=100 Energy services in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1935 M03 2024 M13 +CUURS35CSEHF01 S35C SEHF01 U R S 1982-84=100 Electricity in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS35CSEHF02 S35C SEHF02 U R S 1982-84=100 Utility (piped) gas service in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS35CSETA S35C SETA U R S DECEMBER 1997=100 New and used motor vehicles in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35CSETA01 S35C SETA01 U R S DECEMBER 1977=100 New vehicles in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35CSETA02 S35C SETA02 U R S DECEMBER 1977=100 Used cars and trucks in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35CSETB S35C SETB U R S 1982-84=100 Motor fuel in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS35CSETB01 S35C SETB01 U R S 1982-84=100 Gasoline (all types) in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS35CSETE S35C SETE U R S DECEMBER 1977=100 Motor vehicle insurance in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS35CSS47014 S35C SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS35CSS47015 S35C SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS35CSS47016 S35C SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS35DAA0 S35D AA0 U R A 1987=100 All items - old base in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2018 M13 +CUURS35DSA0 S35D SA0 U R S 1987=100 All items in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSA0E S35D SA0E U R S 1987=100 Energy in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35DSA0L1E S35D SA0L1E U R S 1987=100 All items less food and energy in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSA0L2 S35D SA0L2 U R S 1987=100 All items less shelter in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSA0L5 S35D SA0L5 U R S 1987=100 All items less medical care in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSA0LE S35D SA0LE U R S 1987=100 All items less energy in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAA S35D SAA U R S 1987=100 Apparel in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAC S35D SAC U R S 1987=100 Commodities in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSACL1 S35D SACL1 U R S 1987=100 Commodities less food in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSACL11 S35D SACL11 U R S 1987=100 Commodities less food and beverages in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAD S35D SAD U R S 1987=100 Durables in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAE S35D SAE U R S DECEMBER 1997=100 Education and communication in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1997 M12 2025 M07 +CUURS35DSAEC S35D SAEC U R S DECEMBER 2009=100 Education and communication commodities in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAES S35D SAES U R S DECEMBER 2009=100 Education and communication services in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAF S35D SAF U R S 1987=100 Food and beverages in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAF1 S35D SAF1 U R S 1987=100 Food in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAF11 S35D SAF11 U R S 1987=100 Food at home in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35DSAF111 S35D SAF111 U R S 1987=100 Cereals and bakery products in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS35DSAF112 S35D SAF112 U R S 1987=100 Meats, poultry, fish, and eggs in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS35DSAF113 S35D SAF113 U R S 1987=100 Fruits and vegetables in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS35DSAF114 S35D SAF114 U R S 1987=100 Nonalcoholic beverages and beverage materials in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS35DSAF115 S35D SAF115 U R S 1987=100 Other food at home in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS35DSAF116 S35D SAF116 U R S 1987=100 Alcoholic beverages in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAG S35D SAG U R S 1987=100 Other goods and services in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAGC S35D SAGC U R S DECEMBER 2009=100 Other goods in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAGS S35D SAGS U R S DECEMBER 2009=100 Other personal services in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAH S35D SAH U R S 1987=100 Housing in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAH1 S35D SAH1 U R S 1987=100 Shelter in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35DSAH2 S35D SAH2 U R S 1987=100 Fuels and utilities in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2024 M13 +CUURS35DSAH21 S35D SAH21 U R S 1987=100 Household energy in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUURS35DSAH3 S35D SAH3 U R S 1987=100 Household furnishings and operations in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAH31 S35D SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAM S35D SAM U R S 1987=100 Medical care in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAN S35D SAN U R S 1987=100 Nondurables in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSANL1 S35D SANL1 U R S 1987=100 Nondurables less food in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSANL11 S35D SANL11 U R S 1987=100 Nondurables less food and beverages in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAR S35D SAR U R S DECEMBER 1997=100 Recreation in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1997 M12 2025 M07 +CUURS35DSAS S35D SAS U R S 1987=100 Services in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSASL2RS S35D SASL2RS U R S 1987=100 Services less rent of shelter in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSASL5 S35D SASL5 U R S 1987=100 Services less medical care services in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAT S35D SAT U R S 1987=100 Transportation in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSAT1 S35D SAT1 U R S 1987=100 Private transportation in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSATCLTB S35D SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSEEB S35D SEEB U R S 1987=100 Tuition, other school fees, and childcare in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M05 +CUURS35DSEFJ S35D SEFJ U R S 1987=100 Dairy and related products in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS35DSEFV S35D SEFV U R S 1987=100 Food away from home in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSEHA S35D SEHA U R S 1987=100 Rent of primary residence in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35DSEHC S35D SEHC U R S 1987=100 Owners' equivalent rent of residences in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35DSEHC01 S35D SEHC01 U R S 1987=100 Owners' equivalent rent of primary residence in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35DSEHF S35D SEHF U R S 1987=100 Energy services in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUURS35DSEHF01 S35D SEHF01 U R S 1987=100 Electricity in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUURS35DSEHF02 S35D SEHF02 U R S 1987=100 Utility (piped) gas service in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2018 M01 2023 M13 +CUURS35DSETA S35D SETA U R S DECEMBER 1997=100 New and used motor vehicles in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSETA01 S35D SETA01 U R S 1987=100 New vehicles in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSETA02 S35D SETA02 U R S 1987=100 Used cars and trucks in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS35DSETB S35D SETB U R S 1987=100 Motor fuel in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35DSETB01 S35D SETB01 U R S 1987=100 Gasoline (all types) in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35DSETE S35D SETE U R S 1987=100 Motor vehicle insurance in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M11 2021 M13 +CUURS35DSS47014 S35D SS47014 U R S 1987=100 Gasoline, unleaded regular in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35DSS47015 S35D SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35DSS47016 S35D SS47016 U R S 1987=100 Gasoline, unleaded premium in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35EAA0 S35E AA0 U R A 1967=100 All items - old base in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS35ESA0 S35E SA0 U R S 1982-84=100 All items in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS35ESA0E S35E SA0E U R S 1982-84=100 Energy in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1978 M03 2025 M08 +CUURS35ESA0L1E S35E SA0L1E U R S 1982-84=100 All items less food and energy in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1982 M01 2025 M08 +CUURS35ESA0L2 S35E SA0L2 U R S 1982-84=100 All items less shelter in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS35ESA0L5 S35E SA0L5 U R S 1982-84=100 All items less medical care in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS35ESA0LE S35E SA0LE U R S 1982-84=100 All items less energy in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1978 M03 2025 M08 +CUURS35ESAA S35E SAA U R S 1982-84=100 Apparel in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESAC S35E SAC U R S 1982-84=100 Commodities in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS35ESACL1 S35E SACL1 U R S 1982-84=100 Commodities less food in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS35ESACL11 S35E SACL11 U R S 1982-84=100 Commodities less food and beverages in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS35ESAD S35E SAD U R S 1982-84=100 Durables in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS35ESAE S35E SAE U R S DECEMBER 1997=100 Education and communication in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESAEC S35E SAEC U R S DECEMBER 2009=100 Education and communication commodities in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2010 M01 2025 M08 +CUURS35ESAES S35E SAES U R S DECEMBER 2009=100 Education and communication services in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2010 M01 2025 M08 +CUURS35ESAF S35E SAF U R S 1982-84=100 Food and beverages in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESAF1 S35E SAF1 U R S 1982-84=100 Food in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESAF11 S35E SAF11 U R S 1982-84=100 Food at home in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESAF111 S35E SAF111 U R S 1982-84=100 Cereals and bakery products in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35ESAF112 S35E SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35ESAF113 S35E SAF113 U R S 1982-84=100 Fruits and vegetables in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35ESAF114 S35E SAF114 U R S MARCH 1978=100 Nonalcoholic beverages and beverage materials in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35ESAF115 S35E SAF115 U R S 1982-84=100 Other food at home in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35ESAF116 S35E SAF116 U R S 1982-84=100 Alcoholic beverages in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESAG S35E SAG U R S 1982-84=100 Other goods and services in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESAGC S35E SAGC U R S DECEMBER 2009=100 Other goods in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2010 M01 2025 M08 +CUURS35ESAGS S35E SAGS U R S DECEMBER 2009=100 Other personal services in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2010 M01 2025 M08 +CUURS35ESAH S35E SAH U R S 1982-84=100 Housing in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESAH1 S35E SAH1 U R S 1982-84=100 Shelter in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESAH2 S35E SAH2 U R S 1982-84=100 Fuels and utilities in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2024 M13 +CUURS35ESAH21 S35E SAH21 U R S 1982-84=100 Household energy in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2024 M13 +CUURS35ESAH3 S35E SAH3 U R S 1982-84=100 Household furnishings and operations in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESAH31 S35E SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2010 M01 2025 M08 +CUURS35ESAM S35E SAM U R S 1982-84=100 Medical care in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESAN S35E SAN U R S 1982-84=100 Nondurables in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS35ESANL1 S35E SANL1 U R S 1982-84=100 Nondurables less food in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS35ESANL11 S35E SANL11 U R S 1982-84=100 Nondurables less food and beverages in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS35ESAR S35E SAR U R S DECEMBER 1997=100 Recreation in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESAS S35E SAS U R S 1982-84=100 Services in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS35ESASL2RS S35E SASL2RS U R S NOVEMBER 1982=100 Services less rent of shelter in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS35ESASL5 S35E SASL5 U R S 1982-84=100 Services less medical care services in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS35ESAT S35E SAT U R S 1982-84=100 Transportation in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESAT1 S35E SAT1 U R S 1982-84=100 Private transportation in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESATCLTB S35E SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2010 M01 2025 M08 +CUURS35ESEEB S35E SEEB U R S MARCH 1978=100 Tuition, other school fees, and childcare in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35ESEFJ S35E SEFJ U R S 1982-84=100 Dairy and related products in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35ESEFV S35E SEFV U R S 1982-84=100 Food away from home in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESEHA S35E SEHA U R S 1982-84=100 Rent of primary residence in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESEHC S35E SEHC U R S NOVEMBER 1982=100 Owners' equivalent rent of residences in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESEHC01 S35E SEHC01 U R S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESEHF S35E SEHF U R S 1982-84=100 Energy services in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2024 M13 +CUURS35ESEHF01 S35E SEHF01 U R S 1982-84=100 Electricity in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2024 M13 +CUURS35ESEHF02 S35E SEHF02 U R S 1982-84=100 Utility (piped) gas service in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2024 M13 +CUURS35ESETA S35E SETA U R S DECEMBER 1997=100 New and used motor vehicles in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35ESETA01 S35E SETA01 U R S MARCH 1978=100 New vehicles in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35ESETA02 S35E SETA02 U R S MARCH 1978=100 Used cars and trucks in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS35ESETB S35E SETB U R S 1982-84=100 Motor fuel in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESETB01 S35E SETB01 U R S 1982-84=100 Gasoline (all types) in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1998 M01 2025 M08 +CUURS35ESETE S35E SETE U R S MARCH 1978=100 Motor vehicle insurance in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS35ESS47014 S35E SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS35ESS47015 S35E SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUURS35ESS47016 S35E SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS37AAA0 S37A AA0 U R A 1967=100 All items - old base in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1963 M11 2025 M07 +CUURS37ASA0 S37A SA0 U R S 1982-84=100 All items in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1963 M11 2025 M07 +CUURS37ASA0E S37A SA0E U R S 1982-84=100 Energy in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1978 M02 2025 M08 +CUURS37ASA0L1E S37A SA0L1E U R S 1982-84=100 All items less food and energy in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1982 M02 2025 M07 +CUURS37ASA0L2 S37A SA0L2 U R S 1982-84=100 All items less shelter in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1975 M11 2025 M07 +CUURS37ASA0L5 S37A SA0L5 U R S 1982-84=100 All items less medical care in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS37ASA0LE S37A SA0LE U R S 1982-84=100 All items less energy in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1978 M02 2025 M07 +CUURS37ASAA S37A SAA U R S 1982-84=100 Apparel in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1963 M11 2025 M07 +CUURS37ASAC S37A SAC U R S 1982-84=100 Commodities in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS37ASACL1 S37A SACL1 U R S 1982-84=100 Commodities less food in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS37ASACL11 S37A SACL11 U R S 1982-84=100 Commodities less food and beverages in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1975 M11 2025 M07 +CUURS37ASAD S37A SAD U R S 1982-84=100 Durables in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS37ASAE S37A SAE U R S DECEMBER 1997=100 Education and communication in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1997 M12 2025 M07 +CUURS37ASAEC S37A SAEC U R S DECEMBER 2009=100 Education and communication commodities in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2010 M01 2025 M07 +CUURS37ASAES S37A SAES U R S DECEMBER 2009=100 Education and communication services in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2010 M01 2025 M07 +CUURS37ASAF S37A SAF U R S 1982-84=100 Food and beverages in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1975 M11 2025 M07 +CUURS37ASAF1 S37A SAF1 U R S 1982-84=100 Food in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1963 M11 2025 M07 +CUURS37ASAF11 S37A SAF11 U R S 1982-84=100 Food at home in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1963 M11 2025 M08 +CUURS37ASAF111 S37A SAF111 U R S 1982-84=100 Cereals and bakery products in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS37ASAF112 S37A SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS37ASAF113 S37A SAF113 U R S 1982-84=100 Fruits and vegetables in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS37ASAF114 S37A SAF114 U R S FEBRUARY 1978=100 Nonalcoholic beverages and beverage materials in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS37ASAF115 S37A SAF115 U R S 1982-84=100 Other food at home in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS37ASAF116 S37A SAF116 U R S 1982-84=100 Alcoholic beverages in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1975 M11 2025 M07 +CUURS37ASAG S37A SAG U R S 1982-84=100 Other goods and services in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1975 M11 2025 M07 +CUURS37ASAGC S37A SAGC U R S DECEMBER 2009=100 Other goods in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2010 M01 2025 M07 +CUURS37ASAGS S37A SAGS U R S DECEMBER 2009=100 Other personal services in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2010 M01 2025 M07 +CUURS37ASAH S37A SAH U R S 1982-84=100 Housing in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1975 M11 2025 M07 +CUURS37ASAH1 S37A SAH1 U R S 1982-84=100 Shelter in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1963 M11 2025 M08 +CUURS37ASAH2 S37A SAH2 U R S 1982-84=100 Fuels and utilities in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1963 M11 2024 M13 +CUURS37ASAH21 S37A SAH21 U R S 1982-84=100 Household energy in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1976 M01 2024 M13 +CUURS37ASAH3 S37A SAH3 U R S 1982-84=100 Household furnishings and operations in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1975 M11 2025 M07 +CUURS37ASAH31 S37A SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2010 M01 2025 M07 +CUURS37ASAM S37A SAM U R S 1982-84=100 Medical care in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1963 M11 2025 M07 +CUURS37ASAN S37A SAN U R S 1982-84=100 Nondurables in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS37ASANL1 S37A SANL1 U R S 1982-84=100 Nondurables less food in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS37ASANL11 S37A SANL11 U R S 1982-84=100 Nondurables less food and beverages in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1975 M11 2025 M07 +CUURS37ASAR S37A SAR U R S DECEMBER 1997=100 Recreation in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1997 M12 2025 M07 +CUURS37ASAS S37A SAS U R S 1982-84=100 Services in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS37ASASL2RS S37A SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1982 M12 2025 M07 +CUURS37ASASL5 S37A SASL5 U R S 1982-84=100 Services less medical care services in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS37ASAT S37A SAT U R S 1982-84=100 Transportation in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1963 M11 2025 M07 +CUURS37ASAT1 S37A SAT1 U R S 1982-84=100 Private transportation in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1963 M11 2025 M07 +CUURS37ASATCLTB S37A SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2010 M01 2025 M07 +CUURS37ASEEB S37A SEEB U R S FEBRUARY 1978=100 Tuition, other school fees, and childcare in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS37ASEFJ S37A SEFJ U R S 1982-84=100 Dairy and related products in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS37ASEFV S37A SEFV U R S 1982-84=100 Food away from home in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1963 M11 2025 M07 +CUURS37ASEHA S37A SEHA U R S 1982-84=100 Rent of primary residence in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1963 M11 2025 M08 +CUURS37ASEHC S37A SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS37ASEHC01 S37A SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS37ASEHF S37A SEHF U R S 1982-84=100 Energy services in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1963 M11 2024 M13 +CUURS37ASEHF01 S37A SEHF01 U R S 1982-84=100 Electricity in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS37ASEHF02 S37A SEHF02 U R S 1982-84=100 Utility (piped) gas service in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS37ASETA S37A SETA U R S DECEMBER 1997=100 New and used motor vehicles in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS37ASETA01 S37A SETA01 U R S FEBRUARY 1978=100 New vehicles in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS37ASETA02 S37A SETA02 U R S FEBRUARY 1978=100 Used cars and trucks in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS37ASETB S37A SETB U R S 1982-84=100 Motor fuel in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1978 M02 2025 M08 +CUURS37ASETB01 S37A SETB01 U R S 1982-84=100 Gasoline (all types) in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1978 M02 2025 M08 +CUURS37ASETE S37A SETE U R S FEBRUARY 1978=100 Motor vehicle insurance in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 M11 2021 M13 +CUURS37ASS47014 S37A SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS37ASS47015 S37A SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUURS37ASS47016 S37A SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS37BAA0 S37B AA0 U R A 1967=100 All items - old base in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS37BSA0 S37B SA0 U R S 1982-84=100 All items in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS37BSA0E S37B SA0E U R S 1982-84=100 Energy in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1978 M04 2025 M08 +CUURS37BSA0L1E S37B SA0L1E U R S 1982-84=100 All items less food and energy in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1982 M02 2025 M08 +CUURS37BSA0L2 S37B SA0L2 U R S 1982-84=100 All items less shelter in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS37BSA0L5 S37B SA0L5 U R S 1982-84=100 All items less medical care in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS37BSA0LE S37B SA0LE U R S 1982-84=100 All items less energy in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1978 M04 2025 M08 +CUURS37BSAA S37B SAA U R S 1982-84=100 Apparel in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS37BSAC S37B SAC U R S 1982-84=100 Commodities in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS37BSACL1 S37B SACL1 U R S 1982-84=100 Commodities less food in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS37BSACL11 S37B SACL11 U R S 1982-84=100 Commodities less food and beverages in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS37BSAD S37B SAD U R S 1982-84=100 Durables in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS37BSAE S37B SAE U R S DECEMBER 1997=100 Education and communication in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS37BSAEC S37B SAEC U R S DECEMBER 2009=100 Education and communication commodities in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS37BSAES S37B SAES U R S DECEMBER 2009=100 Education and communication services in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS37BSAF S37B SAF U R S 1982-84=100 Food and beverages in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS37BSAF1 S37B SAF1 U R S 1982-84=100 Food in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS37BSAF11 S37B SAF11 U R S 1982-84=100 Food at home in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1953 M01 2025 M08 +CUURS37BSAF111 S37B SAF111 U R S 1982-84=100 Cereals and bakery products in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS37BSAF112 S37B SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS37BSAF113 S37B SAF113 U R S 1982-84=100 Fruits and vegetables in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS37BSAF114 S37B SAF114 U R S APRIL 1978=100 Nonalcoholic beverages and beverage materials in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS37BSAF115 S37B SAF115 U R S 1982-84=100 Other food at home in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS37BSAF116 S37B SAF116 U R S 1982-84=100 Alcoholic beverages in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS37BSAG S37B SAG U R S 1982-84=100 Other goods and services in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS37BSAGC S37B SAGC U R S DECEMBER 2009=100 Other goods in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS37BSAGS S37B SAGS U R S DECEMBER 2009=100 Other personal services in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS37BSAH S37B SAH U R S 1982-84=100 Housing in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS37BSAH1 S37B SAH1 U R S 1982-84=100 Shelter in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS37BSAH2 S37B SAH2 U R S 1982-84=100 Fuels and utilities in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1952 M12 2024 M13 +CUURS37BSAH21 S37B SAH21 U R S 1982-84=100 Household energy in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1976 M01 2024 M13 +CUURS37BSAH3 S37B SAH3 U R S 1982-84=100 Household furnishings and operations in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS37BSAH31 S37B SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS37BSAM S37B SAM U R S 1982-84=100 Medical care in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS37BSAN S37B SAN U R S 1982-84=100 Nondurables in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS37BSANL1 S37B SANL1 U R S 1982-84=100 Nondurables less food in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS37BSANL11 S37B SANL11 U R S 1982-84=100 Nondurables less food and beverages in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS37BSAR S37B SAR U R S DECEMBER 1997=100 Recreation in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS37BSAS S37B SAS U R S 1982-84=100 Services in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS37BSASL2RS S37B SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS37BSASL5 S37B SASL5 U R S 1982-84=100 Services less medical care services in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS37BSAT S37B SAT U R S 1982-84=100 Transportation in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS37BSAT1 S37B SAT1 U R S 1982-84=100 Private transportation in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS37BSATCLTB S37B SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS37BSEEB S37B SEEB U R S APRIL 1978=100 Tuition, other school fees, and childcare in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS37BSEFJ S37B SEFJ U R S 1982-84=100 Dairy and related products in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS37BSEFV S37B SEFV U R S 1982-84=100 Food away from home in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS37BSEHA S37B SEHA U R S 1982-84=100 Rent of primary residence in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS37BSEHC S37B SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS37BSEHC01 S37B SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS37BSEHF S37B SEHF U R S 1982-84=100 Energy services in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1947 M01 2024 M13 +CUURS37BSEHF01 S37B SEHF01 U R S 1982-84=100 Electricity in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS37BSEHF02 S37B SEHF02 U R S 1982-84=100 Utility (piped) gas service in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS37BSETA S37B SETA U R S DECEMBER 1997=100 New and used motor vehicles in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS37BSETA01 S37B SETA01 U R S APRIL 1978=100 New vehicles in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS37BSETA02 S37B SETA02 U R S APRIL 1978=100 Used cars and trucks in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS37BSETB S37B SETB U R S 1982-84=100 Motor fuel in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1978 M04 2025 M08 +CUURS37BSETB01 S37B SETB01 U R S 1982-84=100 Gasoline (all types) in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1978 M04 2025 M08 +CUURS37BSETE S37B SETE U R S APRIL 1978=100 Motor vehicle insurance in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS37BSS47014 S37B SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS37BSS47015 S37B SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUURS37BSS47016 S37B SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS400AA0 S400 AA0 U R A DECEMBER 1977=100 All items - old base in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SA0 S400 SA0 U R S 1982-84=100 All items in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SA0E S400 SA0E U R S 1982-84=100 Energy in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SA0L1E S400 SA0L1E U R S 1982-84=100 All items less food and energy in West - Size Class A, all urban consumers, not seasonally adjusted 1982 M02 2025 M08 +CUURS400SA0L2 S400 SA0L2 U R S 1982-84=100 All items less shelter in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SA0L5 S400 SA0L5 U R S 1982-84=100 All items less medical care in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SA0LE S400 SA0LE U R S 1982-84=100 All items less energy in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SAA S400 SAA U R S 1982-84=100 Apparel in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SAC S400 SAC U R S 1982-84=100 Commodities in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SACL1 S400 SACL1 U R S 1982-84=100 Commodities less food in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SACL11 S400 SACL11 U R S 1982-84=100 Commodities less food and beverages in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SAD S400 SAD U R S 1982-84=100 Durables in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SAE S400 SAE U R S DECEMBER 1997=100 Education and communication in West - Size Class A, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS400SAEC S400 SAEC U R S DECEMBER 2009=100 Education and communication commodities in West - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS400SAES S400 SAES U R S DECEMBER 2009=100 Education and communication services in West - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS400SAF S400 SAF U R S 1982-84=100 Food and beverages in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SAF1 S400 SAF1 U R S 1982-84=100 Food in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SAF11 S400 SAF11 U R S 1982-84=100 Food at home in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SAF111 S400 SAF111 U R S 1982-84=100 Cereals and bakery products in West - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS400SAF112 S400 SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in West - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS400SAF113 S400 SAF113 U R S 1982-84=100 Fruits and vegetables in West - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS400SAF114 S400 SAF114 U R S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in West - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS400SAF115 S400 SAF115 U R S 1982-84=100 Other food at home in West - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS400SAF116 S400 SAF116 U R S 1982-84=100 Alcoholic beverages in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SAG S400 SAG U R S 1982-84=100 Other goods and services in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SAGC S400 SAGC U R S DECEMBER 2009=100 Other goods in West - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS400SAGS S400 SAGS U R S DECEMBER 2009=100 Other personal services in West - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS400SAH S400 SAH U R S 1982-84=100 Housing in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SAH1 S400 SAH1 U R S 1982-84=100 Shelter in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SAH2 S400 SAH2 U R S 1982-84=100 Fuels and utilities in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS400SAH21 S400 SAH21 U R S 1982-84=100 Household energy in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS400SAH3 S400 SAH3 U R S 1982-84=100 Household furnishings and operations in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SAH31 S400 SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in West - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS400SAM S400 SAM U R S 1982-84=100 Medical care in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SAN S400 SAN U R S 1982-84=100 Nondurables in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SANL1 S400 SANL1 U R S 1982-84=100 Nondurables less food in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SANL11 S400 SANL11 U R S 1982-84=100 Nondurables less food and beverages in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SAR S400 SAR U R S DECEMBER 1997=100 Recreation in West - Size Class A, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS400SAS S400 SAS U R S 1982-84=100 Services in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SASL2RS S400 SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in West - Size Class A, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS400SASL5 S400 SASL5 U R S 1982-84=100 Services less medical care services in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SAT S400 SAT U R S 1982-84=100 Transportation in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SAT1 S400 SAT1 U R S 1982-84=100 Private transportation in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SATCLTB S400 SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in West - Size Class A, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS400SEEB S400 SEEB U R S DECEMBER 1977=100 Tuition, other school fees, and childcare in West - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS400SEFJ S400 SEFJ U R S 1982-84=100 Dairy and related products in West - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS400SEFV S400 SEFV U R S 1982-84=100 Food away from home in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SEHA S400 SEHA U R S 1982-84=100 Rent of primary residence in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SEHC S400 SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in West - Size Class A, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS400SEHC01 S400 SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in West - Size Class A, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS400SEHF S400 SEHF U R S 1982-84=100 Energy services in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS400SEHF01 S400 SEHF01 U R S 1982-84=100 Electricity in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS400SEHF02 S400 SEHF02 U R S 1982-84=100 Utility (piped) gas service in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2024 M13 +CUURS400SETA S400 SETA U R S DECEMBER 1997=100 New and used motor vehicles in West - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS400SETA01 S400 SETA01 U R S DECEMBER 1977=100 New vehicles in West - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS400SETA02 S400 SETA02 U R S DECEMBER 1977=100 Used cars and trucks in West - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS400SETB S400 SETB U R S 1982-84=100 Motor fuel in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SETB01 S400 SETB01 U R S 1982-84=100 Gasoline (all types) in West - Size Class A, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS400SETE S400 SETE U R S DECEMBER 1977=100 Motor vehicle insurance in West - Size Class A, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS400SS47014 S400 SS47014 U R S 1982-84=100 Gasoline, unleaded regular in West - Size Class A, all urban consumers, not seasonally adjusted 1978 M06 2025 M08 +CUURS400SS47015 S400 SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in West - Size Class A, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUURS400SS47016 S400 SS47016 U R S 1982-84=100 Gasoline, unleaded premium in West - Size Class A, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS48AAA0 S48A AA0 U R A DECEMBER 2001=100 All items - old base in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2018 M13 +CUURS48ASA0 S48A SA0 U R S DECEMBER 2001=100 All items in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASA0E S48A SA0E U R S DECEMBER 2001=100 Energy in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASA0L1E S48A SA0L1E U R S DECEMBER 2001=100 All items less food and energy in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASA0L2 S48A SA0L2 U R S DECEMBER 2001=100 All items less shelter in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASA0L5 S48A SA0L5 U R S DECEMBER 2001=100 All items less medical care in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASA0LE S48A SA0LE U R S DECEMBER 2001=100 All items less energy in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAA S48A SAA U R S DECEMBER 2001=100 Apparel in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAC S48A SAC U R S DECEMBER 2001=100 Commodities in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASACL1 S48A SACL1 U R S DECEMBER 2001=100 Commodities less food in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASACL11 S48A SACL11 U R S DECEMBER 2001=100 Commodities less food and beverages in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAD S48A SAD U R S DECEMBER 2001=100 Durables in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAE S48A SAE U R S DECEMBER 2001=100 Education and communication in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAEC S48A SAEC U R S DECEMBER 2009=100 Education and communication commodities in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAES S48A SAES U R S DECEMBER 2009=100 Education and communication services in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M06 +CUURS48ASAF S48A SAF U R S DECEMBER 2001=100 Food and beverages in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAF1 S48A SAF1 U R S DECEMBER 2001=100 Food in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAF11 S48A SAF11 U R S DECEMBER 2001=100 Food at home in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAF111 S48A SAF111 U R S DECEMBER 2001=100 Cereals and bakery products in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M04 +CUURS48ASAF112 S48A SAF112 U R S DECEMBER 2001=100 Meats, poultry, fish, and eggs in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M03 +CUURS48ASAF113 S48A SAF113 U R S DECEMBER 2001=100 Fruits and vegetables in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M03 +CUURS48ASAF114 S48A SAF114 U R S DECEMBER 2001=100 Nonalcoholic beverages and beverage materials in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAF115 S48A SAF115 U R S DECEMBER 2001=100 Other food at home in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAF116 S48A SAF116 U R S DECEMBER 2001=100 Alcoholic beverages in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAG S48A SAG U R S DECEMBER 2001=100 Other goods and services in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAGC S48A SAGC U R S DECEMBER 2009=100 Other goods in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAGS S48A SAGS U R S DECEMBER 2009=100 Other personal services in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAH S48A SAH U R S DECEMBER 2001=100 Housing in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAH1 S48A SAH1 U R S DECEMBER 2001=100 Shelter in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAH2 S48A SAH2 U R S DECEMBER 2001=100 Fuels and utilities in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUURS48ASAH21 S48A SAH21 U R S DECEMBER 2001=100 Household energy in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUURS48ASAH3 S48A SAH3 U R S DECEMBER 2001=100 Household furnishings and operations in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAH31 S48A SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAM S48A SAM U R S DECEMBER 2001=100 Medical care in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2018 M10 2025 M08 +CUURS48ASAN S48A SAN U R S DECEMBER 2001=100 Nondurables in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASANL1 S48A SANL1 U R S DECEMBER 2001=100 Nondurables less food in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASANL11 S48A SANL11 U R S DECEMBER 2001=100 Nondurables less food and beverages in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAR S48A SAR U R S DECEMBER 2001=100 Recreation in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAS S48A SAS U R S DECEMBER 2001=100 Services in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASASL2RS S48A SASL2RS U R S DECEMBER 2001=100 Services less rent of shelter in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASASL5 S48A SASL5 U R S DECEMBER 2001=100 Services less medical care services in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAT S48A SAT U R S DECEMBER 2001=100 Transportation in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASAT1 S48A SAT1 U R S DECEMBER 2001=100 Private transportation in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASATCLTB S48A SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASEEB S48A SEEB U R S DECEMBER 2001=100 Tuition, other school fees, and childcare in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M06 +CUURS48ASEFJ S48A SEFJ U R S DECEMBER 2001=100 Dairy and related products in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASEFV S48A SEFV U R S DECEMBER 2001=100 Food away from home in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASEHA S48A SEHA U R S DECEMBER 2001=100 Rent of primary residence in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASEHC S48A SEHC U R S DECEMBER 2001=100 Owners' equivalent rent of residences in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASEHC01 S48A SEHC01 U R S DECEMBER 2001=100 Owners' equivalent rent of primary residence in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASEHF S48A SEHF U R S DECEMBER 2001=100 Energy services in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUURS48ASEHF01 S48A SEHF01 U R S DECEMBER 2001=100 Electricity in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUURS48ASEHF02 S48A SEHF02 U R S DECEMBER 2001=100 Utility (piped) gas service in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUURS48ASETA S48A SETA U R S DECEMBER 2001=100 New and used motor vehicles in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASETA01 S48A SETA01 U R S DECEMBER 2001=100 New vehicles in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASETA02 S48A SETA02 U R S DECEMBER 2001=100 Used cars and trucks in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASETB S48A SETB U R S DECEMBER 2001=100 Motor fuel in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASETB01 S48A SETB01 U R S DECEMBER 2001=100 Gasoline (all types) in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASETE S48A SETE U R S DECEMBER 2001=100 Motor vehicle insurance in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS48ASS47014 S48A SS47014 U R S DECEMBER 2001=100 Gasoline, unleaded regular in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASS47015 S48A SS47015 U R S DECEMBER 2001=100 Gasoline, unleaded midgrade in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48ASS47016 S48A SS47016 U R S DECEMBER 2001=100 Gasoline, unleaded premium in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48BAA0 S48B AA0 U R A 1967=100 All items - old base in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1964 M01 2025 M07 +CUURS48BSA0 S48B SA0 U R S 1982-84=100 All items in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1964 M01 2025 M07 +CUURS48BSA0E S48B SA0E U R S 1982-84=100 Energy in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUURS48BSA0L1E S48B SA0L1E U R S 1982-84=100 All items less food and energy in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1982 M01 2025 M07 +CUURS48BSA0L2 S48B SA0L2 U R S 1982-84=100 All items less shelter in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS48BSA0L5 S48B SA0L5 U R S 1982-84=100 All items less medical care in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS48BSA0LE S48B SA0LE U R S 1982-84=100 All items less energy in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1978 M01 2025 M07 +CUURS48BSAA S48B SAA U R S 1982-84=100 Apparel in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1971 M01 2025 M07 +CUURS48BSAC S48B SAC U R S 1982-84=100 Commodities in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS48BSACL1 S48B SACL1 U R S 1982-84=100 Commodities less food in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS48BSACL11 S48B SACL11 U R S 1982-84=100 Commodities less food and beverages in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS48BSAD S48B SAD U R S 1982-84=100 Durables in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS48BSAE S48B SAE U R S DECEMBER 1997=100 Education and communication in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1997 M12 2025 M07 +CUURS48BSAEC S48B SAEC U R S DECEMBER 2009=100 Education and communication commodities in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS48BSAES S48B SAES U R S DECEMBER 2009=100 Education and communication services in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS48BSAF S48B SAF U R S 1982-84=100 Food and beverages in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS48BSAF1 S48B SAF1 U R S 1982-84=100 Food in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1971 M01 2025 M07 +CUURS48BSAF11 S48B SAF11 U R S 1982-84=100 Food at home in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1971 M01 2025 M08 +CUURS48BSAF111 S48B SAF111 U R S 1982-84=100 Cereals and bakery products in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS48BSAF112 S48B SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS48BSAF113 S48B SAF113 U R S 1982-84=100 Fruits and vegetables in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS48BSAF114 S48B SAF114 U R S JANUARY 1978=100 Nonalcoholic beverages and beverage materials in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS48BSAF115 S48B SAF115 U R S 1982-84=100 Other food at home in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS48BSAF116 S48B SAF116 U R S 1982-84=100 Alcoholic beverages in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS48BSAG S48B SAG U R S 1982-84=100 Other goods and services in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS48BSAGC S48B SAGC U R S DECEMBER 2009=100 Other goods in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS48BSAGS S48B SAGS U R S DECEMBER 2009=100 Other personal services in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS48BSAH S48B SAH U R S 1982-84=100 Housing in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS48BSAH1 S48B SAH1 U R S 1982-84=100 Shelter in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1971 M01 2025 M08 +CUURS48BSAH2 S48B SAH2 U R S 1982-84=100 Fuels and utilities in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1971 M01 2024 M05 +CUURS48BSAH21 S48B SAH21 U R S 1982-84=100 Household energy in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1976 M01 2024 M05 +CUURS48BSAH3 S48B SAH3 U R S 1982-84=100 Household furnishings and operations in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS48BSAH31 S48B SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS48BSAM S48B SAM U R S 1982-84=100 Medical care in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1971 M01 2025 M07 +CUURS48BSAN S48B SAN U R S 1982-84=100 Nondurables in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS48BSANL1 S48B SANL1 U R S 1982-84=100 Nondurables less food in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS48BSANL11 S48B SANL11 U R S 1982-84=100 Nondurables less food and beverages in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS48BSAR S48B SAR U R S DECEMBER 1997=100 Recreation in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1997 M12 2025 M07 +CUURS48BSAS S48B SAS U R S 1982-84=100 Services in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS48BSASL2RS S48B SASL2RS U R S NOVEMBER 1982=100 Services less rent of shelter in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1982 M11 2025 M07 +CUURS48BSASL5 S48B SASL5 U R S 1982-84=100 Services less medical care services in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1976 M01 2025 M07 +CUURS48BSAT S48B SAT U R S 1982-84=100 Transportation in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1971 M01 2025 M07 +CUURS48BSAT1 S48B SAT1 U R S 1982-84=100 Private transportation in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1971 M01 2025 M07 +CUURS48BSATCLTB S48B SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS48BSEEB S48B SEEB U R S JANUARY 1978=100 Tuition, other school fees, and childcare in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS48BSEFJ S48B SEFJ U R S 1982-84=100 Dairy and related products in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS48BSEFV S48B SEFV U R S 1982-84=100 Food away from home in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1971 M01 2025 M07 +CUURS48BSEHA S48B SEHA U R S 1982-84=100 Rent of primary residence in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1971 M01 2025 M08 +CUURS48BSEHC S48B SEHC U R S NOVEMBER 1982=100 Owners' equivalent rent of residences in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS48BSEHC01 S48B SEHC01 U R S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS48BSEHF S48B SEHF U R S 1982-84=100 Energy services in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1971 M01 2024 M05 +CUURS48BSEHF01 S48B SEHF01 U R S 1982-84=100 Electricity in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1978 M01 2024 M05 +CUURS48BSEHF02 S48B SEHF02 U R S 1982-84=100 Utility (piped) gas service in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1978 M01 2019 M13 +CUURS48BSETA S48B SETA U R S DECEMBER 1997=100 New and used motor vehicles in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS48BSETA01 S48B SETA01 U R S JANUARY 1978=100 New vehicles in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS48BSETA02 S48B SETA02 U R S JANUARY 1978=100 Used cars and trucks in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS48BSETB S48B SETB U R S 1982-84=100 Motor fuel in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUURS48BSETB01 S48B SETB01 U R S 1982-84=100 Gasoline (all types) in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUURS48BSETE S48B SETE U R S JANUARY 1978=100 Motor vehicle insurance in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 M11 2021 M13 +CUURS48BSS47014 S48B SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1978 M06 2025 M08 +CUURS48BSS47015 S48B SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS48BSS47016 S48B SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS49AAA0 S49A AA0 U R A 1967=100 All items - old base in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS49ASA0 S49A SA0 U R S 1982-84=100 All items in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS49ASA0E S49A SA0E U R S 1982-84=100 Energy in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS49ASA0L1E S49A SA0L1E U R S 1982-84=100 All items less food and energy in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1982 M01 2025 M08 +CUURS49ASA0L2 S49A SA0L2 U R S 1982-84=100 All items less shelter in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS49ASA0L5 S49A SA0L5 U R S 1982-84=100 All items less medical care in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS49ASA0LE S49A SA0LE U R S 1982-84=100 All items less energy in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS49ASAA S49A SAA U R S 1982-84=100 Apparel in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS49ASAC S49A SAC U R S 1982-84=100 Commodities in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS49ASACL1 S49A SACL1 U R S 1982-84=100 Commodities less food in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS49ASACL11 S49A SACL11 U R S 1982-84=100 Commodities less food and beverages in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49ASAD S49A SAD U R S 1982-84=100 Durables in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS49ASAE S49A SAE U R S DECEMBER 1997=100 Education and communication in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS49ASAEC S49A SAEC U R S DECEMBER 2009=100 Education and communication commodities in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS49ASAES S49A SAES U R S DECEMBER 2009=100 Education and communication services in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS49ASAF S49A SAF U R S 1982-84=100 Food and beverages in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49ASAF1 S49A SAF1 U R S 1982-84=100 Food in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS49ASAF11 S49A SAF11 U R S 1982-84=100 Food at home in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1953 M01 2025 M08 +CUURS49ASAF111 S49A SAF111 U R S 1982-84=100 Cereals and bakery products in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49ASAF112 S49A SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49ASAF113 S49A SAF113 U R S 1982-84=100 Fruits and vegetables in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49ASAF114 S49A SAF114 U R S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49ASAF115 S49A SAF115 U R S 1982-84=100 Other food at home in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49ASAF116 S49A SAF116 U R S 1982-84=100 Alcoholic beverages in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49ASAG S49A SAG U R S 1982-84=100 Other goods and services in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49ASAGC S49A SAGC U R S DECEMBER 2009=100 Other goods in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS49ASAGS S49A SAGS U R S DECEMBER 2009=100 Other personal services in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS49ASAH S49A SAH U R S 1982-84=100 Housing in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49ASAH1 S49A SAH1 U R S 1982-84=100 Shelter in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS49ASAH2 S49A SAH2 U R S 1982-84=100 Fuels and utilities in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1952 M12 2024 M13 +CUURS49ASAH21 S49A SAH21 U R S 1982-84=100 Household energy in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1976 M01 2024 M13 +CUURS49ASAH3 S49A SAH3 U R S 1982-84=100 Household furnishings and operations in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49ASAH31 S49A SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS49ASAM S49A SAM U R S 1982-84=100 Medical care in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS49ASAN S49A SAN U R S 1982-84=100 Nondurables in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS49ASANL1 S49A SANL1 U R S 1982-84=100 Nondurables less food in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS49ASANL11 S49A SANL11 U R S 1982-84=100 Nondurables less food and beverages in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49ASAR S49A SAR U R S DECEMBER 1997=100 Recreation in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS49ASAS S49A SAS U R S 1982-84=100 Services in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS49ASASL2RS S49A SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS49ASASL5 S49A SASL5 U R S 1982-84=100 Services less medical care services in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1967 M01 2025 M08 +CUURS49ASAT S49A SAT U R S 1982-84=100 Transportation in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS49ASAT1 S49A SAT1 U R S 1982-84=100 Private transportation in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS49ASATCLTB S49A SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS49ASEEB S49A SEEB U R S DECEMBER 1977=100 Tuition, other school fees, and childcare in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49ASEFJ S49A SEFJ U R S 1982-84=100 Dairy and related products in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49ASEFV S49A SEFV U R S 1982-84=100 Food away from home in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS49ASEHA S49A SEHA U R S 1982-84=100 Rent of primary residence in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS49ASEHC S49A SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS49ASEHC01 S49A SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS49ASEHF S49A SEHF U R S 1982-84=100 Energy services in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1935 M03 2024 M13 +CUURS49ASEHF01 S49A SEHF01 U R S 1982-84=100 Electricity in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS49ASEHF02 S49A SEHF02 U R S 1982-84=100 Utility (piped) gas service in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS49ASETA S49A SETA U R S DECEMBER 1997=100 New and used motor vehicles in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49ASETA01 S49A SETA01 U R S DECEMBER 1977=100 New vehicles in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49ASETA02 S49A SETA02 U R S DECEMBER 1977=100 Used cars and trucks in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49ASETB S49A SETB U R S 1982-84=100 Motor fuel in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS49ASETB01 S49A SETB01 U R S 1982-84=100 Gasoline (all types) in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS49ASETE S49A SETE U R S DECEMBER 1977=100 Motor vehicle insurance in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS49ASS47014 S49A SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49ASS47015 S49A SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUURS49ASS47016 S49A SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS49BAA0 S49B AA0 U R A 1967=100 All items - old base in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS49BSA0 S49B SA0 U R S 1982-84=100 All items in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS49BSA0E S49B SA0E U R S 1982-84=100 Energy in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS49BSA0L1E S49B SA0L1E U R S 1982-84=100 All items less food and energy in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1982 M02 2025 M08 +CUURS49BSA0L2 S49B SA0L2 U R S 1982-84=100 All items less shelter in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS49BSA0L5 S49B SA0L5 U R S 1982-84=100 All items less medical care in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS49BSA0LE S49B SA0LE U R S 1982-84=100 All items less energy in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS49BSAA S49B SAA U R S 1982-84=100 Apparel in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS49BSAC S49B SAC U R S 1982-84=100 Commodities in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS49BSACL1 S49B SACL1 U R S 1982-84=100 Commodities less food in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS49BSACL11 S49B SACL11 U R S 1982-84=100 Commodities less food and beverages in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS49BSAD S49B SAD U R S 1982-84=100 Durables in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS49BSAE S49B SAE U R S DECEMBER 1997=100 Education and communication in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS49BSAEC S49B SAEC U R S DECEMBER 2009=100 Education and communication commodities in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS49BSAES S49B SAES U R S DECEMBER 2009=100 Education and communication services in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS49BSAF S49B SAF U R S 1982-84=100 Food and beverages in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS49BSAF1 S49B SAF1 U R S 1982-84=100 Food in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS49BSAF11 S49B SAF11 U R S 1982-84=100 Food at home in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1953 M01 2025 M08 +CUURS49BSAF111 S49B SAF111 U R S 1982-84=100 Cereals and bakery products in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49BSAF112 S49B SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49BSAF113 S49B SAF113 U R S 1982-84=100 Fruits and vegetables in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49BSAF114 S49B SAF114 U R S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49BSAF115 S49B SAF115 U R S 1982-84=100 Other food at home in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49BSAF116 S49B SAF116 U R S 1982-84=100 Alcoholic beverages in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS49BSAG S49B SAG U R S 1982-84=100 Other goods and services in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS49BSAGC S49B SAGC U R S DECEMBER 2009=100 Other goods in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS49BSAGS S49B SAGS U R S DECEMBER 2009=100 Other personal services in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS49BSAH S49B SAH U R S 1982-84=100 Housing in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS49BSAH1 S49B SAH1 U R S 1982-84=100 Shelter in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS49BSAH2 S49B SAH2 U R S 1982-84=100 Fuels and utilities in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1952 M12 2024 M13 +CUURS49BSAH21 S49B SAH21 U R S 1982-84=100 Household energy in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1976 M01 2024 M13 +CUURS49BSAH3 S49B SAH3 U R S 1982-84=100 Household furnishings and operations in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS49BSAH31 S49B SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS49BSAM S49B SAM U R S 1982-84=100 Medical care in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS49BSAN S49B SAN U R S 1982-84=100 Nondurables in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS49BSANL1 S49B SANL1 U R S 1982-84=100 Nondurables less food in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS49BSANL11 S49B SANL11 U R S 1982-84=100 Nondurables less food and beverages in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1975 M12 2025 M08 +CUURS49BSAR S49B SAR U R S DECEMBER 1997=100 Recreation in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS49BSAS S49B SAS U R S 1982-84=100 Services in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS49BSASL2RS S49B SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS49BSASL5 S49B SASL5 U R S 1982-84=100 Services less medical care services in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1966 M12 2025 M08 +CUURS49BSAT S49B SAT U R S 1982-84=100 Transportation in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS49BSAT1 S49B SAT1 U R S 1982-84=100 Private transportation in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS49BSATCLTB S49B SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS49BSEEB S49B SEEB U R S DECEMBER 1977=100 Tuition, other school fees, and childcare in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49BSEFJ S49B SEFJ U R S 1982-84=100 Dairy and related products in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49BSEFV S49B SEFV U R S 1982-84=100 Food away from home in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS49BSEHA S49B SEHA U R S 1982-84=100 Rent of primary residence in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS49BSEHC S49B SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS49BSEHC01 S49B SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS49BSEHF S49B SEHF U R S 1982-84=100 Energy services in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1935 M03 2024 M13 +CUURS49BSEHF01 S49B SEHF01 U R S 1982-84=100 Electricity in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS49BSEHF02 S49B SEHF02 U R S 1982-84=100 Utility (piped) gas service in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS49BSETA S49B SETA U R S DECEMBER 1997=100 New and used motor vehicles in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49BSETA01 S49B SETA01 U R S DECEMBER 1977=100 New vehicles in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49BSETA02 S49B SETA02 U R S DECEMBER 1977=100 Used cars and trucks in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49BSETB S49B SETB U R S 1982-84=100 Motor fuel in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS49BSETB01 S49B SETB01 U R S 1982-84=100 Gasoline (all types) in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS49BSETE S49B SETE U R S DECEMBER 1977=100 Motor vehicle insurance in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS49BSS47014 S49B SS47014 U R S 1982-84=100 Gasoline, unleaded regular in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49BSS47015 S49B SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1993 M12 2025 M08 +CUURS49BSS47016 S49B SS47016 U R S 1982-84=100 Gasoline, unleaded premium in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS49CSA0 S49C SA0 U R S DECEMBER 2017=100 All items in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSA0E S49C SA0E U R S DECEMBER 2017=100 Energy in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49CSA0L1E S49C SA0L1E U R S DECEMBER 2017=100 All items less food and energy in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSA0L2 S49C SA0L2 U R S DECEMBER 2017=100 All items less shelter in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSA0L5 S49C SA0L5 U R S DECEMBER 2017=100 All items less medical care in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSA0LE S49C SA0LE U R S DECEMBER 2017=100 All items less energy in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSAA S49C SAA U R S DECEMBER 2017=100 Apparel in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSAC S49C SAC U R S DECEMBER 2017=100 Commodities in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSACL1 S49C SACL1 U R S DECEMBER 2017=100 Commodities less food in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSACL11 S49C SACL11 U R S DECEMBER 2017=100 Commodities less food and beverages in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSAD S49C SAD U R S DECEMBER 2017=100 Durables in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSAE S49C SAE U R S DECEMBER 2017=100 Education and communication in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSAEC S49C SAEC U R S DECEMBER 2017=100 Education and communication commodities in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSAES S49C SAES U R S DECEMBER 2017=100 Education and communication services in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSAF S49C SAF U R S DECEMBER 2017=100 Food and beverages in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSAF1 S49C SAF1 U R S DECEMBER 2017=100 Food in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSAF11 S49C SAF11 U R S DECEMBER 2017=100 Food at home in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49CSAF111 S49C SAF111 U R S DECEMBER 2017=100 Cereals and bakery products in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M03 +CUURS49CSAF112 S49C SAF112 U R S DECEMBER 2017=100 Meats, poultry, fish, and eggs in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M03 +CUURS49CSAF113 S49C SAF113 U R S DECEMBER 2017=100 Fruits and vegetables in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49CSAF114 S49C SAF114 U R S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49CSAF115 S49C SAF115 U R S DECEMBER 2017=100 Other food at home in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49CSAF116 S49C SAF116 U R S DECEMBER 2017=100 Alcoholic beverages in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M03 +CUURS49CSAG S49C SAG U R S DECEMBER 2017=100 Other goods and services in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M03 +CUURS49CSAGC S49C SAGC U R S DECEMBER 2017=100 Other goods in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSAGS S49C SAGS U R S DECEMBER 2017=100 Other personal services in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M03 +CUURS49CSAH S49C SAH U R S DECEMBER 2017=100 Housing in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSAH1 S49C SAH1 U R S DECEMBER 2017=100 Shelter in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49CSAH2 S49C SAH2 U R S DECEMBER 2017=100 Fuels and utilities in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUURS49CSAH21 S49C SAH21 U R S DECEMBER 2017=100 Household energy in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUURS49CSAH3 S49C SAH3 U R S DECEMBER 2017=100 Household furnishings and operations in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSAH31 S49C SAH31 U R S DECEMBER 2017=100 Household furnishings and supplies in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSAM S49C SAM U R S DECEMBER 2017=100 Medical care in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSAN S49C SAN U R S DECEMBER 2017=100 Nondurables in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSANL1 S49C SANL1 U R S DECEMBER 2017=100 Nondurables less food in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSANL11 S49C SANL11 U R S DECEMBER 2017=100 Nondurables less food and beverages in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSAR S49C SAR U R S DECEMBER 2017=100 Recreation in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSAS S49C SAS U R S DECEMBER 2017=100 Services in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSASL2RS S49C SASL2RS U R S DECEMBER 2017=100 Services less rent of shelter in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSASL5 S49C SASL5 U R S DECEMBER 2017=100 Services less medical care services in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSAT S49C SAT U R S DECEMBER 2017=100 Transportation in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSAT1 S49C SAT1 U R S DECEMBER 2017=100 Private transportation in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSATCLTB S49C SATCLTB U R S DECEMBER 2017=100 Transportation commodities less motor fuel in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSEEB S49C SEEB U R S DECEMBER 2017=100 Tuition, other school fees, and childcare in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSEFJ S49C SEFJ U R S DECEMBER 2017=100 Dairy and related products in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49CSEFV S49C SEFV U R S DECEMBER 2017=100 Food away from home in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSEHA S49C SEHA U R S DECEMBER 2017=100 Rent of primary residence in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49CSEHC S49C SEHC U R S DECEMBER 2017=100 Owners' equivalent rent of residences in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49CSEHC01 S49C SEHC01 U R S DECEMBER 2017=100 Owners' equivalent rent of primary residence in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49CSEHF S49C SEHF U R S DECEMBER 2017=100 Energy services in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUURS49CSEHF01 S49C SEHF01 U R S DECEMBER 2017=100 Electricity in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUURS49CSEHF02 S49C SEHF02 U R S DECEMBER 2017=100 Utility (piped) gas service in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2024 M13 +CUURS49CSETA S49C SETA U R S DECEMBER 2017=100 New and used motor vehicles in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSETA01 S49C SETA01 U R S DECEMBER 2017=100 New vehicles in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSETA02 S49C SETA02 U R S DECEMBER 2017=100 Used cars and trucks in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M07 +CUURS49CSETB S49C SETB U R S DECEMBER 2017=100 Motor fuel in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49CSETB01 S49C SETB01 U R S DECEMBER 2017=100 Gasoline (all types) in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49CSETE S49C SETE U R S DECEMBER 2017=100 Motor vehicle insurance in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS49CSS47014 S49C SS47014 U R S DECEMBER 2017=100 Gasoline, unleaded regular in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49CSS47015 S49C SS47015 U R S DECEMBER 2017=100 Gasoline, unleaded midgrade in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49CSS47016 S49C SS47016 U R S DECEMBER 2017=100 Gasoline, unleaded premium in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49DAA0 S49D AA0 U R A 1967=100 All items - old base in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS49DSA0 S49D SA0 U R S 1982-84=100 All items in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS49DSA0E S49D SA0E U R S 1982-84=100 Energy in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS49DSA0L1E S49D SA0L1E U R S 1982-84=100 All items less food and energy in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1982 M01 2025 M08 +CUURS49DSA0L2 S49D SA0L2 U R S 1982-84=100 All items less shelter in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1975 M11 2025 M08 +CUURS49DSA0L5 S49D SA0L5 U R S 1982-84=100 All items less medical care in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1966 M11 2025 M08 +CUURS49DSA0LE S49D SA0LE U R S 1982-84=100 All items less energy in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS49DSAA S49D SAA U R S 1982-84=100 Apparel in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1952 M11 2025 M08 +CUURS49DSAC S49D SAC U R S 1982-84=100 Commodities in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1966 M11 2025 M08 +CUURS49DSACL1 S49D SACL1 U R S 1982-84=100 Commodities less food in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1966 M11 2025 M08 +CUURS49DSACL11 S49D SACL11 U R S 1982-84=100 Commodities less food and beverages in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1975 M11 2025 M08 +CUURS49DSAD S49D SAD U R S 1982-84=100 Durables in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1966 M11 2025 M08 +CUURS49DSAE S49D SAE U R S DECEMBER 1997=100 Education and communication in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS49DSAEC S49D SAEC U R S DECEMBER 2009=100 Education and communication commodities in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS49DSAES S49D SAES U R S DECEMBER 2009=100 Education and communication services in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS49DSAF S49D SAF U R S 1982-84=100 Food and beverages in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1975 M11 2025 M08 +CUURS49DSAF1 S49D SAF1 U R S 1982-84=100 Food in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS49DSAF11 S49D SAF11 U R S 1982-84=100 Food at home in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1953 M01 2025 M08 +CUURS49DSAF111 S49D SAF111 U R S 1982-84=100 Cereals and bakery products in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49DSAF112 S49D SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49DSAF113 S49D SAF113 U R S 1982-84=100 Fruits and vegetables in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49DSAF114 S49D SAF114 U R S NOVEMBER 1977=100 Nonalcoholic beverages and beverage materials in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49DSAF115 S49D SAF115 U R S 1982-84=100 Other food at home in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49DSAF116 S49D SAF116 U R S 1982-84=100 Alcoholic beverages in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1975 M11 2025 M08 +CUURS49DSAG S49D SAG U R S 1982-84=100 Other goods and services in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1975 M11 2025 M08 +CUURS49DSAGC S49D SAGC U R S DECEMBER 2009=100 Other goods in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS49DSAGS S49D SAGS U R S DECEMBER 2009=100 Other personal services in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2009 M12 2022 M04 +CUURS49DSAH S49D SAH U R S 1982-84=100 Housing in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1975 M11 2025 M08 +CUURS49DSAH1 S49D SAH1 U R S 1982-84=100 Shelter in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1952 M11 2025 M08 +CUURS49DSAH2 S49D SAH2 U R S 1982-84=100 Fuels and utilities in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1952 M11 2024 M13 +CUURS49DSAH21 S49D SAH21 U R S 1982-84=100 Household energy in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1976 M01 2024 M13 +CUURS49DSAH3 S49D SAH3 U R S 1982-84=100 Household furnishings and operations in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1975 M11 2025 M08 +CUURS49DSAH31 S49D SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS49DSAM S49D SAM U R S 1982-84=100 Medical care in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS49DSAN S49D SAN U R S 1982-84=100 Nondurables in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1966 M11 2025 M08 +CUURS49DSANL1 S49D SANL1 U R S 1982-84=100 Nondurables less food in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1966 M11 2025 M08 +CUURS49DSANL11 S49D SANL11 U R S 1982-84=100 Nondurables less food and beverages in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1975 M11 2025 M08 +CUURS49DSAR S49D SAR U R S DECEMBER 1997=100 Recreation in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS49DSAS S49D SAS U R S 1982-84=100 Services in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1966 M11 2025 M08 +CUURS49DSASL2RS S49D SASL2RS U R S NOVEMBER 1982=100 Services less rent of shelter in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS49DSASL5 S49D SASL5 U R S 1982-84=100 Services less medical care services in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1966 M11 2025 M08 +CUURS49DSAT S49D SAT U R S 1982-84=100 Transportation in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS49DSAT1 S49D SAT1 U R S 1982-84=100 Private transportation in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1947 M01 2025 M08 +CUURS49DSATCLTB S49D SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2009 M12 2025 M08 +CUURS49DSEEB S49D SEEB U R S NOVEMBER 1977=100 Tuition, other school fees, and childcare in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49DSEFJ S49D SEFJ U R S 1982-84=100 Dairy and related products in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49DSEFV S49D SEFV U R S 1982-84=100 Food away from home in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1952 M12 2025 M08 +CUURS49DSEHA S49D SEHA U R S 1982-84=100 Rent of primary residence in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1914 M12 2025 M08 +CUURS49DSEHC S49D SEHC U R S NOVEMBER 1982=100 Owners' equivalent rent of residences in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS49DSEHC01 S49D SEHC01 U R S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS49DSEHF S49D SEHF U R S 1982-84=100 Energy services in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1935 M03 2024 M13 +CUURS49DSEHF01 S49D SEHF01 U R S 1982-84=100 Electricity in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS49DSEHF02 S49D SEHF02 U R S 1982-84=100 Utility (piped) gas service in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS49DSETA S49D SETA U R S DECEMBER 1997=100 New and used motor vehicles in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49DSETA01 S49D SETA01 U R S NOVEMBER 1977=100 New vehicles in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49DSETA02 S49D SETA02 U R S NOVEMBER 1977=100 Used cars and trucks in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49DSETB S49D SETB U R S 1982-84=100 Motor fuel in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS49DSETB01 S49D SETB01 U R S 1982-84=100 Gasoline (all types) in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS49DSETE S49D SETE U R S NOVEMBER 1977=100 Motor vehicle insurance in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS49DSS47014 S49D SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49DSS47015 S49D SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS49DSS47016 S49D SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS49EAA0 S49E AA0 U R A 1967=100 All items - old base in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1965 M02 2025 M07 +CUURS49ESA0 S49E SA0 U R S 1982-84=100 All items in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1965 M02 2025 M07 +CUURS49ESA0E S49E SA0E U R S 1982-84=100 Energy in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS49ESA0L1E S49E SA0L1E U R S 1982-84=100 All items less food and energy in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1982 M01 2025 M07 +CUURS49ESA0L2 S49E SA0L2 U R S 1982-84=100 All items less shelter in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS49ESA0L5 S49E SA0L5 U R S 1982-84=100 All items less medical care in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS49ESA0LE S49E SA0LE U R S 1982-84=100 All items less energy in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1977 M11 2025 M07 +CUURS49ESAA S49E SAA U R S 1982-84=100 Apparel in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1965 M02 2025 M07 +CUURS49ESAC S49E SAC U R S 1982-84=100 Commodities in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS49ESACL1 S49E SACL1 U R S 1982-84=100 Commodities less food in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS49ESACL11 S49E SACL11 U R S 1982-84=100 Commodities less food and beverages in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1975 M11 2025 M07 +CUURS49ESAD S49E SAD U R S 1982-84=100 Durables in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS49ESAE S49E SAE U R S DECEMBER 1997=100 Education and communication in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1997 M12 2025 M07 +CUURS49ESAEC S49E SAEC U R S DECEMBER 2009=100 Education and communication commodities in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49ESAES S49E SAES U R S DECEMBER 2009=100 Education and communication services in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49ESAF S49E SAF U R S 1982-84=100 Food and beverages in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1975 M11 2025 M07 +CUURS49ESAF1 S49E SAF1 U R S 1982-84=100 Food in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1965 M02 2025 M07 +CUURS49ESAF11 S49E SAF11 U R S 1982-84=100 Food at home in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1965 M02 2025 M08 +CUURS49ESAF111 S49E SAF111 U R S 1982-84=100 Cereals and bakery products in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS49ESAF112 S49E SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS49ESAF113 S49E SAF113 U R S 1982-84=100 Fruits and vegetables in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS49ESAF114 S49E SAF114 U R S NOVEMBER 1977=100 Nonalcoholic beverages and beverage materials in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS49ESAF115 S49E SAF115 U R S 1982-84=100 Other food at home in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS49ESAF116 S49E SAF116 U R S 1982-84=100 Alcoholic beverages in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1975 M11 2025 M07 +CUURS49ESAG S49E SAG U R S 1982-84=100 Other goods and services in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1975 M11 2025 M07 +CUURS49ESAGC S49E SAGC U R S DECEMBER 2009=100 Other goods in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49ESAGS S49E SAGS U R S DECEMBER 2009=100 Other personal services in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49ESAH S49E SAH U R S 1982-84=100 Housing in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1975 M11 2025 M07 +CUURS49ESAH1 S49E SAH1 U R S 1982-84=100 Shelter in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1965 M02 2025 M08 +CUURS49ESAH2 S49E SAH2 U R S 1982-84=100 Fuels and utilities in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1965 M02 2024 M13 +CUURS49ESAH21 S49E SAH21 U R S 1982-84=100 Household energy in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1976 M01 2024 M13 +CUURS49ESAH3 S49E SAH3 U R S 1982-84=100 Household furnishings and operations in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1975 M11 2025 M07 +CUURS49ESAH31 S49E SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49ESAM S49E SAM U R S 1982-84=100 Medical care in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1965 M02 2025 M07 +CUURS49ESAN S49E SAN U R S 1982-84=100 Nondurables in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS49ESANL1 S49E SANL1 U R S 1982-84=100 Nondurables less food in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS49ESANL11 S49E SANL11 U R S 1982-84=100 Nondurables less food and beverages in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1975 M11 2025 M07 +CUURS49ESAR S49E SAR U R S DECEMBER 1997=100 Recreation in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1997 M12 2025 M07 +CUURS49ESAS S49E SAS U R S 1982-84=100 Services in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS49ESASL2RS S49E SASL2RS U R S NOVEMBER 1982=100 Services less rent of shelter in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1982 M11 2025 M07 +CUURS49ESASL5 S49E SASL5 U R S 1982-84=100 Services less medical care services in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1966 M11 2025 M07 +CUURS49ESAT S49E SAT U R S 1982-84=100 Transportation in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1965 M02 2025 M07 +CUURS49ESAT1 S49E SAT1 U R S 1982-84=100 Private transportation in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1965 M02 2025 M07 +CUURS49ESATCLTB S49E SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49ESEEB S49E SEEB U R S NOVEMBER 1977=100 Tuition, other school fees, and childcare in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49ESEFJ S49E SEFJ U R S 1982-84=100 Dairy and related products in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS49ESEFV S49E SEFV U R S 1982-84=100 Food away from home in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1965 M02 2025 M07 +CUURS49ESEHA S49E SEHA U R S 1982-84=100 Rent of primary residence in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1965 M02 2025 M08 +CUURS49ESEHC S49E SEHC U R S NOVEMBER 1982=100 Owners' equivalent rent of residences in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS49ESEHC01 S49E SEHC01 U R S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS49ESEHF S49E SEHF U R S 1982-84=100 Energy services in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1965 M02 2024 M13 +CUURS49ESEHF01 S49E SEHF01 U R S 1982-84=100 Electricity in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS49ESEHF02 S49E SEHF02 U R S 1982-84=100 Utility (piped) gas service in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS49ESETA S49E SETA U R S DECEMBER 1997=100 New and used motor vehicles in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49ESETA01 S49E SETA01 U R S NOVEMBER 1977=100 New vehicles in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49ESETA02 S49E SETA02 U R S NOVEMBER 1977=100 Used cars and trucks in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49ESETB S49E SETB U R S 1982-84=100 Motor fuel in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS49ESETB01 S49E SETB01 U R S 1982-84=100 Gasoline (all types) in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1977 M11 2025 M08 +CUURS49ESETE S49E SETE U R S NOVEMBER 1977=100 Motor vehicle insurance in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 M11 2021 M13 +CUURS49ESS47014 S49E SS47014 U R S 1982-84=100 Gasoline, unleaded regular in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49ESS47015 S49E SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49ESS47016 S49E SS47016 U R S 1982-84=100 Gasoline, unleaded premium in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS49FAA0 S49F AA0 U R A 1967=100 All items - old base in Urban Hawaii, all urban consumers, not seasonally adjusted 1963 M12 2025 M07 +CUURS49FSA0 S49F SA0 U R S 1982-84=100 All items in Urban Hawaii, all urban consumers, not seasonally adjusted 1963 M12 2025 M07 +CUURS49FSA0E S49F SA0E U R S 1982-84=100 Energy in Urban Hawaii, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS49FSA0L1E S49F SA0L1E U R S 1982-84=100 All items less food and energy in Urban Hawaii, all urban consumers, not seasonally adjusted 1982 M02 2025 M07 +CUURS49FSA0L2 S49F SA0L2 U R S 1982-84=100 All items less shelter in Urban Hawaii, all urban consumers, not seasonally adjusted 1975 M12 2025 M07 +CUURS49FSA0L5 S49F SA0L5 U R S 1982-84=100 All items less medical care in Urban Hawaii, all urban consumers, not seasonally adjusted 1966 M12 2025 M07 +CUURS49FSA0LE S49F SA0LE U R S 1982-84=100 All items less energy in Urban Hawaii, all urban consumers, not seasonally adjusted 1977 M12 2025 M07 +CUURS49FSAA S49F SAA U R S 1982-84=100 Apparel in Urban Hawaii, all urban consumers, not seasonally adjusted 1963 M12 2025 M07 +CUURS49FSAC S49F SAC U R S 1982-84=100 Commodities in Urban Hawaii, all urban consumers, not seasonally adjusted 1966 M12 2025 M07 +CUURS49FSACL1 S49F SACL1 U R S 1982-84=100 Commodities less food in Urban Hawaii, all urban consumers, not seasonally adjusted 1966 M12 2025 M07 +CUURS49FSACL11 S49F SACL11 U R S 1982-84=100 Commodities less food and beverages in Urban Hawaii, all urban consumers, not seasonally adjusted 1975 M12 2025 M07 +CUURS49FSAD S49F SAD U R S 1982-84=100 Durables in Urban Hawaii, all urban consumers, not seasonally adjusted 1966 M12 2025 M07 +CUURS49FSAE S49F SAE U R S DECEMBER 1997=100 Education and communication in Urban Hawaii, all urban consumers, not seasonally adjusted 1997 M12 2025 M07 +CUURS49FSAEC S49F SAEC U R S DECEMBER 2009=100 Education and communication commodities in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49FSAES S49F SAES U R S DECEMBER 2009=100 Education and communication services in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49FSAF S49F SAF U R S 1982-84=100 Food and beverages in Urban Hawaii, all urban consumers, not seasonally adjusted 1975 M12 2025 M07 +CUURS49FSAF1 S49F SAF1 U R S 1982-84=100 Food in Urban Hawaii, all urban consumers, not seasonally adjusted 1963 M12 2025 M07 +CUURS49FSAF11 S49F SAF11 U R S 1982-84=100 Food at home in Urban Hawaii, all urban consumers, not seasonally adjusted 1963 M12 2025 M08 +CUURS49FSAF111 S49F SAF111 U R S 1982-84=100 Cereals and bakery products in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS49FSAF112 S49F SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS49FSAF113 S49F SAF113 U R S 1982-84=100 Fruits and vegetables in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS49FSAF114 S49F SAF114 U R S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS49FSAF115 S49F SAF115 U R S 1982-84=100 Other food at home in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS49FSAF116 S49F SAF116 U R S 1982-84=100 Alcoholic beverages in Urban Hawaii, all urban consumers, not seasonally adjusted 1975 M12 2025 M07 +CUURS49FSAG S49F SAG U R S 1982-84=100 Other goods and services in Urban Hawaii, all urban consumers, not seasonally adjusted 1975 M12 2025 M07 +CUURS49FSAGC S49F SAGC U R S DECEMBER 2009=100 Other goods in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49FSAGS S49F SAGS U R S DECEMBER 2009=100 Other personal services in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 M11 2024 M05 +CUURS49FSAH S49F SAH U R S 1982-84=100 Housing in Urban Hawaii, all urban consumers, not seasonally adjusted 1975 M12 2025 M07 +CUURS49FSAH1 S49F SAH1 U R S 1982-84=100 Shelter in Urban Hawaii, all urban consumers, not seasonally adjusted 1963 M12 2025 M08 +CUURS49FSAH2 S49F SAH2 U R S 1982-84=100 Fuels and utilities in Urban Hawaii, all urban consumers, not seasonally adjusted 1963 M12 2024 M13 +CUURS49FSAH21 S49F SAH21 U R S 1982-84=100 Household energy in Urban Hawaii, all urban consumers, not seasonally adjusted 1976 M01 2024 M13 +CUURS49FSAH3 S49F SAH3 U R S 1982-84=100 Household furnishings and operations in Urban Hawaii, all urban consumers, not seasonally adjusted 1975 M12 2025 M07 +CUURS49FSAH31 S49F SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49FSAM S49F SAM U R S 1982-84=100 Medical care in Urban Hawaii, all urban consumers, not seasonally adjusted 1963 M12 2025 M07 +CUURS49FSAN S49F SAN U R S 1982-84=100 Nondurables in Urban Hawaii, all urban consumers, not seasonally adjusted 1966 M12 2025 M07 +CUURS49FSANL1 S49F SANL1 U R S 1982-84=100 Nondurables less food in Urban Hawaii, all urban consumers, not seasonally adjusted 1966 M12 2025 M07 +CUURS49FSANL11 S49F SANL11 U R S 1982-84=100 Nondurables less food and beverages in Urban Hawaii, all urban consumers, not seasonally adjusted 1975 M12 2025 M07 +CUURS49FSAR S49F SAR U R S DECEMBER 1997=100 Recreation in Urban Hawaii, all urban consumers, not seasonally adjusted 1997 M12 2025 M07 +CUURS49FSAS S49F SAS U R S 1982-84=100 Services in Urban Hawaii, all urban consumers, not seasonally adjusted 1966 M12 2025 M07 +CUURS49FSASL2RS S49F SASL2RS U R S DECEMBER 1982=100 Services less rent of shelter in Urban Hawaii, all urban consumers, not seasonally adjusted 1982 M12 2025 M07 +CUURS49FSASL5 S49F SASL5 U R S 1982-84=100 Services less medical care services in Urban Hawaii, all urban consumers, not seasonally adjusted 1966 M12 2025 M07 +CUURS49FSAT S49F SAT U R S 1982-84=100 Transportation in Urban Hawaii, all urban consumers, not seasonally adjusted 1963 M12 2025 M07 +CUURS49FSAT1 S49F SAT1 U R S 1982-84=100 Private transportation in Urban Hawaii, all urban consumers, not seasonally adjusted 1963 M12 2025 M07 +CUURS49FSATCLTB S49F SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49FSEEB S49F SEEB U R S DECEMBER 1977=100 Tuition, other school fees, and childcare in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49FSEFJ S49F SEFJ U R S 1982-84=100 Dairy and related products in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 M11 2025 M08 +CUURS49FSEFV S49F SEFV U R S 1982-84=100 Food away from home in Urban Hawaii, all urban consumers, not seasonally adjusted 1963 M12 2025 M07 +CUURS49FSEHA S49F SEHA U R S 1982-84=100 Rent of primary residence in Urban Hawaii, all urban consumers, not seasonally adjusted 1963 M12 2025 M08 +CUURS49FSEHC S49F SEHC U R S DECEMBER 1982=100 Owners' equivalent rent of residences in Urban Hawaii, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS49FSEHC01 S49F SEHC01 U R S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Urban Hawaii, all urban consumers, not seasonally adjusted 1982 M12 2025 M08 +CUURS49FSEHF S49F SEHF U R S 1982-84=100 Energy services in Urban Hawaii, all urban consumers, not seasonally adjusted 1963 M12 2024 M13 +CUURS49FSEHF01 S49F SEHF01 U R S 1982-84=100 Electricity in Urban Hawaii, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS49FSEHF02 S49F SEHF02 U R S 1982-84=100 Utility (piped) gas service in Urban Hawaii, all urban consumers, not seasonally adjusted 1971 M05 2024 M13 +CUURS49FSETA S49F SETA U R S DECEMBER 1997=100 New and used motor vehicles in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49FSETA01 S49F SETA01 U R S DECEMBER 1977=100 New vehicles in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49FSETA02 S49F SETA02 U R S DECEMBER 1977=100 Used cars and trucks in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 M11 2025 M07 +CUURS49FSETB S49F SETB U R S 1982-84=100 Motor fuel in Urban Hawaii, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS49FSETB01 S49F SETB01 U R S 1982-84=100 Gasoline (all types) in Urban Hawaii, all urban consumers, not seasonally adjusted 1977 M12 2025 M08 +CUURS49FSETE S49F SETE U R S DECEMBER 1977=100 Motor vehicle insurance in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 M11 2021 M13 +CUURS49FSS47014 S49F SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Urban Hawaii, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49FSS47015 S49F SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49FSS47016 S49F SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Urban Hawaii, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUURS49GAA0 S49G AA0 U R A OCTOBER 1967=100 All items - old base in Urban Alaska, all urban consumers, not seasonally adjusted 1960 M05 2025 M08 +CUURS49GSA0 S49G SA0 U R S 1982-84=100 All items in Urban Alaska, all urban consumers, not seasonally adjusted 1960 M05 2025 M08 +CUURS49GSA0E S49G SA0E U R S 1982-84=100 Energy in Urban Alaska, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUURS49GSA0L1E S49G SA0L1E U R S 1982-84=100 All items less food and energy in Urban Alaska, all urban consumers, not seasonally adjusted 1982 M01 2025 M08 +CUURS49GSA0L2 S49G SA0L2 U R S 1982-84=100 All items less shelter in Urban Alaska, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49GSA0L5 S49G SA0L5 U R S 1982-84=100 All items less medical care in Urban Alaska, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49GSA0LE S49G SA0LE U R S 1982-84=100 All items less energy in Urban Alaska, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUURS49GSAA S49G SAA U R S 1982-84=100 Apparel in Urban Alaska, all urban consumers, not seasonally adjusted 1971 M01 2025 M08 +CUURS49GSAC S49G SAC U R S 1982-84=100 Commodities in Urban Alaska, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49GSACL1 S49G SACL1 U R S 1982-84=100 Commodities less food in Urban Alaska, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49GSACL11 S49G SACL11 U R S 1982-84=100 Commodities less food and beverages in Urban Alaska, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49GSAD S49G SAD U R S 1982-84=100 Durables in Urban Alaska, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49GSAE S49G SAE U R S DECEMBER 1997=100 Education and communication in Urban Alaska, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS49GSAEC S49G SAEC U R S DECEMBER 2009=100 Education and communication commodities in Urban Alaska, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49GSAES S49G SAES U R S DECEMBER 2009=100 Education and communication services in Urban Alaska, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49GSAF S49G SAF U R S 1982-84=100 Food and beverages in Urban Alaska, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49GSAF1 S49G SAF1 U R S 1982-84=100 Food in Urban Alaska, all urban consumers, not seasonally adjusted 1971 M01 2025 M08 +CUURS49GSAF11 S49G SAF11 U R S 1982-84=100 Food at home in Urban Alaska, all urban consumers, not seasonally adjusted 1972 M01 2025 M08 +CUURS49GSAF111 S49G SAF111 U R S 1982-84=100 Cereals and bakery products in Urban Alaska, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49GSAF112 S49G SAF112 U R S 1982-84=100 Meats, poultry, fish, and eggs in Urban Alaska, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49GSAF113 S49G SAF113 U R S 1982-84=100 Fruits and vegetables in Urban Alaska, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49GSAF114 S49G SAF114 U R S JANUARY 1978=100 Nonalcoholic beverages and beverage materials in Urban Alaska, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49GSAF115 S49G SAF115 U R S 1982-84=100 Other food at home in Urban Alaska, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49GSAF116 S49G SAF116 U R S 1982-84=100 Alcoholic beverages in Urban Alaska, all urban consumers, not seasonally adjusted 1976 M01 2025 M06 +CUURS49GSAG S49G SAG U R S 1982-84=100 Other goods and services in Urban Alaska, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49GSAGC S49G SAGC U R S DECEMBER 2009=100 Other goods in Urban Alaska, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49GSAGS S49G SAGS U R S DECEMBER 2009=100 Other personal services in Urban Alaska, all urban consumers, not seasonally adjusted 2018 M02 2025 M08 +CUURS49GSAH S49G SAH U R S 1982-84=100 Housing in Urban Alaska, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49GSAH1 S49G SAH1 U R S 1982-84=100 Shelter in Urban Alaska, all urban consumers, not seasonally adjusted 1971 M01 2025 M08 +CUURS49GSAH2 S49G SAH2 U R S 1982-84=100 Fuels and utilities in Urban Alaska, all urban consumers, not seasonally adjusted 1971 M01 2024 M13 +CUURS49GSAH21 S49G SAH21 U R S 1982-84=100 Household energy in Urban Alaska, all urban consumers, not seasonally adjusted 1976 M01 2024 M13 +CUURS49GSAH3 S49G SAH3 U R S 1982-84=100 Household furnishings and operations in Urban Alaska, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49GSAH31 S49G SAH31 U R S DECEMBER 2009=100 Household furnishings and supplies in Urban Alaska, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49GSAM S49G SAM U R S 1982-84=100 Medical care in Urban Alaska, all urban consumers, not seasonally adjusted 1971 M01 2025 M08 +CUURS49GSAN S49G SAN U R S 1982-84=100 Nondurables in Urban Alaska, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49GSANL1 S49G SANL1 U R S 1982-84=100 Nondurables less food in Urban Alaska, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49GSANL11 S49G SANL11 U R S 1982-84=100 Nondurables less food and beverages in Urban Alaska, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49GSAR S49G SAR U R S DECEMBER 1997=100 Recreation in Urban Alaska, all urban consumers, not seasonally adjusted 1997 M12 2025 M08 +CUURS49GSAS S49G SAS U R S 1982-84=100 Services in Urban Alaska, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49GSASL2RS S49G SASL2RS U R S NOVEMBER 1982=100 Services less rent of shelter in Urban Alaska, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS49GSASL5 S49G SASL5 U R S 1982-84=100 Services less medical care services in Urban Alaska, all urban consumers, not seasonally adjusted 1976 M01 2025 M08 +CUURS49GSAT S49G SAT U R S 1982-84=100 Transportation in Urban Alaska, all urban consumers, not seasonally adjusted 1971 M01 2025 M08 +CUURS49GSAT1 S49G SAT1 U R S 1982-84=100 Private transportation in Urban Alaska, all urban consumers, not seasonally adjusted 1971 M01 2025 M08 +CUURS49GSATCLTB S49G SATCLTB U R S DECEMBER 2009=100 Transportation commodities less motor fuel in Urban Alaska, all urban consumers, not seasonally adjusted 2018 M02 2025 M08 +CUURS49GSEEB S49G SEEB U R S JANUARY 1978=100 Tuition, other school fees, and childcare in Urban Alaska, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49GSEFJ S49G SEFJ U R S 1982-84=100 Dairy and related products in Urban Alaska, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49GSEFV S49G SEFV U R S 1982-84=100 Food away from home in Urban Alaska, all urban consumers, not seasonally adjusted 1972 M01 2025 M08 +CUURS49GSEHA S49G SEHA U R S 1982-84=100 Rent of primary residence in Urban Alaska, all urban consumers, not seasonally adjusted 1971 M01 2025 M08 +CUURS49GSEHC S49G SEHC U R S NOVEMBER 1982=100 Owners' equivalent rent of residences in Urban Alaska, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS49GSEHC01 S49G SEHC01 U R S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Urban Alaska, all urban consumers, not seasonally adjusted 1982 M11 2025 M08 +CUURS49GSEHF S49G SEHF U R S 1982-84=100 Energy services in Urban Alaska, all urban consumers, not seasonally adjusted 1971 M01 2024 M13 +CUURS49GSEHF01 S49G SEHF01 U R S 1982-84=100 Electricity in Urban Alaska, all urban consumers, not seasonally adjusted 1978 M01 2024 M13 +CUURS49GSEHF02 S49G SEHF02 U R S 1982-84=100 Utility (piped) gas service in Urban Alaska, all urban consumers, not seasonally adjusted 1978 M01 2024 M13 +CUURS49GSETA S49G SETA U R S DECEMBER 1997=100 New and used motor vehicles in Urban Alaska, all urban consumers, not seasonally adjusted 2017 M13 2025 M08 +CUURS49GSETA01 S49G SETA01 U R S JANUARY 1978=100 New vehicles in Urban Alaska, all urban consumers, not seasonally adjusted 2017 M13 2025 M08 +CUURS49GSETA02 S49G SETA02 U R S JANUARY 1978=100 Used cars and trucks in Urban Alaska, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49GSETB S49G SETB U R S 1982-84=100 Motor fuel in Urban Alaska, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUURS49GSETB01 S49G SETB01 U R S 1982-84=100 Gasoline (all types) in Urban Alaska, all urban consumers, not seasonally adjusted 1978 M01 2025 M08 +CUURS49GSETE S49G SETE U R S JANUARY 1978=100 Motor vehicle insurance in Urban Alaska, all urban consumers, not seasonally adjusted 2017 M12 2021 M13 +CUURS49GSS47014 S49G SS47014 U R S 1982-84=100 Gasoline, unleaded regular in Urban Alaska, all urban consumers, not seasonally adjusted 1978 M06 2025 M08 +CUURS49GSS47015 S49G SS47015 U R S DECEMBER 1993=100 Gasoline, unleaded midgrade in Urban Alaska, all urban consumers, not seasonally adjusted 2017 M12 2025 M08 +CUURS49GSS47016 S49G SS47016 U R S 1982-84=100 Gasoline, unleaded premium in Urban Alaska, all urban consumers, not seasonally adjusted 1981 M08 2025 M08 +CUUS0000AA0 0000 AA0 U S A 1967=100 All items - old base in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SA0 0000 SA0 U S S 1982-84=100 All items in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SA0E 0000 SA0E U S S 1982-84=100 Energy in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SA0L1 0000 SA0L1 U S S 1982-84=100 All items less food in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SA0L12 0000 SA0L12 U S S 1982-84=100 All items less food and shelter in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SA0L12E 0000 SA0L12E U S S 1982-84=100 All items less food, shelter, and energy in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SA0L12E4 0000 SA0L12E4 U S S 1982-84=100 All items less food, shelter, energy, and used cars and trucks in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SA0L1E 0000 SA0L1E U S S 1982-84=100 All items less food and energy in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SA0L2 0000 SA0L2 U S S 1982-84=100 All items less shelter in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SA0L5 0000 SA0L5 U S S 1982-84=100 All items less medical care in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SA0LE 0000 SA0LE U S S 1982-84=100 All items less energy in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SA311 0000 SA311 U S S 1982-84=100 Apparel less footwear in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SAA 0000 SAA U S S 1982-84=100 Apparel in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAA1 0000 SAA1 U S S 1982-84=100 Men's and boys' apparel in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAA2 0000 SAA2 U S S 1982-84=100 Women's and girls' apparel in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAC 0000 SAC U S S 1982-84=100 Commodities in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SACE 0000 SACE U S S 1982-84=100 Energy commodities in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SACL1 0000 SACL1 U S S 1982-84=100 Commodities less food in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SACL11 0000 SACL11 U S S 1982-84=100 Commodities less food and beverages in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SACL1E 0000 SACL1E U S S 1982-84=100 Commodities less food and energy commodities in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SACL1E4 0000 SACL1E4 U S S 1982-84=100 Commodities less food, energy, and used cars and trucks in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SAD 0000 SAD U S S 1982-84=100 Durables in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAE 0000 SAE U S S DECEMBER 1997=100 Education and communication in U.S. city average, all urban consumers, not seasonally adjusted 1993 S01 2025 S01 +CUUS0000SAE1 0000 SAE1 U S S DECEMBER 1997=100 Education in U.S. city average, all urban consumers, not seasonally adjusted 1993 S01 2025 S01 +CUUS0000SAE2 0000 SAE2 U S S DECEMBER 1997=100 Communication in U.S. city average, all urban consumers, not seasonally adjusted 1993 S01 2025 S01 +CUUS0000SAE21 0000 SAE21 U S S DECEMBER 1997=100 Information and information processing in U.S. city average, all urban consumers, not seasonally adjusted 1993 S01 2025 S01 +CUUS0000SAEC 0000 SAEC U S S DECEMBER 2009=100 Education and communication commodities in U.S. city average, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0000SAES 0000 SAES U S S DECEMBER 2009=100 Education and communication services in U.S. city average, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0000SAF 0000 SAF U S S 1982-84=100 Food and beverages in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAF1 0000 SAF1 U S S 1982-84=100 Food in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAF11 0000 SAF11 U S S 1982-84=100 Food at home in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAF111 0000 SAF111 U S S 1982-84=100 Cereals and bakery products in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAF112 0000 SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAF1121 0000 SAF1121 U S S 1982-84=100 Meats, poultry, and fish in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SAF11211 0000 SAF11211 U S S 1982-84=100 Meats in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SAF113 0000 SAF113 U S S 1982-84=100 Fruits and vegetables in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAF1131 0000 SAF1131 U S S 1982-84=100 Fresh fruits and vegetables in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SAF114 0000 SAF114 U S S 1982-84=100 Nonalcoholic beverages and beverage materials in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAF115 0000 SAF115 U S S 1982-84=100 Other food at home in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAF116 0000 SAF116 U S S 1982-84=100 Alcoholic beverages in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAG 0000 SAG U S S 1982-84=100 Other goods and services in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAG1 0000 SAG1 U S S 1982-84=100 Personal care in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAGC 0000 SAGC U S S DECEMBER 2009=100 Other goods in U.S. city average, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0000SAGS 0000 SAGS U S S DECEMBER 2009=100 Other personal services in U.S. city average, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0000SAH 0000 SAH U S S 1982-84=100 Housing in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAH1 0000 SAH1 U S S 1982-84=100 Shelter in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAH2 0000 SAH2 U S S 1982-84=100 Fuels and utilities in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAH21 0000 SAH21 U S S 1982-84=100 Household energy in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAH3 0000 SAH3 U S S 1982-84=100 Household furnishings and operations in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAH31 0000 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in U.S. city average, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0000SAM 0000 SAM U S S 1982-84=100 Medical care in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAM1 0000 SAM1 U S S 1982-84=100 Medical care commodities in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAM2 0000 SAM2 U S S 1982-84=100 Medical care services in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAN 0000 SAN U S S 1982-84=100 Nondurables in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAN1D 0000 SAN1D U S S 1982-84=100 Domestically produced farm food in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SANL1 0000 SANL1 U S S 1982-84=100 Nondurables less food in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SANL11 0000 SANL11 U S S 1982-84=100 Nondurables less food and beverages in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SANL113 0000 SANL113 U S S 1982-84=100 Nondurables less food, beverages, and apparel in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SANL13 0000 SANL13 U S S 1982-84=100 Nondurables less food and apparel in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAR 0000 SAR U S S DECEMBER 1997=100 Recreation in U.S. city average, all urban consumers, not seasonally adjusted 1993 S01 2025 S01 +CUUS0000SARC 0000 SARC U S S DECEMBER 2009=100 Recreation commodities in U.S. city average, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0000SARS 0000 SARS U S S DECEMBER 2009=100 Recreation services in U.S. city average, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0000SAS 0000 SAS U S S 1982-84=100 Services in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAS24 0000 SAS24 U S S 1982-84=100 Utilities and public transportation in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SAS2RS 0000 SAS2RS U S S DECEMBER 1982=100 Rent of shelter in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAS367 0000 SAS367 U S S 1982-84=100 Other services in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAS4 0000 SAS4 U S S 1982-84=100 Transportation services in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SASL2RS 0000 SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SASL5 0000 SASL5 U S S 1982-84=100 Services less medical care services in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SASLE 0000 SASLE U S S 1982-84=100 Services less energy services in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAT 0000 SAT U S S 1982-84=100 Transportation in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SAT1 0000 SAT1 U S S 1982-84=100 Private transportation in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SATCLTB 0000 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in U.S. city average, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0000SEAA 0000 SEAA U S S 1982-84=100 Men's apparel in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEAA01 0000 SEAA01 U S S 1982-84=100 Men's suits, sport coats, and outerwear in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEAA02 0000 SEAA02 U S S 1982-84=100 Men's underwear, nightwear, swimwear, and accessories in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEAA03 0000 SEAA03 U S S DECEMBER 1997=100 Men's shirts and sweaters in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEAA04 0000 SEAA04 U S S 1982-84=100 Men's pants and shorts in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEAB 0000 SEAB U S S 1982-84=100 Boys' apparel in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEAC 0000 SEAC U S S 1982-84=100 Women's apparel in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEAC01 0000 SEAC01 U S S 1982-84=100 Women's outerwear in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEAC02 0000 SEAC02 U S S 1982-84=100 Women's dresses in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEAC03 0000 SEAC03 U S S DECEMBER 1997=100 Women's suits and separates in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEAC04 0000 SEAC04 U S S DECEMBER 1997=100 Women's underwear, nightwear, swimwear, and accessories in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEAD 0000 SEAD U S S 1982-84=100 Girls' apparel in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEAE 0000 SEAE U S S 1982-84=100 Footwear in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SEAE01 0000 SEAE01 U S S 1982-84=100 Men's footwear in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEAE02 0000 SEAE02 U S S 1982-84=100 Boys' and girls' footwear in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEAE03 0000 SEAE03 U S S 1982-84=100 Women's footwear in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEAF 0000 SEAF U S S 1982-84=100 Infants' and toddlers' apparel in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SEAG 0000 SEAG U S S DECEMBER 1986=100 Jewelry and watches in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEAG01 0000 SEAG01 U S S DECEMBER 1986=100 Watches in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEAG02 0000 SEAG02 U S S DECEMBER 1986=100 Jewelry in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEEA 0000 SEEA U S S 1982-84=100 Educational books and supplies in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEEB 0000 SEEB U S S 1982-84=100 Tuition, other school fees, and childcare in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEEB01 0000 SEEB01 U S S 1982-84=100 College tuition and fees in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEEB02 0000 SEEB02 U S S 1982-84=100 Elementary and high school tuition and fees in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEEB03 0000 SEEB03 U S S DECEMBER 1990=100 Day care and preschool in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEEB04 0000 SEEB04 U S S DECEMBER 1997=100 Technical and business school tuition and fees in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEEC 0000 SEEC U S S DECEMBER 1997=100 Postage and delivery services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEEC01 0000 SEEC01 U S S 1982-84=100 Postage in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEEC02 0000 SEEC02 U S S DECEMBER 1997=100 Delivery services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEED 0000 SEED U S S DECEMBER 1997=100 Telephone services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEED03 0000 SEED03 U S S DECEMBER 1997=100 Wireless telephone services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEED04 0000 SEED04 U S S DECEMBER 2009=100 Residential telephone services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEEE 0000 SEEE U S S DECEMBER 1988=100 Information technology, hardware and services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEEE01 0000 SEEE01 U S S DECEMBER 2007=100 Computers, peripherals, and smart home assistants in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEEE02 0000 SEEE02 U S S DECEMBER 1997=100 Computer software and accessories in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEEE03 0000 SEEE03 U S S DECEMBER 1997=100 Internet services and electronic information providers in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEEE04 0000 SEEE04 U S S DECEMBER 1997=100 Telephone hardware, calculators, and other consumer information items in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEEEC 0000 SEEEC U S S DECEMBER 2009=100 Information technology commodities in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFA 0000 SEFA U S S 1982-84=100 Cereals and cereal products in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFA01 0000 SEFA01 U S S 1982-84=100 Flour and prepared flour mixes in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFA02 0000 SEFA02 U S S 1982-84=100 Breakfast cereal in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFA03 0000 SEFA03 U S S 1982-84=100 Rice, pasta, cornmeal in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFB 0000 SEFB U S S 1982-84=100 Bakery products in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFB01 0000 SEFB01 U S S DECEMBER 1997=100 Bread in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFB02 0000 SEFB02 U S S DECEMBER 1997=100 Fresh biscuits, rolls, muffins in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFB03 0000 SEFB03 U S S 1982-84=100 Cakes, cupcakes, and cookies in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFB04 0000 SEFB04 U S S 1982-84=100 Other bakery products in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFC 0000 SEFC U S S 1982-84=100 Beef and veal in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFC01 0000 SEFC01 U S S 1982-84=100 Uncooked ground beef in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFC02 0000 SEFC02 U S S DECEMBER 1997=100 Uncooked beef roasts in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFC03 0000 SEFC03 U S S DECEMBER 1997=100 Uncooked beef steaks in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFC04 0000 SEFC04 U S S DECEMBER 1997=100 Uncooked other beef and veal in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFD 0000 SEFD U S S 1982-84=100 Pork in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFD01 0000 SEFD01 U S S DECEMBER 1997=100 Bacon, breakfast sausage, and related products in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFD02 0000 SEFD02 U S S 1982-84=100 Ham in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFD03 0000 SEFD03 U S S 1982-84=100 Pork chops in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFD04 0000 SEFD04 U S S DECEMBER 1997=100 Other pork including roasts, steaks, and ribs in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFE 0000 SEFE U S S 1982-84=100 Other meats in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFF 0000 SEFF U S S 1982-84=100 Poultry in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFF01 0000 SEFF01 U S S DECEMBER 1997=100 Chicken in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFF02 0000 SEFF02 U S S DECEMBER 1997=100 Other uncooked poultry including turkey in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFG 0000 SEFG U S S 1982-84=100 Fish and seafood in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFG01 0000 SEFG01 U S S DECEMBER 1997=100 Fresh fish and seafood in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFG02 0000 SEFG02 U S S DECEMBER 1997=100 Processed fish and seafood in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFH 0000 SEFH U S S 1982-84=100 Eggs in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFJ 0000 SEFJ U S S 1982-84=100 Dairy and related products in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SEFJ01 0000 SEFJ01 U S S DECEMBER 1997=100 Milk in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFJ02 0000 SEFJ02 U S S 1982-84=100 Cheese and related products in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFJ03 0000 SEFJ03 U S S 1982-84=100 Ice cream and related products in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFJ04 0000 SEFJ04 U S S DECEMBER 1997=100 Other dairy and related products in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFK 0000 SEFK U S S 1982-84=100 Fresh fruits in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFK01 0000 SEFK01 U S S 1982-84=100 Apples in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFK02 0000 SEFK02 U S S 1982-84=100 Bananas in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFK03 0000 SEFK03 U S S DECEMBER 1997=100 Citrus fruits in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFK04 0000 SEFK04 U S S DECEMBER 1997=100 Other fresh fruits in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFL 0000 SEFL U S S 1982-84=100 Fresh vegetables in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFL01 0000 SEFL01 U S S 1982-84=100 Potatoes in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFL02 0000 SEFL02 U S S 1982-84=100 Lettuce in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFL03 0000 SEFL03 U S S 1982-84=100 Tomatoes in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFL04 0000 SEFL04 U S S 1982-84=100 Other fresh vegetables in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFM 0000 SEFM U S S DECEMBER 1997=100 Processed fruits and vegetables in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFM01 0000 SEFM01 U S S DECEMBER 1997=100 Canned fruits and vegetables in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFM02 0000 SEFM02 U S S DECEMBER 1997=100 Frozen fruits and vegetables in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFM03 0000 SEFM03 U S S DECEMBER 1997=100 Other processed fruits and vegetables including dried in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFN 0000 SEFN U S S DECEMBER 1997=100 Juices and nonalcoholic drinks in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFN01 0000 SEFN01 U S S 1982-84=100 Carbonated drinks in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFN02 0000 SEFN02 U S S DECEMBER 1997=100 Frozen noncarbonated juices and drinks in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFN03 0000 SEFN03 U S S DECEMBER 1997=100 Nonfrozen noncarbonated juices and drinks in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFP 0000 SEFP U S S DECEMBER 1997=100 Beverage materials including coffee and tea in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFP01 0000 SEFP01 U S S 1982-84=100 Coffee in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFP02 0000 SEFP02 U S S DECEMBER 1997=100 Other beverage materials including tea in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFR 0000 SEFR U S S 1982-84=100 Sugar and sweets in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SEFR01 0000 SEFR01 U S S 1982-84=100 Sugar and sugar substitutes in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFR02 0000 SEFR02 U S S DECEMBER 1997=100 Candy and chewing gum in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFR03 0000 SEFR03 U S S DECEMBER 1997=100 Other sweets in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFS 0000 SEFS U S S 1982-84=100 Fats and oils in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SEFS01 0000 SEFS01 U S S DECEMBER 1997=100 Butter and margarine in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFS02 0000 SEFS02 U S S DECEMBER 1997=100 Salad dressing in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFS03 0000 SEFS03 U S S DECEMBER 1997=100 Other fats and oils including peanut butter in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFT 0000 SEFT U S S 1982-84=100 Other foods in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SEFT01 0000 SEFT01 U S S 1982-84=100 Soups in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFT02 0000 SEFT02 U S S 1982-84=100 Frozen and freeze dried prepared foods in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFT03 0000 SEFT03 U S S 1982-84=100 Snacks in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFT04 0000 SEFT04 U S S 1982-84=100 Spices, seasonings, condiments, sauces in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFT05 0000 SEFT05 U S S DECEMBER 1997=100 Baby Food and Formula in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFT06 0000 SEFT06 U S S DECEMBER 1997=100 Other miscellaneous foods in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFV 0000 SEFV U S S 1982-84=100 Food away from home in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SEFV01 0000 SEFV01 U S S DECEMBER 1997=100 Full service meals and snacks in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFV02 0000 SEFV02 U S S DECEMBER 1997=100 Limited service meals and snacks in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFV03 0000 SEFV03 U S S DECEMBER 1997=100 Food at employee sites and schools in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFV04 0000 SEFV04 U S S DECEMBER 1997=100 Food from vending machines and mobile vendors in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFV05 0000 SEFV05 U S S DECEMBER 1997=100 Other food away from home in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFW 0000 SEFW U S S 1982-84=100 Alcoholic beverages at home in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFW01 0000 SEFW01 U S S 1982-84=100 Beer, ale, and other malt beverages at home in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFW02 0000 SEFW02 U S S 1982-84=100 Distilled spirits at home in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFW03 0000 SEFW03 U S S 1982-84=100 Wine at home in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEFX 0000 SEFX U S S 1982-84=100 Alcoholic beverages away from home in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEGA 0000 SEGA U S S 1982-84=100 Tobacco and smoking products in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SEGA01 0000 SEGA01 U S S DECEMBER 1997=100 Cigarettes in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEGA02 0000 SEGA02 U S S DECEMBER 1997=100 Tobacco products other than cigarettes in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEGB 0000 SEGB U S S 1982-84=100 Personal care products in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEGB01 0000 SEGB01 U S S DECEMBER 1997=100 Hair, dental, shaving, and miscellaneous personal care products in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEGB02 0000 SEGB02 U S S 1982-84=100 Cosmetics, perfume, bath, nail preparations and implements in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEGC 0000 SEGC U S S 1982-84=100 Personal care services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEGC01 0000 SEGC01 U S S DECEMBER 1997=100 Haircuts and other personal care services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEGD 0000 SEGD U S S 1982-84=100 Miscellaneous personal services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEGD01 0000 SEGD01 U S S DECEMBER 1986=100 Legal services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2023 S01 +CUUS0000SEGD02 0000 SEGD02 U S S DECEMBER 1986=100 Funeral expenses in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEGD03 0000 SEGD03 U S S DECEMBER 1997=100 Laundry and dry cleaning services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEGD04 0000 SEGD04 U S S DECEMBER 1997=100 Apparel services other than laundry and dry cleaning in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEGD05 0000 SEGD05 U S S DECEMBER 1986=100 Financial services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEGE 0000 SEGE U S S DECEMBER 1997=100 Miscellaneous personal goods in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHA 0000 SEHA U S S 1982-84=100 Rent of primary residence in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SEHB 0000 SEHB U S S DECEMBER 1997=100 Lodging away from home in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHB01 0000 SEHB01 U S S DECEMBER 1982=100 Housing at school, excluding board in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHB02 0000 SEHB02 U S S 1982-84=100 Other lodging away from home including hotels and motels in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHC 0000 SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SEHC01 0000 SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SEHD 0000 SEHD U S S DECEMBER 1997=100 Tenants' and household insurance in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHE 0000 SEHE U S S 1982-84=100 Fuel oil and other fuels in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SEHE01 0000 SEHE01 U S S 1982-84=100 Fuel oil in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SEHE02 0000 SEHE02 U S S DECEMBER 1986=100 Propane, kerosene, and firewood in U.S. city average, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUS0000SEHF 0000 SEHF U S S 1982-84=100 Energy services in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SEHF01 0000 SEHF01 U S S 1982-84=100 Electricity in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SEHF02 0000 SEHF02 U S S 1982-84=100 Utility (piped) gas service in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SEHG 0000 SEHG U S S DECEMBER 1997=100 Water and sewer and trash collection services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHG01 0000 SEHG01 U S S 1982-84=100 Water and sewerage maintenance in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHG02 0000 SEHG02 U S S DECEMBER 1983=100 Garbage and trash collection in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHH 0000 SEHH U S S DECEMBER 1997=100 Window and floor coverings and other linens in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHH01 0000 SEHH01 U S S DECEMBER 1997=100 Floor coverings in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHH02 0000 SEHH02 U S S DECEMBER 1997=100 Window coverings in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHH03 0000 SEHH03 U S S DECEMBER 1997=100 Other linens in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHJ 0000 SEHJ U S S 1982-84=100 Furniture and bedding in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHJ01 0000 SEHJ01 U S S 1982-84=100 Bedroom furniture in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHJ02 0000 SEHJ02 U S S DECEMBER 1997=100 Living room, kitchen, and dining room furniture in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHJ03 0000 SEHJ03 U S S DECEMBER 1997=100 Other furniture in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHK 0000 SEHK U S S DECEMBER 1997=100 Appliances in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHK01 0000 SEHK01 U S S DECEMBER 1997=100 Major appliances in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHK02 0000 SEHK02 U S S DECEMBER 1997=100 Other appliances in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHL 0000 SEHL U S S DECEMBER 1997=100 Other household equipment and furnishings in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHL01 0000 SEHL01 U S S 1982-84=100 Clocks, lamps, and decorator items in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHL02 0000 SEHL02 U S S DECEMBER 1990=100 Indoor plants and flowers in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHL03 0000 SEHL03 U S S DECEMBER 1997=100 Dishes and flatware in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHL04 0000 SEHL04 U S S DECEMBER 1997=100 Nonelectric cookware and tableware in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHM 0000 SEHM U S S DECEMBER 1997=100 Tools, hardware, outdoor equipment and supplies in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHM01 0000 SEHM01 U S S DECEMBER 1997=100 Tools, hardware and supplies in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHM02 0000 SEHM02 U S S DECEMBER 1997=100 Outdoor equipment and supplies in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHN 0000 SEHN U S S 1982-84=100 Housekeeping supplies in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SEHN01 0000 SEHN01 U S S DECEMBER 1997=100 Household cleaning products in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHN02 0000 SEHN02 U S S DECEMBER 1997=100 Household paper products in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHN03 0000 SEHN03 U S S DECEMBER 1997=100 Miscellaneous household products in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHP 0000 SEHP U S S DECEMBER 1997=100 Household operations in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0000SEHP01 0000 SEHP01 U S S DECEMBER 1997=100 Domestic services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2024 S01 +CUUS0000SEHP02 0000 SEHP02 U S S DECEMBER 1997=100 Gardening and lawncare services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2024 S02 +CUUS0000SEHP03 0000 SEHP03 U S S DECEMBER 1997=100 Moving, storage, freight expense in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEHP04 0000 SEHP04 U S S DECEMBER 1997=100 Repair of household items in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2023 S03 +CUUS0000SEMC 0000 SEMC U S S 1982-84=100 Professional services in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SEMC01 0000 SEMC01 U S S 1982-84=100 Physicians' services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEMC02 0000 SEMC02 U S S 1982-84=100 Dental services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEMC03 0000 SEMC03 U S S DECEMBER 1986=100 Eyeglasses and eye care in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEMC04 0000 SEMC04 U S S DECEMBER 1986=100 Services by other medical professionals in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEMD 0000 SEMD U S S 1982-84=100 Hospital and related services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEMD01 0000 SEMD01 U S S DECEMBER 1996=100 Hospital services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEMD02 0000 SEMD02 U S S DECEMBER 1996=100 Nursing homes and adult day services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEMD03 0000 SEMD03 U S S DECEMBER 2005=100 Care of invalids and elderly at home in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEME 0000 SEME U S S DECEMBER 2005=100 Health insurance in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEMF 0000 SEMF U S S DECEMBER 2009=100 Medicinal drugs in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEMF01 0000 SEMF01 U S S 1982-84=100 Prescription drugs in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEMF02 0000 SEMF02 U S S DECEMBER 2009=100 Nonprescription drugs in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SEMG 0000 SEMG U S S DECEMBER 2009=100 Medical equipment and supplies in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERA 0000 SERA U S S DECEMBER 1997=100 Video and audio in U.S. city average, all urban consumers, not seasonally adjusted 1993 S01 2025 S01 +CUUS0000SERA01 0000 SERA01 U S S 1982-84=100 Televisions in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERA02 0000 SERA02 U S S DECEMBER 1983=100 Cable, satellite, and live streaming television service in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERA03 0000 SERA03 U S S DECEMBER 1997=100 Other video equipment in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERA04 0000 SERA04 U S S DECEMBER 1997=100 Purchase, subscription, and rental of video in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERA05 0000 SERA05 U S S 1982-84=100 Audio equipment in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERA06 0000 SERA06 U S S DECEMBER 1997=100 Recorded music and music subscriptions in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERAC 0000 SERAC U S S DECEMBER 2009=100 Video and audio products in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERAS 0000 SERAS U S S DECEMBER 2009=100 Video and audio services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERB 0000 SERB U S S DECEMBER 1997=100 Pets, pet products and services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERB01 0000 SERB01 U S S 1982-84=100 Pets and pet products in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERB02 0000 SERB02 U S S DECEMBER 1997=100 Pet services including veterinary in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERC 0000 SERC U S S 1982-84=100 Sporting goods in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERC01 0000 SERC01 U S S 1982-84=100 Sports vehicles including bicycles in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERC02 0000 SERC02 U S S 1982-84=100 Sports equipment in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERD 0000 SERD U S S DECEMBER 1997=100 Photography in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERD01 0000 SERD01 U S S 1982-84=100 Photographic equipment and supplies in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERD02 0000 SERD02 U S S DECEMBER 1997=100 Photographers and photo processing in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERE 0000 SERE U S S DECEMBER 1997=100 Other recreational goods in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERE01 0000 SERE01 U S S 1982-84=100 Toys in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERE02 0000 SERE02 U S S DECEMBER 1997=100 Sewing machines, fabric and supplies in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERE03 0000 SERE03 U S S DECEMBER 1997=100 Music instruments and accessories in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERF 0000 SERF U S S DECEMBER 1997=100 Other recreation services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERF01 0000 SERF01 U S S DECEMBER 1997=100 Club membership for shopping clubs, fraternal, or other organizations, or participant sports fees in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERF02 0000 SERF02 U S S 1982-84=100 Admissions in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERF03 0000 SERF03 U S S DECEMBER 1986=100 Fees for lessons or instructions in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERG 0000 SERG U S S 1982-84=100 Recreational reading materials in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERG01 0000 SERG01 U S S DECEMBER 1997=100 Newspapers and magazines in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SERG02 0000 SERG02 U S S DECEMBER 1997=100 Recreational books in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SETA 0000 SETA U S S DECEMBER 1997=100 New and used motor vehicles in U.S. city average, all urban consumers, not seasonally adjusted 1993 S01 2025 S01 +CUUS0000SETA01 0000 SETA01 U S S 1982-84=100 New vehicles in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SETA02 0000 SETA02 U S S 1982-84=100 Used cars and trucks in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SETA03 0000 SETA03 U S S DECEMBER 2001=100 Leased cars and trucks in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SETA04 0000 SETA04 U S S DECEMBER 1997=100 Car and truck rental in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SETB 0000 SETB U S S 1982-84=100 Motor fuel in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SETB01 0000 SETB01 U S S 1982-84=100 Gasoline (all types) in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SETB02 0000 SETB02 U S S DECEMBER 1997=100 Other motor fuels in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SETC 0000 SETC U S S 1982-84=100 Motor vehicle parts and equipment in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SETC01 0000 SETC01 U S S 1982-84=100 Tires in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SETC02 0000 SETC02 U S S DECEMBER 1997=100 Vehicle accessories other than tires in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SETD 0000 SETD U S S 1982-84=100 Motor vehicle maintenance and repair in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SETD01 0000 SETD01 U S S 1982-84=100 Motor vehicle body work in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SETD02 0000 SETD02 U S S 1982-84=100 Motor vehicle maintenance and servicing in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SETD03 0000 SETD03 U S S DECEMBER 1997=100 Motor vehicle repair in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SETE 0000 SETE U S S 1982-84=100 Motor vehicle insurance in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SETF 0000 SETF U S S DECEMBER 1997=100 Motor vehicle fees in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SETF01 0000 SETF01 U S S DECEMBER 1997=100 State motor vehicle registration and license fees in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SETF03 0000 SETF03 U S S DECEMBER 1997=100 Parking and other fees in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SETG 0000 SETG U S S 1982-84=100 Public transportation in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SETG01 0000 SETG01 U S S 1982-84=100 Airline fares in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SETG02 0000 SETG02 U S S 1982-84=100 Other intercity transportation in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SETG03 0000 SETG03 U S S 1982-84=100 Intracity transportation in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS01031 0000 SS01031 U S S DECEMBER 1997=100 Rice in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS02011 0000 SS02011 U S S 1982-84=100 White bread in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS02021 0000 SS02021 U S S 1982-84=100 Bread other than white in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS02041 0000 SS02041 U S S 1982-84=100 Fresh cakes and cupcakes in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS02042 0000 SS02042 U S S 1982-84=100 Cookies in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS02063 0000 SS02063 U S S 1982-84=100 Fresh sweetrolls, coffeecakes, doughnuts in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS0206A 0000 SS0206A U S S 1982-84=100 Crackers, bread, and cracker products in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS0206B 0000 SS0206B U S S 1982-84=100 Frozen and refrigerated bakery products, pies, tarts, turnovers in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS04011 0000 SS04011 U S S 1982-84=100 Bacon and related products in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS04012 0000 SS04012 U S S DECEMBER 1997=100 Breakfast sausage and related products in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS04031 0000 SS04031 U S S 1982-84=100 Ham, excluding canned in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS05011 0000 SS05011 U S S 1982-84=100 Frankfurters in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS0501A 0000 SS0501A U S S DECEMBER 1997=100 Lunchmeats in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS06011 0000 SS06011 U S S 1982-84=100 Fresh whole chicken in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS06021 0000 SS06021 U S S 1982-84=100 Fresh and frozen chicken parts in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS07011 0000 SS07011 U S S 1982-84=100 Shelf stable fish and seafood in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS07021 0000 SS07021 U S S 1982-84=100 Frozen fish and seafood in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS09011 0000 SS09011 U S S 1982-84=100 Fresh whole milk in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS09021 0000 SS09021 U S S DECEMBER 1997=100 Fresh milk other than whole in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS10011 0000 SS10011 U S S 1982-84=100 Butter in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS11031 0000 SS11031 U S S 1982-84=100 Oranges, including tangerines in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS13031 0000 SS13031 U S S DECEMBER 1997=100 Canned fruits in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS14011 0000 SS14011 U S S 1982-84=100 Frozen vegetables in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS14021 0000 SS14021 U S S DECEMBER 1997=100 Canned vegetables in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS14022 0000 SS14022 U S S DECEMBER 1997=100 Dried beans, peas, and lentils in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS16011 0000 SS16011 U S S 1982-84=100 Margarine in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS16014 0000 SS16014 U S S DECEMBER 1997=100 Peanut butter in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS17031 0000 SS17031 U S S 1982-84=100 Roasted coffee in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS17032 0000 SS17032 U S S 1982-84=100 Instant coffee in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS18041 0000 SS18041 U S S DECEMBER 1997=100 Salt and other seasonings and spices in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS18042 0000 SS18042 U S S DECEMBER 1997=100 Olives, pickles, relishes in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS18043 0000 SS18043 U S S DECEMBER 1997=100 Sauces and gravies in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS1804B 0000 SS1804B U S S 1982-84=100 Other condiments in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS18064 0000 SS18064 U S S DECEMBER 2007=100 Prepared salads in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS20021 0000 SS20021 U S S 1982-84=100 Whiskey at home in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS20022 0000 SS20022 U S S 1982-84=100 Distilled spirits, excluding whiskey, at home in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS20051 0000 SS20051 U S S DECEMBER 1997=100 Beer, ale, and other malt beverages away from home in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS20052 0000 SS20052 U S S DECEMBER 1997=100 Wine away from home in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS20053 0000 SS20053 U S S DECEMBER 1997=100 Distilled spirits away from home in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS30021 0000 SS30021 U S S 1982-84=100 Laundry equipment in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS31022 0000 SS31022 U S S DECEMBER 1997=100 Video discs and other media in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS33032 0000 SS33032 U S S 1982-84=100 Stationery, stationery supplies, gift wrap in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS45011 0000 SS45011 U S S 1982-84=100 New cars in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SS4501A 0000 SS4501A U S S DECEMBER 1997=100 New cars and trucks in U.S. city average, all urban consumers, not seasonally adjusted 1998 S01 2021 S03 +CUUS0000SS45021 0000 SS45021 U S S DECEMBER 1983=100 New trucks in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS47014 0000 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SS47015 0000 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in U.S. city average, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUS0000SS47016 0000 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in U.S. city average, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0000SS47021 0000 SS47021 U S S 1982-84=100 Motor oil, coolant, and fluids in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS48021 0000 SS48021 U S S 1982-84=100 Vehicle parts and equipment other than tires in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS52051 0000 SS52051 U S S DECEMBER 1997=100 Parking fees and tolls in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS53021 0000 SS53021 U S S DECEMBER 2007=100 Intercity bus fare in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2020 S03 +CUUS0000SS53023 0000 SS53023 U S S DECEMBER 1997=100 Ship fare in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS53031 0000 SS53031 U S S DECEMBER 2009=100 Intracity mass transit in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS5702 0000 SS5702 U S S DECEMBER 1996=100 Inpatient hospital services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS5703 0000 SS5703 U S S DECEMBER 1986=100 Outpatient hospital services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS61011 0000 SS61011 U S S DECEMBER 1997=100 Toys, games, hobbies and playground equipment in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS61023 0000 SS61023 U S S DECEMBER 1997=100 Photographic equipment in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS61031 0000 SS61031 U S S DECEMBER 1997=100 Pet food and treats in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS61032 0000 SS61032 U S S DECEMBER 1997=100 Purchase of pets, pet supplies, accessories in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS62011 0000 SS62011 U S S DECEMBER 1997=100 Automobile service clubs in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2020 S03 +CUUS0000SS62031 0000 SS62031 U S S DECEMBER 1997=100 Admission to movies, theaters, and concerts in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS62032 0000 SS62032 U S S DECEMBER 1997=100 Admission to sporting events in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS62051 0000 SS62051 U S S DECEMBER 1997=100 Photographer fees in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2020 S03 +CUUS0000SS62052 0000 SS62052 U S S DECEMBER 1997=100 Photo processing in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2020 S03 +CUUS0000SS62053 0000 SS62053 U S S DECEMBER 1997=100 Pet services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS62054 0000 SS62054 U S S DECEMBER 1997=100 Veterinarian services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS62055 0000 SS62055 U S S DECEMBER 1997=100 Subscription and rental of video and video games in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS68021 0000 SS68021 U S S DECEMBER 1997=100 Checking account and other bank services in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SS68023 0000 SS68023 U S S DECEMBER 1997=100 Tax return preparation and other accounting fees in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SSEA011 0000 SSEA011 U S S DECEMBER 2001=100 College textbooks in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SSEE041 0000 SSEE041 U S S DECEMBER 2019=100 Smartphones in U.S. city average, all urban consumers, not seasonally adjusted 2020 S01 2025 S01 +CUUS0000SSFV031A 0000 SSFV031A U S S DECEMBER 2005=100 Food at elementary and secondary schools in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0000SSGE013 0000 SSGE013 U S S DECEMBER 2005=100 Infants' equipment in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2020 S03 +CUUS0000SSHJ031 0000 SSHJ031 U S S DECEMBER 2005=100 Infants' furniture in U.S. city average, all urban consumers, not seasonally adjusted 2018 S01 2020 S03 +CUUS0100AA0 0100 AA0 U S A DECEMBER 1977=100 All items - old base in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SA0 0100 SA0 U S S 1982-84=100 All items in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SA0E 0100 SA0E U S S 1982-84=100 Energy in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SA0L1 0100 SA0L1 U S S 1982-84=100 All items less food in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SA0L1E 0100 SA0L1E U S S 1982-84=100 All items less food and energy in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SA0L2 0100 SA0L2 U S S 1982-84=100 All items less shelter in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SA0L5 0100 SA0L5 U S S 1982-84=100 All items less medical care in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SA0LE 0100 SA0LE U S S 1982-84=100 All items less energy in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAA 0100 SAA U S S 1982-84=100 Apparel in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAC 0100 SAC U S S 1982-84=100 Commodities in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SACE 0100 SACE U S S 1982-84=100 Energy commodities in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SACL1 0100 SACL1 U S S 1982-84=100 Commodities less food in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SACL11 0100 SACL11 U S S 1982-84=100 Commodities less food and beverages in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SACL1E 0100 SACL1E U S S 1982-84=100 Commodities less food and energy commodities in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAD 0100 SAD U S S 1982-84=100 Durables in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAE 0100 SAE U S S DECEMBER 1997=100 Education and communication in Northeast urban, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUS0100SAEC 0100 SAEC U S S DECEMBER 2009=100 Education and communication commodities in Northeast urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0100SAES 0100 SAES U S S DECEMBER 2009=100 Education and communication services in Northeast urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0100SAF 0100 SAF U S S 1982-84=100 Food and beverages in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAF1 0100 SAF1 U S S 1982-84=100 Food in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAF11 0100 SAF11 U S S 1982-84=100 Food at home in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAF111 0100 SAF111 U S S 1982-84=100 Cereals and bakery products in Northeast urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0100SAF112 0100 SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Northeast urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0100SAF113 0100 SAF113 U S S 1982-84=100 Fruits and vegetables in Northeast urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0100SAF114 0100 SAF114 U S S 1982-84=100 Nonalcoholic beverages and beverage materials in Northeast urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0100SAF115 0100 SAF115 U S S 1982-84=100 Other food at home in Northeast urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0100SAF116 0100 SAF116 U S S 1982-84=100 Alcoholic beverages in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAG 0100 SAG U S S 1982-84=100 Other goods and services in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAGC 0100 SAGC U S S DECEMBER 2009=100 Other goods in Northeast urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0100SAGS 0100 SAGS U S S DECEMBER 2009=100 Other personal services in Northeast urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0100SAH 0100 SAH U S S 1982-84=100 Housing in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAH1 0100 SAH1 U S S 1982-84=100 Shelter in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAH2 0100 SAH2 U S S 1982-84=100 Fuels and utilities in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAH21 0100 SAH21 U S S 1982-84=100 Household energy in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAH3 0100 SAH3 U S S 1982-84=100 Household furnishings and operations in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAH31 0100 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Northeast urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0100SAM 0100 SAM U S S 1982-84=100 Medical care in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAM1 0100 SAM1 U S S 1982-84=100 Medical care commodities in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAM2 0100 SAM2 U S S 1982-84=100 Medical care services in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAN 0100 SAN U S S 1982-84=100 Nondurables in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SANL1 0100 SANL1 U S S 1982-84=100 Nondurables less food in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SANL11 0100 SANL11 U S S 1982-84=100 Nondurables less food and beverages in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SANL113 0100 SANL113 U S S 1982-84=100 Nondurables less food, beverages, and apparel in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SANL13 0100 SANL13 U S S 1982-84=100 Nondurables less food and apparel in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAR 0100 SAR U S S DECEMBER 1997=100 Recreation in Northeast urban, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUS0100SARC 0100 SARC U S S DECEMBER 2009=100 Recreation commodities in Northeast urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0100SARS 0100 SARS U S S DECEMBER 2009=100 Recreation services in Northeast urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0100SAS 0100 SAS U S S 1982-84=100 Services in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAS2RS 0100 SAS2RS U S S DECEMBER 1982=100 Rent of shelter in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAS367 0100 SAS367 U S S 1982-84=100 Other services in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAS4 0100 SAS4 U S S 1982-84=100 Transportation services in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SASL2RS 0100 SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SASL5 0100 SASL5 U S S 1982-84=100 Services less medical care services in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SASLE 0100 SASLE U S S 1982-84=100 Services less energy services in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAT 0100 SAT U S S 1982-84=100 Transportation in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SAT1 0100 SAT1 U S S 1982-84=100 Private transportation in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SATCLTB 0100 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Northeast urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0100SEEB 0100 SEEB U S S DECEMBER 1977=100 Tuition, other school fees, and childcare in Northeast urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0100SEFJ 0100 SEFJ U S S 1982-84=100 Dairy and related products in Northeast urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0100SEFV 0100 SEFV U S S 1982-84=100 Food away from home in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SEHA 0100 SEHA U S S 1982-84=100 Rent of primary residence in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SEHC 0100 SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SEHC01 0100 SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SEHF 0100 SEHF U S S 1982-84=100 Energy services in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SEHF01 0100 SEHF01 U S S 1982-84=100 Electricity in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SEHF02 0100 SEHF02 U S S 1982-84=100 Utility (piped) gas service in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SEMC 0100 SEMC U S S 1982-84=100 Professional services in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SETA 0100 SETA U S S DECEMBER 1997=100 New and used motor vehicles in Northeast urban, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUS0100SETA01 0100 SETA01 U S S 1982-84=100 New vehicles in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SETA02 0100 SETA02 U S S 1982-84=100 Used cars and trucks in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SETB 0100 SETB U S S 1982-84=100 Motor fuel in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SETB01 0100 SETB01 U S S 1982-84=100 Gasoline (all types) in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SETE 0100 SETE U S S DECEMBER 1977=100 Motor vehicle insurance in Northeast urban, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUS0100SS45011 0100 SS45011 U S S 1982-84=100 New cars in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SS4501A 0100 SS4501A U S S DECEMBER 1997=100 New cars and trucks in Northeast urban, all urban consumers, not seasonally adjusted 1998 S01 2021 S03 +CUUS0100SS47014 0100 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0100SS47015 0100 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Northeast urban, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUS0100SS47016 0100 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Northeast urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0110SA0 0110 SA0 U S S DECEMBER 2017=100 All items in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SA0E 0110 SA0E U S S DECEMBER 2017=100 Energy in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SA0L1E 0110 SA0L1E U S S DECEMBER 2017=100 All items less food and energy in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SA0L2 0110 SA0L2 U S S DECEMBER 2017=100 All items less shelter in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SA0L5 0110 SA0L5 U S S DECEMBER 2017=100 All items less medical care in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SA0LE 0110 SA0LE U S S DECEMBER 2017=100 All items less energy in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAA 0110 SAA U S S DECEMBER 2017=100 Apparel in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAC 0110 SAC U S S DECEMBER 2017=100 Commodities in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SACL1 0110 SACL1 U S S DECEMBER 2017=100 Commodities less food in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SACL11 0110 SACL11 U S S DECEMBER 2017=100 Commodities less food and beverages in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAD 0110 SAD U S S DECEMBER 2017=100 Durables in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAE 0110 SAE U S S DECEMBER 2017=100 Education and communication in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAEC 0110 SAEC U S S DECEMBER 2017=100 Education and communication commodities in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAES 0110 SAES U S S DECEMBER 2017=100 Education and communication services in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAF 0110 SAF U S S DECEMBER 2017=100 Food and beverages in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAF1 0110 SAF1 U S S DECEMBER 2017=100 Food in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAF11 0110 SAF11 U S S DECEMBER 2017=100 Food at home in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAF111 0110 SAF111 U S S DECEMBER 2017=100 Cereals and bakery products in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAF112 0110 SAF112 U S S DECEMBER 2017=100 Meats, poultry, fish, and eggs in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAF113 0110 SAF113 U S S DECEMBER 2017=100 Fruits and vegetables in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAF114 0110 SAF114 U S S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAF115 0110 SAF115 U S S DECEMBER 2017=100 Other food at home in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAF116 0110 SAF116 U S S DECEMBER 2017=100 Alcoholic beverages in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAG 0110 SAG U S S DECEMBER 2017=100 Other goods and services in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAGC 0110 SAGC U S S DECEMBER 2017=100 Other goods in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAGS 0110 SAGS U S S DECEMBER 2017=100 Other personal services in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAH 0110 SAH U S S DECEMBER 2017=100 Housing in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAH1 0110 SAH1 U S S DECEMBER 2017=100 Shelter in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAH2 0110 SAH2 U S S DECEMBER 2017=100 Fuels and utilities in New England, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0110SAH21 0110 SAH21 U S S DECEMBER 2017=100 Household energy in New England, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0110SAH3 0110 SAH3 U S S DECEMBER 2017=100 Household furnishings and operations in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAH31 0110 SAH31 U S S DECEMBER 2017=100 Household furnishings and supplies in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAM 0110 SAM U S S DECEMBER 2017=100 Medical care in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAN 0110 SAN U S S DECEMBER 2017=100 Nondurables in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SANL1 0110 SANL1 U S S DECEMBER 2017=100 Nondurables less food in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SANL11 0110 SANL11 U S S DECEMBER 2017=100 Nondurables less food and beverages in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAR 0110 SAR U S S DECEMBER 2017=100 Recreation in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAS 0110 SAS U S S DECEMBER 2017=100 Services in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SASL2RS 0110 SASL2RS U S S DECEMBER 2017=100 Services less rent of shelter in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SASL5 0110 SASL5 U S S DECEMBER 2017=100 Services less medical care services in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAT 0110 SAT U S S DECEMBER 2017=100 Transportation in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SAT1 0110 SAT1 U S S DECEMBER 2017=100 Private transportation in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SATCLTB 0110 SATCLTB U S S DECEMBER 2017=100 Transportation commodities less motor fuel in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SEEB 0110 SEEB U S S DECEMBER 2017=100 Tuition, other school fees, and childcare in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SEFJ 0110 SEFJ U S S DECEMBER 2017=100 Dairy and related products in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SEFV 0110 SEFV U S S DECEMBER 2017=100 Food away from home in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SEHA 0110 SEHA U S S DECEMBER 2017=100 Rent of primary residence in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SEHC 0110 SEHC U S S DECEMBER 2017=100 Owners' equivalent rent of residences in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SEHC01 0110 SEHC01 U S S DECEMBER 2017=100 Owners' equivalent rent of primary residence in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SEHF 0110 SEHF U S S DECEMBER 2017=100 Energy services in New England, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0110SEHF01 0110 SEHF01 U S S DECEMBER 2017=100 Electricity in New England, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0110SEHF02 0110 SEHF02 U S S DECEMBER 2017=100 Utility (piped) gas service in New England, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0110SETA 0110 SETA U S S DECEMBER 2017=100 New and used motor vehicles in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SETA01 0110 SETA01 U S S DECEMBER 2017=100 New vehicles in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SETA02 0110 SETA02 U S S DECEMBER 2017=100 Used cars and trucks in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SETB 0110 SETB U S S DECEMBER 2017=100 Motor fuel in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SETB01 0110 SETB01 U S S DECEMBER 2017=100 Gasoline (all types) in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SETE 0110 SETE U S S DECEMBER 2017=100 Motor vehicle insurance in New England, all urban consumers, not seasonally adjusted 2018 S01 2021 S03 +CUUS0110SS47014 0110 SS47014 U S S DECEMBER 2017=100 Gasoline, unleaded regular in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SS47015 0110 SS47015 U S S DECEMBER 2017=100 Gasoline, unleaded midgrade in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0110SS47016 0110 SS47016 U S S DECEMBER 2017=100 Gasoline, unleaded premium in New England, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SA0 0120 SA0 U S S DECEMBER 2017=100 All items in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SA0E 0120 SA0E U S S DECEMBER 2017=100 Energy in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SA0L1E 0120 SA0L1E U S S DECEMBER 2017=100 All items less food and energy in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SA0L2 0120 SA0L2 U S S DECEMBER 2017=100 All items less shelter in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SA0L5 0120 SA0L5 U S S DECEMBER 2017=100 All items less medical care in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SA0LE 0120 SA0LE U S S DECEMBER 2017=100 All items less energy in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAA 0120 SAA U S S DECEMBER 2017=100 Apparel in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAC 0120 SAC U S S DECEMBER 2017=100 Commodities in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SACL1 0120 SACL1 U S S DECEMBER 2017=100 Commodities less food in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SACL11 0120 SACL11 U S S DECEMBER 2017=100 Commodities less food and beverages in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAD 0120 SAD U S S DECEMBER 2017=100 Durables in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAE 0120 SAE U S S DECEMBER 2017=100 Education and communication in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAEC 0120 SAEC U S S DECEMBER 2017=100 Education and communication commodities in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAES 0120 SAES U S S DECEMBER 2017=100 Education and communication services in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAF 0120 SAF U S S DECEMBER 2017=100 Food and beverages in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAF1 0120 SAF1 U S S DECEMBER 2017=100 Food in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAF11 0120 SAF11 U S S DECEMBER 2017=100 Food at home in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAF111 0120 SAF111 U S S DECEMBER 2017=100 Cereals and bakery products in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAF112 0120 SAF112 U S S DECEMBER 2017=100 Meats, poultry, fish, and eggs in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAF113 0120 SAF113 U S S DECEMBER 2017=100 Fruits and vegetables in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAF114 0120 SAF114 U S S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAF115 0120 SAF115 U S S DECEMBER 2017=100 Other food at home in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAF116 0120 SAF116 U S S DECEMBER 2017=100 Alcoholic beverages in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAG 0120 SAG U S S DECEMBER 2017=100 Other goods and services in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAGC 0120 SAGC U S S DECEMBER 2017=100 Other goods in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAGS 0120 SAGS U S S DECEMBER 2017=100 Other personal services in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAH 0120 SAH U S S DECEMBER 2017=100 Housing in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAH1 0120 SAH1 U S S DECEMBER 2017=100 Shelter in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAH2 0120 SAH2 U S S DECEMBER 2017=100 Fuels and utilities in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0120SAH21 0120 SAH21 U S S DECEMBER 2017=100 Household energy in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0120SAH3 0120 SAH3 U S S DECEMBER 2017=100 Household furnishings and operations in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAH31 0120 SAH31 U S S DECEMBER 2017=100 Household furnishings and supplies in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAM 0120 SAM U S S DECEMBER 2017=100 Medical care in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAN 0120 SAN U S S DECEMBER 2017=100 Nondurables in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SANL1 0120 SANL1 U S S DECEMBER 2017=100 Nondurables less food in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SANL11 0120 SANL11 U S S DECEMBER 2017=100 Nondurables less food and beverages in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAR 0120 SAR U S S DECEMBER 2017=100 Recreation in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAS 0120 SAS U S S DECEMBER 2017=100 Services in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SASL2RS 0120 SASL2RS U S S DECEMBER 2017=100 Services less rent of shelter in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SASL5 0120 SASL5 U S S DECEMBER 2017=100 Services less medical care services in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAT 0120 SAT U S S DECEMBER 2017=100 Transportation in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SAT1 0120 SAT1 U S S DECEMBER 2017=100 Private transportation in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SATCLTB 0120 SATCLTB U S S DECEMBER 2017=100 Transportation commodities less motor fuel in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SEEB 0120 SEEB U S S DECEMBER 2017=100 Tuition, other school fees, and childcare in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SEFJ 0120 SEFJ U S S DECEMBER 2017=100 Dairy and related products in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SEFV 0120 SEFV U S S DECEMBER 2017=100 Food away from home in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SEHA 0120 SEHA U S S DECEMBER 2017=100 Rent of primary residence in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SEHC 0120 SEHC U S S DECEMBER 2017=100 Owners' equivalent rent of residences in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SEHC01 0120 SEHC01 U S S DECEMBER 2017=100 Owners' equivalent rent of primary residence in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SEHF 0120 SEHF U S S DECEMBER 2017=100 Energy services in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0120SEHF01 0120 SEHF01 U S S DECEMBER 2017=100 Electricity in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0120SEHF02 0120 SEHF02 U S S DECEMBER 2017=100 Utility (piped) gas service in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0120SETA 0120 SETA U S S DECEMBER 2017=100 New and used motor vehicles in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SETA01 0120 SETA01 U S S DECEMBER 2017=100 New vehicles in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SETA02 0120 SETA02 U S S DECEMBER 2017=100 Used cars and trucks in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SETB 0120 SETB U S S DECEMBER 2017=100 Motor fuel in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SETB01 0120 SETB01 U S S DECEMBER 2017=100 Gasoline (all types) in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SETE 0120 SETE U S S DECEMBER 2017=100 Motor vehicle insurance in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2021 S03 +CUUS0120SS47014 0120 SS47014 U S S DECEMBER 2017=100 Gasoline, unleaded regular in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SS47015 0120 SS47015 U S S DECEMBER 2017=100 Gasoline, unleaded midgrade in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0120SS47016 0120 SS47016 U S S DECEMBER 2017=100 Gasoline, unleaded premium in Middle Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0200AA0 0200 AA0 U S A DECEMBER 1977=100 All items - old base in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SA0 0200 SA0 U S S 1982-84=100 All items in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SA0E 0200 SA0E U S S 1982-84=100 Energy in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SA0L1 0200 SA0L1 U S S 1982-84=100 All items less food in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SA0L1E 0200 SA0L1E U S S 1982-84=100 All items less food and energy in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SA0L2 0200 SA0L2 U S S 1982-84=100 All items less shelter in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SA0L5 0200 SA0L5 U S S 1982-84=100 All items less medical care in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SA0LE 0200 SA0LE U S S 1982-84=100 All items less energy in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAA 0200 SAA U S S 1982-84=100 Apparel in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAC 0200 SAC U S S 1982-84=100 Commodities in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SACE 0200 SACE U S S 1982-84=100 Energy commodities in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SACL1 0200 SACL1 U S S 1982-84=100 Commodities less food in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SACL11 0200 SACL11 U S S 1982-84=100 Commodities less food and beverages in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SACL1E 0200 SACL1E U S S 1982-84=100 Commodities less food and energy commodities in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAD 0200 SAD U S S 1982-84=100 Durables in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAE 0200 SAE U S S DECEMBER 1997=100 Education and communication in Midwest urban, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUS0200SAEC 0200 SAEC U S S DECEMBER 2009=100 Education and communication commodities in Midwest urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0200SAES 0200 SAES U S S DECEMBER 2009=100 Education and communication services in Midwest urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0200SAF 0200 SAF U S S 1982-84=100 Food and beverages in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAF1 0200 SAF1 U S S 1982-84=100 Food in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAF11 0200 SAF11 U S S 1982-84=100 Food at home in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAF111 0200 SAF111 U S S 1982-84=100 Cereals and bakery products in Midwest urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0200SAF112 0200 SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Midwest urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0200SAF113 0200 SAF113 U S S 1982-84=100 Fruits and vegetables in Midwest urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0200SAF114 0200 SAF114 U S S 1982-84=100 Nonalcoholic beverages and beverage materials in Midwest urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0200SAF115 0200 SAF115 U S S 1982-84=100 Other food at home in Midwest urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0200SAF116 0200 SAF116 U S S 1982-84=100 Alcoholic beverages in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAG 0200 SAG U S S 1982-84=100 Other goods and services in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAGC 0200 SAGC U S S DECEMBER 2009=100 Other goods in Midwest urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0200SAGS 0200 SAGS U S S DECEMBER 2009=100 Other personal services in Midwest urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0200SAH 0200 SAH U S S 1982-84=100 Housing in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAH1 0200 SAH1 U S S 1982-84=100 Shelter in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAH2 0200 SAH2 U S S 1982-84=100 Fuels and utilities in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAH21 0200 SAH21 U S S 1982-84=100 Household energy in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAH3 0200 SAH3 U S S 1982-84=100 Household furnishings and operations in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAH31 0200 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Midwest urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0200SAM 0200 SAM U S S 1982-84=100 Medical care in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAM1 0200 SAM1 U S S 1982-84=100 Medical care commodities in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAM2 0200 SAM2 U S S 1982-84=100 Medical care services in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAN 0200 SAN U S S 1982-84=100 Nondurables in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SANL1 0200 SANL1 U S S 1982-84=100 Nondurables less food in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SANL11 0200 SANL11 U S S 1982-84=100 Nondurables less food and beverages in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SANL113 0200 SANL113 U S S 1982-84=100 Nondurables less food, beverages, and apparel in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SANL13 0200 SANL13 U S S 1982-84=100 Nondurables less food and apparel in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAR 0200 SAR U S S DECEMBER 1997=100 Recreation in Midwest urban, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUS0200SARC 0200 SARC U S S DECEMBER 2009=100 Recreation commodities in Midwest urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0200SARS 0200 SARS U S S DECEMBER 2009=100 Recreation services in Midwest urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0200SAS 0200 SAS U S S 1982-84=100 Services in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAS2RS 0200 SAS2RS U S S DECEMBER 1982=100 Rent of shelter in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAS367 0200 SAS367 U S S 1982-84=100 Other services in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAS4 0200 SAS4 U S S 1982-84=100 Transportation services in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SASL2RS 0200 SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SASL5 0200 SASL5 U S S 1982-84=100 Services less medical care services in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SASLE 0200 SASLE U S S 1982-84=100 Services less energy services in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAT 0200 SAT U S S 1982-84=100 Transportation in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SAT1 0200 SAT1 U S S 1982-84=100 Private transportation in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SATCLTB 0200 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Midwest urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0200SEEB 0200 SEEB U S S DECEMBER 1977=100 Tuition, other school fees, and childcare in Midwest urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0200SEFJ 0200 SEFJ U S S 1982-84=100 Dairy and related products in Midwest urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0200SEFV 0200 SEFV U S S 1982-84=100 Food away from home in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SEHA 0200 SEHA U S S 1982-84=100 Rent of primary residence in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SEHC 0200 SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SEHC01 0200 SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SEHF 0200 SEHF U S S 1982-84=100 Energy services in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SEHF01 0200 SEHF01 U S S 1982-84=100 Electricity in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SEHF02 0200 SEHF02 U S S 1982-84=100 Utility (piped) gas service in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SEMC 0200 SEMC U S S 1982-84=100 Professional services in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SETA 0200 SETA U S S DECEMBER 1997=100 New and used motor vehicles in Midwest urban, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUS0200SETA01 0200 SETA01 U S S 1982-84=100 New vehicles in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SETA02 0200 SETA02 U S S 1982-84=100 Used cars and trucks in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SETB 0200 SETB U S S 1982-84=100 Motor fuel in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SETB01 0200 SETB01 U S S 1982-84=100 Gasoline (all types) in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SETE 0200 SETE U S S DECEMBER 1977=100 Motor vehicle insurance in Midwest urban, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUS0200SS45011 0200 SS45011 U S S 1982-84=100 New cars in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SS4501A 0200 SS4501A U S S DECEMBER 1997=100 New cars and trucks in Midwest urban, all urban consumers, not seasonally adjusted 1998 S01 2021 S03 +CUUS0200SS47014 0200 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0200SS47015 0200 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Midwest urban, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUS0200SS47016 0200 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Midwest urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0230SA0 0230 SA0 U S S DECEMBER 2017=100 All items in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SA0E 0230 SA0E U S S DECEMBER 2017=100 Energy in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SA0L1E 0230 SA0L1E U S S DECEMBER 2017=100 All items less food and energy in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SA0L2 0230 SA0L2 U S S DECEMBER 2017=100 All items less shelter in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SA0L5 0230 SA0L5 U S S DECEMBER 2017=100 All items less medical care in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SA0LE 0230 SA0LE U S S DECEMBER 2017=100 All items less energy in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAA 0230 SAA U S S DECEMBER 2017=100 Apparel in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAC 0230 SAC U S S DECEMBER 2017=100 Commodities in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SACL1 0230 SACL1 U S S DECEMBER 2017=100 Commodities less food in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SACL11 0230 SACL11 U S S DECEMBER 2017=100 Commodities less food and beverages in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAD 0230 SAD U S S DECEMBER 2017=100 Durables in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAE 0230 SAE U S S DECEMBER 2017=100 Education and communication in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAEC 0230 SAEC U S S DECEMBER 2017=100 Education and communication commodities in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAES 0230 SAES U S S DECEMBER 2017=100 Education and communication services in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAF 0230 SAF U S S DECEMBER 2017=100 Food and beverages in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAF1 0230 SAF1 U S S DECEMBER 2017=100 Food in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAF11 0230 SAF11 U S S DECEMBER 2017=100 Food at home in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAF111 0230 SAF111 U S S DECEMBER 2017=100 Cereals and bakery products in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAF112 0230 SAF112 U S S DECEMBER 2017=100 Meats, poultry, fish, and eggs in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAF113 0230 SAF113 U S S DECEMBER 2017=100 Fruits and vegetables in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAF114 0230 SAF114 U S S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAF115 0230 SAF115 U S S DECEMBER 2017=100 Other food at home in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAF116 0230 SAF116 U S S DECEMBER 2017=100 Alcoholic beverages in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAG 0230 SAG U S S DECEMBER 2017=100 Other goods and services in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAGC 0230 SAGC U S S DECEMBER 2017=100 Other goods in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAGS 0230 SAGS U S S DECEMBER 2017=100 Other personal services in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAH 0230 SAH U S S DECEMBER 2017=100 Housing in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAH1 0230 SAH1 U S S DECEMBER 2017=100 Shelter in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAH2 0230 SAH2 U S S DECEMBER 2017=100 Fuels and utilities in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0230SAH21 0230 SAH21 U S S DECEMBER 2017=100 Household energy in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0230SAH3 0230 SAH3 U S S DECEMBER 2017=100 Household furnishings and operations in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAH31 0230 SAH31 U S S DECEMBER 2017=100 Household furnishings and supplies in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAM 0230 SAM U S S DECEMBER 2017=100 Medical care in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAN 0230 SAN U S S DECEMBER 2017=100 Nondurables in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SANL1 0230 SANL1 U S S DECEMBER 2017=100 Nondurables less food in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SANL11 0230 SANL11 U S S DECEMBER 2017=100 Nondurables less food and beverages in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAR 0230 SAR U S S DECEMBER 2017=100 Recreation in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAS 0230 SAS U S S DECEMBER 2017=100 Services in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SASL2RS 0230 SASL2RS U S S DECEMBER 2017=100 Services less rent of shelter in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SASL5 0230 SASL5 U S S DECEMBER 2017=100 Services less medical care services in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAT 0230 SAT U S S DECEMBER 2017=100 Transportation in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SAT1 0230 SAT1 U S S DECEMBER 2017=100 Private transportation in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SATCLTB 0230 SATCLTB U S S DECEMBER 2017=100 Transportation commodities less motor fuel in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SEEB 0230 SEEB U S S DECEMBER 2017=100 Tuition, other school fees, and childcare in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SEFJ 0230 SEFJ U S S DECEMBER 2017=100 Dairy and related products in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SEFV 0230 SEFV U S S DECEMBER 2017=100 Food away from home in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SEHA 0230 SEHA U S S DECEMBER 2017=100 Rent of primary residence in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SEHC 0230 SEHC U S S DECEMBER 2017=100 Owners' equivalent rent of residences in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SEHC01 0230 SEHC01 U S S DECEMBER 2017=100 Owners' equivalent rent of primary residence in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SEHF 0230 SEHF U S S DECEMBER 2017=100 Energy services in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0230SEHF01 0230 SEHF01 U S S DECEMBER 2017=100 Electricity in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0230SEHF02 0230 SEHF02 U S S DECEMBER 2017=100 Utility (piped) gas service in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0230SETA 0230 SETA U S S DECEMBER 2017=100 New and used motor vehicles in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SETA01 0230 SETA01 U S S DECEMBER 2017=100 New vehicles in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SETA02 0230 SETA02 U S S DECEMBER 2017=100 Used cars and trucks in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SETB 0230 SETB U S S DECEMBER 2017=100 Motor fuel in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SETB01 0230 SETB01 U S S DECEMBER 2017=100 Gasoline (all types) in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SETE 0230 SETE U S S DECEMBER 2017=100 Motor vehicle insurance in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2021 S03 +CUUS0230SS47014 0230 SS47014 U S S DECEMBER 2017=100 Gasoline, unleaded regular in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SS47015 0230 SS47015 U S S DECEMBER 2017=100 Gasoline, unleaded midgrade in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0230SS47016 0230 SS47016 U S S DECEMBER 2017=100 Gasoline, unleaded premium in East North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SA0 0240 SA0 U S S DECEMBER 2017=100 All items in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SA0E 0240 SA0E U S S DECEMBER 2017=100 Energy in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SA0L1E 0240 SA0L1E U S S DECEMBER 2017=100 All items less food and energy in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SA0L2 0240 SA0L2 U S S DECEMBER 2017=100 All items less shelter in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SA0L5 0240 SA0L5 U S S DECEMBER 2017=100 All items less medical care in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SA0LE 0240 SA0LE U S S DECEMBER 2017=100 All items less energy in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAA 0240 SAA U S S DECEMBER 2017=100 Apparel in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAC 0240 SAC U S S DECEMBER 2017=100 Commodities in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SACL1 0240 SACL1 U S S DECEMBER 2017=100 Commodities less food in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SACL11 0240 SACL11 U S S DECEMBER 2017=100 Commodities less food and beverages in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAD 0240 SAD U S S DECEMBER 2017=100 Durables in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAE 0240 SAE U S S DECEMBER 2017=100 Education and communication in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAEC 0240 SAEC U S S DECEMBER 2017=100 Education and communication commodities in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAES 0240 SAES U S S DECEMBER 2017=100 Education and communication services in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAF 0240 SAF U S S DECEMBER 2017=100 Food and beverages in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAF1 0240 SAF1 U S S DECEMBER 2017=100 Food in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAF11 0240 SAF11 U S S DECEMBER 2017=100 Food at home in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAF111 0240 SAF111 U S S DECEMBER 2017=100 Cereals and bakery products in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAF112 0240 SAF112 U S S DECEMBER 2017=100 Meats, poultry, fish, and eggs in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAF113 0240 SAF113 U S S DECEMBER 2017=100 Fruits and vegetables in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAF114 0240 SAF114 U S S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAF115 0240 SAF115 U S S DECEMBER 2017=100 Other food at home in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAF116 0240 SAF116 U S S DECEMBER 2017=100 Alcoholic beverages in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAG 0240 SAG U S S DECEMBER 2017=100 Other goods and services in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAGC 0240 SAGC U S S DECEMBER 2017=100 Other goods in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAGS 0240 SAGS U S S DECEMBER 2017=100 Other personal services in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAH 0240 SAH U S S DECEMBER 2017=100 Housing in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAH1 0240 SAH1 U S S DECEMBER 2017=100 Shelter in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAH2 0240 SAH2 U S S DECEMBER 2017=100 Fuels and utilities in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0240SAH21 0240 SAH21 U S S DECEMBER 2017=100 Household energy in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0240SAH3 0240 SAH3 U S S DECEMBER 2017=100 Household furnishings and operations in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAH31 0240 SAH31 U S S DECEMBER 2017=100 Household furnishings and supplies in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAM 0240 SAM U S S DECEMBER 2017=100 Medical care in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAN 0240 SAN U S S DECEMBER 2017=100 Nondurables in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SANL1 0240 SANL1 U S S DECEMBER 2017=100 Nondurables less food in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SANL11 0240 SANL11 U S S DECEMBER 2017=100 Nondurables less food and beverages in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAR 0240 SAR U S S DECEMBER 2017=100 Recreation in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAS 0240 SAS U S S DECEMBER 2017=100 Services in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SASL2RS 0240 SASL2RS U S S DECEMBER 2017=100 Services less rent of shelter in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SASL5 0240 SASL5 U S S DECEMBER 2017=100 Services less medical care services in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAT 0240 SAT U S S DECEMBER 2017=100 Transportation in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SAT1 0240 SAT1 U S S DECEMBER 2017=100 Private transportation in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SATCLTB 0240 SATCLTB U S S DECEMBER 2017=100 Transportation commodities less motor fuel in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SEEB 0240 SEEB U S S DECEMBER 2017=100 Tuition, other school fees, and childcare in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SEFJ 0240 SEFJ U S S DECEMBER 2017=100 Dairy and related products in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SEFV 0240 SEFV U S S DECEMBER 2017=100 Food away from home in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SEHA 0240 SEHA U S S DECEMBER 2017=100 Rent of primary residence in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SEHC 0240 SEHC U S S DECEMBER 2017=100 Owners' equivalent rent of residences in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SEHC01 0240 SEHC01 U S S DECEMBER 2017=100 Owners' equivalent rent of primary residence in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SEHF 0240 SEHF U S S DECEMBER 2017=100 Energy services in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0240SEHF01 0240 SEHF01 U S S DECEMBER 2017=100 Electricity in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0240SEHF02 0240 SEHF02 U S S DECEMBER 2017=100 Utility (piped) gas service in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0240SETA 0240 SETA U S S DECEMBER 2017=100 New and used motor vehicles in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SETA01 0240 SETA01 U S S DECEMBER 2017=100 New vehicles in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SETA02 0240 SETA02 U S S DECEMBER 2017=100 Used cars and trucks in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SETB 0240 SETB U S S DECEMBER 2017=100 Motor fuel in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SETB01 0240 SETB01 U S S DECEMBER 2017=100 Gasoline (all types) in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SETE 0240 SETE U S S DECEMBER 2017=100 Motor vehicle insurance in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2021 S03 +CUUS0240SS47014 0240 SS47014 U S S DECEMBER 2017=100 Gasoline, unleaded regular in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SS47015 0240 SS47015 U S S DECEMBER 2017=100 Gasoline, unleaded midgrade in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0240SS47016 0240 SS47016 U S S DECEMBER 2017=100 Gasoline, unleaded premium in West North Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0300AA0 0300 AA0 U S A DECEMBER 1977=100 All items - old base in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SA0 0300 SA0 U S S 1982-84=100 All items in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SA0E 0300 SA0E U S S 1982-84=100 Energy in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SA0L1 0300 SA0L1 U S S 1982-84=100 All items less food in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SA0L1E 0300 SA0L1E U S S 1982-84=100 All items less food and energy in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SA0L2 0300 SA0L2 U S S 1982-84=100 All items less shelter in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SA0L5 0300 SA0L5 U S S 1982-84=100 All items less medical care in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SA0LE 0300 SA0LE U S S 1982-84=100 All items less energy in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAA 0300 SAA U S S 1982-84=100 Apparel in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAC 0300 SAC U S S 1982-84=100 Commodities in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SACE 0300 SACE U S S 1982-84=100 Energy commodities in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SACL1 0300 SACL1 U S S 1982-84=100 Commodities less food in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SACL11 0300 SACL11 U S S 1982-84=100 Commodities less food and beverages in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SACL1E 0300 SACL1E U S S 1982-84=100 Commodities less food and energy commodities in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAD 0300 SAD U S S 1982-84=100 Durables in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAE 0300 SAE U S S DECEMBER 1997=100 Education and communication in South urban, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUS0300SAEC 0300 SAEC U S S DECEMBER 2009=100 Education and communication commodities in South urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0300SAES 0300 SAES U S S DECEMBER 2009=100 Education and communication services in South urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0300SAF 0300 SAF U S S 1982-84=100 Food and beverages in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAF1 0300 SAF1 U S S 1982-84=100 Food in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAF11 0300 SAF11 U S S 1982-84=100 Food at home in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAF111 0300 SAF111 U S S 1982-84=100 Cereals and bakery products in South urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0300SAF112 0300 SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in South urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0300SAF113 0300 SAF113 U S S 1982-84=100 Fruits and vegetables in South urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0300SAF114 0300 SAF114 U S S 1982-84=100 Nonalcoholic beverages and beverage materials in South urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0300SAF115 0300 SAF115 U S S 1982-84=100 Other food at home in South urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0300SAF116 0300 SAF116 U S S 1982-84=100 Alcoholic beverages in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAG 0300 SAG U S S 1982-84=100 Other goods and services in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAGC 0300 SAGC U S S DECEMBER 2009=100 Other goods in South urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0300SAGS 0300 SAGS U S S DECEMBER 2009=100 Other personal services in South urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0300SAH 0300 SAH U S S 1982-84=100 Housing in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAH1 0300 SAH1 U S S 1982-84=100 Shelter in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAH2 0300 SAH2 U S S 1982-84=100 Fuels and utilities in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAH21 0300 SAH21 U S S 1982-84=100 Household energy in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAH3 0300 SAH3 U S S 1982-84=100 Household furnishings and operations in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAH31 0300 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in South urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0300SAM 0300 SAM U S S 1982-84=100 Medical care in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAM1 0300 SAM1 U S S 1982-84=100 Medical care commodities in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAM2 0300 SAM2 U S S 1982-84=100 Medical care services in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAN 0300 SAN U S S 1982-84=100 Nondurables in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SANL1 0300 SANL1 U S S 1982-84=100 Nondurables less food in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SANL11 0300 SANL11 U S S 1982-84=100 Nondurables less food and beverages in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SANL113 0300 SANL113 U S S 1982-84=100 Nondurables less food, beverages, and apparel in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SANL13 0300 SANL13 U S S 1982-84=100 Nondurables less food and apparel in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAR 0300 SAR U S S DECEMBER 1997=100 Recreation in South urban, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUS0300SARC 0300 SARC U S S DECEMBER 2009=100 Recreation commodities in South urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0300SARS 0300 SARS U S S DECEMBER 2009=100 Recreation services in South urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0300SAS 0300 SAS U S S 1982-84=100 Services in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAS2RS 0300 SAS2RS U S S DECEMBER 1982=100 Rent of shelter in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAS367 0300 SAS367 U S S 1982-84=100 Other services in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAS4 0300 SAS4 U S S 1982-84=100 Transportation services in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SASL2RS 0300 SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SASL5 0300 SASL5 U S S 1982-84=100 Services less medical care services in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SASLE 0300 SASLE U S S 1982-84=100 Services less energy services in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAT 0300 SAT U S S 1982-84=100 Transportation in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SAT1 0300 SAT1 U S S 1982-84=100 Private transportation in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SATCLTB 0300 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in South urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0300SEEB 0300 SEEB U S S DECEMBER 1977=100 Tuition, other school fees, and childcare in South urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0300SEFJ 0300 SEFJ U S S 1982-84=100 Dairy and related products in South urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0300SEFV 0300 SEFV U S S 1982-84=100 Food away from home in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SEHA 0300 SEHA U S S 1982-84=100 Rent of primary residence in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SEHC 0300 SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SEHC01 0300 SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SEHF 0300 SEHF U S S 1982-84=100 Energy services in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SEHF01 0300 SEHF01 U S S 1982-84=100 Electricity in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SEHF02 0300 SEHF02 U S S 1982-84=100 Utility (piped) gas service in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SEMC 0300 SEMC U S S 1982-84=100 Professional services in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SETA 0300 SETA U S S DECEMBER 1997=100 New and used motor vehicles in South urban, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUS0300SETA01 0300 SETA01 U S S 1982-84=100 New vehicles in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SETA02 0300 SETA02 U S S 1982-84=100 Used cars and trucks in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SETB 0300 SETB U S S 1982-84=100 Motor fuel in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SETB01 0300 SETB01 U S S 1982-84=100 Gasoline (all types) in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SETE 0300 SETE U S S DECEMBER 1977=100 Motor vehicle insurance in South urban, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUS0300SS45011 0300 SS45011 U S S 1982-84=100 New cars in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SS4501A 0300 SS4501A U S S DECEMBER 1997=100 New cars and trucks in South urban, all urban consumers, not seasonally adjusted 1998 S01 2021 S03 +CUUS0300SS47014 0300 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0300SS47015 0300 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in South urban, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUS0300SS47016 0300 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in South urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0350SA0 0350 SA0 U S S DECEMBER 2017=100 All items in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SA0E 0350 SA0E U S S DECEMBER 2017=100 Energy in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SA0L1E 0350 SA0L1E U S S DECEMBER 2017=100 All items less food and energy in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SA0L2 0350 SA0L2 U S S DECEMBER 2017=100 All items less shelter in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SA0L5 0350 SA0L5 U S S DECEMBER 2017=100 All items less medical care in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SA0LE 0350 SA0LE U S S DECEMBER 2017=100 All items less energy in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAA 0350 SAA U S S DECEMBER 2017=100 Apparel in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAC 0350 SAC U S S DECEMBER 2017=100 Commodities in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SACL1 0350 SACL1 U S S DECEMBER 2017=100 Commodities less food in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SACL11 0350 SACL11 U S S DECEMBER 2017=100 Commodities less food and beverages in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAD 0350 SAD U S S DECEMBER 2017=100 Durables in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAE 0350 SAE U S S DECEMBER 2017=100 Education and communication in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAEC 0350 SAEC U S S DECEMBER 2017=100 Education and communication commodities in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAES 0350 SAES U S S DECEMBER 2017=100 Education and communication services in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAF 0350 SAF U S S DECEMBER 2017=100 Food and beverages in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAF1 0350 SAF1 U S S DECEMBER 2017=100 Food in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAF11 0350 SAF11 U S S DECEMBER 2017=100 Food at home in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAF111 0350 SAF111 U S S DECEMBER 2017=100 Cereals and bakery products in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAF112 0350 SAF112 U S S DECEMBER 2017=100 Meats, poultry, fish, and eggs in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAF113 0350 SAF113 U S S DECEMBER 2017=100 Fruits and vegetables in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAF114 0350 SAF114 U S S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAF115 0350 SAF115 U S S DECEMBER 2017=100 Other food at home in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAF116 0350 SAF116 U S S DECEMBER 2017=100 Alcoholic beverages in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAG 0350 SAG U S S DECEMBER 2017=100 Other goods and services in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAGC 0350 SAGC U S S DECEMBER 2017=100 Other goods in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAGS 0350 SAGS U S S DECEMBER 2017=100 Other personal services in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAH 0350 SAH U S S DECEMBER 2017=100 Housing in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAH1 0350 SAH1 U S S DECEMBER 2017=100 Shelter in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAH2 0350 SAH2 U S S DECEMBER 2017=100 Fuels and utilities in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0350SAH21 0350 SAH21 U S S DECEMBER 2017=100 Household energy in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0350SAH3 0350 SAH3 U S S DECEMBER 2017=100 Household furnishings and operations in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAH31 0350 SAH31 U S S DECEMBER 2017=100 Household furnishings and supplies in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAM 0350 SAM U S S DECEMBER 2017=100 Medical care in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAN 0350 SAN U S S DECEMBER 2017=100 Nondurables in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SANL1 0350 SANL1 U S S DECEMBER 2017=100 Nondurables less food in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SANL11 0350 SANL11 U S S DECEMBER 2017=100 Nondurables less food and beverages in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAR 0350 SAR U S S DECEMBER 2017=100 Recreation in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAS 0350 SAS U S S DECEMBER 2017=100 Services in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SASL2RS 0350 SASL2RS U S S DECEMBER 2017=100 Services less rent of shelter in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SASL5 0350 SASL5 U S S DECEMBER 2017=100 Services less medical care services in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAT 0350 SAT U S S DECEMBER 2017=100 Transportation in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SAT1 0350 SAT1 U S S DECEMBER 2017=100 Private transportation in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SATCLTB 0350 SATCLTB U S S DECEMBER 2017=100 Transportation commodities less motor fuel in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SEEB 0350 SEEB U S S DECEMBER 2017=100 Tuition, other school fees, and childcare in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SEFJ 0350 SEFJ U S S DECEMBER 2017=100 Dairy and related products in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SEFV 0350 SEFV U S S DECEMBER 2017=100 Food away from home in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SEHA 0350 SEHA U S S DECEMBER 2017=100 Rent of primary residence in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SEHC 0350 SEHC U S S DECEMBER 2017=100 Owners' equivalent rent of residences in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SEHC01 0350 SEHC01 U S S DECEMBER 2017=100 Owners' equivalent rent of primary residence in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SEHF 0350 SEHF U S S DECEMBER 2017=100 Energy services in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0350SEHF01 0350 SEHF01 U S S DECEMBER 2017=100 Electricity in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0350SEHF02 0350 SEHF02 U S S DECEMBER 2017=100 Utility (piped) gas service in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0350SETA 0350 SETA U S S DECEMBER 2017=100 New and used motor vehicles in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SETA01 0350 SETA01 U S S DECEMBER 2017=100 New vehicles in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SETA02 0350 SETA02 U S S DECEMBER 2017=100 Used cars and trucks in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SETB 0350 SETB U S S DECEMBER 2017=100 Motor fuel in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SETB01 0350 SETB01 U S S DECEMBER 2017=100 Gasoline (all types) in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SETE 0350 SETE U S S DECEMBER 2017=100 Motor vehicle insurance in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2021 S03 +CUUS0350SS47014 0350 SS47014 U S S DECEMBER 2017=100 Gasoline, unleaded regular in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SS47015 0350 SS47015 U S S DECEMBER 2017=100 Gasoline, unleaded midgrade in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0350SS47016 0350 SS47016 U S S DECEMBER 2017=100 Gasoline, unleaded premium in South Atlantic, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SA0 0360 SA0 U S S DECEMBER 2017=100 All items in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SA0E 0360 SA0E U S S DECEMBER 2017=100 Energy in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SA0L1E 0360 SA0L1E U S S DECEMBER 2017=100 All items less food and energy in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SA0L2 0360 SA0L2 U S S DECEMBER 2017=100 All items less shelter in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SA0L5 0360 SA0L5 U S S DECEMBER 2017=100 All items less medical care in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SA0LE 0360 SA0LE U S S DECEMBER 2017=100 All items less energy in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAA 0360 SAA U S S DECEMBER 2017=100 Apparel in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAC 0360 SAC U S S DECEMBER 2017=100 Commodities in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SACL1 0360 SACL1 U S S DECEMBER 2017=100 Commodities less food in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SACL11 0360 SACL11 U S S DECEMBER 2017=100 Commodities less food and beverages in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAD 0360 SAD U S S DECEMBER 2017=100 Durables in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAE 0360 SAE U S S DECEMBER 2017=100 Education and communication in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAEC 0360 SAEC U S S DECEMBER 2017=100 Education and communication commodities in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAES 0360 SAES U S S DECEMBER 2017=100 Education and communication services in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAF 0360 SAF U S S DECEMBER 2017=100 Food and beverages in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAF1 0360 SAF1 U S S DECEMBER 2017=100 Food in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAF11 0360 SAF11 U S S DECEMBER 2017=100 Food at home in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAF111 0360 SAF111 U S S DECEMBER 2017=100 Cereals and bakery products in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAF112 0360 SAF112 U S S DECEMBER 2017=100 Meats, poultry, fish, and eggs in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAF113 0360 SAF113 U S S DECEMBER 2017=100 Fruits and vegetables in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAF114 0360 SAF114 U S S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAF115 0360 SAF115 U S S DECEMBER 2017=100 Other food at home in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAF116 0360 SAF116 U S S DECEMBER 2017=100 Alcoholic beverages in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAG 0360 SAG U S S DECEMBER 2017=100 Other goods and services in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAGC 0360 SAGC U S S DECEMBER 2017=100 Other goods in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAGS 0360 SAGS U S S DECEMBER 2017=100 Other personal services in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAH 0360 SAH U S S DECEMBER 2017=100 Housing in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAH1 0360 SAH1 U S S DECEMBER 2017=100 Shelter in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAH2 0360 SAH2 U S S DECEMBER 2017=100 Fuels and utilities in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0360SAH21 0360 SAH21 U S S DECEMBER 2017=100 Household energy in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0360SAH3 0360 SAH3 U S S DECEMBER 2017=100 Household furnishings and operations in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAH31 0360 SAH31 U S S DECEMBER 2017=100 Household furnishings and supplies in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAM 0360 SAM U S S DECEMBER 2017=100 Medical care in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAN 0360 SAN U S S DECEMBER 2017=100 Nondurables in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SANL1 0360 SANL1 U S S DECEMBER 2017=100 Nondurables less food in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SANL11 0360 SANL11 U S S DECEMBER 2017=100 Nondurables less food and beverages in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAR 0360 SAR U S S DECEMBER 2017=100 Recreation in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAS 0360 SAS U S S DECEMBER 2017=100 Services in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SASL2RS 0360 SASL2RS U S S DECEMBER 2017=100 Services less rent of shelter in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SASL5 0360 SASL5 U S S DECEMBER 2017=100 Services less medical care services in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAT 0360 SAT U S S DECEMBER 2017=100 Transportation in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SAT1 0360 SAT1 U S S DECEMBER 2017=100 Private transportation in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SATCLTB 0360 SATCLTB U S S DECEMBER 2017=100 Transportation commodities less motor fuel in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SEEB 0360 SEEB U S S DECEMBER 2017=100 Tuition, other school fees, and childcare in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SEFJ 0360 SEFJ U S S DECEMBER 2017=100 Dairy and related products in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SEFV 0360 SEFV U S S DECEMBER 2017=100 Food away from home in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SEHA 0360 SEHA U S S DECEMBER 2017=100 Rent of primary residence in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SEHC 0360 SEHC U S S DECEMBER 2017=100 Owners' equivalent rent of residences in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SEHC01 0360 SEHC01 U S S DECEMBER 2017=100 Owners' equivalent rent of primary residence in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SEHF 0360 SEHF U S S DECEMBER 2017=100 Energy services in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0360SEHF01 0360 SEHF01 U S S DECEMBER 2017=100 Electricity in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0360SEHF02 0360 SEHF02 U S S DECEMBER 2017=100 Utility (piped) gas service in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0360SETA 0360 SETA U S S DECEMBER 2017=100 New and used motor vehicles in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SETA01 0360 SETA01 U S S DECEMBER 2017=100 New vehicles in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SETA02 0360 SETA02 U S S DECEMBER 2017=100 Used cars and trucks in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SETB 0360 SETB U S S DECEMBER 2017=100 Motor fuel in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SETB01 0360 SETB01 U S S DECEMBER 2017=100 Gasoline (all types) in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SETE 0360 SETE U S S DECEMBER 2017=100 Motor vehicle insurance in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2021 S03 +CUUS0360SS47014 0360 SS47014 U S S DECEMBER 2017=100 Gasoline, unleaded regular in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SS47015 0360 SS47015 U S S DECEMBER 2017=100 Gasoline, unleaded midgrade in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0360SS47016 0360 SS47016 U S S DECEMBER 2017=100 Gasoline, unleaded premium in East South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SA0 0370 SA0 U S S DECEMBER 2017=100 All items in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SA0E 0370 SA0E U S S DECEMBER 2017=100 Energy in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SA0L1E 0370 SA0L1E U S S DECEMBER 2017=100 All items less food and energy in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SA0L2 0370 SA0L2 U S S DECEMBER 2017=100 All items less shelter in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SA0L5 0370 SA0L5 U S S DECEMBER 2017=100 All items less medical care in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SA0LE 0370 SA0LE U S S DECEMBER 2017=100 All items less energy in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAA 0370 SAA U S S DECEMBER 2017=100 Apparel in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAC 0370 SAC U S S DECEMBER 2017=100 Commodities in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SACL1 0370 SACL1 U S S DECEMBER 2017=100 Commodities less food in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SACL11 0370 SACL11 U S S DECEMBER 2017=100 Commodities less food and beverages in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAD 0370 SAD U S S DECEMBER 2017=100 Durables in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAE 0370 SAE U S S DECEMBER 2017=100 Education and communication in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAEC 0370 SAEC U S S DECEMBER 2017=100 Education and communication commodities in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAES 0370 SAES U S S DECEMBER 2017=100 Education and communication services in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAF 0370 SAF U S S DECEMBER 2017=100 Food and beverages in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAF1 0370 SAF1 U S S DECEMBER 2017=100 Food in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAF11 0370 SAF11 U S S DECEMBER 2017=100 Food at home in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAF111 0370 SAF111 U S S DECEMBER 2017=100 Cereals and bakery products in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAF112 0370 SAF112 U S S DECEMBER 2017=100 Meats, poultry, fish, and eggs in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAF113 0370 SAF113 U S S DECEMBER 2017=100 Fruits and vegetables in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAF114 0370 SAF114 U S S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAF115 0370 SAF115 U S S DECEMBER 2017=100 Other food at home in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAF116 0370 SAF116 U S S DECEMBER 2017=100 Alcoholic beverages in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAG 0370 SAG U S S DECEMBER 2017=100 Other goods and services in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAGC 0370 SAGC U S S DECEMBER 2017=100 Other goods in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAGS 0370 SAGS U S S DECEMBER 2017=100 Other personal services in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAH 0370 SAH U S S DECEMBER 2017=100 Housing in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAH1 0370 SAH1 U S S DECEMBER 2017=100 Shelter in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAH2 0370 SAH2 U S S DECEMBER 2017=100 Fuels and utilities in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0370SAH21 0370 SAH21 U S S DECEMBER 2017=100 Household energy in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0370SAH3 0370 SAH3 U S S DECEMBER 2017=100 Household furnishings and operations in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAH31 0370 SAH31 U S S DECEMBER 2017=100 Household furnishings and supplies in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAM 0370 SAM U S S DECEMBER 2017=100 Medical care in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAN 0370 SAN U S S DECEMBER 2017=100 Nondurables in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SANL1 0370 SANL1 U S S DECEMBER 2017=100 Nondurables less food in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SANL11 0370 SANL11 U S S DECEMBER 2017=100 Nondurables less food and beverages in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAR 0370 SAR U S S DECEMBER 2017=100 Recreation in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAS 0370 SAS U S S DECEMBER 2017=100 Services in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SASL2RS 0370 SASL2RS U S S DECEMBER 2017=100 Services less rent of shelter in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SASL5 0370 SASL5 U S S DECEMBER 2017=100 Services less medical care services in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAT 0370 SAT U S S DECEMBER 2017=100 Transportation in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SAT1 0370 SAT1 U S S DECEMBER 2017=100 Private transportation in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SATCLTB 0370 SATCLTB U S S DECEMBER 2017=100 Transportation commodities less motor fuel in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SEEB 0370 SEEB U S S DECEMBER 2017=100 Tuition, other school fees, and childcare in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SEFJ 0370 SEFJ U S S DECEMBER 2017=100 Dairy and related products in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SEFV 0370 SEFV U S S DECEMBER 2017=100 Food away from home in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SEHA 0370 SEHA U S S DECEMBER 2017=100 Rent of primary residence in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SEHC 0370 SEHC U S S DECEMBER 2017=100 Owners' equivalent rent of residences in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SEHC01 0370 SEHC01 U S S DECEMBER 2017=100 Owners' equivalent rent of primary residence in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SEHF 0370 SEHF U S S DECEMBER 2017=100 Energy services in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0370SEHF01 0370 SEHF01 U S S DECEMBER 2017=100 Electricity in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0370SEHF02 0370 SEHF02 U S S DECEMBER 2017=100 Utility (piped) gas service in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0370SETA 0370 SETA U S S DECEMBER 2017=100 New and used motor vehicles in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SETA01 0370 SETA01 U S S DECEMBER 2017=100 New vehicles in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SETA02 0370 SETA02 U S S DECEMBER 2017=100 Used cars and trucks in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SETB 0370 SETB U S S DECEMBER 2017=100 Motor fuel in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SETB01 0370 SETB01 U S S DECEMBER 2017=100 Gasoline (all types) in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SETE 0370 SETE U S S DECEMBER 2017=100 Motor vehicle insurance in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2021 S03 +CUUS0370SS47014 0370 SS47014 U S S DECEMBER 2017=100 Gasoline, unleaded regular in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SS47015 0370 SS47015 U S S DECEMBER 2017=100 Gasoline, unleaded midgrade in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0370SS47016 0370 SS47016 U S S DECEMBER 2017=100 Gasoline, unleaded premium in West South Central, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0400AA0 0400 AA0 U S A DECEMBER 1977=100 All items - old base in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SA0 0400 SA0 U S S 1982-84=100 All items in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SA0E 0400 SA0E U S S 1982-84=100 Energy in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SA0L1 0400 SA0L1 U S S 1982-84=100 All items less food in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SA0L1E 0400 SA0L1E U S S 1982-84=100 All items less food and energy in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SA0L2 0400 SA0L2 U S S 1982-84=100 All items less shelter in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SA0L5 0400 SA0L5 U S S 1982-84=100 All items less medical care in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SA0LE 0400 SA0LE U S S 1982-84=100 All items less energy in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAA 0400 SAA U S S 1982-84=100 Apparel in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAC 0400 SAC U S S 1982-84=100 Commodities in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SACE 0400 SACE U S S 1982-84=100 Energy commodities in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SACL1 0400 SACL1 U S S 1982-84=100 Commodities less food in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SACL11 0400 SACL11 U S S 1982-84=100 Commodities less food and beverages in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SACL1E 0400 SACL1E U S S 1982-84=100 Commodities less food and energy commodities in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAD 0400 SAD U S S 1982-84=100 Durables in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAE 0400 SAE U S S DECEMBER 1997=100 Education and communication in West urban, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUS0400SAEC 0400 SAEC U S S DECEMBER 2009=100 Education and communication commodities in West urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0400SAES 0400 SAES U S S DECEMBER 2009=100 Education and communication services in West urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0400SAF 0400 SAF U S S 1982-84=100 Food and beverages in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAF1 0400 SAF1 U S S 1982-84=100 Food in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAF11 0400 SAF11 U S S 1982-84=100 Food at home in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAF111 0400 SAF111 U S S 1982-84=100 Cereals and bakery products in West urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0400SAF112 0400 SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in West urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0400SAF113 0400 SAF113 U S S 1982-84=100 Fruits and vegetables in West urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0400SAF114 0400 SAF114 U S S 1982-84=100 Nonalcoholic beverages and beverage materials in West urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0400SAF115 0400 SAF115 U S S 1982-84=100 Other food at home in West urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0400SAF116 0400 SAF116 U S S 1982-84=100 Alcoholic beverages in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAG 0400 SAG U S S 1982-84=100 Other goods and services in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAGC 0400 SAGC U S S DECEMBER 2009=100 Other goods in West urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0400SAGS 0400 SAGS U S S DECEMBER 2009=100 Other personal services in West urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0400SAH 0400 SAH U S S 1982-84=100 Housing in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAH1 0400 SAH1 U S S 1982-84=100 Shelter in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAH2 0400 SAH2 U S S 1982-84=100 Fuels and utilities in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAH21 0400 SAH21 U S S 1982-84=100 Household energy in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAH3 0400 SAH3 U S S 1982-84=100 Household furnishings and operations in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAH31 0400 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in West urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0400SAM 0400 SAM U S S 1982-84=100 Medical care in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAM1 0400 SAM1 U S S 1982-84=100 Medical care commodities in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAM2 0400 SAM2 U S S 1982-84=100 Medical care services in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAN 0400 SAN U S S 1982-84=100 Nondurables in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SANL1 0400 SANL1 U S S 1982-84=100 Nondurables less food in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SANL11 0400 SANL11 U S S 1982-84=100 Nondurables less food and beverages in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SANL113 0400 SANL113 U S S 1982-84=100 Nondurables less food, beverages, and apparel in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SANL13 0400 SANL13 U S S 1982-84=100 Nondurables less food and apparel in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAR 0400 SAR U S S DECEMBER 1997=100 Recreation in West urban, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUS0400SARC 0400 SARC U S S DECEMBER 2009=100 Recreation commodities in West urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0400SARS 0400 SARS U S S DECEMBER 2009=100 Recreation services in West urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0400SAS 0400 SAS U S S 1982-84=100 Services in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAS2RS 0400 SAS2RS U S S DECEMBER 1982=100 Rent of shelter in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAS367 0400 SAS367 U S S 1982-84=100 Other services in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAS4 0400 SAS4 U S S 1982-84=100 Transportation services in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SASL2RS 0400 SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SASL5 0400 SASL5 U S S 1982-84=100 Services less medical care services in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SASLE 0400 SASLE U S S 1982-84=100 Services less energy services in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAT 0400 SAT U S S 1982-84=100 Transportation in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SAT1 0400 SAT1 U S S 1982-84=100 Private transportation in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SATCLTB 0400 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in West urban, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUS0400SEEB 0400 SEEB U S S DECEMBER 1977=100 Tuition, other school fees, and childcare in West urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0400SEFJ 0400 SEFJ U S S 1982-84=100 Dairy and related products in West urban, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUS0400SEFV 0400 SEFV U S S 1982-84=100 Food away from home in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SEHA 0400 SEHA U S S 1982-84=100 Rent of primary residence in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SEHC 0400 SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SEHC01 0400 SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SEHF 0400 SEHF U S S 1982-84=100 Energy services in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SEHF01 0400 SEHF01 U S S 1982-84=100 Electricity in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SEHF02 0400 SEHF02 U S S 1982-84=100 Utility (piped) gas service in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SEMC 0400 SEMC U S S 1982-84=100 Professional services in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SETA 0400 SETA U S S DECEMBER 1997=100 New and used motor vehicles in West urban, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUS0400SETA01 0400 SETA01 U S S 1982-84=100 New vehicles in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SETA02 0400 SETA02 U S S 1982-84=100 Used cars and trucks in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SETB 0400 SETB U S S 1982-84=100 Motor fuel in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SETB01 0400 SETB01 U S S 1982-84=100 Gasoline (all types) in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SETE 0400 SETE U S S DECEMBER 1977=100 Motor vehicle insurance in West urban, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUS0400SS45011 0400 SS45011 U S S 1982-84=100 New cars in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SS4501A 0400 SS4501A U S S DECEMBER 1997=100 New cars and trucks in West urban, all urban consumers, not seasonally adjusted 1998 S01 2021 S03 +CUUS0400SS47014 0400 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0400SS47015 0400 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in West urban, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUS0400SS47016 0400 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in West urban, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUS0480SA0 0480 SA0 U S S DECEMBER 2017=100 All items in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SA0E 0480 SA0E U S S DECEMBER 2017=100 Energy in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SA0L1E 0480 SA0L1E U S S DECEMBER 2017=100 All items less food and energy in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SA0L2 0480 SA0L2 U S S DECEMBER 2017=100 All items less shelter in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SA0L5 0480 SA0L5 U S S DECEMBER 2017=100 All items less medical care in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SA0LE 0480 SA0LE U S S DECEMBER 2017=100 All items less energy in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAA 0480 SAA U S S DECEMBER 2017=100 Apparel in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAC 0480 SAC U S S DECEMBER 2017=100 Commodities in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SACL1 0480 SACL1 U S S DECEMBER 2017=100 Commodities less food in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SACL11 0480 SACL11 U S S DECEMBER 2017=100 Commodities less food and beverages in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAD 0480 SAD U S S DECEMBER 2017=100 Durables in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAE 0480 SAE U S S DECEMBER 2017=100 Education and communication in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAEC 0480 SAEC U S S DECEMBER 2017=100 Education and communication commodities in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAES 0480 SAES U S S DECEMBER 2017=100 Education and communication services in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAF 0480 SAF U S S DECEMBER 2017=100 Food and beverages in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAF1 0480 SAF1 U S S DECEMBER 2017=100 Food in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAF11 0480 SAF11 U S S DECEMBER 2017=100 Food at home in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAF111 0480 SAF111 U S S DECEMBER 2017=100 Cereals and bakery products in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAF112 0480 SAF112 U S S DECEMBER 2017=100 Meats, poultry, fish, and eggs in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAF113 0480 SAF113 U S S DECEMBER 2017=100 Fruits and vegetables in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAF114 0480 SAF114 U S S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAF115 0480 SAF115 U S S DECEMBER 2017=100 Other food at home in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAF116 0480 SAF116 U S S DECEMBER 2017=100 Alcoholic beverages in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAG 0480 SAG U S S DECEMBER 2017=100 Other goods and services in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAGC 0480 SAGC U S S DECEMBER 2017=100 Other goods in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAGS 0480 SAGS U S S DECEMBER 2017=100 Other personal services in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAH 0480 SAH U S S DECEMBER 2017=100 Housing in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAH1 0480 SAH1 U S S DECEMBER 2017=100 Shelter in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAH2 0480 SAH2 U S S DECEMBER 2017=100 Fuels and utilities in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0480SAH21 0480 SAH21 U S S DECEMBER 2017=100 Household energy in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0480SAH3 0480 SAH3 U S S DECEMBER 2017=100 Household furnishings and operations in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAH31 0480 SAH31 U S S DECEMBER 2017=100 Household furnishings and supplies in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAM 0480 SAM U S S DECEMBER 2017=100 Medical care in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAN 0480 SAN U S S DECEMBER 2017=100 Nondurables in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SANL1 0480 SANL1 U S S DECEMBER 2017=100 Nondurables less food in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SANL11 0480 SANL11 U S S DECEMBER 2017=100 Nondurables less food and beverages in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAR 0480 SAR U S S DECEMBER 2017=100 Recreation in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAS 0480 SAS U S S DECEMBER 2017=100 Services in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SASL2RS 0480 SASL2RS U S S DECEMBER 2017=100 Services less rent of shelter in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SASL5 0480 SASL5 U S S DECEMBER 2017=100 Services less medical care services in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAT 0480 SAT U S S DECEMBER 2017=100 Transportation in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SAT1 0480 SAT1 U S S DECEMBER 2017=100 Private transportation in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SATCLTB 0480 SATCLTB U S S DECEMBER 2017=100 Transportation commodities less motor fuel in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SEEB 0480 SEEB U S S DECEMBER 2017=100 Tuition, other school fees, and childcare in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SEFJ 0480 SEFJ U S S DECEMBER 2017=100 Dairy and related products in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SEFV 0480 SEFV U S S DECEMBER 2017=100 Food away from home in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SEHA 0480 SEHA U S S DECEMBER 2017=100 Rent of primary residence in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SEHC 0480 SEHC U S S DECEMBER 2017=100 Owners' equivalent rent of residences in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SEHC01 0480 SEHC01 U S S DECEMBER 2017=100 Owners' equivalent rent of primary residence in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SEHF 0480 SEHF U S S DECEMBER 2017=100 Energy services in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0480SEHF01 0480 SEHF01 U S S DECEMBER 2017=100 Electricity in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0480SEHF02 0480 SEHF02 U S S DECEMBER 2017=100 Utility (piped) gas service in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0480SETA 0480 SETA U S S DECEMBER 2017=100 New and used motor vehicles in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SETA01 0480 SETA01 U S S DECEMBER 2017=100 New vehicles in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SETA02 0480 SETA02 U S S DECEMBER 2017=100 Used cars and trucks in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SETB 0480 SETB U S S DECEMBER 2017=100 Motor fuel in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SETB01 0480 SETB01 U S S DECEMBER 2017=100 Gasoline (all types) in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SETE 0480 SETE U S S DECEMBER 2017=100 Motor vehicle insurance in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2021 S03 +CUUS0480SS47014 0480 SS47014 U S S DECEMBER 2017=100 Gasoline, unleaded regular in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SS47015 0480 SS47015 U S S DECEMBER 2017=100 Gasoline, unleaded midgrade in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0480SS47016 0480 SS47016 U S S DECEMBER 2017=100 Gasoline, unleaded premium in Mountain, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SA0 0490 SA0 U S S DECEMBER 2017=100 All items in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SA0E 0490 SA0E U S S DECEMBER 2017=100 Energy in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SA0L1E 0490 SA0L1E U S S DECEMBER 2017=100 All items less food and energy in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SA0L2 0490 SA0L2 U S S DECEMBER 2017=100 All items less shelter in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SA0L5 0490 SA0L5 U S S DECEMBER 2017=100 All items less medical care in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SA0LE 0490 SA0LE U S S DECEMBER 2017=100 All items less energy in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAA 0490 SAA U S S DECEMBER 2017=100 Apparel in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAC 0490 SAC U S S DECEMBER 2017=100 Commodities in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SACL1 0490 SACL1 U S S DECEMBER 2017=100 Commodities less food in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SACL11 0490 SACL11 U S S DECEMBER 2017=100 Commodities less food and beverages in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAD 0490 SAD U S S DECEMBER 2017=100 Durables in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAE 0490 SAE U S S DECEMBER 2017=100 Education and communication in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAEC 0490 SAEC U S S DECEMBER 2017=100 Education and communication commodities in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAES 0490 SAES U S S DECEMBER 2017=100 Education and communication services in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAF 0490 SAF U S S DECEMBER 2017=100 Food and beverages in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAF1 0490 SAF1 U S S DECEMBER 2017=100 Food in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAF11 0490 SAF11 U S S DECEMBER 2017=100 Food at home in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAF111 0490 SAF111 U S S DECEMBER 2017=100 Cereals and bakery products in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAF112 0490 SAF112 U S S DECEMBER 2017=100 Meats, poultry, fish, and eggs in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAF113 0490 SAF113 U S S DECEMBER 2017=100 Fruits and vegetables in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAF114 0490 SAF114 U S S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAF115 0490 SAF115 U S S DECEMBER 2017=100 Other food at home in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAF116 0490 SAF116 U S S DECEMBER 2017=100 Alcoholic beverages in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAG 0490 SAG U S S DECEMBER 2017=100 Other goods and services in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAGC 0490 SAGC U S S DECEMBER 2017=100 Other goods in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAGS 0490 SAGS U S S DECEMBER 2017=100 Other personal services in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAH 0490 SAH U S S DECEMBER 2017=100 Housing in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAH1 0490 SAH1 U S S DECEMBER 2017=100 Shelter in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAH2 0490 SAH2 U S S DECEMBER 2017=100 Fuels and utilities in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0490SAH21 0490 SAH21 U S S DECEMBER 2017=100 Household energy in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0490SAH3 0490 SAH3 U S S DECEMBER 2017=100 Household furnishings and operations in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAH31 0490 SAH31 U S S DECEMBER 2017=100 Household furnishings and supplies in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAM 0490 SAM U S S DECEMBER 2017=100 Medical care in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAN 0490 SAN U S S DECEMBER 2017=100 Nondurables in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SANL1 0490 SANL1 U S S DECEMBER 2017=100 Nondurables less food in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SANL11 0490 SANL11 U S S DECEMBER 2017=100 Nondurables less food and beverages in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAR 0490 SAR U S S DECEMBER 2017=100 Recreation in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAS 0490 SAS U S S DECEMBER 2017=100 Services in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SASL2RS 0490 SASL2RS U S S DECEMBER 2017=100 Services less rent of shelter in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SASL5 0490 SASL5 U S S DECEMBER 2017=100 Services less medical care services in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAT 0490 SAT U S S DECEMBER 2017=100 Transportation in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SAT1 0490 SAT1 U S S DECEMBER 2017=100 Private transportation in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SATCLTB 0490 SATCLTB U S S DECEMBER 2017=100 Transportation commodities less motor fuel in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SEEB 0490 SEEB U S S DECEMBER 2017=100 Tuition, other school fees, and childcare in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SEFJ 0490 SEFJ U S S DECEMBER 2017=100 Dairy and related products in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SEFV 0490 SEFV U S S DECEMBER 2017=100 Food away from home in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SEHA 0490 SEHA U S S DECEMBER 2017=100 Rent of primary residence in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SEHC 0490 SEHC U S S DECEMBER 2017=100 Owners' equivalent rent of residences in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SEHC01 0490 SEHC01 U S S DECEMBER 2017=100 Owners' equivalent rent of primary residence in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SEHF 0490 SEHF U S S DECEMBER 2017=100 Energy services in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0490SEHF01 0490 SEHF01 U S S DECEMBER 2017=100 Electricity in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0490SEHF02 0490 SEHF02 U S S DECEMBER 2017=100 Utility (piped) gas service in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUS0490SETA 0490 SETA U S S DECEMBER 2017=100 New and used motor vehicles in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SETA01 0490 SETA01 U S S DECEMBER 2017=100 New vehicles in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SETA02 0490 SETA02 U S S DECEMBER 2017=100 Used cars and trucks in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SETB 0490 SETB U S S DECEMBER 2017=100 Motor fuel in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SETB01 0490 SETB01 U S S DECEMBER 2017=100 Gasoline (all types) in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SETE 0490 SETE U S S DECEMBER 2017=100 Motor vehicle insurance in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2021 S03 +CUUS0490SS47014 0490 SS47014 U S S DECEMBER 2017=100 Gasoline, unleaded regular in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SS47015 0490 SS47015 U S S DECEMBER 2017=100 Gasoline, unleaded midgrade in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUS0490SS47016 0490 SS47016 U S S DECEMBER 2017=100 Gasoline, unleaded premium in Pacific, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSA104AA0 A104 AA0 U S A 1967=100 All items - old base in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SA0 A104 SA0 U S S 1982-84=100 All items in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SA0E A104 SA0E U S S 1982-84=100 Energy in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SA0L1E A104 SA0L1E U S S 1982-84=100 All items less food and energy in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SA0L2 A104 SA0L2 U S S 1982-84=100 All items less shelter in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SA0L5 A104 SA0L5 U S S 1982-84=100 All items less medical care in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SA0LE A104 SA0LE U S S 1982-84=100 All items less energy in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SAA A104 SAA U S S 1982-84=100 Apparel in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SAC A104 SAC U S S 1982-84=100 Commodities in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SACL1 A104 SACL1 U S S 1982-84=100 Commodities less food in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SACL11 A104 SACL11 U S S 1982-84=100 Commodities less food and beverages in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SAD A104 SAD U S S 1982-84=100 Durables in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SAE A104 SAE U S S DECEMBER 1997=100 Education and communication in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA104SAEC A104 SAEC U S S DECEMBER 2009=100 Education and communication commodities in Pittsburgh, PA, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA104SAES A104 SAES U S S DECEMBER 2009=100 Education and communication services in Pittsburgh, PA, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA104SAF A104 SAF U S S 1982-84=100 Food and beverages in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SAF1 A104 SAF1 U S S 1982-84=100 Food in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SAF11 A104 SAF11 U S S 1982-84=100 Food at home in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SAF116 A104 SAF116 U S S 1982-84=100 Alcoholic beverages in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SAG A104 SAG U S S 1982-84=100 Other goods and services in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SAGC A104 SAGC U S S DECEMBER 2009=100 Other goods in Pittsburgh, PA, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA104SAGS A104 SAGS U S S DECEMBER 2009=100 Other personal services in Pittsburgh, PA, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA104SAH A104 SAH U S S 1982-84=100 Housing in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SAH1 A104 SAH1 U S S 1982-84=100 Shelter in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SAH2 A104 SAH2 U S S 1982-84=100 Fuels and utilities in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SAH21 A104 SAH21 U S S 1982-84=100 Household energy in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SAH3 A104 SAH3 U S S 1982-84=100 Household furnishings and operations in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SAH31 A104 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Pittsburgh, PA, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA104SAM A104 SAM U S S 1982-84=100 Medical care in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SAN A104 SAN U S S 1982-84=100 Nondurables in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SANL1 A104 SANL1 U S S 1982-84=100 Nondurables less food in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SANL11 A104 SANL11 U S S 1982-84=100 Nondurables less food and beverages in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SAR A104 SAR U S S DECEMBER 1997=100 Recreation in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA104SAS A104 SAS U S S 1982-84=100 Services in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SASL2RS A104 SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SASL5 A104 SASL5 U S S 1982-84=100 Services less medical care services in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SAT A104 SAT U S S 1982-84=100 Transportation in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SAT1 A104 SAT1 U S S 1982-84=100 Private transportation in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SATCLTB A104 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Pittsburgh, PA, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA104SEFV A104 SEFV U S S 1982-84=100 Food away from home in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SEHA A104 SEHA U S S 1982-84=100 Rent of primary residence in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SEHC A104 SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SEHC01 A104 SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SEHF A104 SEHF U S S 1982-84=100 Energy services in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SEHF01 A104 SEHF01 U S S 1982-84=100 Electricity in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SEHF02 A104 SEHF02 U S S 1982-84=100 Utility (piped) gas service in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SETB A104 SETB U S S 1982-84=100 Motor fuel in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SETB01 A104 SETB01 U S S 1982-84=100 Gasoline (all types) in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SS47014 A104 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA104SS47015 A104 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1994 S01 2017 S03 +CUUSA104SS47016 A104 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Pittsburgh, PA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210AA0 A210 AA0 U S A 1967=100 All items - old base in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SA0 A210 SA0 U S S 1982-84=100 All items in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SA0E A210 SA0E U S S 1982-84=100 Energy in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SA0L1E A210 SA0L1E U S S 1982-84=100 All items less food and energy in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SA0L2 A210 SA0L2 U S S 1982-84=100 All items less shelter in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SA0L5 A210 SA0L5 U S S 1982-84=100 All items less medical care in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SA0LE A210 SA0LE U S S 1982-84=100 All items less energy in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SAA A210 SAA U S S 1982-84=100 Apparel in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SAC A210 SAC U S S 1982-84=100 Commodities in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SACL1 A210 SACL1 U S S 1982-84=100 Commodities less food in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SACL11 A210 SACL11 U S S 1982-84=100 Commodities less food and beverages in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SAD A210 SAD U S S 1982-84=100 Durables in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SAE A210 SAE U S S DECEMBER 1997=100 Education and communication in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA210SAEC A210 SAEC U S S DECEMBER 2009=100 Education and communication commodities in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA210SAES A210 SAES U S S DECEMBER 2009=100 Education and communication services in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA210SAF A210 SAF U S S 1982-84=100 Food and beverages in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SAF1 A210 SAF1 U S S 1982-84=100 Food in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SAF11 A210 SAF11 U S S 1982-84=100 Food at home in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SAF116 A210 SAF116 U S S 1982-84=100 Alcoholic beverages in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SAG A210 SAG U S S 1982-84=100 Other goods and services in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SAGC A210 SAGC U S S DECEMBER 2009=100 Other goods in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA210SAGS A210 SAGS U S S DECEMBER 2009=100 Other personal services in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA210SAH A210 SAH U S S 1982-84=100 Housing in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SAH1 A210 SAH1 U S S 1982-84=100 Shelter in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SAH2 A210 SAH2 U S S 1982-84=100 Fuels and utilities in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SAH21 A210 SAH21 U S S 1982-84=100 Household energy in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SAH3 A210 SAH3 U S S 1982-84=100 Household furnishings and operations in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SAH31 A210 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA210SAM A210 SAM U S S 1982-84=100 Medical care in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SAN A210 SAN U S S 1982-84=100 Nondurables in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SANL1 A210 SANL1 U S S 1982-84=100 Nondurables less food in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SANL11 A210 SANL11 U S S 1982-84=100 Nondurables less food and beverages in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SAR A210 SAR U S S DECEMBER 1997=100 Recreation in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA210SAS A210 SAS U S S 1982-84=100 Services in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SASL2RS A210 SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SASL5 A210 SASL5 U S S 1982-84=100 Services less medical care services in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SAT A210 SAT U S S 1982-84=100 Transportation in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SAT1 A210 SAT1 U S S 1982-84=100 Private transportation in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SATCLTB A210 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA210SEFV A210 SEFV U S S 1982-84=100 Food away from home in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SEHA A210 SEHA U S S 1982-84=100 Rent of primary residence in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SEHC A210 SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SEHC01 A210 SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SEHF A210 SEHF U S S 1982-84=100 Energy services in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SEHF01 A210 SEHF01 U S S 1982-84=100 Electricity in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SEHF02 A210 SEHF02 U S S 1982-84=100 Utility (piped) gas service in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SETB A210 SETB U S S 1982-84=100 Motor fuel in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SETB01 A210 SETB01 U S S 1982-84=100 Gasoline (all types) in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SS47014 A210 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA210SS47015 A210 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1994 S01 2017 S03 +CUUSA210SS47016 A210 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Cleveland-Akron, OH, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212AA0 A212 AA0 U S A 1967=100 All items - old base in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SA0 A212 SA0 U S S 1982-84=100 All items in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SA0E A212 SA0E U S S 1982-84=100 Energy in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SA0L1E A212 SA0L1E U S S 1982-84=100 All items less food and energy in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SA0L2 A212 SA0L2 U S S 1982-84=100 All items less shelter in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SA0L5 A212 SA0L5 U S S 1982-84=100 All items less medical care in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SA0LE A212 SA0LE U S S 1982-84=100 All items less energy in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SAA A212 SAA U S S 1982-84=100 Apparel in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SAC A212 SAC U S S 1982-84=100 Commodities in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SACL1 A212 SACL1 U S S 1982-84=100 Commodities less food in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SACL11 A212 SACL11 U S S 1982-84=100 Commodities less food and beverages in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SAD A212 SAD U S S 1982-84=100 Durables in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SAE A212 SAE U S S DECEMBER 1997=100 Education and communication in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA212SAEC A212 SAEC U S S DECEMBER 2009=100 Education and communication commodities in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA212SAES A212 SAES U S S DECEMBER 2009=100 Education and communication services in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA212SAF A212 SAF U S S 1982-84=100 Food and beverages in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SAF1 A212 SAF1 U S S 1982-84=100 Food in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SAF11 A212 SAF11 U S S 1982-84=100 Food at home in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SAF116 A212 SAF116 U S S 1982-84=100 Alcoholic beverages in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SAG A212 SAG U S S 1982-84=100 Other goods and services in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SAGC A212 SAGC U S S DECEMBER 2009=100 Other goods in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA212SAGS A212 SAGS U S S DECEMBER 2009=100 Other personal services in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA212SAH A212 SAH U S S 1982-84=100 Housing in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SAH1 A212 SAH1 U S S 1982-84=100 Shelter in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SAH2 A212 SAH2 U S S 1982-84=100 Fuels and utilities in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SAH21 A212 SAH21 U S S 1982-84=100 Household energy in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SAH3 A212 SAH3 U S S 1982-84=100 Household furnishings and operations in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SAH31 A212 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA212SAM A212 SAM U S S 1982-84=100 Medical care in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SAN A212 SAN U S S 1982-84=100 Nondurables in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SANL1 A212 SANL1 U S S 1982-84=100 Nondurables less food in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SANL11 A212 SANL11 U S S 1982-84=100 Nondurables less food and beverages in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SAR A212 SAR U S S DECEMBER 1997=100 Recreation in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA212SAS A212 SAS U S S 1982-84=100 Services in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SASL2RS A212 SASL2RS U S S NOVEMBER 1982=100 Services less rent of shelter in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SASL5 A212 SASL5 U S S 1982-84=100 Services less medical care services in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SAT A212 SAT U S S 1982-84=100 Transportation in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SAT1 A212 SAT1 U S S 1982-84=100 Private transportation in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SATCLTB A212 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA212SEFV A212 SEFV U S S 1982-84=100 Food away from home in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SEHA A212 SEHA U S S 1982-84=100 Rent of primary residence in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SEHC A212 SEHC U S S NOVEMBER 1982=100 Owners' equivalent rent of residences in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SEHC01 A212 SEHC01 U S S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SEHF A212 SEHF U S S 1982-84=100 Energy services in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SEHF01 A212 SEHF01 U S S 1982-84=100 Electricity in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SEHF02 A212 SEHF02 U S S 1982-84=100 Utility (piped) gas service in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SETB A212 SETB U S S 1982-84=100 Motor fuel in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SETB01 A212 SETB01 U S S 1982-84=100 Gasoline (all types) in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SS47014 A212 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA212SS47015 A212 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1994 S01 2017 S03 +CUUSA212SS47016 A212 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Milwaukee-Racine, WI, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213AA0 A213 AA0 U S A 1967=100 All items - old base in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SA0 A213 SA0 U S S 1982-84=100 All items in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SA0E A213 SA0E U S S 1982-84=100 Energy in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SA0L1E A213 SA0L1E U S S 1982-84=100 All items less food and energy in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SA0L2 A213 SA0L2 U S S 1982-84=100 All items less shelter in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SA0L5 A213 SA0L5 U S S 1982-84=100 All items less medical care in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SA0LE A213 SA0LE U S S 1982-84=100 All items less energy in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SAA A213 SAA U S S 1982-84=100 Apparel in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SAC A213 SAC U S S 1982-84=100 Commodities in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SACL1 A213 SACL1 U S S 1982-84=100 Commodities less food in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SACL11 A213 SACL11 U S S 1982-84=100 Commodities less food and beverages in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SAD A213 SAD U S S 1982-84=100 Durables in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SAE A213 SAE U S S DECEMBER 1997=100 Education and communication in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA213SAEC A213 SAEC U S S DECEMBER 2009=100 Education and communication commodities in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA213SAES A213 SAES U S S DECEMBER 2009=100 Education and communication services in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA213SAF A213 SAF U S S 1982-84=100 Food and beverages in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SAF1 A213 SAF1 U S S 1982-84=100 Food in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SAF11 A213 SAF11 U S S 1982-84=100 Food at home in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SAF116 A213 SAF116 U S S 1982-84=100 Alcoholic beverages in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SAG A213 SAG U S S 1982-84=100 Other goods and services in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SAGC A213 SAGC U S S DECEMBER 2009=100 Other goods in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA213SAGS A213 SAGS U S S DECEMBER 2009=100 Other personal services in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA213SAH A213 SAH U S S 1982-84=100 Housing in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SAH1 A213 SAH1 U S S 1982-84=100 Shelter in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SAH2 A213 SAH2 U S S 1982-84=100 Fuels and utilities in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SAH21 A213 SAH21 U S S 1982-84=100 Household energy in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SAH3 A213 SAH3 U S S 1982-84=100 Household furnishings and operations in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SAH31 A213 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA213SAM A213 SAM U S S 1982-84=100 Medical care in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SAN A213 SAN U S S 1982-84=100 Nondurables in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SANL1 A213 SANL1 U S S 1982-84=100 Nondurables less food in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SANL11 A213 SANL11 U S S 1982-84=100 Nondurables less food and beverages in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SAR A213 SAR U S S DECEMBER 1997=100 Recreation in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA213SAS A213 SAS U S S 1982-84=100 Services in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SASL2RS A213 SASL2RS U S S NOVEMBER 1982=100 Services less rent of shelter in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SASL5 A213 SASL5 U S S 1982-84=100 Services less medical care services in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SAT A213 SAT U S S 1982-84=100 Transportation in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SAT1 A213 SAT1 U S S 1982-84=100 Private transportation in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SATCLTB A213 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA213SEFV A213 SEFV U S S 1982-84=100 Food away from home in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SEHA A213 SEHA U S S 1982-84=100 Rent of primary residence in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SEHC A213 SEHC U S S NOVEMBER 1982=100 Owners' equivalent rent of residences in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SEHC01 A213 SEHC01 U S S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SEHF A213 SEHF U S S 1982-84=100 Energy services in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SEHF01 A213 SEHF01 U S S 1982-84=100 Electricity in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SEHF02 A213 SEHF02 U S S 1982-84=100 Utility (piped) gas service in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SETB A213 SETB U S S 1982-84=100 Motor fuel in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SETB01 A213 SETB01 U S S 1982-84=100 Gasoline (all types) in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SS47014 A213 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA213SS47015 A213 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1994 S01 2017 S03 +CUUSA213SS47016 A213 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Cincinnati-Hamilton, OH-KY-IN, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214AA0 A214 AA0 U S A 1967=100 All items - old base in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SA0 A214 SA0 U S S 1982-84=100 All items in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SA0E A214 SA0E U S S 1982-84=100 Energy in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SA0L1E A214 SA0L1E U S S 1982-84=100 All items less food and energy in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SA0L2 A214 SA0L2 U S S 1982-84=100 All items less shelter in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SA0L5 A214 SA0L5 U S S 1982-84=100 All items less medical care in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SA0LE A214 SA0LE U S S 1982-84=100 All items less energy in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SAA A214 SAA U S S 1982-84=100 Apparel in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SAC A214 SAC U S S 1982-84=100 Commodities in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SACL1 A214 SACL1 U S S 1982-84=100 Commodities less food in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SACL11 A214 SACL11 U S S 1982-84=100 Commodities less food and beverages in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SAD A214 SAD U S S 1982-84=100 Durables in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SAE A214 SAE U S S DECEMBER 1997=100 Education and communication in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA214SAEC A214 SAEC U S S DECEMBER 2009=100 Education and communication commodities in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA214SAES A214 SAES U S S DECEMBER 2009=100 Education and communication services in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA214SAF A214 SAF U S S 1982-84=100 Food and beverages in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SAF1 A214 SAF1 U S S 1982-84=100 Food in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SAF11 A214 SAF11 U S S 1982-84=100 Food at home in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SAF116 A214 SAF116 U S S 1982-84=100 Alcoholic beverages in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SAG A214 SAG U S S 1982-84=100 Other goods and services in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SAGC A214 SAGC U S S DECEMBER 2009=100 Other goods in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA214SAGS A214 SAGS U S S DECEMBER 2009=100 Other personal services in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA214SAH A214 SAH U S S 1982-84=100 Housing in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SAH1 A214 SAH1 U S S 1982-84=100 Shelter in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SAH2 A214 SAH2 U S S 1982-84=100 Fuels and utilities in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SAH21 A214 SAH21 U S S 1982-84=100 Household energy in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SAH3 A214 SAH3 U S S 1982-84=100 Household furnishings and operations in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SAH31 A214 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA214SAM A214 SAM U S S 1982-84=100 Medical care in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SAN A214 SAN U S S 1982-84=100 Nondurables in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SANL1 A214 SANL1 U S S 1982-84=100 Nondurables less food in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SANL11 A214 SANL11 U S S 1982-84=100 Nondurables less food and beverages in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SAR A214 SAR U S S DECEMBER 1997=100 Recreation in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA214SAS A214 SAS U S S 1982-84=100 Services in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SASL2RS A214 SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SASL5 A214 SASL5 U S S 1982-84=100 Services less medical care services in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SAT A214 SAT U S S 1982-84=100 Transportation in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SAT1 A214 SAT1 U S S 1982-84=100 Private transportation in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SATCLTB A214 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA214SEFV A214 SEFV U S S 1982-84=100 Food away from home in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SEHA A214 SEHA U S S 1982-84=100 Rent of primary residence in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SEHC A214 SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SEHC01 A214 SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SEHF A214 SEHF U S S 1982-84=100 Energy services in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SEHF01 A214 SEHF01 U S S 1982-84=100 Electricity in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SEHF02 A214 SEHF02 U S S 1982-84=100 Utility (piped) gas service in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SETB A214 SETB U S S 1982-84=100 Motor fuel in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SETB01 A214 SETB01 U S S 1982-84=100 Gasoline (all types) in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SS47014 A214 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA214SS47015 A214 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1994 S01 2017 S03 +CUUSA214SS47016 A214 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Kansas City, MO-KS, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA311SA0 A311 SA0 U S S NOVEMBER 1996=100 All items in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 S01 2017 S03 +CUUSA311SA0E A311 SA0E U S S NOVEMBER 1996=100 Energy in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 S01 2017 S03 +CUUSA311SA0L1E A311 SA0L1E U S S NOVEMBER 1996=100 All items less food and energy in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 S01 2017 S03 +CUUSA311SA0L2 A311 SA0L2 U S S DECEMBER 1997=100 All items less shelter in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SA0L5 A311 SA0L5 U S S NOVEMBER 1996=100 All items less medical care in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 S01 2017 S03 +CUUSA311SA0LE A311 SA0LE U S S DECEMBER 1997=100 All items less energy in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SAA A311 SAA U S S NOVEMBER 1996=100 Apparel in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 S01 2017 S03 +CUUSA311SAC A311 SAC U S S DECEMBER 1997=100 Commodities in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SACL1 A311 SACL1 U S S DECEMBER 1997=100 Commodities less food in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SACL11 A311 SACL11 U S S DECEMBER 1997=100 Commodities less food and beverages in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SAD A311 SAD U S S DECEMBER 1997=100 Durables in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SAE A311 SAE U S S DECEMBER 1997=100 Education and communication in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SAEC A311 SAEC U S S DECEMBER 2009=100 Education and communication commodities in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA311SAES A311 SAES U S S DECEMBER 2009=100 Education and communication services in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA311SAF A311 SAF U S S NOVEMBER 1996=100 Food and beverages in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 S01 2017 S03 +CUUSA311SAF1 A311 SAF1 U S S NOVEMBER 1996=100 Food in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 S01 2017 S03 +CUUSA311SAF11 A311 SAF11 U S S DECEMBER 1997=100 Food at home in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SAF116 A311 SAF116 U S S NOVEMBER 1997=100 Alcoholic beverages in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SAG A311 SAG U S S NOVEMBER 1996=100 Other goods and services in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 S01 2017 S03 +CUUSA311SAGC A311 SAGC U S S DECEMBER 2009=100 Other goods in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA311SAGS A311 SAGS U S S DECEMBER 2009=100 Other personal services in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA311SAH A311 SAH U S S NOVEMBER 1996=100 Housing in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 S01 2017 S03 +CUUSA311SAH1 A311 SAH1 U S S DECEMBER 1997=100 Shelter in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SAH2 A311 SAH2 U S S DECEMBER 1997=100 Fuels and utilities in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SAH21 A311 SAH21 U S S DECEMBER 1997=100 Household energy in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SAH3 A311 SAH3 U S S DECEMBER 1997=100 Household furnishings and operations in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SAH31 A311 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA311SAM A311 SAM U S S NOVEMBER 1996=100 Medical care in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 S01 2017 S03 +CUUSA311SAN A311 SAN U S S DECEMBER 1997=100 Nondurables in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SANL1 A311 SANL1 U S S DECEMBER 1997=100 Nondurables less food in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SANL11 A311 SANL11 U S S DECEMBER 1997=100 Nondurables less food and beverages in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SAR A311 SAR U S S DECEMBER 1997=100 Recreation in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SAS A311 SAS U S S DECEMBER 1997=100 Services in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SASL2RS A311 SASL2RS U S S DECEMBER 1997=100 Services less rent of shelter in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SASL5 A311 SASL5 U S S DECEMBER 1997=100 Services less medical care services in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SAT A311 SAT U S S NOVEMBER 1996=100 Transportation in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 S01 2017 S03 +CUUSA311SAT1 A311 SAT1 U S S DECEMBER 1997=100 Private transportation in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SATCLTB A311 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA311SEFV A311 SEFV U S S NOVEMBER 1997=100 Food away from home in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SEHA A311 SEHA U S S NOVEMBER 1996=100 Rent of primary residence in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1997 S01 2017 S03 +CUUSA311SEHC A311 SEHC U S S DECEMBER 1997=100 Owners' equivalent rent of residences in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SEHC01 A311 SEHC01 U S S DECEMBER 1997=100 Owners' equivalent rent of primary residence in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SEHF A311 SEHF U S S DECEMBER 1997=100 Energy services in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SEHF01 A311 SEHF01 U S S DECEMBER 1997=100 Electricity in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SEHF02 A311 SEHF02 U S S DECEMBER 1997=100 Utility (piped) gas service in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SETB A311 SETB U S S DECEMBER 1997=100 Motor fuel in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SETB01 A311 SETB01 U S S DECEMBER 1997=100 Gasoline (all types) in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SS47014 A311 SS47014 U S S DECEMBER 1997=100 Gasoline, unleaded regular in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SS47015 A311 SS47015 U S S DECEMBER 1997=100 Gasoline, unleaded midgrade in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA311SS47016 A311 SS47016 U S S DECEMBER 1997=100 Gasoline, unleaded premium in Washington-Baltimore, DC-MD-VA-WV, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA421AA0 A421 AA0 U S A 1967=100 All items - old base in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SA0 A421 SA0 U S S 1982-84=100 All items in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SA0E A421 SA0E U S S 1982-84=100 Energy in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SA0L1E A421 SA0L1E U S S 1982-84=100 All items less food and energy in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SA0L2 A421 SA0L2 U S S 1982-84=100 All items less shelter in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SA0L5 A421 SA0L5 U S S 1982-84=100 All items less medical care in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SA0LE A421 SA0LE U S S 1982-84=100 All items less energy in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SAA A421 SAA U S S 1982-84=100 Apparel in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SAC A421 SAC U S S 1982-84=100 Commodities in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SACL1 A421 SACL1 U S S 1982-84=100 Commodities less food in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SACL11 A421 SACL11 U S S 1982-84=100 Commodities less food and beverages in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SAD A421 SAD U S S 1982-84=100 Durables in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SAE A421 SAE U S S DECEMBER 1997=100 Education and communication in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA421SAEC A421 SAEC U S S DECEMBER 2009=100 Education and communication commodities in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA421SAES A421 SAES U S S DECEMBER 2009=100 Education and communication services in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA421SAF A421 SAF U S S 1982-84=100 Food and beverages in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SAF1 A421 SAF1 U S S 1982-84=100 Food in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SAF11 A421 SAF11 U S S 1982-84=100 Food at home in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SAF116 A421 SAF116 U S S 1982-84=100 Alcoholic beverages in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SAG A421 SAG U S S 1982-84=100 Other goods and services in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SAGC A421 SAGC U S S DECEMBER 2009=100 Other goods in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA421SAGS A421 SAGS U S S DECEMBER 2009=100 Other personal services in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA421SAH A421 SAH U S S 1982-84=100 Housing in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SAH1 A421 SAH1 U S S 1982-84=100 Shelter in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SAH2 A421 SAH2 U S S 1982-84=100 Fuels and utilities in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SAH21 A421 SAH21 U S S 1982-84=100 Household energy in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SAH3 A421 SAH3 U S S 1982-84=100 Household furnishings and operations in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SAH31 A421 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA421SAM A421 SAM U S S 1982-84=100 Medical care in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SAN A421 SAN U S S 1982-84=100 Nondurables in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SANL1 A421 SANL1 U S S 1982-84=100 Nondurables less food in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SANL11 A421 SANL11 U S S 1982-84=100 Nondurables less food and beverages in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SAR A421 SAR U S S DECEMBER 1997=100 Recreation in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA421SAS A421 SAS U S S 1982-84=100 Services in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SASL2RS A421 SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SASL5 A421 SASL5 U S S 1982-84=100 Services less medical care services in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SAT A421 SAT U S S 1982-84=100 Transportation in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SAT1 A421 SAT1 U S S 1982-84=100 Private transportation in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SATCLTB A421 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA421SEFV A421 SEFV U S S 1982-84=100 Food away from home in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SEHA A421 SEHA U S S 1982-84=100 Rent of primary residence in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SEHC A421 SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SEHC01 A421 SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SEHF A421 SEHF U S S 1982-84=100 Energy services in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SEHF01 A421 SEHF01 U S S 1982-84=100 Electricity in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SEHF02 A421 SEHF02 U S S 1982-84=100 Utility (piped) gas service in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SETB A421 SETB U S S 1982-84=100 Motor fuel in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SETB01 A421 SETB01 U S S 1982-84=100 Gasoline (all types) in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SS47014 A421 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA421SS47015 A421 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1994 S01 2017 S03 +CUUSA421SS47016 A421 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Los Angeles-Riverside-Orange County, CA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425AA0 A425 AA0 U S A 1967=100 All items - old base in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SA0 A425 SA0 U S S 1982-84=100 All items in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SA0E A425 SA0E U S S 1982-84=100 Energy in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SA0L1E A425 SA0L1E U S S 1982-84=100 All items less food and energy in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SA0L2 A425 SA0L2 U S S 1982-84=100 All items less shelter in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SA0L5 A425 SA0L5 U S S 1982-84=100 All items less medical care in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SA0LE A425 SA0LE U S S 1982-84=100 All items less energy in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SAA A425 SAA U S S 1982-84=100 Apparel in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SAC A425 SAC U S S 1982-84=100 Commodities in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SACL1 A425 SACL1 U S S 1982-84=100 Commodities less food in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SACL11 A425 SACL11 U S S 1982-84=100 Commodities less food and beverages in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SAD A425 SAD U S S 1982-84=100 Durables in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SAE A425 SAE U S S DECEMBER 1997=100 Education and communication in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA425SAEC A425 SAEC U S S DECEMBER 2009=100 Education and communication commodities in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA425SAES A425 SAES U S S DECEMBER 2009=100 Education and communication services in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA425SAF A425 SAF U S S 1982-84=100 Food and beverages in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SAF1 A425 SAF1 U S S 1982-84=100 Food in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SAF11 A425 SAF11 U S S 1982-84=100 Food at home in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SAF116 A425 SAF116 U S S 1982-84=100 Alcoholic beverages in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SAG A425 SAG U S S 1982-84=100 Other goods and services in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SAGC A425 SAGC U S S DECEMBER 2009=100 Other goods in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA425SAGS A425 SAGS U S S DECEMBER 2009=100 Other personal services in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA425SAH A425 SAH U S S 1982-84=100 Housing in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SAH1 A425 SAH1 U S S 1982-84=100 Shelter in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SAH2 A425 SAH2 U S S 1982-84=100 Fuels and utilities in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SAH21 A425 SAH21 U S S 1982-84=100 Household energy in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SAH3 A425 SAH3 U S S 1982-84=100 Household furnishings and operations in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SAH31 A425 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA425SAM A425 SAM U S S 1982-84=100 Medical care in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SAN A425 SAN U S S 1982-84=100 Nondurables in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SANL1 A425 SANL1 U S S 1982-84=100 Nondurables less food in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SANL11 A425 SANL11 U S S 1982-84=100 Nondurables less food and beverages in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SAR A425 SAR U S S DECEMBER 1997=100 Recreation in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSA425SAS A425 SAS U S S 1982-84=100 Services in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SASL2RS A425 SASL2RS U S S NOVEMBER 1982=100 Services less rent of shelter in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SASL5 A425 SASL5 U S S 1982-84=100 Services less medical care services in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SAT A425 SAT U S S 1982-84=100 Transportation in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SAT1 A425 SAT1 U S S 1982-84=100 Private transportation in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SATCLTB A425 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSA425SEFV A425 SEFV U S S 1982-84=100 Food away from home in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SEHA A425 SEHA U S S 1982-84=100 Rent of primary residence in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SEHC A425 SEHC U S S NOVEMBER 1982=100 Owners' equivalent rent of residences in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SEHC01 A425 SEHC01 U S S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SEHF A425 SEHF U S S 1982-84=100 Energy services in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SEHF01 A425 SEHF01 U S S 1982-84=100 Electricity in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SEHF02 A425 SEHF02 U S S 1982-84=100 Utility (piped) gas service in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SETB A425 SETB U S S 1982-84=100 Motor fuel in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SETB01 A425 SETB01 U S S 1982-84=100 Gasoline (all types) in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SS47014 A425 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSA425SS47015 A425 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1996 S01 2017 S03 +CUUSA425SS47016 A425 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Portland-Salem, OR-WA, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000AA0 D000 AA0 U S A DECEMBER 1977=100 All items - old base in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SA0 D000 SA0 U S S 1982-84=100 All items in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SA0E D000 SA0E U S S 1982-84=100 Energy in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SA0L1 D000 SA0L1 U S S 1982-84=100 All items less food in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SA0L1E D000 SA0L1E U S S 1982-84=100 All items less food and energy in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SA0L2 D000 SA0L2 U S S 1982-84=100 All items less shelter in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SA0L5 D000 SA0L5 U S S 1982-84=100 All items less medical care in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SA0LE D000 SA0LE U S S 1982-84=100 All items less energy in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAA D000 SAA U S S 1982-84=100 Apparel in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAC D000 SAC U S S 1982-84=100 Commodities in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SACE D000 SACE U S S 1982-84=100 Energy commodities in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SACL1 D000 SACL1 U S S 1982-84=100 Commodities less food in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SACL11 D000 SACL11 U S S 1982-84=100 Commodities less food and beverages in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SACL1E D000 SACL1E U S S 1982-84=100 Commodities less food and energy commodities in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAD D000 SAD U S S 1982-84=100 Durables in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAE D000 SAE U S S DECEMBER 1997=100 Education and communication in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSD000SAEC D000 SAEC U S S DECEMBER 2009=100 Education and communication commodities in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD000SAES D000 SAES U S S DECEMBER 2009=100 Education and communication services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD000SAF D000 SAF U S S 1982-84=100 Food and beverages in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAF1 D000 SAF1 U S S 1982-84=100 Food in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAF11 D000 SAF11 U S S 1982-84=100 Food at home in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAF116 D000 SAF116 U S S 1982-84=100 Alcoholic beverages in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAG D000 SAG U S S 1982-84=100 Other goods and services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAGC D000 SAGC U S S DECEMBER 2009=100 Other goods in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD000SAGS D000 SAGS U S S DECEMBER 2009=100 Other personal services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD000SAH D000 SAH U S S 1982-84=100 Housing in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAH1 D000 SAH1 U S S 1982-84=100 Shelter in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAH2 D000 SAH2 U S S 1982-84=100 Fuels and utilities in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAH21 D000 SAH21 U S S 1982-84=100 Household energy in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAH3 D000 SAH3 U S S 1982-84=100 Household furnishings and operations in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAH31 D000 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD000SAM D000 SAM U S S 1982-84=100 Medical care in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAM1 D000 SAM1 U S S 1982-84=100 Medical care commodities in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAM2 D000 SAM2 U S S 1982-84=100 Medical care services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAN D000 SAN U S S 1982-84=100 Nondurables in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SANL1 D000 SANL1 U S S 1982-84=100 Nondurables less food in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SANL11 D000 SANL11 U S S 1982-84=100 Nondurables less food and beverages in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SANL113 D000 SANL113 U S S 1982-84=100 Nondurables less food, beverages, and apparel in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SANL13 D000 SANL13 U S S 1982-84=100 Nondurables less food and apparel in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAR D000 SAR U S S DECEMBER 1997=100 Recreation in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSD000SARC D000 SARC U S S DECEMBER 2009=100 Recreation commodities in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD000SARS D000 SARS U S S DECEMBER 2009=100 Recreation services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD000SAS D000 SAS U S S 1982-84=100 Services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAS2RS D000 SAS2RS U S S DECEMBER 1982=100 Rent of shelter in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAS367 D000 SAS367 U S S 1982-84=100 Other services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAS4 D000 SAS4 U S S 1982-84=100 Transportation services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SASL2RS D000 SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SASL5 D000 SASL5 U S S 1982-84=100 Services less medical care services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SASLE D000 SASLE U S S 1982-84=100 Services less energy services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAT D000 SAT U S S 1982-84=100 Transportation in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SAT1 D000 SAT1 U S S 1982-84=100 Private transportation in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SATCLTB D000 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD000SEFV D000 SEFV U S S 1982-84=100 Food away from home in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SEHA D000 SEHA U S S 1982-84=100 Rent of primary residence in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SEHC D000 SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SEHC01 D000 SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SEHF D000 SEHF U S S 1982-84=100 Energy services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SEHF01 D000 SEHF01 U S S 1982-84=100 Electricity in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SEHF02 D000 SEHF02 U S S 1982-84=100 Utility (piped) gas service in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SEMC D000 SEMC U S S 1982-84=100 Professional services in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SETA D000 SETA U S S DECEMBER 1997=100 New and used motor vehicles in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSD000SETA01 D000 SETA01 U S S 1982-84=100 New vehicles in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SETA02 D000 SETA02 U S S 1982-84=100 Used cars and trucks in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SETB D000 SETB U S S 1982-84=100 Motor fuel in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SETB01 D000 SETB01 U S S 1982-84=100 Gasoline (all types) in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SS45011 D000 SS45011 U S S 1982-84=100 New cars in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SS4501A D000 SS4501A U S S DECEMBER 1997=100 New cars and trucks in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSD000SS47014 D000 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD000SS47015 D000 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1994 S01 2017 S03 +CUUSD000SS47016 D000 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Size Class D (under 50,000), all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200AA0 D200 AA0 U S A DECEMBER 1977=100 All items - old base in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SA0 D200 SA0 U S S 1982-84=100 All items in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SA0E D200 SA0E U S S 1982-84=100 Energy in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SA0L1E D200 SA0L1E U S S 1982-84=100 All items less food and energy in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SA0L2 D200 SA0L2 U S S 1982-84=100 All items less shelter in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SA0L5 D200 SA0L5 U S S 1982-84=100 All items less medical care in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SA0LE D200 SA0LE U S S 1982-84=100 All items less energy in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SAA D200 SAA U S S 1982-84=100 Apparel in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SAC D200 SAC U S S 1982-84=100 Commodities in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SACL1 D200 SACL1 U S S 1982-84=100 Commodities less food in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SACL11 D200 SACL11 U S S 1982-84=100 Commodities less food and beverages in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SAD D200 SAD U S S 1982-84=100 Durables in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SAE D200 SAE U S S DECEMBER 1997=100 Education and communication in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSD200SAEC D200 SAEC U S S DECEMBER 2009=100 Education and communication commodities in Midwest - Size Class D, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD200SAES D200 SAES U S S DECEMBER 2009=100 Education and communication services in Midwest - Size Class D, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD200SAF D200 SAF U S S 1982-84=100 Food and beverages in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SAF1 D200 SAF1 U S S 1982-84=100 Food in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SAF11 D200 SAF11 U S S 1982-84=100 Food at home in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SAF116 D200 SAF116 U S S 1982-84=100 Alcoholic beverages in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SAG D200 SAG U S S 1982-84=100 Other goods and services in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SAGC D200 SAGC U S S DECEMBER 2009=100 Other goods in Midwest - Size Class D, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD200SAGS D200 SAGS U S S DECEMBER 2009=100 Other personal services in Midwest - Size Class D, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD200SAH D200 SAH U S S 1982-84=100 Housing in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SAH1 D200 SAH1 U S S 1982-84=100 Shelter in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SAH2 D200 SAH2 U S S 1982-84=100 Fuels and utilities in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SAH21 D200 SAH21 U S S 1982-84=100 Household energy in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SAH3 D200 SAH3 U S S 1982-84=100 Household furnishings and operations in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SAH31 D200 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Midwest - Size Class D, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD200SAM D200 SAM U S S 1982-84=100 Medical care in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SAN D200 SAN U S S 1982-84=100 Nondurables in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SANL1 D200 SANL1 U S S 1982-84=100 Nondurables less food in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SANL11 D200 SANL11 U S S 1982-84=100 Nondurables less food and beverages in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SAR D200 SAR U S S DECEMBER 1997=100 Recreation in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSD200SAS D200 SAS U S S 1982-84=100 Services in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SASL2RS D200 SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SASL5 D200 SASL5 U S S 1982-84=100 Services less medical care services in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SAT D200 SAT U S S 1982-84=100 Transportation in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SAT1 D200 SAT1 U S S 1982-84=100 Private transportation in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SATCLTB D200 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Midwest - Size Class D, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD200SEFV D200 SEFV U S S 1982-84=100 Food away from home in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SEHA D200 SEHA U S S 1982-84=100 Rent of primary residence in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SEHC D200 SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SEHC01 D200 SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SEHF D200 SEHF U S S 1982-84=100 Energy services in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SEHF01 D200 SEHF01 U S S 1982-84=100 Electricity in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SEHF02 D200 SEHF02 U S S 1982-84=100 Utility (piped) gas service in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SETB D200 SETB U S S 1982-84=100 Motor fuel in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SETB01 D200 SETB01 U S S 1982-84=100 Gasoline (all types) in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SS47014 D200 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD200SS47015 D200 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1994 S01 2017 S03 +CUUSD200SS47016 D200 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Midwest - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300AA0 D300 AA0 U S A DECEMBER 1977=100 All items - old base in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SA0 D300 SA0 U S S 1982-84=100 All items in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SA0E D300 SA0E U S S 1982-84=100 Energy in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SA0L1E D300 SA0L1E U S S 1982-84=100 All items less food and energy in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SA0L2 D300 SA0L2 U S S 1982-84=100 All items less shelter in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SA0L5 D300 SA0L5 U S S 1982-84=100 All items less medical care in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SA0LE D300 SA0LE U S S 1982-84=100 All items less energy in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SAA D300 SAA U S S 1982-84=100 Apparel in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SAC D300 SAC U S S 1982-84=100 Commodities in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SACL1 D300 SACL1 U S S 1982-84=100 Commodities less food in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SACL11 D300 SACL11 U S S 1982-84=100 Commodities less food and beverages in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SAD D300 SAD U S S 1982-84=100 Durables in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SAE D300 SAE U S S DECEMBER 1997=100 Education and communication in South - Size Class D, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSD300SAEC D300 SAEC U S S DECEMBER 2009=100 Education and communication commodities in South - Size Class D, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD300SAES D300 SAES U S S DECEMBER 2009=100 Education and communication services in South - Size Class D, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD300SAF D300 SAF U S S 1982-84=100 Food and beverages in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SAF1 D300 SAF1 U S S 1982-84=100 Food in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SAF11 D300 SAF11 U S S 1982-84=100 Food at home in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SAF116 D300 SAF116 U S S 1982-84=100 Alcoholic beverages in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SAG D300 SAG U S S 1982-84=100 Other goods and services in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SAGC D300 SAGC U S S DECEMBER 2009=100 Other goods in South - Size Class D, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD300SAGS D300 SAGS U S S DECEMBER 2009=100 Other personal services in South - Size Class D, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD300SAH D300 SAH U S S 1982-84=100 Housing in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SAH1 D300 SAH1 U S S 1982-84=100 Shelter in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SAH2 D300 SAH2 U S S 1982-84=100 Fuels and utilities in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SAH21 D300 SAH21 U S S 1982-84=100 Household energy in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SAH3 D300 SAH3 U S S 1982-84=100 Household furnishings and operations in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SAH31 D300 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in South - Size Class D, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD300SAM D300 SAM U S S 1982-84=100 Medical care in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SAN D300 SAN U S S 1982-84=100 Nondurables in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SANL1 D300 SANL1 U S S 1982-84=100 Nondurables less food in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SANL11 D300 SANL11 U S S 1982-84=100 Nondurables less food and beverages in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SAR D300 SAR U S S DECEMBER 1997=100 Recreation in South - Size Class D, all urban consumers, not seasonally adjusted 1998 S01 2017 S03 +CUUSD300SAS D300 SAS U S S 1982-84=100 Services in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SASL2RS D300 SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SASL5 D300 SASL5 U S S 1982-84=100 Services less medical care services in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SAT D300 SAT U S S 1982-84=100 Transportation in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SAT1 D300 SAT1 U S S 1982-84=100 Private transportation in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SATCLTB D300 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in South - Size Class D, all urban consumers, not seasonally adjusted 2010 S01 2017 S03 +CUUSD300SEFV D300 SEFV U S S 1982-84=100 Food away from home in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SEHA D300 SEHA U S S 1982-84=100 Rent of primary residence in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SEHC D300 SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SEHC01 D300 SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SEHF D300 SEHF U S S 1982-84=100 Energy services in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SEHF01 D300 SEHF01 U S S 1982-84=100 Electricity in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SEHF02 D300 SEHF02 U S S 1982-84=100 Utility (piped) gas service in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SETB D300 SETB U S S 1982-84=100 Motor fuel in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SETB01 D300 SETB01 U S S 1982-84=100 Gasoline (all types) in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SS47014 D300 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSD300SS47015 D300 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in South - Size Class D, all urban consumers, not seasonally adjusted 1994 S01 2017 S03 +CUUSD300SS47016 D300 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in South - Size Class D, all urban consumers, not seasonally adjusted 1984 S01 2017 S03 +CUUSN000SA0 N000 SA0 U S S DECEMBER 1996=100 All items in Size Class B/C, all urban consumers, not seasonally adjusted 1997 S01 2025 S01 +CUUSN000SA0E N000 SA0E U S S DECEMBER 1997=100 Energy in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SA0L1 N000 SA0L1 U S S DECEMBER 1997=100 All items less food in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SA0L1E N000 SA0L1E U S S DECEMBER 1997=100 All items less food and energy in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SA0L2 N000 SA0L2 U S S DECEMBER 1997=100 All items less shelter in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SA0L5 N000 SA0L5 U S S DECEMBER 1997=100 All items less medical care in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SA0LE N000 SA0LE U S S DECEMBER 1997=100 All items less energy in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAA N000 SAA U S S DECEMBER 1997=100 Apparel in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAC N000 SAC U S S DECEMBER 1997=100 Commodities in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SACE N000 SACE U S S DECEMBER 1997=100 Energy commodities in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SACL1 N000 SACL1 U S S DECEMBER 1997=100 Commodities less food in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SACL11 N000 SACL11 U S S DECEMBER 1997=100 Commodities less food and beverages in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SACL1E N000 SACL1E U S S DECEMBER 1997=100 Commodities less food and energy commodities in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAD N000 SAD U S S DECEMBER 1997=100 Durables in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAE N000 SAE U S S DECEMBER 1997=100 Education and communication in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAEC N000 SAEC U S S DECEMBER 2009=100 Education and communication commodities in Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN000SAES N000 SAES U S S DECEMBER 2009=100 Education and communication services in Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN000SAF N000 SAF U S S DECEMBER 1997=100 Food and beverages in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAF1 N000 SAF1 U S S DECEMBER 1997=100 Food in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAF11 N000 SAF11 U S S DECEMBER 1997=100 Food at home in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAF111 N000 SAF111 U S S DECEMBER 1997=100 Cereals and bakery products in Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN000SAF112 N000 SAF112 U S S DECEMBER 1997=100 Meats, poultry, fish, and eggs in Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN000SAF113 N000 SAF113 U S S DECEMBER 1997=100 Fruits and vegetables in Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN000SAF114 N000 SAF114 U S S DECEMBER 1997=100 Nonalcoholic beverages and beverage materials in Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN000SAF115 N000 SAF115 U S S DECEMBER 1997=100 Other food at home in Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN000SAF116 N000 SAF116 U S S DECEMBER 1997=100 Alcoholic beverages in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAG N000 SAG U S S DECEMBER 1997=100 Other goods and services in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAGC N000 SAGC U S S DECEMBER 2009=100 Other goods in Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN000SAGS N000 SAGS U S S DECEMBER 2009=100 Other personal services in Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN000SAH N000 SAH U S S DECEMBER 1997=100 Housing in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAH1 N000 SAH1 U S S DECEMBER 1997=100 Shelter in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAH2 N000 SAH2 U S S DECEMBER 1997=100 Fuels and utilities in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAH21 N000 SAH21 U S S DECEMBER 1997=100 Household energy in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAH3 N000 SAH3 U S S DECEMBER 1997=100 Household furnishings and operations in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAH31 N000 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN000SAM N000 SAM U S S DECEMBER 1997=100 Medical care in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAM1 N000 SAM1 U S S DECEMBER 1997=100 Medical care commodities in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAM2 N000 SAM2 U S S DECEMBER 1997=100 Medical care services in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAN N000 SAN U S S DECEMBER 1997=100 Nondurables in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SANL1 N000 SANL1 U S S DECEMBER 1997=100 Nondurables less food in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SANL11 N000 SANL11 U S S DECEMBER 1997=100 Nondurables less food and beverages in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SANL113 N000 SANL113 U S S DECEMBER 1997=100 Nondurables less food, beverages, and apparel in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SANL13 N000 SANL13 U S S DECEMBER 1997=100 Nondurables less food and apparel in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAR N000 SAR U S S DECEMBER 1997=100 Recreation in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SARC N000 SARC U S S DECEMBER 2009=100 Recreation commodities in Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN000SARS N000 SARS U S S DECEMBER 2009=100 Recreation services in Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN000SAS N000 SAS U S S DECEMBER 1997=100 Services in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAS2RS N000 SAS2RS U S S DECEMBER 1997=100 Rent of shelter in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAS367 N000 SAS367 U S S DECEMBER 1997=100 Other services in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAS4 N000 SAS4 U S S DECEMBER 1997=100 Transportation services in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SASL2RS N000 SASL2RS U S S DECEMBER 1997=100 Services less rent of shelter in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SASL5 N000 SASL5 U S S DECEMBER 1997=100 Services less medical care services in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SASLE N000 SASLE U S S DECEMBER 1997=100 Services less energy services in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAT N000 SAT U S S DECEMBER 1997=100 Transportation in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SAT1 N000 SAT1 U S S DECEMBER 1997=100 Private transportation in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SATCLTB N000 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN000SEEB N000 SEEB U S S DECEMBER 1997=100 Tuition, other school fees, and childcare in Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN000SEFJ N000 SEFJ U S S DECEMBER 1997=100 Dairy and related products in Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN000SEFV N000 SEFV U S S DECEMBER 1997=100 Food away from home in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SEHA N000 SEHA U S S DECEMBER 1997=100 Rent of primary residence in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SEHC N000 SEHC U S S DECEMBER 1997=100 Owners' equivalent rent of residences in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SEHC01 N000 SEHC01 U S S DECEMBER 1997=100 Owners' equivalent rent of primary residence in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SEHF N000 SEHF U S S DECEMBER 1997=100 Energy services in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SEHF01 N000 SEHF01 U S S DECEMBER 1997=100 Electricity in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SEHF02 N000 SEHF02 U S S DECEMBER 1997=100 Utility (piped) gas service in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SEMC N000 SEMC U S S DECEMBER 1997=100 Professional services in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SETA N000 SETA U S S DECEMBER 1997=100 New and used motor vehicles in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SETA01 N000 SETA01 U S S DECEMBER 1997=100 New vehicles in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SETA02 N000 SETA02 U S S DECEMBER 1997=100 Used cars and trucks in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SETB N000 SETB U S S DECEMBER 1997=100 Motor fuel in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SETB01 N000 SETB01 U S S DECEMBER 1997=100 Gasoline (all types) in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SETE N000 SETE U S S DECEMBER 1997=100 Motor vehicle insurance in Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSN000SS45011 N000 SS45011 U S S DECEMBER 1997=100 New cars in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SS4501A N000 SS4501A U S S DECEMBER 1997=100 New cars and trucks in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2021 S03 +CUUSN000SS47014 N000 SS47014 U S S DECEMBER 1997=100 Gasoline, unleaded regular in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SS47015 N000 SS47015 U S S DECEMBER 1997=100 Gasoline, unleaded midgrade in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN000SS47016 N000 SS47016 U S S DECEMBER 1997=100 Gasoline, unleaded premium in Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SA0 N100 SA0 U S S DECEMBER 1996=100 All items in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1997 S01 2025 S01 +CUUSN100SA0E N100 SA0E U S S DECEMBER 1997=100 Energy in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SA0L1E N100 SA0L1E U S S DECEMBER 1997=100 All items less food and energy in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SA0L2 N100 SA0L2 U S S DECEMBER 1997=100 All items less shelter in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SA0L5 N100 SA0L5 U S S DECEMBER 1997=100 All items less medical care in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SA0LE N100 SA0LE U S S DECEMBER 1997=100 All items less energy in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SAA N100 SAA U S S DECEMBER 1997=100 Apparel in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SAC N100 SAC U S S DECEMBER 1997=100 Commodities in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SACL1 N100 SACL1 U S S DECEMBER 1997=100 Commodities less food in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SACL11 N100 SACL11 U S S DECEMBER 1997=100 Commodities less food and beverages in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SAD N100 SAD U S S DECEMBER 1997=100 Durables in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SAE N100 SAE U S S DECEMBER 1997=100 Education and communication in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SAEC N100 SAEC U S S DECEMBER 2009=100 Education and communication commodities in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN100SAES N100 SAES U S S DECEMBER 2009=100 Education and communication services in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN100SAF N100 SAF U S S DECEMBER 1997=100 Food and beverages in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SAF1 N100 SAF1 U S S DECEMBER 1997=100 Food in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SAF11 N100 SAF11 U S S DECEMBER 1997=100 Food at home in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SAF111 N100 SAF111 U S S DECEMBER 1997=100 Cereals and bakery products in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN100SAF112 N100 SAF112 U S S DECEMBER 1997=100 Meats, poultry, fish, and eggs in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN100SAF113 N100 SAF113 U S S DECEMBER 1997=100 Fruits and vegetables in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN100SAF114 N100 SAF114 U S S DECEMBER 1997=100 Nonalcoholic beverages and beverage materials in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN100SAF115 N100 SAF115 U S S DECEMBER 1997=100 Other food at home in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN100SAF116 N100 SAF116 U S S DECEMBER 1997=100 Alcoholic beverages in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SAG N100 SAG U S S DECEMBER 1997=100 Other goods and services in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SAGC N100 SAGC U S S DECEMBER 2009=100 Other goods in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN100SAGS N100 SAGS U S S DECEMBER 2009=100 Other personal services in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN100SAH N100 SAH U S S DECEMBER 1997=100 Housing in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SAH1 N100 SAH1 U S S DECEMBER 1997=100 Shelter in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SAH2 N100 SAH2 U S S DECEMBER 1997=100 Fuels and utilities in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN100SAH21 N100 SAH21 U S S DECEMBER 1997=100 Household energy in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN100SAH3 N100 SAH3 U S S DECEMBER 1997=100 Household furnishings and operations in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SAH31 N100 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN100SAM N100 SAM U S S DECEMBER 1997=100 Medical care in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SAN N100 SAN U S S DECEMBER 1997=100 Nondurables in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SANL1 N100 SANL1 U S S DECEMBER 1997=100 Nondurables less food in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SANL11 N100 SANL11 U S S DECEMBER 1997=100 Nondurables less food and beverages in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SAR N100 SAR U S S DECEMBER 1997=100 Recreation in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SAS N100 SAS U S S DECEMBER 1997=100 Services in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SASL2RS N100 SASL2RS U S S DECEMBER 1997=100 Services less rent of shelter in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SASL5 N100 SASL5 U S S DECEMBER 1997=100 Services less medical care services in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SAT N100 SAT U S S DECEMBER 1997=100 Transportation in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SAT1 N100 SAT1 U S S DECEMBER 1997=100 Private transportation in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SATCLTB N100 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN100SEEB N100 SEEB U S S DECEMBER 1997=100 Tuition, other school fees, and childcare in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN100SEFJ N100 SEFJ U S S DECEMBER 1997=100 Dairy and related products in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN100SEFV N100 SEFV U S S DECEMBER 1997=100 Food away from home in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SEHA N100 SEHA U S S DECEMBER 1997=100 Rent of primary residence in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SEHC N100 SEHC U S S DECEMBER 1997=100 Owners' equivalent rent of residences in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SEHC01 N100 SEHC01 U S S DECEMBER 1997=100 Owners' equivalent rent of primary residence in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SEHF N100 SEHF U S S DECEMBER 1997=100 Energy services in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN100SEHF01 N100 SEHF01 U S S DECEMBER 1997=100 Electricity in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN100SEHF02 N100 SEHF02 U S S DECEMBER 1997=100 Utility (piped) gas service in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN100SETA N100 SETA U S S DECEMBER 1997=100 New and used motor vehicles in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN100SETA01 N100 SETA01 U S S DECEMBER 1997=100 New vehicles in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN100SETA02 N100 SETA02 U S S DECEMBER 1997=100 Used cars and trucks in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN100SETB N100 SETB U S S DECEMBER 1997=100 Motor fuel in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SETB01 N100 SETB01 U S S DECEMBER 1997=100 Gasoline (all types) in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SETE N100 SETE U S S DECEMBER 1997=100 Motor vehicle insurance in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSN100SS47014 N100 SS47014 U S S DECEMBER 1997=100 Gasoline, unleaded regular in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SS47015 N100 SS47015 U S S DECEMBER 1997=100 Gasoline, unleaded midgrade in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN100SS47016 N100 SS47016 U S S DECEMBER 1997=100 Gasoline, unleaded premium in Northeast - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SA0 N200 SA0 U S S DECEMBER 1996=100 All items in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1997 S01 2025 S01 +CUUSN200SA0E N200 SA0E U S S DECEMBER 1997=100 Energy in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SA0L1E N200 SA0L1E U S S DECEMBER 1997=100 All items less food and energy in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SA0L2 N200 SA0L2 U S S DECEMBER 1997=100 All items less shelter in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SA0L5 N200 SA0L5 U S S DECEMBER 1997=100 All items less medical care in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SA0LE N200 SA0LE U S S DECEMBER 1997=100 All items less energy in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SAA N200 SAA U S S DECEMBER 1997=100 Apparel in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SAC N200 SAC U S S DECEMBER 1997=100 Commodities in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SACL1 N200 SACL1 U S S DECEMBER 1997=100 Commodities less food in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SACL11 N200 SACL11 U S S DECEMBER 1997=100 Commodities less food and beverages in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SAD N200 SAD U S S DECEMBER 1997=100 Durables in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SAE N200 SAE U S S DECEMBER 1997=100 Education and communication in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SAEC N200 SAEC U S S DECEMBER 2009=100 Education and communication commodities in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN200SAES N200 SAES U S S DECEMBER 2009=100 Education and communication services in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN200SAF N200 SAF U S S DECEMBER 1997=100 Food and beverages in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SAF1 N200 SAF1 U S S DECEMBER 1997=100 Food in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SAF11 N200 SAF11 U S S DECEMBER 1997=100 Food at home in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SAF111 N200 SAF111 U S S DECEMBER 1997=100 Cereals and bakery products in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN200SAF112 N200 SAF112 U S S DECEMBER 1997=100 Meats, poultry, fish, and eggs in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN200SAF113 N200 SAF113 U S S DECEMBER 1997=100 Fruits and vegetables in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN200SAF114 N200 SAF114 U S S DECEMBER 1997=100 Nonalcoholic beverages and beverage materials in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN200SAF115 N200 SAF115 U S S DECEMBER 1997=100 Other food at home in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN200SAF116 N200 SAF116 U S S DECEMBER 1997=100 Alcoholic beverages in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SAG N200 SAG U S S DECEMBER 1997=100 Other goods and services in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SAGC N200 SAGC U S S DECEMBER 2009=100 Other goods in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN200SAGS N200 SAGS U S S DECEMBER 2009=100 Other personal services in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN200SAH N200 SAH U S S DECEMBER 1997=100 Housing in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SAH1 N200 SAH1 U S S DECEMBER 1997=100 Shelter in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SAH2 N200 SAH2 U S S DECEMBER 1997=100 Fuels and utilities in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN200SAH21 N200 SAH21 U S S DECEMBER 1997=100 Household energy in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN200SAH3 N200 SAH3 U S S DECEMBER 1997=100 Household furnishings and operations in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SAH31 N200 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN200SAM N200 SAM U S S DECEMBER 1997=100 Medical care in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SAN N200 SAN U S S DECEMBER 1997=100 Nondurables in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SANL1 N200 SANL1 U S S DECEMBER 1997=100 Nondurables less food in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SANL11 N200 SANL11 U S S DECEMBER 1997=100 Nondurables less food and beverages in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SAR N200 SAR U S S DECEMBER 1997=100 Recreation in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SAS N200 SAS U S S DECEMBER 1997=100 Services in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SASL2RS N200 SASL2RS U S S DECEMBER 1997=100 Services less rent of shelter in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SASL5 N200 SASL5 U S S DECEMBER 1997=100 Services less medical care services in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SAT N200 SAT U S S DECEMBER 1997=100 Transportation in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SAT1 N200 SAT1 U S S DECEMBER 1997=100 Private transportation in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SATCLTB N200 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN200SEEB N200 SEEB U S S DECEMBER 1997=100 Tuition, other school fees, and childcare in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN200SEFJ N200 SEFJ U S S DECEMBER 1997=100 Dairy and related products in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN200SEFV N200 SEFV U S S DECEMBER 1997=100 Food away from home in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SEHA N200 SEHA U S S DECEMBER 1997=100 Rent of primary residence in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SEHC N200 SEHC U S S DECEMBER 1997=100 Owners' equivalent rent of residences in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SEHC01 N200 SEHC01 U S S DECEMBER 1997=100 Owners' equivalent rent of primary residence in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SEHF N200 SEHF U S S DECEMBER 1997=100 Energy services in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN200SEHF01 N200 SEHF01 U S S DECEMBER 1997=100 Electricity in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN200SEHF02 N200 SEHF02 U S S DECEMBER 1997=100 Utility (piped) gas service in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN200SETA N200 SETA U S S DECEMBER 1997=100 New and used motor vehicles in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN200SETA01 N200 SETA01 U S S DECEMBER 1997=100 New vehicles in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN200SETA02 N200 SETA02 U S S DECEMBER 1997=100 Used cars and trucks in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN200SETB N200 SETB U S S DECEMBER 1997=100 Motor fuel in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SETB01 N200 SETB01 U S S DECEMBER 1997=100 Gasoline (all types) in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SETE N200 SETE U S S DECEMBER 1997=100 Motor vehicle insurance in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSN200SS47014 N200 SS47014 U S S DECEMBER 1997=100 Gasoline, unleaded regular in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SS47015 N200 SS47015 U S S DECEMBER 1997=100 Gasoline, unleaded midgrade in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN200SS47016 N200 SS47016 U S S DECEMBER 1997=100 Gasoline, unleaded premium in Midwest - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SA0 N300 SA0 U S S DECEMBER 1996=100 All items in South - Size Class B/C, all urban consumers, not seasonally adjusted 1997 S01 2025 S01 +CUUSN300SA0E N300 SA0E U S S DECEMBER 1997=100 Energy in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SA0L1E N300 SA0L1E U S S DECEMBER 1997=100 All items less food and energy in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SA0L2 N300 SA0L2 U S S DECEMBER 1997=100 All items less shelter in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SA0L5 N300 SA0L5 U S S DECEMBER 1997=100 All items less medical care in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SA0LE N300 SA0LE U S S DECEMBER 1997=100 All items less energy in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SAA N300 SAA U S S DECEMBER 1997=100 Apparel in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SAC N300 SAC U S S DECEMBER 1997=100 Commodities in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SACL1 N300 SACL1 U S S DECEMBER 1997=100 Commodities less food in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SACL11 N300 SACL11 U S S DECEMBER 1997=100 Commodities less food and beverages in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SAD N300 SAD U S S DECEMBER 1997=100 Durables in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SAE N300 SAE U S S DECEMBER 1997=100 Education and communication in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SAEC N300 SAEC U S S DECEMBER 2009=100 Education and communication commodities in South - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN300SAES N300 SAES U S S DECEMBER 2009=100 Education and communication services in South - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN300SAF N300 SAF U S S DECEMBER 1997=100 Food and beverages in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SAF1 N300 SAF1 U S S DECEMBER 1997=100 Food in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SAF11 N300 SAF11 U S S DECEMBER 1997=100 Food at home in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SAF111 N300 SAF111 U S S DECEMBER 1997=100 Cereals and bakery products in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN300SAF112 N300 SAF112 U S S DECEMBER 1997=100 Meats, poultry, fish, and eggs in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN300SAF113 N300 SAF113 U S S DECEMBER 1997=100 Fruits and vegetables in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN300SAF114 N300 SAF114 U S S DECEMBER 1997=100 Nonalcoholic beverages and beverage materials in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN300SAF115 N300 SAF115 U S S DECEMBER 1997=100 Other food at home in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN300SAF116 N300 SAF116 U S S DECEMBER 1997=100 Alcoholic beverages in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SAG N300 SAG U S S DECEMBER 1997=100 Other goods and services in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SAGC N300 SAGC U S S DECEMBER 2009=100 Other goods in South - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN300SAGS N300 SAGS U S S DECEMBER 2009=100 Other personal services in South - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN300SAH N300 SAH U S S DECEMBER 1997=100 Housing in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SAH1 N300 SAH1 U S S DECEMBER 1997=100 Shelter in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SAH2 N300 SAH2 U S S DECEMBER 1997=100 Fuels and utilities in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN300SAH21 N300 SAH21 U S S DECEMBER 1997=100 Household energy in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN300SAH3 N300 SAH3 U S S DECEMBER 1997=100 Household furnishings and operations in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SAH31 N300 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in South - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN300SAM N300 SAM U S S DECEMBER 1997=100 Medical care in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SAN N300 SAN U S S DECEMBER 1997=100 Nondurables in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SANL1 N300 SANL1 U S S DECEMBER 1997=100 Nondurables less food in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SANL11 N300 SANL11 U S S DECEMBER 1997=100 Nondurables less food and beverages in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SAR N300 SAR U S S DECEMBER 1997=100 Recreation in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SAS N300 SAS U S S DECEMBER 1997=100 Services in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SASL2RS N300 SASL2RS U S S DECEMBER 1997=100 Services less rent of shelter in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SASL5 N300 SASL5 U S S DECEMBER 1997=100 Services less medical care services in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SAT N300 SAT U S S DECEMBER 1997=100 Transportation in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SAT1 N300 SAT1 U S S DECEMBER 1997=100 Private transportation in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SATCLTB N300 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in South - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN300SEEB N300 SEEB U S S DECEMBER 1997=100 Tuition, other school fees, and childcare in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN300SEFJ N300 SEFJ U S S DECEMBER 1997=100 Dairy and related products in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN300SEFV N300 SEFV U S S DECEMBER 1997=100 Food away from home in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SEHA N300 SEHA U S S DECEMBER 1997=100 Rent of primary residence in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SEHC N300 SEHC U S S DECEMBER 1997=100 Owners' equivalent rent of residences in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SEHC01 N300 SEHC01 U S S DECEMBER 1997=100 Owners' equivalent rent of primary residence in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SEHF N300 SEHF U S S DECEMBER 1997=100 Energy services in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN300SEHF01 N300 SEHF01 U S S DECEMBER 1997=100 Electricity in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN300SEHF02 N300 SEHF02 U S S DECEMBER 1997=100 Utility (piped) gas service in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN300SETA N300 SETA U S S DECEMBER 1997=100 New and used motor vehicles in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN300SETA01 N300 SETA01 U S S DECEMBER 1997=100 New vehicles in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN300SETA02 N300 SETA02 U S S DECEMBER 1997=100 Used cars and trucks in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN300SETB N300 SETB U S S DECEMBER 1997=100 Motor fuel in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SETB01 N300 SETB01 U S S DECEMBER 1997=100 Gasoline (all types) in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SETE N300 SETE U S S DECEMBER 1997=100 Motor vehicle insurance in South - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSN300SS47014 N300 SS47014 U S S DECEMBER 1997=100 Gasoline, unleaded regular in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SS47015 N300 SS47015 U S S DECEMBER 1997=100 Gasoline, unleaded midgrade in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN300SS47016 N300 SS47016 U S S DECEMBER 1997=100 Gasoline, unleaded premium in South - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SA0 N400 SA0 U S S DECEMBER 1996=100 All items in West - Size Class B/C, all urban consumers, not seasonally adjusted 1997 S01 2025 S01 +CUUSN400SA0E N400 SA0E U S S DECEMBER 1997=100 Energy in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SA0L1E N400 SA0L1E U S S DECEMBER 1997=100 All items less food and energy in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SA0L2 N400 SA0L2 U S S DECEMBER 1997=100 All items less shelter in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SA0L5 N400 SA0L5 U S S DECEMBER 1997=100 All items less medical care in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SA0LE N400 SA0LE U S S DECEMBER 1997=100 All items less energy in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SAA N400 SAA U S S DECEMBER 1997=100 Apparel in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SAC N400 SAC U S S DECEMBER 1997=100 Commodities in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SACL1 N400 SACL1 U S S DECEMBER 1997=100 Commodities less food in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SACL11 N400 SACL11 U S S DECEMBER 1997=100 Commodities less food and beverages in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SAD N400 SAD U S S DECEMBER 1997=100 Durables in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SAE N400 SAE U S S DECEMBER 1997=100 Education and communication in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SAEC N400 SAEC U S S DECEMBER 2009=100 Education and communication commodities in West - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN400SAES N400 SAES U S S DECEMBER 2009=100 Education and communication services in West - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN400SAF N400 SAF U S S DECEMBER 1997=100 Food and beverages in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SAF1 N400 SAF1 U S S DECEMBER 1997=100 Food in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SAF11 N400 SAF11 U S S DECEMBER 1997=100 Food at home in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SAF111 N400 SAF111 U S S DECEMBER 1997=100 Cereals and bakery products in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN400SAF112 N400 SAF112 U S S DECEMBER 1997=100 Meats, poultry, fish, and eggs in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN400SAF113 N400 SAF113 U S S DECEMBER 1997=100 Fruits and vegetables in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN400SAF114 N400 SAF114 U S S DECEMBER 1997=100 Nonalcoholic beverages and beverage materials in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN400SAF115 N400 SAF115 U S S DECEMBER 1997=100 Other food at home in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN400SAF116 N400 SAF116 U S S DECEMBER 1997=100 Alcoholic beverages in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SAG N400 SAG U S S DECEMBER 1997=100 Other goods and services in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SAGC N400 SAGC U S S DECEMBER 2009=100 Other goods in West - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN400SAGS N400 SAGS U S S DECEMBER 2009=100 Other personal services in West - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN400SAH N400 SAH U S S DECEMBER 1997=100 Housing in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SAH1 N400 SAH1 U S S DECEMBER 1997=100 Shelter in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SAH2 N400 SAH2 U S S DECEMBER 1997=100 Fuels and utilities in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN400SAH21 N400 SAH21 U S S DECEMBER 1997=100 Household energy in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN400SAH3 N400 SAH3 U S S DECEMBER 1997=100 Household furnishings and operations in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SAH31 N400 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in West - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN400SAM N400 SAM U S S DECEMBER 1997=100 Medical care in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SAN N400 SAN U S S DECEMBER 1997=100 Nondurables in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SANL1 N400 SANL1 U S S DECEMBER 1997=100 Nondurables less food in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SANL11 N400 SANL11 U S S DECEMBER 1997=100 Nondurables less food and beverages in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SAR N400 SAR U S S DECEMBER 1997=100 Recreation in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SAS N400 SAS U S S DECEMBER 1997=100 Services in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SASL2RS N400 SASL2RS U S S DECEMBER 1997=100 Services less rent of shelter in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SASL5 N400 SASL5 U S S DECEMBER 1997=100 Services less medical care services in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SAT N400 SAT U S S DECEMBER 1997=100 Transportation in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SAT1 N400 SAT1 U S S DECEMBER 1997=100 Private transportation in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SATCLTB N400 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in West - Size Class B/C, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSN400SEEB N400 SEEB U S S DECEMBER 1997=100 Tuition, other school fees, and childcare in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN400SEFJ N400 SEFJ U S S DECEMBER 1997=100 Dairy and related products in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN400SEFV N400 SEFV U S S DECEMBER 1997=100 Food away from home in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SEHA N400 SEHA U S S DECEMBER 1997=100 Rent of primary residence in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SEHC N400 SEHC U S S DECEMBER 1997=100 Owners' equivalent rent of residences in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SEHC01 N400 SEHC01 U S S DECEMBER 1997=100 Owners' equivalent rent of primary residence in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SEHF N400 SEHF U S S DECEMBER 1997=100 Energy services in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN400SEHF01 N400 SEHF01 U S S DECEMBER 1997=100 Electricity in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN400SEHF02 N400 SEHF02 U S S DECEMBER 1997=100 Utility (piped) gas service in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2024 S03 +CUUSN400SETA N400 SETA U S S DECEMBER 1997=100 New and used motor vehicles in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN400SETA01 N400 SETA01 U S S DECEMBER 1997=100 New vehicles in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN400SETA02 N400 SETA02 U S S DECEMBER 1997=100 Used cars and trucks in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSN400SETB N400 SETB U S S DECEMBER 1997=100 Motor fuel in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SETB01 N400 SETB01 U S S DECEMBER 1997=100 Gasoline (all types) in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SETE N400 SETE U S S DECEMBER 1997=100 Motor vehicle insurance in West - Size Class B/C, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSN400SS47014 N400 SS47014 U S S DECEMBER 1997=100 Gasoline, unleaded regular in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SS47015 N400 SS47015 U S S DECEMBER 1997=100 Gasoline, unleaded midgrade in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSN400SS47016 N400 SS47016 U S S DECEMBER 1997=100 Gasoline, unleaded premium in West - Size Class B/C, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS000AA0 S000 AA0 U S A DECEMBER 1986=100 All items - old base in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SA0 S000 SA0 U S S DECEMBER 1986=100 All items in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SA0E S000 SA0E U S S DECEMBER 1986=100 Energy in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SA0L1 S000 SA0L1 U S S DECEMBER 1986=100 All items less food in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SA0L1E S000 SA0L1E U S S DECEMBER 1986=100 All items less food and energy in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SA0L2 S000 SA0L2 U S S DECEMBER 1986=100 All items less shelter in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SA0L5 S000 SA0L5 U S S DECEMBER 1986=100 All items less medical care in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SA0LE S000 SA0LE U S S DECEMBER 1986=100 All items less energy in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAA S000 SAA U S S DECEMBER 1986=100 Apparel in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAC S000 SAC U S S DECEMBER 1986=100 Commodities in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SACE S000 SACE U S S DECEMBER 1986=100 Energy commodities in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SACL1 S000 SACL1 U S S DECEMBER 1986=100 Commodities less food in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SACL11 S000 SACL11 U S S DECEMBER 1986=100 Commodities less food and beverages in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SACL1E S000 SACL1E U S S DECEMBER 1986=100 Commodities less food and energy commodities in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAD S000 SAD U S S DECEMBER 1986=100 Durables in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAE S000 SAE U S S DECEMBER 1997=100 Education and communication in Size Class A, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS000SAEC S000 SAEC U S S DECEMBER 2009=100 Education and communication commodities in Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS000SAES S000 SAES U S S DECEMBER 2009=100 Education and communication services in Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS000SAF S000 SAF U S S DECEMBER 1986=100 Food and beverages in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAF1 S000 SAF1 U S S DECEMBER 1986=100 Food in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAF11 S000 SAF11 U S S DECEMBER 1986=100 Food at home in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAF111 S000 SAF111 U S S DECEMBER 1986=100 Cereals and bakery products in Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS000SAF112 S000 SAF112 U S S DECEMBER 1986=100 Meats, poultry, fish, and eggs in Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS000SAF113 S000 SAF113 U S S DECEMBER 1986=100 Fruits and vegetables in Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS000SAF114 S000 SAF114 U S S DECEMBER 1986=100 Nonalcoholic beverages and beverage materials in Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS000SAF115 S000 SAF115 U S S DECEMBER 1986=100 Other food at home in Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS000SAF116 S000 SAF116 U S S DECEMBER 1986=100 Alcoholic beverages in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAG S000 SAG U S S DECEMBER 1986=100 Other goods and services in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAGC S000 SAGC U S S DECEMBER 2009=100 Other goods in Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS000SAGS S000 SAGS U S S DECEMBER 2009=100 Other personal services in Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS000SAH S000 SAH U S S DECEMBER 1986=100 Housing in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAH1 S000 SAH1 U S S DECEMBER 1986=100 Shelter in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAH2 S000 SAH2 U S S DECEMBER 1986=100 Fuels and utilities in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAH21 S000 SAH21 U S S DECEMBER 1986=100 Household energy in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAH3 S000 SAH3 U S S DECEMBER 1986=100 Household furnishings and operations in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAH31 S000 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS000SAM S000 SAM U S S DECEMBER 1986=100 Medical care in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAM1 S000 SAM1 U S S DECEMBER 1986=100 Medical care commodities in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAM2 S000 SAM2 U S S DECEMBER 1986=100 Medical care services in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAN S000 SAN U S S DECEMBER 1986=100 Nondurables in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SANL1 S000 SANL1 U S S DECEMBER 1986=100 Nondurables less food in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SANL11 S000 SANL11 U S S DECEMBER 1986=100 Nondurables less food and beverages in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SANL113 S000 SANL113 U S S DECEMBER 1986=100 Nondurables less food, beverages, and apparel in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SANL13 S000 SANL13 U S S DECEMBER 1986=100 Nondurables less food and apparel in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAR S000 SAR U S S DECEMBER 1997=100 Recreation in Size Class A, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS000SARC S000 SARC U S S DECEMBER 2009=100 Recreation commodities in Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS000SARS S000 SARS U S S DECEMBER 2009=100 Recreation services in Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS000SAS S000 SAS U S S DECEMBER 1986=100 Services in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAS2RS S000 SAS2RS U S S DECEMBER 1986=100 Rent of shelter in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAS367 S000 SAS367 U S S DECEMBER 1986=100 Other services in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAS4 S000 SAS4 U S S DECEMBER 1986=100 Transportation services in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SASL2RS S000 SASL2RS U S S DECEMBER 1986=100 Services less rent of shelter in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SASL5 S000 SASL5 U S S DECEMBER 1986=100 Services less medical care services in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SASLE S000 SASLE U S S DECEMBER 1986=100 Services less energy services in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAT S000 SAT U S S DECEMBER 1986=100 Transportation in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SAT1 S000 SAT1 U S S DECEMBER 1986=100 Private transportation in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SATCLTB S000 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS000SEEB S000 SEEB U S S DECEMBER 1986=100 Tuition, other school fees, and childcare in Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS000SEFJ S000 SEFJ U S S DECEMBER 1986=100 Dairy and related products in Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS000SEFV S000 SEFV U S S DECEMBER 1986=100 Food away from home in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SEHA S000 SEHA U S S DECEMBER 1986=100 Rent of primary residence in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SEHC S000 SEHC U S S DECEMBER 1986=100 Owners' equivalent rent of residences in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SEHC01 S000 SEHC01 U S S DECEMBER 1986=100 Owners' equivalent rent of primary residence in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SEHF S000 SEHF U S S DECEMBER 1986=100 Energy services in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SEHF01 S000 SEHF01 U S S DECEMBER 1986=100 Electricity in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SEHF02 S000 SEHF02 U S S DECEMBER 1986=100 Utility (piped) gas service in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SEMC S000 SEMC U S S DECEMBER 1986=100 Professional services in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SETA S000 SETA U S S DECEMBER 1997=100 New and used motor vehicles in Size Class A, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS000SETA01 S000 SETA01 U S S DECEMBER 1986=100 New vehicles in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SETA02 S000 SETA02 U S S DECEMBER 1986=100 Used cars and trucks in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SETB S000 SETB U S S DECEMBER 1986=100 Motor fuel in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SETB01 S000 SETB01 U S S DECEMBER 1986=100 Gasoline (all types) in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SETE S000 SETE U S S DECEMBER 1986=100 Motor vehicle insurance in Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS000SS45011 S000 SS45011 U S S DECEMBER 1986=100 New cars in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SS4501A S000 SS4501A U S S DECEMBER 1997=100 New cars and trucks in Size Class A, all urban consumers, not seasonally adjusted 1998 S01 2021 S03 +CUUSS000SS47014 S000 SS47014 U S S DECEMBER 1986=100 Gasoline, unleaded regular in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS000SS47015 S000 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Size Class A, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS000SS47016 S000 SS47016 U S S DECEMBER 1986=100 Gasoline, unleaded premium in Size Class A, all urban consumers, not seasonally adjusted 1987 S01 2025 S01 +CUUSS100AA0 S100 AA0 U S A DECEMBER 1977=100 All items - old base in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SA0 S100 SA0 U S S 1982-84=100 All items in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SA0E S100 SA0E U S S 1982-84=100 Energy in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SA0L1E S100 SA0L1E U S S 1982-84=100 All items less food and energy in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SA0L2 S100 SA0L2 U S S 1982-84=100 All items less shelter in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SA0L5 S100 SA0L5 U S S 1982-84=100 All items less medical care in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SA0LE S100 SA0LE U S S 1982-84=100 All items less energy in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SAA S100 SAA U S S 1982-84=100 Apparel in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SAC S100 SAC U S S 1982-84=100 Commodities in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SACL1 S100 SACL1 U S S 1982-84=100 Commodities less food in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SACL11 S100 SACL11 U S S 1982-84=100 Commodities less food and beverages in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SAD S100 SAD U S S 1982-84=100 Durables in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SAE S100 SAE U S S DECEMBER 1997=100 Education and communication in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS100SAEC S100 SAEC U S S DECEMBER 2009=100 Education and communication commodities in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS100SAES S100 SAES U S S DECEMBER 2009=100 Education and communication services in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS100SAF S100 SAF U S S 1982-84=100 Food and beverages in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SAF1 S100 SAF1 U S S 1982-84=100 Food in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SAF11 S100 SAF11 U S S 1982-84=100 Food at home in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SAF111 S100 SAF111 U S S 1982-84=100 Cereals and bakery products in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS100SAF112 S100 SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS100SAF113 S100 SAF113 U S S 1982-84=100 Fruits and vegetables in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS100SAF114 S100 SAF114 U S S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS100SAF115 S100 SAF115 U S S 1982-84=100 Other food at home in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS100SAF116 S100 SAF116 U S S 1982-84=100 Alcoholic beverages in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SAG S100 SAG U S S 1982-84=100 Other goods and services in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SAGC S100 SAGC U S S DECEMBER 2009=100 Other goods in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS100SAGS S100 SAGS U S S DECEMBER 2009=100 Other personal services in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS100SAH S100 SAH U S S 1982-84=100 Housing in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SAH1 S100 SAH1 U S S 1982-84=100 Shelter in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SAH2 S100 SAH2 U S S 1982-84=100 Fuels and utilities in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS100SAH21 S100 SAH21 U S S 1982-84=100 Household energy in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS100SAH3 S100 SAH3 U S S 1982-84=100 Household furnishings and operations in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SAH31 S100 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS100SAM S100 SAM U S S 1982-84=100 Medical care in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SAN S100 SAN U S S 1982-84=100 Nondurables in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SANL1 S100 SANL1 U S S 1982-84=100 Nondurables less food in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SANL11 S100 SANL11 U S S 1982-84=100 Nondurables less food and beverages in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SAR S100 SAR U S S DECEMBER 1997=100 Recreation in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS100SAS S100 SAS U S S 1982-84=100 Services in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SASL2RS S100 SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SASL5 S100 SASL5 U S S 1982-84=100 Services less medical care services in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SAT S100 SAT U S S 1982-84=100 Transportation in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SAT1 S100 SAT1 U S S 1982-84=100 Private transportation in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SATCLTB S100 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS100SEEB S100 SEEB U S S DECEMBER 1977=100 Tuition, other school fees, and childcare in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS100SEFJ S100 SEFJ U S S 1982-84=100 Dairy and related products in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS100SEFV S100 SEFV U S S 1982-84=100 Food away from home in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SEHA S100 SEHA U S S 1982-84=100 Rent of primary residence in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SEHC S100 SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SEHC01 S100 SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SEHF S100 SEHF U S S 1982-84=100 Energy services in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS100SEHF01 S100 SEHF01 U S S 1982-84=100 Electricity in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS100SEHF02 S100 SEHF02 U S S 1982-84=100 Utility (piped) gas service in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS100SETA S100 SETA U S S DECEMBER 1997=100 New and used motor vehicles in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS100SETA01 S100 SETA01 U S S DECEMBER 1977=100 New vehicles in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS100SETA02 S100 SETA02 U S S DECEMBER 1977=100 Used cars and trucks in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS100SETB S100 SETB U S S 1982-84=100 Motor fuel in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SETB01 S100 SETB01 U S S 1982-84=100 Gasoline (all types) in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SETE S100 SETE U S S DECEMBER 1977=100 Motor vehicle insurance in Northeast - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS100SS47014 S100 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS100SS47015 S100 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS100SS47016 S100 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Northeast - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11AAA0 S11A AA0 U S A 1967=100 All items - old base in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASA0 S11A SA0 U S S 1982-84=100 All items in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASA0E S11A SA0E U S S 1982-84=100 Energy in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASA0L1E S11A SA0L1E U S S 1982-84=100 All items less food and energy in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASA0L2 S11A SA0L2 U S S 1982-84=100 All items less shelter in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASA0L5 S11A SA0L5 U S S 1982-84=100 All items less medical care in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASA0LE S11A SA0LE U S S 1982-84=100 All items less energy in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASAA S11A SAA U S S 1982-84=100 Apparel in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASAC S11A SAC U S S 1982-84=100 Commodities in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASACL1 S11A SACL1 U S S 1982-84=100 Commodities less food in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASACL11 S11A SACL11 U S S 1982-84=100 Commodities less food and beverages in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASAD S11A SAD U S S 1982-84=100 Durables in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASAE S11A SAE U S S DECEMBER 1997=100 Education and communication in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS11ASAEC S11A SAEC U S S DECEMBER 2009=100 Education and communication commodities in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS11ASAES S11A SAES U S S DECEMBER 2009=100 Education and communication services in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS11ASAF S11A SAF U S S 1982-84=100 Food and beverages in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASAF1 S11A SAF1 U S S 1982-84=100 Food in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASAF11 S11A SAF11 U S S 1982-84=100 Food at home in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASAF111 S11A SAF111 U S S 1982-84=100 Cereals and bakery products in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS11ASAF112 S11A SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS11ASAF113 S11A SAF113 U S S 1982-84=100 Fruits and vegetables in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS11ASAF114 S11A SAF114 U S S JANUARY 1978=100 Nonalcoholic beverages and beverage materials in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS11ASAF115 S11A SAF115 U S S 1982-84=100 Other food at home in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS11ASAF116 S11A SAF116 U S S 1982-84=100 Alcoholic beverages in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASAG S11A SAG U S S 1982-84=100 Other goods and services in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASAGC S11A SAGC U S S DECEMBER 2009=100 Other goods in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS11ASAGS S11A SAGS U S S DECEMBER 2009=100 Other personal services in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS11ASAH S11A SAH U S S 1982-84=100 Housing in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASAH1 S11A SAH1 U S S 1982-84=100 Shelter in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASAH2 S11A SAH2 U S S 1982-84=100 Fuels and utilities in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS11ASAH21 S11A SAH21 U S S 1982-84=100 Household energy in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS11ASAH3 S11A SAH3 U S S 1982-84=100 Household furnishings and operations in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASAH31 S11A SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS11ASAM S11A SAM U S S 1982-84=100 Medical care in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASAN S11A SAN U S S 1982-84=100 Nondurables in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASANL1 S11A SANL1 U S S 1982-84=100 Nondurables less food in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASANL11 S11A SANL11 U S S 1982-84=100 Nondurables less food and beverages in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASAR S11A SAR U S S DECEMBER 1997=100 Recreation in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS11ASAS S11A SAS U S S 1982-84=100 Services in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASASL2RS S11A SASL2RS U S S NOVEMBER 1982=100 Services less rent of shelter in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASASL5 S11A SASL5 U S S 1982-84=100 Services less medical care services in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASAT S11A SAT U S S 1982-84=100 Transportation in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASAT1 S11A SAT1 U S S 1982-84=100 Private transportation in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASATCLTB S11A SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS11ASEEB S11A SEEB U S S JANUARY 1978=100 Tuition, other school fees, and childcare in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS11ASEFJ S11A SEFJ U S S 1982-84=100 Dairy and related products in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS11ASEFV S11A SEFV U S S 1982-84=100 Food away from home in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASEHA S11A SEHA U S S 1982-84=100 Rent of primary residence in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASEHC S11A SEHC U S S NOVEMBER 1982=100 Owners' equivalent rent of residences in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASEHC01 S11A SEHC01 U S S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASEHF S11A SEHF U S S 1982-84=100 Energy services in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS11ASEHF01 S11A SEHF01 U S S 1982-84=100 Electricity in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS11ASEHF02 S11A SEHF02 U S S 1982-84=100 Utility (piped) gas service in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS11ASETA S11A SETA U S S DECEMBER 1997=100 New and used motor vehicles in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS11ASETA01 S11A SETA01 U S S JANUARY 1978=100 New vehicles in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS11ASETA02 S11A SETA02 U S S JANUARY 1978=100 Used cars and trucks in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS11ASETB S11A SETB U S S 1982-84=100 Motor fuel in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASETB01 S11A SETB01 U S S 1982-84=100 Gasoline (all types) in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASS47014 S11A SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS11ASS47015 S11A SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS11ASS47016 S11A SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Boston-Cambridge-Newton, MA-NH, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12AAA0 S12A AA0 U S A 1967=100 All items - old base in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASA0 S12A SA0 U S S 1982-84=100 All items in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASA0E S12A SA0E U S S 1982-84=100 Energy in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASA0L1E S12A SA0L1E U S S 1982-84=100 All items less food and energy in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASA0L2 S12A SA0L2 U S S 1982-84=100 All items less shelter in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASA0L5 S12A SA0L5 U S S 1982-84=100 All items less medical care in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASA0LE S12A SA0LE U S S 1982-84=100 All items less energy in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASAA S12A SAA U S S 1982-84=100 Apparel in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASAC S12A SAC U S S 1982-84=100 Commodities in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASACL1 S12A SACL1 U S S 1982-84=100 Commodities less food in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASACL11 S12A SACL11 U S S 1982-84=100 Commodities less food and beverages in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASAD S12A SAD U S S 1982-84=100 Durables in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASAE S12A SAE U S S DECEMBER 1997=100 Education and communication in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS12ASAEC S12A SAEC U S S DECEMBER 2009=100 Education and communication commodities in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS12ASAES S12A SAES U S S DECEMBER 2009=100 Education and communication services in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS12ASAF S12A SAF U S S 1982-84=100 Food and beverages in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASAF1 S12A SAF1 U S S 1982-84=100 Food in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASAF11 S12A SAF11 U S S 1982-84=100 Food at home in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASAF111 S12A SAF111 U S S 1982-84=100 Cereals and bakery products in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12ASAF112 S12A SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12ASAF113 S12A SAF113 U S S 1982-84=100 Fruits and vegetables in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12ASAF114 S12A SAF114 U S S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12ASAF115 S12A SAF115 U S S 1982-84=100 Other food at home in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12ASAF116 S12A SAF116 U S S 1982-84=100 Alcoholic beverages in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASAG S12A SAG U S S 1982-84=100 Other goods and services in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASAGC S12A SAGC U S S DECEMBER 2009=100 Other goods in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS12ASAGS S12A SAGS U S S DECEMBER 2009=100 Other personal services in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS12ASAH S12A SAH U S S 1982-84=100 Housing in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASAH1 S12A SAH1 U S S 1982-84=100 Shelter in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASAH2 S12A SAH2 U S S 1982-84=100 Fuels and utilities in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS12ASAH21 S12A SAH21 U S S 1982-84=100 Household energy in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS12ASAH3 S12A SAH3 U S S 1982-84=100 Household furnishings and operations in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASAH31 S12A SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS12ASAM S12A SAM U S S 1982-84=100 Medical care in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASAN S12A SAN U S S 1982-84=100 Nondurables in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASANL1 S12A SANL1 U S S 1982-84=100 Nondurables less food in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASANL11 S12A SANL11 U S S 1982-84=100 Nondurables less food and beverages in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASAR S12A SAR U S S DECEMBER 1997=100 Recreation in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS12ASAS S12A SAS U S S 1982-84=100 Services in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASASL2RS S12A SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASASL5 S12A SASL5 U S S 1982-84=100 Services less medical care services in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASAT S12A SAT U S S 1982-84=100 Transportation in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASAT1 S12A SAT1 U S S 1982-84=100 Private transportation in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASATCLTB S12A SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS12ASEEB S12A SEEB U S S DECEMBER 1977=100 Tuition, other school fees, and childcare in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12ASEFJ S12A SEFJ U S S 1982-84=100 Dairy and related products in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12ASEFV S12A SEFV U S S 1982-84=100 Food away from home in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASEHA S12A SEHA U S S 1982-84=100 Rent of primary residence in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASEHC S12A SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASEHC01 S12A SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASEHF S12A SEHF U S S 1982-84=100 Energy services in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS12ASEHF01 S12A SEHF01 U S S 1982-84=100 Electricity in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS12ASEHF02 S12A SEHF02 U S S 1982-84=100 Utility (piped) gas service in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS12ASETA S12A SETA U S S DECEMBER 1997=100 New and used motor vehicles in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12ASETA01 S12A SETA01 U S S DECEMBER 1977=100 New vehicles in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12ASETA02 S12A SETA02 U S S DECEMBER 1977=100 Used cars and trucks in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12ASETB S12A SETB U S S 1982-84=100 Motor fuel in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASETB01 S12A SETB01 U S S 1982-84=100 Gasoline (all types) in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASETE S12A SETE U S S DECEMBER 1977=100 Motor vehicle insurance in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS12ASS47014 S12A SS47014 U S S 1982-84=100 Gasoline, unleaded regular in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12ASS47015 S12A SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS12ASS47016 S12A SS47016 U S S 1982-84=100 Gasoline, unleaded premium in New York-Newark-Jersey City, NY-NJ-PA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BAA0 S12B AA0 U S A 1967=100 All items - old base in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSA0 S12B SA0 U S S 1982-84=100 All items in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSA0E S12B SA0E U S S 1982-84=100 Energy in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSA0L1E S12B SA0L1E U S S 1982-84=100 All items less food and energy in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSA0L2 S12B SA0L2 U S S 1982-84=100 All items less shelter in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSA0L5 S12B SA0L5 U S S 1982-84=100 All items less medical care in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSA0LE S12B SA0LE U S S 1982-84=100 All items less energy in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSAA S12B SAA U S S 1982-84=100 Apparel in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSAC S12B SAC U S S 1982-84=100 Commodities in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSACL1 S12B SACL1 U S S 1982-84=100 Commodities less food in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSACL11 S12B SACL11 U S S 1982-84=100 Commodities less food and beverages in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSAD S12B SAD U S S 1982-84=100 Durables in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSAE S12B SAE U S S DECEMBER 1997=100 Education and communication in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS12BSAEC S12B SAEC U S S DECEMBER 2009=100 Education and communication commodities in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS12BSAES S12B SAES U S S DECEMBER 2009=100 Education and communication services in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS12BSAF S12B SAF U S S 1982-84=100 Food and beverages in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSAF1 S12B SAF1 U S S 1982-84=100 Food in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSAF11 S12B SAF11 U S S 1982-84=100 Food at home in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSAF111 S12B SAF111 U S S 1982-84=100 Cereals and bakery products in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12BSAF112 S12B SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12BSAF113 S12B SAF113 U S S 1982-84=100 Fruits and vegetables in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12BSAF114 S12B SAF114 U S S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12BSAF115 S12B SAF115 U S S 1982-84=100 Other food at home in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12BSAF116 S12B SAF116 U S S 1982-84=100 Alcoholic beverages in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSAG S12B SAG U S S 1982-84=100 Other goods and services in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSAGC S12B SAGC U S S DECEMBER 2009=100 Other goods in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS12BSAGS S12B SAGS U S S DECEMBER 2009=100 Other personal services in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS12BSAH S12B SAH U S S 1982-84=100 Housing in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSAH1 S12B SAH1 U S S 1982-84=100 Shelter in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSAH2 S12B SAH2 U S S 1982-84=100 Fuels and utilities in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS12BSAH21 S12B SAH21 U S S 1982-84=100 Household energy in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS12BSAH3 S12B SAH3 U S S 1982-84=100 Household furnishings and operations in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSAH31 S12B SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS12BSAM S12B SAM U S S 1982-84=100 Medical care in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSAN S12B SAN U S S 1982-84=100 Nondurables in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSANL1 S12B SANL1 U S S 1982-84=100 Nondurables less food in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSANL11 S12B SANL11 U S S 1982-84=100 Nondurables less food and beverages in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSAR S12B SAR U S S DECEMBER 1997=100 Recreation in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS12BSAS S12B SAS U S S 1982-84=100 Services in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSASL2RS S12B SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSASL5 S12B SASL5 U S S 1982-84=100 Services less medical care services in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSAT S12B SAT U S S 1982-84=100 Transportation in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSAT1 S12B SAT1 U S S 1982-84=100 Private transportation in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSATCLTB S12B SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS12BSEEB S12B SEEB U S S DECEMBER 1977=100 Tuition, other school fees, and childcare in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12BSEFJ S12B SEFJ U S S 1982-84=100 Dairy and related products in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12BSEFV S12B SEFV U S S 1982-84=100 Food away from home in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSEHA S12B SEHA U S S 1982-84=100 Rent of primary residence in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSEHC S12B SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSEHC01 S12B SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSEHF S12B SEHF U S S 1982-84=100 Energy services in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS12BSEHF01 S12B SEHF01 U S S 1982-84=100 Electricity in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS12BSEHF02 S12B SEHF02 U S S 1982-84=100 Utility (piped) gas service in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS12BSETA S12B SETA U S S DECEMBER 1997=100 New and used motor vehicles in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12BSETA01 S12B SETA01 U S S DECEMBER 1977=100 New vehicles in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12BSETA02 S12B SETA02 U S S DECEMBER 1977=100 Used cars and trucks in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS12BSETB S12B SETB U S S 1982-84=100 Motor fuel in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSETB01 S12B SETB01 U S S 1982-84=100 Gasoline (all types) in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSETE S12B SETE U S S DECEMBER 1977=100 Motor vehicle insurance in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS12BSS47014 S12B SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS12BSS47015 S12B SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS12BSS47016 S12B SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200AA0 S200 AA0 U S A DECEMBER 1977=100 All items - old base in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SA0 S200 SA0 U S S 1982-84=100 All items in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SA0E S200 SA0E U S S 1982-84=100 Energy in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SA0L1E S200 SA0L1E U S S 1982-84=100 All items less food and energy in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SA0L2 S200 SA0L2 U S S 1982-84=100 All items less shelter in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SA0L5 S200 SA0L5 U S S 1982-84=100 All items less medical care in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SA0LE S200 SA0LE U S S 1982-84=100 All items less energy in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SAA S200 SAA U S S 1982-84=100 Apparel in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SAC S200 SAC U S S 1982-84=100 Commodities in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SACL1 S200 SACL1 U S S 1982-84=100 Commodities less food in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SACL11 S200 SACL11 U S S 1982-84=100 Commodities less food and beverages in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SAD S200 SAD U S S 1982-84=100 Durables in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SAE S200 SAE U S S DECEMBER 1997=100 Education and communication in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS200SAEC S200 SAEC U S S DECEMBER 2009=100 Education and communication commodities in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS200SAES S200 SAES U S S DECEMBER 2009=100 Education and communication services in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS200SAF S200 SAF U S S 1982-84=100 Food and beverages in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SAF1 S200 SAF1 U S S 1982-84=100 Food in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SAF11 S200 SAF11 U S S 1982-84=100 Food at home in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SAF111 S200 SAF111 U S S 1982-84=100 Cereals and bakery products in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS200SAF112 S200 SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS200SAF113 S200 SAF113 U S S 1982-84=100 Fruits and vegetables in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS200SAF114 S200 SAF114 U S S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS200SAF115 S200 SAF115 U S S 1982-84=100 Other food at home in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS200SAF116 S200 SAF116 U S S 1982-84=100 Alcoholic beverages in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SAG S200 SAG U S S 1982-84=100 Other goods and services in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SAGC S200 SAGC U S S DECEMBER 2009=100 Other goods in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS200SAGS S200 SAGS U S S DECEMBER 2009=100 Other personal services in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS200SAH S200 SAH U S S 1982-84=100 Housing in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SAH1 S200 SAH1 U S S 1982-84=100 Shelter in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SAH2 S200 SAH2 U S S 1982-84=100 Fuels and utilities in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS200SAH21 S200 SAH21 U S S 1982-84=100 Household energy in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS200SAH3 S200 SAH3 U S S 1982-84=100 Household furnishings and operations in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SAH31 S200 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS200SAM S200 SAM U S S 1982-84=100 Medical care in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SAN S200 SAN U S S 1982-84=100 Nondurables in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SANL1 S200 SANL1 U S S 1982-84=100 Nondurables less food in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SANL11 S200 SANL11 U S S 1982-84=100 Nondurables less food and beverages in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SAR S200 SAR U S S DECEMBER 1997=100 Recreation in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS200SAS S200 SAS U S S 1982-84=100 Services in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SASL2RS S200 SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SASL5 S200 SASL5 U S S 1982-84=100 Services less medical care services in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SAT S200 SAT U S S 1982-84=100 Transportation in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SAT1 S200 SAT1 U S S 1982-84=100 Private transportation in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SATCLTB S200 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS200SEEB S200 SEEB U S S DECEMBER 1977=100 Tuition, other school fees, and childcare in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS200SEFJ S200 SEFJ U S S 1982-84=100 Dairy and related products in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS200SEFV S200 SEFV U S S 1982-84=100 Food away from home in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SEHA S200 SEHA U S S 1982-84=100 Rent of primary residence in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SEHC S200 SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SEHC01 S200 SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SEHF S200 SEHF U S S 1982-84=100 Energy services in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS200SEHF01 S200 SEHF01 U S S 1982-84=100 Electricity in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS200SEHF02 S200 SEHF02 U S S 1982-84=100 Utility (piped) gas service in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS200SETA S200 SETA U S S DECEMBER 1997=100 New and used motor vehicles in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS200SETA01 S200 SETA01 U S S DECEMBER 1977=100 New vehicles in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS200SETA02 S200 SETA02 U S S DECEMBER 1977=100 Used cars and trucks in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS200SETB S200 SETB U S S 1982-84=100 Motor fuel in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SETB01 S200 SETB01 U S S 1982-84=100 Gasoline (all types) in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SETE S200 SETE U S S DECEMBER 1977=100 Motor vehicle insurance in Midwest - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS200SS47014 S200 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS200SS47015 S200 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS200SS47016 S200 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Midwest - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23AAA0 S23A AA0 U S A 1967=100 All items - old base in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASA0 S23A SA0 U S S 1982-84=100 All items in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASA0E S23A SA0E U S S 1982-84=100 Energy in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASA0L1E S23A SA0L1E U S S 1982-84=100 All items less food and energy in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASA0L2 S23A SA0L2 U S S 1982-84=100 All items less shelter in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASA0L5 S23A SA0L5 U S S 1982-84=100 All items less medical care in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASA0LE S23A SA0LE U S S 1982-84=100 All items less energy in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASAA S23A SAA U S S 1982-84=100 Apparel in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASAC S23A SAC U S S 1982-84=100 Commodities in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASACL1 S23A SACL1 U S S 1982-84=100 Commodities less food in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASACL11 S23A SACL11 U S S 1982-84=100 Commodities less food and beverages in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASAD S23A SAD U S S 1982-84=100 Durables in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASAE S23A SAE U S S DECEMBER 1997=100 Education and communication in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS23ASAEC S23A SAEC U S S DECEMBER 2009=100 Education and communication commodities in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS23ASAES S23A SAES U S S DECEMBER 2009=100 Education and communication services in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS23ASAF S23A SAF U S S 1982-84=100 Food and beverages in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASAF1 S23A SAF1 U S S 1982-84=100 Food in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASAF11 S23A SAF11 U S S 1982-84=100 Food at home in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASAF111 S23A SAF111 U S S 1982-84=100 Cereals and bakery products in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23ASAF112 S23A SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23ASAF113 S23A SAF113 U S S 1982-84=100 Fruits and vegetables in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23ASAF114 S23A SAF114 U S S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23ASAF115 S23A SAF115 U S S 1982-84=100 Other food at home in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23ASAF116 S23A SAF116 U S S 1982-84=100 Alcoholic beverages in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASAG S23A SAG U S S 1982-84=100 Other goods and services in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASAGC S23A SAGC U S S DECEMBER 2009=100 Other goods in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS23ASAGS S23A SAGS U S S DECEMBER 2009=100 Other personal services in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2010 S01 2024 S03 +CUUSS23ASAH S23A SAH U S S 1982-84=100 Housing in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASAH1 S23A SAH1 U S S 1982-84=100 Shelter in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASAH2 S23A SAH2 U S S 1982-84=100 Fuels and utilities in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS23ASAH21 S23A SAH21 U S S 1982-84=100 Household energy in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS23ASAH3 S23A SAH3 U S S 1982-84=100 Household furnishings and operations in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASAH31 S23A SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS23ASAM S23A SAM U S S 1982-84=100 Medical care in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASAN S23A SAN U S S 1982-84=100 Nondurables in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASANL1 S23A SANL1 U S S 1982-84=100 Nondurables less food in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASANL11 S23A SANL11 U S S 1982-84=100 Nondurables less food and beverages in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASAR S23A SAR U S S DECEMBER 1997=100 Recreation in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS23ASAS S23A SAS U S S 1982-84=100 Services in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASASL2RS S23A SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASASL5 S23A SASL5 U S S 1982-84=100 Services less medical care services in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASAT S23A SAT U S S 1982-84=100 Transportation in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASAT1 S23A SAT1 U S S 1982-84=100 Private transportation in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASATCLTB S23A SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS23ASEEB S23A SEEB U S S DECEMBER 1977=100 Tuition, other school fees, and childcare in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23ASEFJ S23A SEFJ U S S 1982-84=100 Dairy and related products in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23ASEFV S23A SEFV U S S 1982-84=100 Food away from home in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASEHA S23A SEHA U S S 1982-84=100 Rent of primary residence in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASEHC S23A SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASEHC01 S23A SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASEHF S23A SEHF U S S 1982-84=100 Energy services in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS23ASEHF01 S23A SEHF01 U S S 1982-84=100 Electricity in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS23ASEHF02 S23A SEHF02 U S S 1982-84=100 Utility (piped) gas service in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS23ASETA S23A SETA U S S DECEMBER 1997=100 New and used motor vehicles in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23ASETA01 S23A SETA01 U S S DECEMBER 1977=100 New vehicles in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23ASETA02 S23A SETA02 U S S DECEMBER 1977=100 Used cars and trucks in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23ASETB S23A SETB U S S 1982-84=100 Motor fuel in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASETB01 S23A SETB01 U S S 1982-84=100 Gasoline (all types) in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASETE S23A SETE U S S DECEMBER 1977=100 Motor vehicle insurance in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS23ASS47014 S23A SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23ASS47015 S23A SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS23ASS47016 S23A SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Chicago-Naperville-Elgin, IL-IN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BAA0 S23B AA0 U S A 1967=100 All items - old base in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSA0 S23B SA0 U S S 1982-84=100 All items in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSA0E S23B SA0E U S S 1982-84=100 Energy in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSA0L1E S23B SA0L1E U S S 1982-84=100 All items less food and energy in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSA0L2 S23B SA0L2 U S S 1982-84=100 All items less shelter in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSA0L5 S23B SA0L5 U S S 1982-84=100 All items less medical care in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSA0LE S23B SA0LE U S S 1982-84=100 All items less energy in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSAA S23B SAA U S S 1982-84=100 Apparel in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSAC S23B SAC U S S 1982-84=100 Commodities in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSACL1 S23B SACL1 U S S 1982-84=100 Commodities less food in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSACL11 S23B SACL11 U S S 1982-84=100 Commodities less food and beverages in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSAD S23B SAD U S S 1982-84=100 Durables in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSAE S23B SAE U S S DECEMBER 1997=100 Education and communication in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS23BSAEC S23B SAEC U S S DECEMBER 2009=100 Education and communication commodities in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS23BSAES S23B SAES U S S DECEMBER 2009=100 Education and communication services in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS23BSAF S23B SAF U S S 1982-84=100 Food and beverages in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSAF1 S23B SAF1 U S S 1982-84=100 Food in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSAF11 S23B SAF11 U S S 1982-84=100 Food at home in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSAF111 S23B SAF111 U S S 1982-84=100 Cereals and bakery products in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23BSAF112 S23B SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23BSAF113 S23B SAF113 U S S 1982-84=100 Fruits and vegetables in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23BSAF114 S23B SAF114 U S S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23BSAF115 S23B SAF115 U S S 1982-84=100 Other food at home in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23BSAF116 S23B SAF116 U S S 1982-84=100 Alcoholic beverages in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSAG S23B SAG U S S 1982-84=100 Other goods and services in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSAGC S23B SAGC U S S DECEMBER 2009=100 Other goods in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS23BSAGS S23B SAGS U S S DECEMBER 2009=100 Other personal services in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS23BSAH S23B SAH U S S 1982-84=100 Housing in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSAH1 S23B SAH1 U S S 1982-84=100 Shelter in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSAH2 S23B SAH2 U S S 1982-84=100 Fuels and utilities in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS23BSAH21 S23B SAH21 U S S 1982-84=100 Household energy in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS23BSAH3 S23B SAH3 U S S 1982-84=100 Household furnishings and operations in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSAH31 S23B SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS23BSAM S23B SAM U S S 1982-84=100 Medical care in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSAN S23B SAN U S S 1982-84=100 Nondurables in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSANL1 S23B SANL1 U S S 1982-84=100 Nondurables less food in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSANL11 S23B SANL11 U S S 1982-84=100 Nondurables less food and beverages in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSAR S23B SAR U S S DECEMBER 1997=100 Recreation in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS23BSAS S23B SAS U S S 1982-84=100 Services in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSASL2RS S23B SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSASL5 S23B SASL5 U S S 1982-84=100 Services less medical care services in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSAT S23B SAT U S S 1982-84=100 Transportation in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSAT1 S23B SAT1 U S S 1982-84=100 Private transportation in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSATCLTB S23B SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS23BSEEB S23B SEEB U S S DECEMBER 1977=100 Tuition, other school fees, and childcare in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 S02 2024 S03 +CUUSS23BSEFJ S23B SEFJ U S S 1982-84=100 Dairy and related products in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23BSEFV S23B SEFV U S S 1982-84=100 Food away from home in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSEHA S23B SEHA U S S 1982-84=100 Rent of primary residence in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSEHC S23B SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSEHC01 S23B SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSEHF S23B SEHF U S S 1982-84=100 Energy services in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS23BSEHF01 S23B SEHF01 U S S 1982-84=100 Electricity in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS23BSEHF02 S23B SEHF02 U S S 1982-84=100 Utility (piped) gas service in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS23BSETA S23B SETA U S S DECEMBER 1997=100 New and used motor vehicles in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23BSETA01 S23B SETA01 U S S DECEMBER 1977=100 New vehicles in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23BSETA02 S23B SETA02 U S S DECEMBER 1977=100 Used cars and trucks in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS23BSETB S23B SETB U S S 1982-84=100 Motor fuel in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSETB01 S23B SETB01 U S S 1982-84=100 Gasoline (all types) in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSETE S23B SETE U S S DECEMBER 1977=100 Motor vehicle insurance in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS23BSS47014 S23B SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS23BSS47015 S23B SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS23BSS47016 S23B SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Detroit-Warren-Dearborn, MI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24AAA0 S24A AA0 U S A 1967=100 All items - old base in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASA0 S24A SA0 U S S 1982-84=100 All items in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASA0E S24A SA0E U S S 1982-84=100 Energy in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASA0L1E S24A SA0L1E U S S 1982-84=100 All items less food and energy in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASA0L2 S24A SA0L2 U S S 1982-84=100 All items less shelter in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASA0L5 S24A SA0L5 U S S 1982-84=100 All items less medical care in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASA0LE S24A SA0LE U S S 1982-84=100 All items less energy in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASAA S24A SAA U S S 1982-84=100 Apparel in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASAC S24A SAC U S S 1982-84=100 Commodities in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASACL1 S24A SACL1 U S S 1982-84=100 Commodities less food in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASACL11 S24A SACL11 U S S 1982-84=100 Commodities less food and beverages in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASAD S24A SAD U S S 1982-84=100 Durables in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASAE S24A SAE U S S DECEMBER 1997=100 Education and communication in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS24ASAEC S24A SAEC U S S DECEMBER 2009=100 Education and communication commodities in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS24ASAES S24A SAES U S S DECEMBER 2009=100 Education and communication services in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS24ASAF S24A SAF U S S 1982-84=100 Food and beverages in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASAF1 S24A SAF1 U S S 1982-84=100 Food in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASAF11 S24A SAF11 U S S 1982-84=100 Food at home in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASAF111 S24A SAF111 U S S 1982-84=100 Cereals and bakery products in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24ASAF112 S24A SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24ASAF113 S24A SAF113 U S S 1982-84=100 Fruits and vegetables in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24ASAF114 S24A SAF114 U S S APRIL 1978=100 Nonalcoholic beverages and beverage materials in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24ASAF115 S24A SAF115 U S S 1982-84=100 Other food at home in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24ASAF116 S24A SAF116 U S S 1982-84=100 Alcoholic beverages in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASAG S24A SAG U S S 1982-84=100 Other goods and services in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASAGC S24A SAGC U S S DECEMBER 2009=100 Other goods in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS24ASAGS S24A SAGS U S S DECEMBER 2009=100 Other personal services in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS24ASAH S24A SAH U S S 1982-84=100 Housing in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASAH1 S24A SAH1 U S S 1982-84=100 Shelter in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASAH2 S24A SAH2 U S S 1982-84=100 Fuels and utilities in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS24ASAH21 S24A SAH21 U S S 1982-84=100 Household energy in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS24ASAH3 S24A SAH3 U S S 1982-84=100 Household furnishings and operations in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASAH31 S24A SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS24ASAM S24A SAM U S S 1982-84=100 Medical care in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASAN S24A SAN U S S 1982-84=100 Nondurables in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASANL1 S24A SANL1 U S S 1982-84=100 Nondurables less food in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASANL11 S24A SANL11 U S S 1982-84=100 Nondurables less food and beverages in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASAR S24A SAR U S S DECEMBER 1997=100 Recreation in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS24ASAS S24A SAS U S S 1982-84=100 Services in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASASL2RS S24A SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASASL5 S24A SASL5 U S S 1982-84=100 Services less medical care services in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASAT S24A SAT U S S 1982-84=100 Transportation in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASAT1 S24A SAT1 U S S 1982-84=100 Private transportation in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASATCLTB S24A SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS24ASEEB S24A SEEB U S S APRIL 1978=100 Tuition, other school fees, and childcare in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24ASEFJ S24A SEFJ U S S 1982-84=100 Dairy and related products in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24ASEFV S24A SEFV U S S 1982-84=100 Food away from home in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASEHA S24A SEHA U S S 1982-84=100 Rent of primary residence in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASEHC S24A SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASEHC01 S24A SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASEHF S24A SEHF U S S 1982-84=100 Energy services in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS24ASEHF01 S24A SEHF01 U S S 1982-84=100 Electricity in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS24ASEHF02 S24A SEHF02 U S S 1982-84=100 Utility (piped) gas service in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS24ASETA S24A SETA U S S DECEMBER 1997=100 New and used motor vehicles in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24ASETA01 S24A SETA01 U S S APRIL 1978=100 New vehicles in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24ASETA02 S24A SETA02 U S S APRIL 1978=100 Used cars and trucks in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24ASETB S24A SETB U S S 1982-84=100 Motor fuel in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASETB01 S24A SETB01 U S S 1982-84=100 Gasoline (all types) in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASETE S24A SETE U S S APRIL 1978=100 Motor vehicle insurance in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS24ASS47014 S24A SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24ASS47015 S24A SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS24ASS47016 S24A SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Minneapolis-St.Paul-Bloomington, MN-WI, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BAA0 S24B AA0 U S A 1967=100 All items - old base in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSA0 S24B SA0 U S S 1982-84=100 All items in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSA0E S24B SA0E U S S 1982-84=100 Energy in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSA0L1E S24B SA0L1E U S S 1982-84=100 All items less food and energy in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSA0L2 S24B SA0L2 U S S 1982-84=100 All items less shelter in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSA0L5 S24B SA0L5 U S S 1982-84=100 All items less medical care in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSA0LE S24B SA0LE U S S 1982-84=100 All items less energy in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSAA S24B SAA U S S 1982-84=100 Apparel in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSAC S24B SAC U S S 1982-84=100 Commodities in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSACL1 S24B SACL1 U S S 1982-84=100 Commodities less food in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSACL11 S24B SACL11 U S S 1982-84=100 Commodities less food and beverages in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSAD S24B SAD U S S 1982-84=100 Durables in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSAE S24B SAE U S S DECEMBER 1997=100 Education and communication in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS24BSAEC S24B SAEC U S S DECEMBER 2009=100 Education and communication commodities in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS24BSAES S24B SAES U S S DECEMBER 2009=100 Education and communication services in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS24BSAF S24B SAF U S S 1982-84=100 Food and beverages in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSAF1 S24B SAF1 U S S 1982-84=100 Food in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSAF11 S24B SAF11 U S S 1982-84=100 Food at home in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSAF111 S24B SAF111 U S S 1982-84=100 Cereals and bakery products in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24BSAF112 S24B SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24BSAF113 S24B SAF113 U S S 1982-84=100 Fruits and vegetables in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24BSAF114 S24B SAF114 U S S MARCH 1978=100 Nonalcoholic beverages and beverage materials in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24BSAF115 S24B SAF115 U S S 1982-84=100 Other food at home in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24BSAF116 S24B SAF116 U S S 1982-84=100 Alcoholic beverages in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSAG S24B SAG U S S 1982-84=100 Other goods and services in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSAGC S24B SAGC U S S DECEMBER 2009=100 Other goods in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS24BSAGS S24B SAGS U S S DECEMBER 2009=100 Other personal services in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS24BSAH S24B SAH U S S 1982-84=100 Housing in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSAH1 S24B SAH1 U S S 1982-84=100 Shelter in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSAH2 S24B SAH2 U S S 1982-84=100 Fuels and utilities in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS24BSAH21 S24B SAH21 U S S 1982-84=100 Household energy in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS24BSAH3 S24B SAH3 U S S 1982-84=100 Household furnishings and operations in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSAH31 S24B SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS24BSAM S24B SAM U S S 1982-84=100 Medical care in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSAN S24B SAN U S S 1982-84=100 Nondurables in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSANL1 S24B SANL1 U S S 1982-84=100 Nondurables less food in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSANL11 S24B SANL11 U S S 1982-84=100 Nondurables less food and beverages in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSAR S24B SAR U S S DECEMBER 1997=100 Recreation in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS24BSAS S24B SAS U S S 1982-84=100 Services in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSASL2RS S24B SASL2RS U S S NOVEMBER 1982=100 Services less rent of shelter in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSASL5 S24B SASL5 U S S 1982-84=100 Services less medical care services in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSAT S24B SAT U S S 1982-84=100 Transportation in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSAT1 S24B SAT1 U S S 1982-84=100 Private transportation in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSATCLTB S24B SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS24BSEEB S24B SEEB U S S MARCH 1978=100 Tuition, other school fees, and childcare in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24BSEFJ S24B SEFJ U S S 1982-84=100 Dairy and related products in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24BSEFV S24B SEFV U S S 1982-84=100 Food away from home in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSEHA S24B SEHA U S S 1982-84=100 Rent of primary residence in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSEHC S24B SEHC U S S NOVEMBER 1982=100 Owners' equivalent rent of residences in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSEHC01 S24B SEHC01 U S S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSEHF S24B SEHF U S S 1982-84=100 Energy services in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS24BSEHF01 S24B SEHF01 U S S 1982-84=100 Electricity in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS24BSEHF02 S24B SEHF02 U S S 1982-84=100 Utility (piped) gas service in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS24BSETA S24B SETA U S S DECEMBER 1997=100 New and used motor vehicles in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24BSETA01 S24B SETA01 U S S MARCH 1978=100 New vehicles in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24BSETA02 S24B SETA02 U S S MARCH 1978=100 Used cars and trucks in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS24BSETB S24B SETB U S S 1982-84=100 Motor fuel in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSETB01 S24B SETB01 U S S 1982-84=100 Gasoline (all types) in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSETE S24B SETE U S S MARCH 1978=100 Motor vehicle insurance in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS24BSS47014 S24B SS47014 U S S 1982-84=100 Gasoline, unleaded regular in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS24BSS47015 S24B SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS24BSS47016 S24B SS47016 U S S 1982-84=100 Gasoline, unleaded premium in St. Louis, MO-IL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300AA0 S300 AA0 U S A DECEMBER 1977=100 All items - old base in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SA0 S300 SA0 U S S 1982-84=100 All items in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SA0E S300 SA0E U S S 1982-84=100 Energy in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SA0L1E S300 SA0L1E U S S 1982-84=100 All items less food and energy in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SA0L2 S300 SA0L2 U S S 1982-84=100 All items less shelter in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SA0L5 S300 SA0L5 U S S 1982-84=100 All items less medical care in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SA0LE S300 SA0LE U S S 1982-84=100 All items less energy in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SAA S300 SAA U S S 1982-84=100 Apparel in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SAC S300 SAC U S S 1982-84=100 Commodities in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SACL1 S300 SACL1 U S S 1982-84=100 Commodities less food in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SACL11 S300 SACL11 U S S 1982-84=100 Commodities less food and beverages in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SAD S300 SAD U S S 1982-84=100 Durables in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SAE S300 SAE U S S DECEMBER 1997=100 Education and communication in South - Size Class A, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS300SAEC S300 SAEC U S S DECEMBER 2009=100 Education and communication commodities in South - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS300SAES S300 SAES U S S DECEMBER 2009=100 Education and communication services in South - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS300SAF S300 SAF U S S 1982-84=100 Food and beverages in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SAF1 S300 SAF1 U S S 1982-84=100 Food in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SAF11 S300 SAF11 U S S 1982-84=100 Food at home in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SAF111 S300 SAF111 U S S 1982-84=100 Cereals and bakery products in South - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS300SAF112 S300 SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in South - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS300SAF113 S300 SAF113 U S S 1982-84=100 Fruits and vegetables in South - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS300SAF114 S300 SAF114 U S S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in South - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS300SAF115 S300 SAF115 U S S 1982-84=100 Other food at home in South - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS300SAF116 S300 SAF116 U S S 1982-84=100 Alcoholic beverages in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SAG S300 SAG U S S 1982-84=100 Other goods and services in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SAGC S300 SAGC U S S DECEMBER 2009=100 Other goods in South - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS300SAGS S300 SAGS U S S DECEMBER 2009=100 Other personal services in South - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS300SAH S300 SAH U S S 1982-84=100 Housing in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SAH1 S300 SAH1 U S S 1982-84=100 Shelter in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SAH2 S300 SAH2 U S S 1982-84=100 Fuels and utilities in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS300SAH21 S300 SAH21 U S S 1982-84=100 Household energy in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS300SAH3 S300 SAH3 U S S 1982-84=100 Household furnishings and operations in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SAH31 S300 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in South - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS300SAM S300 SAM U S S 1982-84=100 Medical care in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SAN S300 SAN U S S 1982-84=100 Nondurables in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SANL1 S300 SANL1 U S S 1982-84=100 Nondurables less food in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SANL11 S300 SANL11 U S S 1982-84=100 Nondurables less food and beverages in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SAR S300 SAR U S S DECEMBER 1997=100 Recreation in South - Size Class A, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS300SAS S300 SAS U S S 1982-84=100 Services in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SASL2RS S300 SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SASL5 S300 SASL5 U S S 1982-84=100 Services less medical care services in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SAT S300 SAT U S S 1982-84=100 Transportation in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SAT1 S300 SAT1 U S S 1982-84=100 Private transportation in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SATCLTB S300 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in South - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS300SEEB S300 SEEB U S S DECEMBER 1977=100 Tuition, other school fees, and childcare in South - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS300SEFJ S300 SEFJ U S S 1982-84=100 Dairy and related products in South - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS300SEFV S300 SEFV U S S 1982-84=100 Food away from home in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SEHA S300 SEHA U S S 1982-84=100 Rent of primary residence in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SEHC S300 SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SEHC01 S300 SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SEHF S300 SEHF U S S 1982-84=100 Energy services in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS300SEHF01 S300 SEHF01 U S S 1982-84=100 Electricity in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS300SEHF02 S300 SEHF02 U S S 1982-84=100 Utility (piped) gas service in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS300SETA S300 SETA U S S DECEMBER 1997=100 New and used motor vehicles in South - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS300SETA01 S300 SETA01 U S S DECEMBER 1977=100 New vehicles in South - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS300SETA02 S300 SETA02 U S S DECEMBER 1977=100 Used cars and trucks in South - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS300SETB S300 SETB U S S 1982-84=100 Motor fuel in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SETB01 S300 SETB01 U S S 1982-84=100 Gasoline (all types) in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SETE S300 SETE U S S DECEMBER 1977=100 Motor vehicle insurance in South - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS300SS47014 S300 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS300SS47015 S300 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in South - Size Class A, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS300SS47016 S300 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in South - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35AAA0 S35A AA0 U S A 1967=100 All items - old base in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ASA0 S35A SA0 U S S 1982-84=100 All items in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ASA0E S35A SA0E U S S 1982-84=100 Energy in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ASA0L1E S35A SA0L1E U S S 1982-84=100 All items less food and energy in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ASA0L2 S35A SA0L2 U S S 1982-84=100 All items less shelter in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ASA0L5 S35A SA0L5 U S S 1982-84=100 All items less medical care in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ASA0LE S35A SA0LE U S S 1982-84=100 All items less energy in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ASAA S35A SAA U S S 1982-84=100 Apparel in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASAC S35A SAC U S S 1982-84=100 Commodities in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ASACL1 S35A SACL1 U S S 1982-84=100 Commodities less food in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ASACL11 S35A SACL11 U S S 1982-84=100 Commodities less food and beverages in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ASAD S35A SAD U S S 1982-84=100 Durables in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ASAE S35A SAE U S S DECEMBER 1997=100 Education and communication in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASAEC S35A SAEC U S S DECEMBER 2009=100 Education and communication commodities in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASAES S35A SAES U S S DECEMBER 2009=100 Education and communication services in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASAF S35A SAF U S S 1982-84=100 Food and beverages in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASAF1 S35A SAF1 U S S 1982-84=100 Food in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASAF11 S35A SAF11 U S S 1982-84=100 Food at home in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASAF111 S35A SAF111 U S S 1982-84=100 Cereals and bakery products in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ASAF112 S35A SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ASAF113 S35A SAF113 U S S 1982-84=100 Fruits and vegetables in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ASAF114 S35A SAF114 U S S NOVEMBER 1977=100 Nonalcoholic beverages and beverage materials in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ASAF115 S35A SAF115 U S S 1982-84=100 Other food at home in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ASAF116 S35A SAF116 U S S 1982-84=100 Alcoholic beverages in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASAG S35A SAG U S S 1982-84=100 Other goods and services in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASAGC S35A SAGC U S S DECEMBER 2009=100 Other goods in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASAGS S35A SAGS U S S DECEMBER 2009=100 Other personal services in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASAH S35A SAH U S S 1982-84=100 Housing in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASAH1 S35A SAH1 U S S 1982-84=100 Shelter in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASAH2 S35A SAH2 U S S 1982-84=100 Fuels and utilities in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2024 S03 +CUUSS35ASAH21 S35A SAH21 U S S 1982-84=100 Household energy in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2024 S03 +CUUSS35ASAH3 S35A SAH3 U S S 1982-84=100 Household furnishings and operations in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASAH31 S35A SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASAM S35A SAM U S S 1982-84=100 Medical care in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASAN S35A SAN U S S 1982-84=100 Nondurables in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ASANL1 S35A SANL1 U S S 1982-84=100 Nondurables less food in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ASANL11 S35A SANL11 U S S 1982-84=100 Nondurables less food and beverages in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ASAR S35A SAR U S S DECEMBER 1997=100 Recreation in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASAS S35A SAS U S S 1982-84=100 Services in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ASASL2RS S35A SASL2RS U S S NOVEMBER 1982=100 Services less rent of shelter in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ASASL5 S35A SASL5 U S S 1982-84=100 Services less medical care services in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ASAT S35A SAT U S S 1982-84=100 Transportation in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASAT1 S35A SAT1 U S S 1982-84=100 Private transportation in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASATCLTB S35A SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASEEB S35A SEEB U S S NOVEMBER 1977=100 Tuition, other school fees, and childcare in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ASEFJ S35A SEFJ U S S 1982-84=100 Dairy and related products in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ASEFV S35A SEFV U S S 1982-84=100 Food away from home in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASEHA S35A SEHA U S S 1982-84=100 Rent of primary residence in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASEHC S35A SEHC U S S NOVEMBER 1982=100 Owners' equivalent rent of residences in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASEHC01 S35A SEHC01 U S S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASEHF S35A SEHF U S S 1982-84=100 Energy services in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2024 S03 +CUUSS35ASEHF01 S35A SEHF01 U S S 1982-84=100 Electricity in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2024 S03 +CUUSS35ASEHF02 S35A SEHF02 U S S 1982-84=100 Utility (piped) gas service in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2024 S03 +CUUSS35ASETA S35A SETA U S S DECEMBER 1997=100 New and used motor vehicles in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ASETA01 S35A SETA01 U S S NOVEMBER 1977=100 New vehicles in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ASETA02 S35A SETA02 U S S NOVEMBER 1977=100 Used cars and trucks in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ASETB S35A SETB U S S 1982-84=100 Motor fuel in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASETB01 S35A SETB01 U S S 1982-84=100 Gasoline (all types) in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ASETE S35A SETE U S S NOVEMBER 1977=100 Motor vehicle insurance in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS35ASS47014 S35A SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ASS47015 S35A SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS35ASS47016 S35A SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Washington-Arlington-Alexandria, DC-VA-MD-WV, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BAA0 S35B AA0 U S A NOVEMBER 1977=100 All items - old base in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSA0 S35B SA0 U S S 1982-84=100 All items in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSA0E S35B SA0E U S S 1982-84=100 Energy in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSA0L1E S35B SA0L1E U S S 1982-84=100 All items less food and energy in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSA0L2 S35B SA0L2 U S S 1982-84=100 All items less shelter in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSA0L5 S35B SA0L5 U S S 1982-84=100 All items less medical care in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSA0LE S35B SA0LE U S S 1982-84=100 All items less energy in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSAA S35B SAA U S S 1982-84=100 Apparel in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSAC S35B SAC U S S 1982-84=100 Commodities in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSACL1 S35B SACL1 U S S 1982-84=100 Commodities less food in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSACL11 S35B SACL11 U S S 1982-84=100 Commodities less food and beverages in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSAD S35B SAD U S S 1982-84=100 Durables in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSAE S35B SAE U S S DECEMBER 1997=100 Education and communication in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS35BSAEC S35B SAEC U S S DECEMBER 2009=100 Education and communication commodities in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS35BSAES S35B SAES U S S DECEMBER 2009=100 Education and communication services in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS35BSAF S35B SAF U S S 1982-84=100 Food and beverages in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSAF1 S35B SAF1 U S S 1982-84=100 Food in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSAF11 S35B SAF11 U S S 1982-84=100 Food at home in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSAF111 S35B SAF111 U S S 1982-84=100 Cereals and bakery products in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35BSAF112 S35B SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35BSAF113 S35B SAF113 U S S 1982-84=100 Fruits and vegetables in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35BSAF114 S35B SAF114 U S S NOVEMBER 1977=100 Nonalcoholic beverages and beverage materials in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35BSAF115 S35B SAF115 U S S 1982-84=100 Other food at home in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35BSAF116 S35B SAF116 U S S 1982-84=100 Alcoholic beverages in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSAG S35B SAG U S S 1982-84=100 Other goods and services in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSAGC S35B SAGC U S S DECEMBER 2009=100 Other goods in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS35BSAGS S35B SAGS U S S DECEMBER 2009=100 Other personal services in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS35BSAH S35B SAH U S S 1982-84=100 Housing in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSAH1 S35B SAH1 U S S 1982-84=100 Shelter in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSAH2 S35B SAH2 U S S 1982-84=100 Fuels and utilities in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS35BSAH21 S35B SAH21 U S S 1982-84=100 Household energy in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS35BSAH3 S35B SAH3 U S S 1982-84=100 Household furnishings and operations in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSAH31 S35B SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS35BSAM S35B SAM U S S 1982-84=100 Medical care in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSAN S35B SAN U S S 1982-84=100 Nondurables in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSANL1 S35B SANL1 U S S 1982-84=100 Nondurables less food in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSANL11 S35B SANL11 U S S 1982-84=100 Nondurables less food and beverages in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSAR S35B SAR U S S DECEMBER 1997=100 Recreation in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS35BSAS S35B SAS U S S 1982-84=100 Services in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSASL2RS S35B SASL2RS U S S NOVEMBER 1982=100 Services less rent of shelter in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSASL5 S35B SASL5 U S S 1982-84=100 Services less medical care services in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSAT S35B SAT U S S 1982-84=100 Transportation in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSAT1 S35B SAT1 U S S 1982-84=100 Private transportation in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSATCLTB S35B SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS35BSEEB S35B SEEB U S S NOVEMBER 1977=100 Tuition, other school fees, and childcare in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35BSEFJ S35B SEFJ U S S 1982-84=100 Dairy and related products in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35BSEFV S35B SEFV U S S 1982-84=100 Food away from home in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSEHA S35B SEHA U S S 1982-84=100 Rent of primary residence in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSEHC S35B SEHC U S S NOVEMBER 1982=100 Owners' equivalent rent of residences in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSEHC01 S35B SEHC01 U S S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSEHF S35B SEHF U S S 1982-84=100 Energy services in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS35BSEHF01 S35B SEHF01 U S S 1982-84=100 Electricity in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS35BSEHF02 S35B SEHF02 U S S 1982-84=100 Utility (piped) gas service in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS35BSETA S35B SETA U S S DECEMBER 1997=100 New and used motor vehicles in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35BSETA01 S35B SETA01 U S S NOVEMBER 1977=100 New vehicles in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35BSETA02 S35B SETA02 U S S NOVEMBER 1977=100 Used cars and trucks in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35BSETB S35B SETB U S S 1982-84=100 Motor fuel in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSETB01 S35B SETB01 U S S 1982-84=100 Gasoline (all types) in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSETE S35B SETE U S S NOVEMBER 1977=100 Motor vehicle insurance in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS35BSS47014 S35B SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35BSS47015 S35B SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS35BSS47016 S35B SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Miami-Fort Lauderdale-West Palm Beach, FL, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CAA0 S35C AA0 U S A 1967=100 All items - old base in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSA0 S35C SA0 U S S 1982-84=100 All items in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSA0E S35C SA0E U S S 1982-84=100 Energy in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSA0L1E S35C SA0L1E U S S 1982-84=100 All items less food and energy in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSA0L2 S35C SA0L2 U S S 1982-84=100 All items less shelter in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSA0L5 S35C SA0L5 U S S 1982-84=100 All items less medical care in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSA0LE S35C SA0LE U S S 1982-84=100 All items less energy in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSAA S35C SAA U S S 1982-84=100 Apparel in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSAC S35C SAC U S S 1982-84=100 Commodities in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSACL1 S35C SACL1 U S S 1982-84=100 Commodities less food in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSACL11 S35C SACL11 U S S 1982-84=100 Commodities less food and beverages in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSAD S35C SAD U S S 1982-84=100 Durables in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSAE S35C SAE U S S DECEMBER 1997=100 Education and communication in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS35CSAEC S35C SAEC U S S DECEMBER 2009=100 Education and communication commodities in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS35CSAES S35C SAES U S S DECEMBER 2009=100 Education and communication services in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS35CSAF S35C SAF U S S 1982-84=100 Food and beverages in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSAF1 S35C SAF1 U S S 1982-84=100 Food in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSAF11 S35C SAF11 U S S 1982-84=100 Food at home in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSAF111 S35C SAF111 U S S 1982-84=100 Cereals and bakery products in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35CSAF112 S35C SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35CSAF113 S35C SAF113 U S S 1982-84=100 Fruits and vegetables in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35CSAF114 S35C SAF114 U S S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35CSAF115 S35C SAF115 U S S 1982-84=100 Other food at home in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35CSAF116 S35C SAF116 U S S 1982-84=100 Alcoholic beverages in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSAG S35C SAG U S S 1982-84=100 Other goods and services in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSAGC S35C SAGC U S S DECEMBER 2009=100 Other goods in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS35CSAGS S35C SAGS U S S DECEMBER 2009=100 Other personal services in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS35CSAH S35C SAH U S S 1982-84=100 Housing in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSAH1 S35C SAH1 U S S 1982-84=100 Shelter in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSAH2 S35C SAH2 U S S 1982-84=100 Fuels and utilities in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS35CSAH21 S35C SAH21 U S S 1982-84=100 Household energy in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS35CSAH3 S35C SAH3 U S S 1982-84=100 Household furnishings and operations in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSAH31 S35C SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS35CSAM S35C SAM U S S 1982-84=100 Medical care in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSAN S35C SAN U S S 1982-84=100 Nondurables in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSANL1 S35C SANL1 U S S 1982-84=100 Nondurables less food in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSANL11 S35C SANL11 U S S 1982-84=100 Nondurables less food and beverages in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSAR S35C SAR U S S DECEMBER 1997=100 Recreation in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS35CSAS S35C SAS U S S 1982-84=100 Services in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSASL2RS S35C SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSASL5 S35C SASL5 U S S 1982-84=100 Services less medical care services in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSAT S35C SAT U S S 1982-84=100 Transportation in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSAT1 S35C SAT1 U S S 1982-84=100 Private transportation in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSATCLTB S35C SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS35CSEEB S35C SEEB U S S DECEMBER 1977=100 Tuition, other school fees, and childcare in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35CSEFJ S35C SEFJ U S S 1982-84=100 Dairy and related products in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35CSEFV S35C SEFV U S S 1982-84=100 Food away from home in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSEHA S35C SEHA U S S 1982-84=100 Rent of primary residence in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSEHC S35C SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSEHC01 S35C SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSEHF S35C SEHF U S S 1982-84=100 Energy services in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS35CSEHF01 S35C SEHF01 U S S 1982-84=100 Electricity in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS35CSEHF02 S35C SEHF02 U S S 1982-84=100 Utility (piped) gas service in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS35CSETA S35C SETA U S S DECEMBER 1997=100 New and used motor vehicles in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35CSETA01 S35C SETA01 U S S DECEMBER 1977=100 New vehicles in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35CSETA02 S35C SETA02 U S S DECEMBER 1977=100 Used cars and trucks in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35CSETB S35C SETB U S S 1982-84=100 Motor fuel in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSETB01 S35C SETB01 U S S 1982-84=100 Gasoline (all types) in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSETE S35C SETE U S S DECEMBER 1977=100 Motor vehicle insurance in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS35CSS47014 S35C SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35CSS47015 S35C SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS35CSS47016 S35C SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Atlanta-Sandy Springs-Roswell, GA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35DAA0 S35D AA0 U S A 1987=100 All items - old base in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1998 S01 2018 S03 +CUUSS35DSA0 S35D SA0 U S S 1987=100 All items in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSA0E S35D SA0E U S S 1987=100 Energy in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSA0L1E S35D SA0L1E U S S 1987=100 All items less food and energy in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSA0L2 S35D SA0L2 U S S 1987=100 All items less shelter in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSA0L5 S35D SA0L5 U S S 1987=100 All items less medical care in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSA0LE S35D SA0LE U S S 1987=100 All items less energy in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSAA S35D SAA U S S 1987=100 Apparel in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSAC S35D SAC U S S 1987=100 Commodities in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSACL1 S35D SACL1 U S S 1987=100 Commodities less food in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSACL11 S35D SACL11 U S S 1987=100 Commodities less food and beverages in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSAD S35D SAD U S S 1987=100 Durables in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSAE S35D SAE U S S DECEMBER 1997=100 Education and communication in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS35DSAEC S35D SAEC U S S DECEMBER 2009=100 Education and communication commodities in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS35DSAES S35D SAES U S S DECEMBER 2009=100 Education and communication services in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS35DSAF S35D SAF U S S 1987=100 Food and beverages in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSAF1 S35D SAF1 U S S 1987=100 Food in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSAF11 S35D SAF11 U S S 1987=100 Food at home in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSAF111 S35D SAF111 U S S 1987=100 Cereals and bakery products in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35DSAF112 S35D SAF112 U S S 1987=100 Meats, poultry, fish, and eggs in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35DSAF113 S35D SAF113 U S S 1987=100 Fruits and vegetables in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35DSAF114 S35D SAF114 U S S 1987=100 Nonalcoholic beverages and beverage materials in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35DSAF115 S35D SAF115 U S S 1987=100 Other food at home in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35DSAF116 S35D SAF116 U S S 1987=100 Alcoholic beverages in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSAG S35D SAG U S S 1987=100 Other goods and services in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSAGC S35D SAGC U S S DECEMBER 2009=100 Other goods in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS35DSAGS S35D SAGS U S S DECEMBER 2009=100 Other personal services in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS35DSAH S35D SAH U S S 1987=100 Housing in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSAH1 S35D SAH1 U S S 1987=100 Shelter in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSAH2 S35D SAH2 U S S 1987=100 Fuels and utilities in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2024 S03 +CUUSS35DSAH21 S35D SAH21 U S S 1987=100 Household energy in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2024 S03 +CUUSS35DSAH3 S35D SAH3 U S S 1987=100 Household furnishings and operations in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSAH31 S35D SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS35DSAM S35D SAM U S S 1987=100 Medical care in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSAN S35D SAN U S S 1987=100 Nondurables in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSANL1 S35D SANL1 U S S 1987=100 Nondurables less food in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSANL11 S35D SANL11 U S S 1987=100 Nondurables less food and beverages in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSAR S35D SAR U S S DECEMBER 1997=100 Recreation in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS35DSAS S35D SAS U S S 1987=100 Services in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSASL2RS S35D SASL2RS U S S 1987=100 Services less rent of shelter in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSASL5 S35D SASL5 U S S 1987=100 Services less medical care services in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSAT S35D SAT U S S 1987=100 Transportation in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSAT1 S35D SAT1 U S S 1987=100 Private transportation in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSATCLTB S35D SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS35DSEEB S35D SEEB U S S 1987=100 Tuition, other school fees, and childcare in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35DSEFJ S35D SEFJ U S S 1987=100 Dairy and related products in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35DSEFV S35D SEFV U S S 1987=100 Food away from home in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSEHA S35D SEHA U S S 1987=100 Rent of primary residence in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSEHC S35D SEHC U S S 1987=100 Owners' equivalent rent of residences in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSEHC01 S35D SEHC01 U S S 1987=100 Owners' equivalent rent of primary residence in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSEHF S35D SEHF U S S 1987=100 Energy services in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2024 S03 +CUUSS35DSEHF01 S35D SEHF01 U S S 1987=100 Electricity in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2024 S03 +CUUSS35DSEHF02 S35D SEHF02 U S S 1987=100 Utility (piped) gas service in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2023 S03 +CUUSS35DSETA S35D SETA U S S DECEMBER 1997=100 New and used motor vehicles in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35DSETA01 S35D SETA01 U S S 1987=100 New vehicles in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35DSETA02 S35D SETA02 U S S 1987=100 Used cars and trucks in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35DSETB S35D SETB U S S 1987=100 Motor fuel in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSETB01 S35D SETB01 U S S 1987=100 Gasoline (all types) in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSETE S35D SETE U S S 1987=100 Motor vehicle insurance in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS35DSS47014 S35D SS47014 U S S 1987=100 Gasoline, unleaded regular in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35DSS47015 S35D SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1994 S03 2025 S01 +CUUSS35DSS47016 S35D SS47016 U S S 1987=100 Gasoline, unleaded premium in Tampa-St. Petersburg-Clearwater, FL, all urban consumers, not seasonally adjusted 1987 S03 2025 S01 +CUUSS35EAA0 S35E AA0 U S A 1967=100 All items - old base in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ESA0 S35E SA0 U S S 1982-84=100 All items in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ESA0E S35E SA0E U S S 1982-84=100 Energy in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ESA0L1E S35E SA0L1E U S S 1982-84=100 All items less food and energy in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ESA0L2 S35E SA0L2 U S S 1982-84=100 All items less shelter in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ESA0L5 S35E SA0L5 U S S 1982-84=100 All items less medical care in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ESA0LE S35E SA0LE U S S 1982-84=100 All items less energy in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ESAA S35E SAA U S S 1982-84=100 Apparel in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESAC S35E SAC U S S 1982-84=100 Commodities in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ESACL1 S35E SACL1 U S S 1982-84=100 Commodities less food in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ESACL11 S35E SACL11 U S S 1982-84=100 Commodities less food and beverages in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ESAD S35E SAD U S S 1982-84=100 Durables in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ESAE S35E SAE U S S DECEMBER 1997=100 Education and communication in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESAEC S35E SAEC U S S DECEMBER 2009=100 Education and communication commodities in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESAES S35E SAES U S S DECEMBER 2009=100 Education and communication services in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESAF S35E SAF U S S 1982-84=100 Food and beverages in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESAF1 S35E SAF1 U S S 1982-84=100 Food in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESAF11 S35E SAF11 U S S 1982-84=100 Food at home in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESAF111 S35E SAF111 U S S 1982-84=100 Cereals and bakery products in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ESAF112 S35E SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ESAF113 S35E SAF113 U S S 1982-84=100 Fruits and vegetables in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ESAF114 S35E SAF114 U S S MARCH 1978=100 Nonalcoholic beverages and beverage materials in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ESAF115 S35E SAF115 U S S 1982-84=100 Other food at home in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ESAF116 S35E SAF116 U S S 1982-84=100 Alcoholic beverages in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESAG S35E SAG U S S 1982-84=100 Other goods and services in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESAGC S35E SAGC U S S DECEMBER 2009=100 Other goods in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESAGS S35E SAGS U S S DECEMBER 2009=100 Other personal services in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESAH S35E SAH U S S 1982-84=100 Housing in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESAH1 S35E SAH1 U S S 1982-84=100 Shelter in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESAH2 S35E SAH2 U S S 1982-84=100 Fuels and utilities in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2024 S03 +CUUSS35ESAH21 S35E SAH21 U S S 1982-84=100 Household energy in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2024 S03 +CUUSS35ESAH3 S35E SAH3 U S S 1982-84=100 Household furnishings and operations in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESAH31 S35E SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESAM S35E SAM U S S 1982-84=100 Medical care in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESAN S35E SAN U S S 1982-84=100 Nondurables in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ESANL1 S35E SANL1 U S S 1982-84=100 Nondurables less food in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ESANL11 S35E SANL11 U S S 1982-84=100 Nondurables less food and beverages in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ESAR S35E SAR U S S DECEMBER 1997=100 Recreation in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESAS S35E SAS U S S 1982-84=100 Services in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ESASL2RS S35E SASL2RS U S S NOVEMBER 1982=100 Services less rent of shelter in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ESASL5 S35E SASL5 U S S 1982-84=100 Services less medical care services in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ESAT S35E SAT U S S 1982-84=100 Transportation in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESAT1 S35E SAT1 U S S 1982-84=100 Private transportation in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESATCLTB S35E SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESEEB S35E SEEB U S S MARCH 1978=100 Tuition, other school fees, and childcare in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ESEFJ S35E SEFJ U S S 1982-84=100 Dairy and related products in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ESEFV S35E SEFV U S S 1982-84=100 Food away from home in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESEHA S35E SEHA U S S 1982-84=100 Rent of primary residence in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESEHC S35E SEHC U S S NOVEMBER 1982=100 Owners' equivalent rent of residences in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESEHC01 S35E SEHC01 U S S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESEHF S35E SEHF U S S 1982-84=100 Energy services in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2024 S03 +CUUSS35ESEHF01 S35E SEHF01 U S S 1982-84=100 Electricity in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2024 S03 +CUUSS35ESEHF02 S35E SEHF02 U S S 1982-84=100 Utility (piped) gas service in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2024 S03 +CUUSS35ESETA S35E SETA U S S DECEMBER 1997=100 New and used motor vehicles in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ESETA01 S35E SETA01 U S S MARCH 1978=100 New vehicles in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ESETA02 S35E SETA02 U S S MARCH 1978=100 Used cars and trucks in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS35ESETB S35E SETB U S S 1982-84=100 Motor fuel in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESETB01 S35E SETB01 U S S 1982-84=100 Gasoline (all types) in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2015 S01 2025 S01 +CUUSS35ESETE S35E SETE U S S MARCH 1978=100 Motor vehicle insurance in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS35ESS47014 S35E SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS35ESS47015 S35E SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS35ESS47016 S35E SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Baltimore-Columbia-Towson, MD, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37AAA0 S37A AA0 U S A 1967=100 All items - old base in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASA0 S37A SA0 U S S 1982-84=100 All items in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASA0E S37A SA0E U S S 1982-84=100 Energy in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASA0L1E S37A SA0L1E U S S 1982-84=100 All items less food and energy in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASA0L2 S37A SA0L2 U S S 1982-84=100 All items less shelter in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASA0L5 S37A SA0L5 U S S 1982-84=100 All items less medical care in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASA0LE S37A SA0LE U S S 1982-84=100 All items less energy in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASAA S37A SAA U S S 1982-84=100 Apparel in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASAC S37A SAC U S S 1982-84=100 Commodities in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASACL1 S37A SACL1 U S S 1982-84=100 Commodities less food in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASACL11 S37A SACL11 U S S 1982-84=100 Commodities less food and beverages in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASAD S37A SAD U S S 1982-84=100 Durables in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASAE S37A SAE U S S DECEMBER 1997=100 Education and communication in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS37ASAEC S37A SAEC U S S DECEMBER 2009=100 Education and communication commodities in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS37ASAES S37A SAES U S S DECEMBER 2009=100 Education and communication services in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS37ASAF S37A SAF U S S 1982-84=100 Food and beverages in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASAF1 S37A SAF1 U S S 1982-84=100 Food in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASAF11 S37A SAF11 U S S 1982-84=100 Food at home in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASAF111 S37A SAF111 U S S 1982-84=100 Cereals and bakery products in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37ASAF112 S37A SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37ASAF113 S37A SAF113 U S S 1982-84=100 Fruits and vegetables in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37ASAF114 S37A SAF114 U S S FEBRUARY 1978=100 Nonalcoholic beverages and beverage materials in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37ASAF115 S37A SAF115 U S S 1982-84=100 Other food at home in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37ASAF116 S37A SAF116 U S S 1982-84=100 Alcoholic beverages in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASAG S37A SAG U S S 1982-84=100 Other goods and services in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASAGC S37A SAGC U S S DECEMBER 2009=100 Other goods in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS37ASAGS S37A SAGS U S S DECEMBER 2009=100 Other personal services in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS37ASAH S37A SAH U S S 1982-84=100 Housing in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASAH1 S37A SAH1 U S S 1982-84=100 Shelter in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASAH2 S37A SAH2 U S S 1982-84=100 Fuels and utilities in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS37ASAH21 S37A SAH21 U S S 1982-84=100 Household energy in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS37ASAH3 S37A SAH3 U S S 1982-84=100 Household furnishings and operations in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASAH31 S37A SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS37ASAM S37A SAM U S S 1982-84=100 Medical care in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASAN S37A SAN U S S 1982-84=100 Nondurables in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASANL1 S37A SANL1 U S S 1982-84=100 Nondurables less food in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASANL11 S37A SANL11 U S S 1982-84=100 Nondurables less food and beverages in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASAR S37A SAR U S S DECEMBER 1997=100 Recreation in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS37ASAS S37A SAS U S S 1982-84=100 Services in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASASL2RS S37A SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASASL5 S37A SASL5 U S S 1982-84=100 Services less medical care services in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASAT S37A SAT U S S 1982-84=100 Transportation in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASAT1 S37A SAT1 U S S 1982-84=100 Private transportation in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASATCLTB S37A SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS37ASEEB S37A SEEB U S S FEBRUARY 1978=100 Tuition, other school fees, and childcare in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37ASEFJ S37A SEFJ U S S 1982-84=100 Dairy and related products in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37ASEFV S37A SEFV U S S 1982-84=100 Food away from home in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASEHA S37A SEHA U S S 1982-84=100 Rent of primary residence in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASEHC S37A SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASEHC01 S37A SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASEHF S37A SEHF U S S 1982-84=100 Energy services in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS37ASEHF01 S37A SEHF01 U S S 1982-84=100 Electricity in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS37ASEHF02 S37A SEHF02 U S S 1982-84=100 Utility (piped) gas service in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS37ASETA S37A SETA U S S DECEMBER 1997=100 New and used motor vehicles in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37ASETA01 S37A SETA01 U S S FEBRUARY 1978=100 New vehicles in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37ASETA02 S37A SETA02 U S S FEBRUARY 1978=100 Used cars and trucks in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37ASETB S37A SETB U S S 1982-84=100 Motor fuel in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASETB01 S37A SETB01 U S S 1982-84=100 Gasoline (all types) in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASETE S37A SETE U S S FEBRUARY 1978=100 Motor vehicle insurance in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS37ASS47014 S37A SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37ASS47015 S37A SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS37ASS47016 S37A SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Dallas-Fort Worth-Arlington, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BAA0 S37B AA0 U S A 1967=100 All items - old base in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSA0 S37B SA0 U S S 1982-84=100 All items in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSA0E S37B SA0E U S S 1982-84=100 Energy in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSA0L1E S37B SA0L1E U S S 1982-84=100 All items less food and energy in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSA0L2 S37B SA0L2 U S S 1982-84=100 All items less shelter in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSA0L5 S37B SA0L5 U S S 1982-84=100 All items less medical care in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSA0LE S37B SA0LE U S S 1982-84=100 All items less energy in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSAA S37B SAA U S S 1982-84=100 Apparel in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSAC S37B SAC U S S 1982-84=100 Commodities in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSACL1 S37B SACL1 U S S 1982-84=100 Commodities less food in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSACL11 S37B SACL11 U S S 1982-84=100 Commodities less food and beverages in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSAD S37B SAD U S S 1982-84=100 Durables in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSAE S37B SAE U S S DECEMBER 1997=100 Education and communication in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS37BSAEC S37B SAEC U S S DECEMBER 2009=100 Education and communication commodities in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS37BSAES S37B SAES U S S DECEMBER 2009=100 Education and communication services in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS37BSAF S37B SAF U S S 1982-84=100 Food and beverages in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSAF1 S37B SAF1 U S S 1982-84=100 Food in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSAF11 S37B SAF11 U S S 1982-84=100 Food at home in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSAF111 S37B SAF111 U S S 1982-84=100 Cereals and bakery products in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37BSAF112 S37B SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37BSAF113 S37B SAF113 U S S 1982-84=100 Fruits and vegetables in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37BSAF114 S37B SAF114 U S S APRIL 1978=100 Nonalcoholic beverages and beverage materials in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37BSAF115 S37B SAF115 U S S 1982-84=100 Other food at home in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37BSAF116 S37B SAF116 U S S 1982-84=100 Alcoholic beverages in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSAG S37B SAG U S S 1982-84=100 Other goods and services in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSAGC S37B SAGC U S S DECEMBER 2009=100 Other goods in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS37BSAGS S37B SAGS U S S DECEMBER 2009=100 Other personal services in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS37BSAH S37B SAH U S S 1982-84=100 Housing in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSAH1 S37B SAH1 U S S 1982-84=100 Shelter in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSAH2 S37B SAH2 U S S 1982-84=100 Fuels and utilities in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS37BSAH21 S37B SAH21 U S S 1982-84=100 Household energy in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS37BSAH3 S37B SAH3 U S S 1982-84=100 Household furnishings and operations in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSAH31 S37B SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS37BSAM S37B SAM U S S 1982-84=100 Medical care in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSAN S37B SAN U S S 1982-84=100 Nondurables in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSANL1 S37B SANL1 U S S 1982-84=100 Nondurables less food in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSANL11 S37B SANL11 U S S 1982-84=100 Nondurables less food and beverages in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSAR S37B SAR U S S DECEMBER 1997=100 Recreation in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS37BSAS S37B SAS U S S 1982-84=100 Services in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSASL2RS S37B SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSASL5 S37B SASL5 U S S 1982-84=100 Services less medical care services in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSAT S37B SAT U S S 1982-84=100 Transportation in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSAT1 S37B SAT1 U S S 1982-84=100 Private transportation in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSATCLTB S37B SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS37BSEEB S37B SEEB U S S APRIL 1978=100 Tuition, other school fees, and childcare in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37BSEFJ S37B SEFJ U S S 1982-84=100 Dairy and related products in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37BSEFV S37B SEFV U S S 1982-84=100 Food away from home in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSEHA S37B SEHA U S S 1982-84=100 Rent of primary residence in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSEHC S37B SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSEHC01 S37B SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSEHF S37B SEHF U S S 1982-84=100 Energy services in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS37BSEHF01 S37B SEHF01 U S S 1982-84=100 Electricity in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS37BSEHF02 S37B SEHF02 U S S 1982-84=100 Utility (piped) gas service in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS37BSETA S37B SETA U S S DECEMBER 1997=100 New and used motor vehicles in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37BSETA01 S37B SETA01 U S S APRIL 1978=100 New vehicles in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37BSETA02 S37B SETA02 U S S APRIL 1978=100 Used cars and trucks in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS37BSETB S37B SETB U S S 1982-84=100 Motor fuel in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSETB01 S37B SETB01 U S S 1982-84=100 Gasoline (all types) in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSETE S37B SETE U S S APRIL 1978=100 Motor vehicle insurance in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS37BSS47014 S37B SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS37BSS47015 S37B SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS37BSS47016 S37B SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Houston-The Woodlands-Sugar Land, TX, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400AA0 S400 AA0 U S A DECEMBER 1977=100 All items - old base in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SA0 S400 SA0 U S S 1982-84=100 All items in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SA0E S400 SA0E U S S 1982-84=100 Energy in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SA0L1E S400 SA0L1E U S S 1982-84=100 All items less food and energy in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SA0L2 S400 SA0L2 U S S 1982-84=100 All items less shelter in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SA0L5 S400 SA0L5 U S S 1982-84=100 All items less medical care in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SA0LE S400 SA0LE U S S 1982-84=100 All items less energy in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SAA S400 SAA U S S 1982-84=100 Apparel in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SAC S400 SAC U S S 1982-84=100 Commodities in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SACL1 S400 SACL1 U S S 1982-84=100 Commodities less food in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SACL11 S400 SACL11 U S S 1982-84=100 Commodities less food and beverages in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SAD S400 SAD U S S 1982-84=100 Durables in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SAE S400 SAE U S S DECEMBER 1997=100 Education and communication in West - Size Class A, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS400SAEC S400 SAEC U S S DECEMBER 2009=100 Education and communication commodities in West - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS400SAES S400 SAES U S S DECEMBER 2009=100 Education and communication services in West - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS400SAF S400 SAF U S S 1982-84=100 Food and beverages in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SAF1 S400 SAF1 U S S 1982-84=100 Food in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SAF11 S400 SAF11 U S S 1982-84=100 Food at home in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SAF111 S400 SAF111 U S S 1982-84=100 Cereals and bakery products in West - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS400SAF112 S400 SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in West - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS400SAF113 S400 SAF113 U S S 1982-84=100 Fruits and vegetables in West - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS400SAF114 S400 SAF114 U S S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in West - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS400SAF115 S400 SAF115 U S S 1982-84=100 Other food at home in West - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS400SAF116 S400 SAF116 U S S 1982-84=100 Alcoholic beverages in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SAG S400 SAG U S S 1982-84=100 Other goods and services in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SAGC S400 SAGC U S S DECEMBER 2009=100 Other goods in West - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS400SAGS S400 SAGS U S S DECEMBER 2009=100 Other personal services in West - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS400SAH S400 SAH U S S 1982-84=100 Housing in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SAH1 S400 SAH1 U S S 1982-84=100 Shelter in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SAH2 S400 SAH2 U S S 1982-84=100 Fuels and utilities in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS400SAH21 S400 SAH21 U S S 1982-84=100 Household energy in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS400SAH3 S400 SAH3 U S S 1982-84=100 Household furnishings and operations in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SAH31 S400 SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in West - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS400SAM S400 SAM U S S 1982-84=100 Medical care in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SAN S400 SAN U S S 1982-84=100 Nondurables in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SANL1 S400 SANL1 U S S 1982-84=100 Nondurables less food in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SANL11 S400 SANL11 U S S 1982-84=100 Nondurables less food and beverages in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SAR S400 SAR U S S DECEMBER 1997=100 Recreation in West - Size Class A, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS400SAS S400 SAS U S S 1982-84=100 Services in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SASL2RS S400 SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SASL5 S400 SASL5 U S S 1982-84=100 Services less medical care services in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SAT S400 SAT U S S 1982-84=100 Transportation in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SAT1 S400 SAT1 U S S 1982-84=100 Private transportation in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SATCLTB S400 SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in West - Size Class A, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS400SEEB S400 SEEB U S S DECEMBER 1977=100 Tuition, other school fees, and childcare in West - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS400SEFJ S400 SEFJ U S S 1982-84=100 Dairy and related products in West - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS400SEFV S400 SEFV U S S 1982-84=100 Food away from home in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SEHA S400 SEHA U S S 1982-84=100 Rent of primary residence in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SEHC S400 SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SEHC01 S400 SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SEHF S400 SEHF U S S 1982-84=100 Energy services in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS400SEHF01 S400 SEHF01 U S S 1982-84=100 Electricity in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS400SEHF02 S400 SEHF02 U S S 1982-84=100 Utility (piped) gas service in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS400SETA S400 SETA U S S DECEMBER 1997=100 New and used motor vehicles in West - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS400SETA01 S400 SETA01 U S S DECEMBER 1977=100 New vehicles in West - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS400SETA02 S400 SETA02 U S S DECEMBER 1977=100 Used cars and trucks in West - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS400SETB S400 SETB U S S 1982-84=100 Motor fuel in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SETB01 S400 SETB01 U S S 1982-84=100 Gasoline (all types) in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SETE S400 SETE U S S DECEMBER 1977=100 Motor vehicle insurance in West - Size Class A, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS400SS47014 S400 SS47014 U S S 1982-84=100 Gasoline, unleaded regular in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS400SS47015 S400 SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in West - Size Class A, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS400SS47016 S400 SS47016 U S S 1982-84=100 Gasoline, unleaded premium in West - Size Class A, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48AAA0 S48A AA0 U S A DECEMBER 2001=100 All items - old base in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2018 S01 2018 S03 +CUUSS48ASA0 S48A SA0 U S S DECEMBER 2001=100 All items in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASA0E S48A SA0E U S S DECEMBER 2001=100 Energy in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASA0L1E S48A SA0L1E U S S DECEMBER 2001=100 All items less food and energy in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASA0L2 S48A SA0L2 U S S DECEMBER 2001=100 All items less shelter in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASA0L5 S48A SA0L5 U S S DECEMBER 2001=100 All items less medical care in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASA0LE S48A SA0LE U S S DECEMBER 2001=100 All items less energy in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASAA S48A SAA U S S DECEMBER 2001=100 Apparel in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASAC S48A SAC U S S DECEMBER 2001=100 Commodities in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASACL1 S48A SACL1 U S S DECEMBER 2001=100 Commodities less food in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASACL11 S48A SACL11 U S S DECEMBER 2001=100 Commodities less food and beverages in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASAD S48A SAD U S S DECEMBER 2001=100 Durables in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASAE S48A SAE U S S DECEMBER 2001=100 Education and communication in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASAEC S48A SAEC U S S DECEMBER 2009=100 Education and communication commodities in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS48ASAES S48A SAES U S S DECEMBER 2009=100 Education and communication services in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS48ASAF S48A SAF U S S DECEMBER 2001=100 Food and beverages in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASAF1 S48A SAF1 U S S DECEMBER 2001=100 Food in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASAF11 S48A SAF11 U S S DECEMBER 2001=100 Food at home in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASAF111 S48A SAF111 U S S DECEMBER 2001=100 Cereals and bakery products in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48ASAF112 S48A SAF112 U S S DECEMBER 2001=100 Meats, poultry, fish, and eggs in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48ASAF113 S48A SAF113 U S S DECEMBER 2001=100 Fruits and vegetables in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48ASAF114 S48A SAF114 U S S DECEMBER 2001=100 Nonalcoholic beverages and beverage materials in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48ASAF115 S48A SAF115 U S S DECEMBER 2001=100 Other food at home in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48ASAF116 S48A SAF116 U S S DECEMBER 2001=100 Alcoholic beverages in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASAG S48A SAG U S S DECEMBER 2001=100 Other goods and services in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASAGC S48A SAGC U S S DECEMBER 2009=100 Other goods in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS48ASAGS S48A SAGS U S S DECEMBER 2009=100 Other personal services in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2010 S01 2024 S03 +CUUSS48ASAH S48A SAH U S S DECEMBER 2001=100 Housing in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASAH1 S48A SAH1 U S S DECEMBER 2001=100 Shelter in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASAH2 S48A SAH2 U S S DECEMBER 2001=100 Fuels and utilities in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2024 S03 +CUUSS48ASAH21 S48A SAH21 U S S DECEMBER 2001=100 Household energy in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2024 S03 +CUUSS48ASAH3 S48A SAH3 U S S DECEMBER 2001=100 Household furnishings and operations in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASAH31 S48A SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS48ASAM S48A SAM U S S DECEMBER 2001=100 Medical care in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASAN S48A SAN U S S DECEMBER 2001=100 Nondurables in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASANL1 S48A SANL1 U S S DECEMBER 2001=100 Nondurables less food in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASANL11 S48A SANL11 U S S DECEMBER 2001=100 Nondurables less food and beverages in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASAR S48A SAR U S S DECEMBER 2001=100 Recreation in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASAS S48A SAS U S S DECEMBER 2001=100 Services in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASASL2RS S48A SASL2RS U S S DECEMBER 2001=100 Services less rent of shelter in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASASL5 S48A SASL5 U S S DECEMBER 2001=100 Services less medical care services in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASAT S48A SAT U S S DECEMBER 2001=100 Transportation in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASAT1 S48A SAT1 U S S DECEMBER 2001=100 Private transportation in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASATCLTB S48A SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS48ASEEB S48A SEEB U S S DECEMBER 2001=100 Tuition, other school fees, and childcare in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48ASEFJ S48A SEFJ U S S DECEMBER 2001=100 Dairy and related products in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48ASEFV S48A SEFV U S S DECEMBER 2001=100 Food away from home in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASEHA S48A SEHA U S S DECEMBER 2001=100 Rent of primary residence in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASEHC S48A SEHC U S S DECEMBER 2001=100 Owners' equivalent rent of residences in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASEHC01 S48A SEHC01 U S S DECEMBER 2001=100 Owners' equivalent rent of primary residence in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASEHF S48A SEHF U S S DECEMBER 2001=100 Energy services in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2024 S03 +CUUSS48ASEHF01 S48A SEHF01 U S S DECEMBER 2001=100 Electricity in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2024 S03 +CUUSS48ASEHF02 S48A SEHF02 U S S DECEMBER 2001=100 Utility (piped) gas service in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2024 S03 +CUUSS48ASETA S48A SETA U S S DECEMBER 2001=100 New and used motor vehicles in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48ASETA01 S48A SETA01 U S S DECEMBER 2001=100 New vehicles in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48ASETA02 S48A SETA02 U S S DECEMBER 2001=100 Used cars and trucks in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48ASETB S48A SETB U S S DECEMBER 2001=100 Motor fuel in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASETB01 S48A SETB01 U S S DECEMBER 2001=100 Gasoline (all types) in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASETE S48A SETE U S S DECEMBER 2001=100 Motor vehicle insurance in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS48ASS47014 S48A SS47014 U S S DECEMBER 2001=100 Gasoline, unleaded regular in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASS47015 S48A SS47015 U S S DECEMBER 2001=100 Gasoline, unleaded midgrade in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48ASS47016 S48A SS47016 U S S DECEMBER 2001=100 Gasoline, unleaded premium in Phoenix-Mesa-Scottsdale, AZ, all urban consumers, not seasonally adjusted 2002 S01 2025 S01 +CUUSS48BAA0 S48B AA0 U S A 1967=100 All items - old base in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSA0 S48B SA0 U S S 1982-84=100 All items in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSA0E S48B SA0E U S S 1982-84=100 Energy in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSA0L1E S48B SA0L1E U S S 1982-84=100 All items less food and energy in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSA0L2 S48B SA0L2 U S S 1982-84=100 All items less shelter in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSA0L5 S48B SA0L5 U S S 1982-84=100 All items less medical care in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSA0LE S48B SA0LE U S S 1982-84=100 All items less energy in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSAA S48B SAA U S S 1982-84=100 Apparel in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSAC S48B SAC U S S 1982-84=100 Commodities in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSACL1 S48B SACL1 U S S 1982-84=100 Commodities less food in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSACL11 S48B SACL11 U S S 1982-84=100 Commodities less food and beverages in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSAD S48B SAD U S S 1982-84=100 Durables in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSAE S48B SAE U S S DECEMBER 1997=100 Education and communication in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS48BSAEC S48B SAEC U S S DECEMBER 2009=100 Education and communication commodities in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS48BSAES S48B SAES U S S DECEMBER 2009=100 Education and communication services in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS48BSAF S48B SAF U S S 1982-84=100 Food and beverages in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSAF1 S48B SAF1 U S S 1982-84=100 Food in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSAF11 S48B SAF11 U S S 1982-84=100 Food at home in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSAF111 S48B SAF111 U S S 1982-84=100 Cereals and bakery products in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48BSAF112 S48B SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48BSAF113 S48B SAF113 U S S 1982-84=100 Fruits and vegetables in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48BSAF114 S48B SAF114 U S S JANUARY 1978=100 Nonalcoholic beverages and beverage materials in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48BSAF115 S48B SAF115 U S S 1982-84=100 Other food at home in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48BSAF116 S48B SAF116 U S S 1982-84=100 Alcoholic beverages in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSAG S48B SAG U S S 1982-84=100 Other goods and services in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSAGC S48B SAGC U S S DECEMBER 2009=100 Other goods in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS48BSAGS S48B SAGS U S S DECEMBER 2009=100 Other personal services in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS48BSAH S48B SAH U S S 1982-84=100 Housing in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSAH1 S48B SAH1 U S S 1982-84=100 Shelter in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSAH2 S48B SAH2 U S S 1982-84=100 Fuels and utilities in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2024 S01 +CUUSS48BSAH21 S48B SAH21 U S S 1982-84=100 Household energy in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2024 S01 +CUUSS48BSAH3 S48B SAH3 U S S 1982-84=100 Household furnishings and operations in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSAH31 S48B SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS48BSAM S48B SAM U S S 1982-84=100 Medical care in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSAN S48B SAN U S S 1982-84=100 Nondurables in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSANL1 S48B SANL1 U S S 1982-84=100 Nondurables less food in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSANL11 S48B SANL11 U S S 1982-84=100 Nondurables less food and beverages in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSAR S48B SAR U S S DECEMBER 1997=100 Recreation in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS48BSAS S48B SAS U S S 1982-84=100 Services in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSASL2RS S48B SASL2RS U S S NOVEMBER 1982=100 Services less rent of shelter in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSASL5 S48B SASL5 U S S 1982-84=100 Services less medical care services in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSAT S48B SAT U S S 1982-84=100 Transportation in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSAT1 S48B SAT1 U S S 1982-84=100 Private transportation in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSATCLTB S48B SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS48BSEEB S48B SEEB U S S JANUARY 1978=100 Tuition, other school fees, and childcare in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48BSEFJ S48B SEFJ U S S 1982-84=100 Dairy and related products in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48BSEFV S48B SEFV U S S 1982-84=100 Food away from home in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSEHA S48B SEHA U S S 1982-84=100 Rent of primary residence in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSEHC S48B SEHC U S S NOVEMBER 1982=100 Owners' equivalent rent of residences in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSEHC01 S48B SEHC01 U S S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSEHF S48B SEHF U S S 1982-84=100 Energy services in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2024 S01 +CUUSS48BSEHF01 S48B SEHF01 U S S 1982-84=100 Electricity in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2024 S01 +CUUSS48BSEHF02 S48B SEHF02 U S S 1982-84=100 Utility (piped) gas service in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2019 S03 +CUUSS48BSETA S48B SETA U S S DECEMBER 1997=100 New and used motor vehicles in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48BSETA01 S48B SETA01 U S S JANUARY 1978=100 New vehicles in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48BSETA02 S48B SETA02 U S S JANUARY 1978=100 Used cars and trucks in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS48BSETB S48B SETB U S S 1982-84=100 Motor fuel in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSETB01 S48B SETB01 U S S 1982-84=100 Gasoline (all types) in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSETE S48B SETE U S S JANUARY 1978=100 Motor vehicle insurance in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS48BSS47014 S48B SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS48BSS47015 S48B SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS48BSS47016 S48B SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Denver-Aurora-Lakewood, CO, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49AAA0 S49A AA0 U S A 1967=100 All items - old base in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASA0 S49A SA0 U S S 1982-84=100 All items in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASA0E S49A SA0E U S S 1982-84=100 Energy in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASA0L1E S49A SA0L1E U S S 1982-84=100 All items less food and energy in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASA0L2 S49A SA0L2 U S S 1982-84=100 All items less shelter in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASA0L5 S49A SA0L5 U S S 1982-84=100 All items less medical care in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASA0LE S49A SA0LE U S S 1982-84=100 All items less energy in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASAA S49A SAA U S S 1982-84=100 Apparel in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASAC S49A SAC U S S 1982-84=100 Commodities in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASACL1 S49A SACL1 U S S 1982-84=100 Commodities less food in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASACL11 S49A SACL11 U S S 1982-84=100 Commodities less food and beverages in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASAD S49A SAD U S S 1982-84=100 Durables in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASAE S49A SAE U S S DECEMBER 1997=100 Education and communication in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS49ASAEC S49A SAEC U S S DECEMBER 2009=100 Education and communication commodities in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49ASAES S49A SAES U S S DECEMBER 2009=100 Education and communication services in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49ASAF S49A SAF U S S 1982-84=100 Food and beverages in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASAF1 S49A SAF1 U S S 1982-84=100 Food in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASAF11 S49A SAF11 U S S 1982-84=100 Food at home in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASAF111 S49A SAF111 U S S 1982-84=100 Cereals and bakery products in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ASAF112 S49A SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ASAF113 S49A SAF113 U S S 1982-84=100 Fruits and vegetables in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ASAF114 S49A SAF114 U S S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ASAF115 S49A SAF115 U S S 1982-84=100 Other food at home in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ASAF116 S49A SAF116 U S S 1982-84=100 Alcoholic beverages in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASAG S49A SAG U S S 1982-84=100 Other goods and services in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASAGC S49A SAGC U S S DECEMBER 2009=100 Other goods in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49ASAGS S49A SAGS U S S DECEMBER 2009=100 Other personal services in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49ASAH S49A SAH U S S 1982-84=100 Housing in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASAH1 S49A SAH1 U S S 1982-84=100 Shelter in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASAH2 S49A SAH2 U S S 1982-84=100 Fuels and utilities in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49ASAH21 S49A SAH21 U S S 1982-84=100 Household energy in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49ASAH3 S49A SAH3 U S S 1982-84=100 Household furnishings and operations in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASAH31 S49A SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49ASAM S49A SAM U S S 1982-84=100 Medical care in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASAN S49A SAN U S S 1982-84=100 Nondurables in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASANL1 S49A SANL1 U S S 1982-84=100 Nondurables less food in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASANL11 S49A SANL11 U S S 1982-84=100 Nondurables less food and beverages in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASAR S49A SAR U S S DECEMBER 1997=100 Recreation in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS49ASAS S49A SAS U S S 1982-84=100 Services in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASASL2RS S49A SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASASL5 S49A SASL5 U S S 1982-84=100 Services less medical care services in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASAT S49A SAT U S S 1982-84=100 Transportation in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASAT1 S49A SAT1 U S S 1982-84=100 Private transportation in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASATCLTB S49A SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49ASEEB S49A SEEB U S S DECEMBER 1977=100 Tuition, other school fees, and childcare in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ASEFJ S49A SEFJ U S S 1982-84=100 Dairy and related products in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ASEFV S49A SEFV U S S 1982-84=100 Food away from home in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASEHA S49A SEHA U S S 1982-84=100 Rent of primary residence in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASEHC S49A SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASEHC01 S49A SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASEHF S49A SEHF U S S 1982-84=100 Energy services in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49ASEHF01 S49A SEHF01 U S S 1982-84=100 Electricity in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49ASEHF02 S49A SEHF02 U S S 1982-84=100 Utility (piped) gas service in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49ASETA S49A SETA U S S DECEMBER 1997=100 New and used motor vehicles in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ASETA01 S49A SETA01 U S S DECEMBER 1977=100 New vehicles in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ASETA02 S49A SETA02 U S S DECEMBER 1977=100 Used cars and trucks in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ASETB S49A SETB U S S 1982-84=100 Motor fuel in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASETB01 S49A SETB01 U S S 1982-84=100 Gasoline (all types) in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASETE S49A SETE U S S DECEMBER 1977=100 Motor vehicle insurance in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS49ASS47014 S49A SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ASS47015 S49A SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS49ASS47016 S49A SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Los Angeles-Long Beach-Anaheim, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BAA0 S49B AA0 U S A 1967=100 All items - old base in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSA0 S49B SA0 U S S 1982-84=100 All items in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSA0E S49B SA0E U S S 1982-84=100 Energy in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSA0L1E S49B SA0L1E U S S 1982-84=100 All items less food and energy in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSA0L2 S49B SA0L2 U S S 1982-84=100 All items less shelter in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSA0L5 S49B SA0L5 U S S 1982-84=100 All items less medical care in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSA0LE S49B SA0LE U S S 1982-84=100 All items less energy in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSAA S49B SAA U S S 1982-84=100 Apparel in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSAC S49B SAC U S S 1982-84=100 Commodities in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSACL1 S49B SACL1 U S S 1982-84=100 Commodities less food in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSACL11 S49B SACL11 U S S 1982-84=100 Commodities less food and beverages in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSAD S49B SAD U S S 1982-84=100 Durables in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSAE S49B SAE U S S DECEMBER 1997=100 Education and communication in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS49BSAEC S49B SAEC U S S DECEMBER 2009=100 Education and communication commodities in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49BSAES S49B SAES U S S DECEMBER 2009=100 Education and communication services in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49BSAF S49B SAF U S S 1982-84=100 Food and beverages in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSAF1 S49B SAF1 U S S 1982-84=100 Food in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSAF11 S49B SAF11 U S S 1982-84=100 Food at home in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSAF111 S49B SAF111 U S S 1982-84=100 Cereals and bakery products in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49BSAF112 S49B SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49BSAF113 S49B SAF113 U S S 1982-84=100 Fruits and vegetables in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49BSAF114 S49B SAF114 U S S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49BSAF115 S49B SAF115 U S S 1982-84=100 Other food at home in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49BSAF116 S49B SAF116 U S S 1982-84=100 Alcoholic beverages in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSAG S49B SAG U S S 1982-84=100 Other goods and services in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSAGC S49B SAGC U S S DECEMBER 2009=100 Other goods in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49BSAGS S49B SAGS U S S DECEMBER 2009=100 Other personal services in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49BSAH S49B SAH U S S 1982-84=100 Housing in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSAH1 S49B SAH1 U S S 1982-84=100 Shelter in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSAH2 S49B SAH2 U S S 1982-84=100 Fuels and utilities in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49BSAH21 S49B SAH21 U S S 1982-84=100 Household energy in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49BSAH3 S49B SAH3 U S S 1982-84=100 Household furnishings and operations in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSAH31 S49B SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49BSAM S49B SAM U S S 1982-84=100 Medical care in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSAN S49B SAN U S S 1982-84=100 Nondurables in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSANL1 S49B SANL1 U S S 1982-84=100 Nondurables less food in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSANL11 S49B SANL11 U S S 1982-84=100 Nondurables less food and beverages in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSAR S49B SAR U S S DECEMBER 1997=100 Recreation in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS49BSAS S49B SAS U S S 1982-84=100 Services in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSASL2RS S49B SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSASL5 S49B SASL5 U S S 1982-84=100 Services less medical care services in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSAT S49B SAT U S S 1982-84=100 Transportation in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSAT1 S49B SAT1 U S S 1982-84=100 Private transportation in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSATCLTB S49B SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49BSEEB S49B SEEB U S S DECEMBER 1977=100 Tuition, other school fees, and childcare in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49BSEFJ S49B SEFJ U S S 1982-84=100 Dairy and related products in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49BSEFV S49B SEFV U S S 1982-84=100 Food away from home in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSEHA S49B SEHA U S S 1982-84=100 Rent of primary residence in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSEHC S49B SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSEHC01 S49B SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSEHF S49B SEHF U S S 1982-84=100 Energy services in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49BSEHF01 S49B SEHF01 U S S 1982-84=100 Electricity in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49BSEHF02 S49B SEHF02 U S S 1982-84=100 Utility (piped) gas service in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49BSETA S49B SETA U S S DECEMBER 1997=100 New and used motor vehicles in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49BSETA01 S49B SETA01 U S S DECEMBER 1977=100 New vehicles in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49BSETA02 S49B SETA02 U S S DECEMBER 1977=100 Used cars and trucks in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49BSETB S49B SETB U S S 1982-84=100 Motor fuel in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSETB01 S49B SETB01 U S S 1982-84=100 Gasoline (all types) in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSETE S49B SETE U S S DECEMBER 1977=100 Motor vehicle insurance in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS49BSS47014 S49B SS47014 U S S 1982-84=100 Gasoline, unleaded regular in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49BSS47015 S49B SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS49BSS47016 S49B SS47016 U S S 1982-84=100 Gasoline, unleaded premium in San Francisco-Oakland-Hayward, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49CSA0 S49C SA0 U S S DECEMBER 2017=100 All items in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSA0E S49C SA0E U S S DECEMBER 2017=100 Energy in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSA0L1E S49C SA0L1E U S S DECEMBER 2017=100 All items less food and energy in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSA0L2 S49C SA0L2 U S S DECEMBER 2017=100 All items less shelter in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSA0L5 S49C SA0L5 U S S DECEMBER 2017=100 All items less medical care in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSA0LE S49C SA0LE U S S DECEMBER 2017=100 All items less energy in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAA S49C SAA U S S DECEMBER 2017=100 Apparel in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAC S49C SAC U S S DECEMBER 2017=100 Commodities in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSACL1 S49C SACL1 U S S DECEMBER 2017=100 Commodities less food in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSACL11 S49C SACL11 U S S DECEMBER 2017=100 Commodities less food and beverages in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAD S49C SAD U S S DECEMBER 2017=100 Durables in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAE S49C SAE U S S DECEMBER 2017=100 Education and communication in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAEC S49C SAEC U S S DECEMBER 2017=100 Education and communication commodities in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAES S49C SAES U S S DECEMBER 2017=100 Education and communication services in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAF S49C SAF U S S DECEMBER 2017=100 Food and beverages in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAF1 S49C SAF1 U S S DECEMBER 2017=100 Food in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAF11 S49C SAF11 U S S DECEMBER 2017=100 Food at home in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAF111 S49C SAF111 U S S DECEMBER 2017=100 Cereals and bakery products in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAF112 S49C SAF112 U S S DECEMBER 2017=100 Meats, poultry, fish, and eggs in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAF113 S49C SAF113 U S S DECEMBER 2017=100 Fruits and vegetables in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAF114 S49C SAF114 U S S DECEMBER 2017=100 Nonalcoholic beverages and beverage materials in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAF115 S49C SAF115 U S S DECEMBER 2017=100 Other food at home in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAF116 S49C SAF116 U S S DECEMBER 2017=100 Alcoholic beverages in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUSS49CSAG S49C SAG U S S DECEMBER 2017=100 Other goods and services in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAGC S49C SAGC U S S DECEMBER 2017=100 Other goods in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAGS S49C SAGS U S S DECEMBER 2017=100 Other personal services in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAH S49C SAH U S S DECEMBER 2017=100 Housing in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAH1 S49C SAH1 U S S DECEMBER 2017=100 Shelter in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAH2 S49C SAH2 U S S DECEMBER 2017=100 Fuels and utilities in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUSS49CSAH21 S49C SAH21 U S S DECEMBER 2017=100 Household energy in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUSS49CSAH3 S49C SAH3 U S S DECEMBER 2017=100 Household furnishings and operations in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAH31 S49C SAH31 U S S DECEMBER 2017=100 Household furnishings and supplies in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAM S49C SAM U S S DECEMBER 2017=100 Medical care in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAN S49C SAN U S S DECEMBER 2017=100 Nondurables in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSANL1 S49C SANL1 U S S DECEMBER 2017=100 Nondurables less food in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSANL11 S49C SANL11 U S S DECEMBER 2017=100 Nondurables less food and beverages in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAR S49C SAR U S S DECEMBER 2017=100 Recreation in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAS S49C SAS U S S DECEMBER 2017=100 Services in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSASL2RS S49C SASL2RS U S S DECEMBER 2017=100 Services less rent of shelter in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSASL5 S49C SASL5 U S S DECEMBER 2017=100 Services less medical care services in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAT S49C SAT U S S DECEMBER 2017=100 Transportation in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSAT1 S49C SAT1 U S S DECEMBER 2017=100 Private transportation in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSATCLTB S49C SATCLTB U S S DECEMBER 2017=100 Transportation commodities less motor fuel in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSEEB S49C SEEB U S S DECEMBER 2017=100 Tuition, other school fees, and childcare in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSEFJ S49C SEFJ U S S DECEMBER 2017=100 Dairy and related products in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSEFV S49C SEFV U S S DECEMBER 2017=100 Food away from home in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSEHA S49C SEHA U S S DECEMBER 2017=100 Rent of primary residence in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSEHC S49C SEHC U S S DECEMBER 2017=100 Owners' equivalent rent of residences in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSEHC01 S49C SEHC01 U S S DECEMBER 2017=100 Owners' equivalent rent of primary residence in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSEHF S49C SEHF U S S DECEMBER 2017=100 Energy services in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUSS49CSEHF01 S49C SEHF01 U S S DECEMBER 2017=100 Electricity in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUSS49CSEHF02 S49C SEHF02 U S S DECEMBER 2017=100 Utility (piped) gas service in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2024 S03 +CUUSS49CSETA S49C SETA U S S DECEMBER 2017=100 New and used motor vehicles in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSETA01 S49C SETA01 U S S DECEMBER 2017=100 New vehicles in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSETA02 S49C SETA02 U S S DECEMBER 2017=100 Used cars and trucks in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSETB S49C SETB U S S DECEMBER 2017=100 Motor fuel in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSETB01 S49C SETB01 U S S DECEMBER 2017=100 Gasoline (all types) in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSETE S49C SETE U S S DECEMBER 2017=100 Motor vehicle insurance in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2021 S03 +CUUSS49CSS47014 S49C SS47014 U S S DECEMBER 2017=100 Gasoline, unleaded regular in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSS47015 S49C SS47015 U S S DECEMBER 2017=100 Gasoline, unleaded midgrade in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49CSS47016 S49C SS47016 U S S DECEMBER 2017=100 Gasoline, unleaded premium in Riverside-San Bernardino-Ontario, CA, all urban consumers, not seasonally adjusted 2018 S01 2025 S01 +CUUSS49DAA0 S49D AA0 U S A 1967=100 All items - old base in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSA0 S49D SA0 U S S 1982-84=100 All items in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSA0E S49D SA0E U S S 1982-84=100 Energy in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSA0L1E S49D SA0L1E U S S 1982-84=100 All items less food and energy in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSA0L2 S49D SA0L2 U S S 1982-84=100 All items less shelter in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSA0L5 S49D SA0L5 U S S 1982-84=100 All items less medical care in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSA0LE S49D SA0LE U S S 1982-84=100 All items less energy in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSAA S49D SAA U S S 1982-84=100 Apparel in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSAC S49D SAC U S S 1982-84=100 Commodities in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSACL1 S49D SACL1 U S S 1982-84=100 Commodities less food in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSACL11 S49D SACL11 U S S 1982-84=100 Commodities less food and beverages in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSAD S49D SAD U S S 1982-84=100 Durables in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSAE S49D SAE U S S DECEMBER 1997=100 Education and communication in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS49DSAEC S49D SAEC U S S DECEMBER 2009=100 Education and communication commodities in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49DSAES S49D SAES U S S DECEMBER 2009=100 Education and communication services in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49DSAF S49D SAF U S S 1982-84=100 Food and beverages in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSAF1 S49D SAF1 U S S 1982-84=100 Food in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSAF11 S49D SAF11 U S S 1982-84=100 Food at home in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSAF111 S49D SAF111 U S S 1982-84=100 Cereals and bakery products in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49DSAF112 S49D SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49DSAF113 S49D SAF113 U S S 1982-84=100 Fruits and vegetables in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49DSAF114 S49D SAF114 U S S NOVEMBER 1977=100 Nonalcoholic beverages and beverage materials in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49DSAF115 S49D SAF115 U S S 1982-84=100 Other food at home in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49DSAF116 S49D SAF116 U S S 1982-84=100 Alcoholic beverages in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSAG S49D SAG U S S 1982-84=100 Other goods and services in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSAGC S49D SAGC U S S DECEMBER 2009=100 Other goods in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49DSAGS S49D SAGS U S S DECEMBER 2009=100 Other personal services in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2010 S01 2022 S01 +CUUSS49DSAH S49D SAH U S S 1982-84=100 Housing in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSAH1 S49D SAH1 U S S 1982-84=100 Shelter in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSAH2 S49D SAH2 U S S 1982-84=100 Fuels and utilities in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49DSAH21 S49D SAH21 U S S 1982-84=100 Household energy in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49DSAH3 S49D SAH3 U S S 1982-84=100 Household furnishings and operations in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSAH31 S49D SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49DSAM S49D SAM U S S 1982-84=100 Medical care in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSAN S49D SAN U S S 1982-84=100 Nondurables in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSANL1 S49D SANL1 U S S 1982-84=100 Nondurables less food in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSANL11 S49D SANL11 U S S 1982-84=100 Nondurables less food and beverages in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSAR S49D SAR U S S DECEMBER 1997=100 Recreation in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS49DSAS S49D SAS U S S 1982-84=100 Services in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSASL2RS S49D SASL2RS U S S NOVEMBER 1982=100 Services less rent of shelter in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSASL5 S49D SASL5 U S S 1982-84=100 Services less medical care services in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSAT S49D SAT U S S 1982-84=100 Transportation in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSAT1 S49D SAT1 U S S 1982-84=100 Private transportation in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSATCLTB S49D SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49DSEEB S49D SEEB U S S NOVEMBER 1977=100 Tuition, other school fees, and childcare in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49DSEFJ S49D SEFJ U S S 1982-84=100 Dairy and related products in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49DSEFV S49D SEFV U S S 1982-84=100 Food away from home in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSEHA S49D SEHA U S S 1982-84=100 Rent of primary residence in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSEHC S49D SEHC U S S NOVEMBER 1982=100 Owners' equivalent rent of residences in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSEHC01 S49D SEHC01 U S S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSEHF S49D SEHF U S S 1982-84=100 Energy services in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49DSEHF01 S49D SEHF01 U S S 1982-84=100 Electricity in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49DSEHF02 S49D SEHF02 U S S 1982-84=100 Utility (piped) gas service in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49DSETA S49D SETA U S S DECEMBER 1997=100 New and used motor vehicles in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49DSETA01 S49D SETA01 U S S NOVEMBER 1977=100 New vehicles in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49DSETA02 S49D SETA02 U S S NOVEMBER 1977=100 Used cars and trucks in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49DSETB S49D SETB U S S 1982-84=100 Motor fuel in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSETB01 S49D SETB01 U S S 1982-84=100 Gasoline (all types) in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSETE S49D SETE U S S NOVEMBER 1977=100 Motor vehicle insurance in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS49DSS47014 S49D SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49DSS47015 S49D SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS49DSS47016 S49D SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Seattle-Tacoma-Bellevue, WA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49EAA0 S49E AA0 U S A 1967=100 All items - old base in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESA0 S49E SA0 U S S 1982-84=100 All items in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESA0E S49E SA0E U S S 1982-84=100 Energy in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESA0L1E S49E SA0L1E U S S 1982-84=100 All items less food and energy in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESA0L2 S49E SA0L2 U S S 1982-84=100 All items less shelter in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESA0L5 S49E SA0L5 U S S 1982-84=100 All items less medical care in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESA0LE S49E SA0LE U S S 1982-84=100 All items less energy in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESAA S49E SAA U S S 1982-84=100 Apparel in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESAC S49E SAC U S S 1982-84=100 Commodities in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESACL1 S49E SACL1 U S S 1982-84=100 Commodities less food in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESACL11 S49E SACL11 U S S 1982-84=100 Commodities less food and beverages in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESAD S49E SAD U S S 1982-84=100 Durables in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESAE S49E SAE U S S DECEMBER 1997=100 Education and communication in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS49ESAEC S49E SAEC U S S DECEMBER 2009=100 Education and communication commodities in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49ESAES S49E SAES U S S DECEMBER 2009=100 Education and communication services in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49ESAF S49E SAF U S S 1982-84=100 Food and beverages in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESAF1 S49E SAF1 U S S 1982-84=100 Food in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESAF11 S49E SAF11 U S S 1982-84=100 Food at home in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESAF111 S49E SAF111 U S S 1982-84=100 Cereals and bakery products in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ESAF112 S49E SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ESAF113 S49E SAF113 U S S 1982-84=100 Fruits and vegetables in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ESAF114 S49E SAF114 U S S NOVEMBER 1977=100 Nonalcoholic beverages and beverage materials in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ESAF115 S49E SAF115 U S S 1982-84=100 Other food at home in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ESAF116 S49E SAF116 U S S 1982-84=100 Alcoholic beverages in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESAG S49E SAG U S S 1982-84=100 Other goods and services in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESAGC S49E SAGC U S S DECEMBER 2009=100 Other goods in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49ESAGS S49E SAGS U S S DECEMBER 2009=100 Other personal services in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49ESAH S49E SAH U S S 1982-84=100 Housing in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESAH1 S49E SAH1 U S S 1982-84=100 Shelter in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESAH2 S49E SAH2 U S S 1982-84=100 Fuels and utilities in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49ESAH21 S49E SAH21 U S S 1982-84=100 Household energy in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49ESAH3 S49E SAH3 U S S 1982-84=100 Household furnishings and operations in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESAH31 S49E SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49ESAM S49E SAM U S S 1982-84=100 Medical care in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESAN S49E SAN U S S 1982-84=100 Nondurables in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESANL1 S49E SANL1 U S S 1982-84=100 Nondurables less food in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESANL11 S49E SANL11 U S S 1982-84=100 Nondurables less food and beverages in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESAR S49E SAR U S S DECEMBER 1997=100 Recreation in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS49ESAS S49E SAS U S S 1982-84=100 Services in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESASL2RS S49E SASL2RS U S S NOVEMBER 1982=100 Services less rent of shelter in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESASL5 S49E SASL5 U S S 1982-84=100 Services less medical care services in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESAT S49E SAT U S S 1982-84=100 Transportation in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESAT1 S49E SAT1 U S S 1982-84=100 Private transportation in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESATCLTB S49E SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49ESEEB S49E SEEB U S S NOVEMBER 1977=100 Tuition, other school fees, and childcare in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ESEFJ S49E SEFJ U S S 1982-84=100 Dairy and related products in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ESEFV S49E SEFV U S S 1982-84=100 Food away from home in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESEHA S49E SEHA U S S 1982-84=100 Rent of primary residence in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESEHC S49E SEHC U S S NOVEMBER 1982=100 Owners' equivalent rent of residences in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESEHC01 S49E SEHC01 U S S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESEHF S49E SEHF U S S 1982-84=100 Energy services in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49ESEHF01 S49E SEHF01 U S S 1982-84=100 Electricity in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49ESEHF02 S49E SEHF02 U S S 1982-84=100 Utility (piped) gas service in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49ESETA S49E SETA U S S DECEMBER 1997=100 New and used motor vehicles in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ESETA01 S49E SETA01 U S S NOVEMBER 1977=100 New vehicles in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ESETA02 S49E SETA02 U S S NOVEMBER 1977=100 Used cars and trucks in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49ESETB S49E SETB U S S 1982-84=100 Motor fuel in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESETB01 S49E SETB01 U S S 1982-84=100 Gasoline (all types) in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESETE S49E SETE U S S NOVEMBER 1977=100 Motor vehicle insurance in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS49ESS47014 S49E SS47014 U S S 1982-84=100 Gasoline, unleaded regular in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49ESS47015 S49E SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1994 S03 2025 S01 +CUUSS49ESS47016 S49E SS47016 U S S 1982-84=100 Gasoline, unleaded premium in San Diego-Carlsbad, CA, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FAA0 S49F AA0 U S A 1967=100 All items - old base in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSA0 S49F SA0 U S S 1982-84=100 All items in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSA0E S49F SA0E U S S 1982-84=100 Energy in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSA0L1E S49F SA0L1E U S S 1982-84=100 All items less food and energy in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSA0L2 S49F SA0L2 U S S 1982-84=100 All items less shelter in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSA0L5 S49F SA0L5 U S S 1982-84=100 All items less medical care in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSA0LE S49F SA0LE U S S 1982-84=100 All items less energy in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSAA S49F SAA U S S 1982-84=100 Apparel in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSAC S49F SAC U S S 1982-84=100 Commodities in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSACL1 S49F SACL1 U S S 1982-84=100 Commodities less food in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSACL11 S49F SACL11 U S S 1982-84=100 Commodities less food and beverages in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSAD S49F SAD U S S 1982-84=100 Durables in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSAE S49F SAE U S S DECEMBER 1997=100 Education and communication in Urban Hawaii, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS49FSAEC S49F SAEC U S S DECEMBER 2009=100 Education and communication commodities in Urban Hawaii, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49FSAES S49F SAES U S S DECEMBER 2009=100 Education and communication services in Urban Hawaii, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49FSAF S49F SAF U S S 1982-84=100 Food and beverages in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSAF1 S49F SAF1 U S S 1982-84=100 Food in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSAF11 S49F SAF11 U S S 1982-84=100 Food at home in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSAF111 S49F SAF111 U S S 1982-84=100 Cereals and bakery products in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49FSAF112 S49F SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49FSAF113 S49F SAF113 U S S 1982-84=100 Fruits and vegetables in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49FSAF114 S49F SAF114 U S S DECEMBER 1977=100 Nonalcoholic beverages and beverage materials in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49FSAF115 S49F SAF115 U S S 1982-84=100 Other food at home in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49FSAF116 S49F SAF116 U S S 1982-84=100 Alcoholic beverages in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSAG S49F SAG U S S 1982-84=100 Other goods and services in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSAGC S49F SAGC U S S DECEMBER 2009=100 Other goods in Urban Hawaii, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49FSAGS S49F SAGS U S S DECEMBER 2009=100 Other personal services in Urban Hawaii, all urban consumers, not seasonally adjusted 2010 S01 2024 S01 +CUUSS49FSAH S49F SAH U S S 1982-84=100 Housing in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSAH1 S49F SAH1 U S S 1982-84=100 Shelter in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSAH2 S49F SAH2 U S S 1982-84=100 Fuels and utilities in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49FSAH21 S49F SAH21 U S S 1982-84=100 Household energy in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49FSAH3 S49F SAH3 U S S 1982-84=100 Household furnishings and operations in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSAH31 S49F SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Urban Hawaii, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49FSAM S49F SAM U S S 1982-84=100 Medical care in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSAN S49F SAN U S S 1982-84=100 Nondurables in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSANL1 S49F SANL1 U S S 1982-84=100 Nondurables less food in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSANL11 S49F SANL11 U S S 1982-84=100 Nondurables less food and beverages in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSAR S49F SAR U S S DECEMBER 1997=100 Recreation in Urban Hawaii, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS49FSAS S49F SAS U S S 1982-84=100 Services in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSASL2RS S49F SASL2RS U S S DECEMBER 1982=100 Services less rent of shelter in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSASL5 S49F SASL5 U S S 1982-84=100 Services less medical care services in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSAT S49F SAT U S S 1982-84=100 Transportation in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSAT1 S49F SAT1 U S S 1982-84=100 Private transportation in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSATCLTB S49F SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Urban Hawaii, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49FSEEB S49F SEEB U S S DECEMBER 1977=100 Tuition, other school fees, and childcare in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49FSEFJ S49F SEFJ U S S 1982-84=100 Dairy and related products in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49FSEFV S49F SEFV U S S 1982-84=100 Food away from home in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSEHA S49F SEHA U S S 1982-84=100 Rent of primary residence in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSEHC S49F SEHC U S S DECEMBER 1982=100 Owners' equivalent rent of residences in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSEHC01 S49F SEHC01 U S S DECEMBER 1982=100 Owners' equivalent rent of primary residence in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSEHF S49F SEHF U S S 1982-84=100 Energy services in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49FSEHF01 S49F SEHF01 U S S 1982-84=100 Electricity in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49FSEHF02 S49F SEHF02 U S S 1982-84=100 Utility (piped) gas service in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49FSETA S49F SETA U S S DECEMBER 1997=100 New and used motor vehicles in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49FSETA01 S49F SETA01 U S S DECEMBER 1977=100 New vehicles in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49FSETA02 S49F SETA02 U S S DECEMBER 1977=100 Used cars and trucks in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49FSETB S49F SETB U S S 1982-84=100 Motor fuel in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSETB01 S49F SETB01 U S S 1982-84=100 Gasoline (all types) in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSETE S49F SETE U S S DECEMBER 1977=100 Motor vehicle insurance in Urban Hawaii, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS49FSS47014 S49F SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49FSS47015 S49F SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Urban Hawaii, all urban consumers, not seasonally adjusted 1994 S01 2025 S01 +CUUSS49FSS47016 S49F SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Urban Hawaii, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GAA0 S49G AA0 U S A OCTOBER 1967=100 All items - old base in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSA0 S49G SA0 U S S 1982-84=100 All items in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSA0E S49G SA0E U S S 1982-84=100 Energy in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSA0L1E S49G SA0L1E U S S 1982-84=100 All items less food and energy in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSA0L2 S49G SA0L2 U S S 1982-84=100 All items less shelter in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSA0L5 S49G SA0L5 U S S 1982-84=100 All items less medical care in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSA0LE S49G SA0LE U S S 1982-84=100 All items less energy in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSAA S49G SAA U S S 1982-84=100 Apparel in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSAC S49G SAC U S S 1982-84=100 Commodities in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSACL1 S49G SACL1 U S S 1982-84=100 Commodities less food in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSACL11 S49G SACL11 U S S 1982-84=100 Commodities less food and beverages in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSAD S49G SAD U S S 1982-84=100 Durables in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSAE S49G SAE U S S DECEMBER 1997=100 Education and communication in Urban Alaska, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS49GSAEC S49G SAEC U S S DECEMBER 2009=100 Education and communication commodities in Urban Alaska, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49GSAES S49G SAES U S S DECEMBER 2009=100 Education and communication services in Urban Alaska, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49GSAF S49G SAF U S S 1982-84=100 Food and beverages in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSAF1 S49G SAF1 U S S 1982-84=100 Food in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSAF11 S49G SAF11 U S S 1982-84=100 Food at home in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSAF111 S49G SAF111 U S S 1982-84=100 Cereals and bakery products in Urban Alaska, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49GSAF112 S49G SAF112 U S S 1982-84=100 Meats, poultry, fish, and eggs in Urban Alaska, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49GSAF113 S49G SAF113 U S S 1982-84=100 Fruits and vegetables in Urban Alaska, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49GSAF114 S49G SAF114 U S S JANUARY 1978=100 Nonalcoholic beverages and beverage materials in Urban Alaska, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49GSAF115 S49G SAF115 U S S 1982-84=100 Other food at home in Urban Alaska, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49GSAF116 S49G SAF116 U S S 1982-84=100 Alcoholic beverages in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSAG S49G SAG U S S 1982-84=100 Other goods and services in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSAGC S49G SAGC U S S DECEMBER 2009=100 Other goods in Urban Alaska, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49GSAGS S49G SAGS U S S DECEMBER 2009=100 Other personal services in Urban Alaska, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49GSAH S49G SAH U S S 1982-84=100 Housing in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSAH1 S49G SAH1 U S S 1982-84=100 Shelter in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSAH2 S49G SAH2 U S S 1982-84=100 Fuels and utilities in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49GSAH21 S49G SAH21 U S S 1982-84=100 Household energy in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49GSAH3 S49G SAH3 U S S 1982-84=100 Household furnishings and operations in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSAH31 S49G SAH31 U S S DECEMBER 2009=100 Household furnishings and supplies in Urban Alaska, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49GSAM S49G SAM U S S 1982-84=100 Medical care in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSAN S49G SAN U S S 1982-84=100 Nondurables in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSANL1 S49G SANL1 U S S 1982-84=100 Nondurables less food in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSANL11 S49G SANL11 U S S 1982-84=100 Nondurables less food and beverages in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSAR S49G SAR U S S DECEMBER 1997=100 Recreation in Urban Alaska, all urban consumers, not seasonally adjusted 1998 S01 2025 S01 +CUUSS49GSAS S49G SAS U S S 1982-84=100 Services in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSASL2RS S49G SASL2RS U S S NOVEMBER 1982=100 Services less rent of shelter in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSASL5 S49G SASL5 U S S 1982-84=100 Services less medical care services in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSAT S49G SAT U S S 1982-84=100 Transportation in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSAT1 S49G SAT1 U S S 1982-84=100 Private transportation in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSATCLTB S49G SATCLTB U S S DECEMBER 2009=100 Transportation commodities less motor fuel in Urban Alaska, all urban consumers, not seasonally adjusted 2010 S01 2025 S01 +CUUSS49GSEEB S49G SEEB U S S JANUARY 1978=100 Tuition, other school fees, and childcare in Urban Alaska, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49GSEFJ S49G SEFJ U S S 1982-84=100 Dairy and related products in Urban Alaska, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49GSEFV S49G SEFV U S S 1982-84=100 Food away from home in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSEHA S49G SEHA U S S 1982-84=100 Rent of primary residence in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSEHC S49G SEHC U S S NOVEMBER 1982=100 Owners' equivalent rent of residences in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSEHC01 S49G SEHC01 U S S NOVEMBER 1982=100 Owners' equivalent rent of primary residence in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSEHF S49G SEHF U S S 1982-84=100 Energy services in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49GSEHF01 S49G SEHF01 U S S 1982-84=100 Electricity in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49GSEHF02 S49G SEHF02 U S S 1982-84=100 Utility (piped) gas service in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2024 S03 +CUUSS49GSETA S49G SETA U S S DECEMBER 1997=100 New and used motor vehicles in Urban Alaska, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49GSETA01 S49G SETA01 U S S JANUARY 1978=100 New vehicles in Urban Alaska, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49GSETA02 S49G SETA02 U S S JANUARY 1978=100 Used cars and trucks in Urban Alaska, all urban consumers, not seasonally adjusted 2017 S02 2025 S01 +CUUSS49GSETB S49G SETB U S S 1982-84=100 Motor fuel in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSETB01 S49G SETB01 U S S 1982-84=100 Gasoline (all types) in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSETE S49G SETE U S S JANUARY 1978=100 Motor vehicle insurance in Urban Alaska, all urban consumers, not seasonally adjusted 2017 S02 2021 S03 +CUUSS49GSS47014 S49G SS47014 U S S 1982-84=100 Gasoline, unleaded regular in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 +CUUSS49GSS47015 S49G SS47015 U S S DECEMBER 1993=100 Gasoline, unleaded midgrade in Urban Alaska, all urban consumers, not seasonally adjusted 1995 S01 2025 S01 +CUUSS49GSS47016 S49G SS47016 U S S 1982-84=100 Gasoline, unleaded premium in Urban Alaska, all urban consumers, not seasonally adjusted 1984 S01 2025 S01 diff --git a/EconDataLens.Tests/TestData/cu.area.empty b/EconDataLens.Tests/TestData/ParserData/cu.area.empty similarity index 100% rename from EconDataLens.Tests/TestData/cu.area.empty rename to EconDataLens.Tests/TestData/ParserData/cu.area.empty diff --git a/EconDataLens.Tests/TestData/cu.area.sample b/EconDataLens.Tests/TestData/ParserData/cu.area.sample similarity index 100% rename from EconDataLens.Tests/TestData/cu.area.sample rename to EconDataLens.Tests/TestData/ParserData/cu.area.sample diff --git a/EconDataLens.Tests/TestData/cu.data.0.Current.empty b/EconDataLens.Tests/TestData/ParserData/cu.data.0.Current.empty similarity index 100% rename from EconDataLens.Tests/TestData/cu.data.0.Current.empty rename to EconDataLens.Tests/TestData/ParserData/cu.data.0.Current.empty diff --git a/EconDataLens.Tests/TestData/cu.data.0.Current.sample b/EconDataLens.Tests/TestData/ParserData/cu.data.0.Current.sample similarity index 100% rename from EconDataLens.Tests/TestData/cu.data.0.Current.sample rename to EconDataLens.Tests/TestData/ParserData/cu.data.0.Current.sample diff --git a/EconDataLens.Tests/TestData/cu.footnote.empty b/EconDataLens.Tests/TestData/ParserData/cu.footnote.empty similarity index 100% rename from EconDataLens.Tests/TestData/cu.footnote.empty rename to EconDataLens.Tests/TestData/ParserData/cu.footnote.empty diff --git a/EconDataLens.Tests/TestData/ParserData/cu.footnote.sample b/EconDataLens.Tests/TestData/ParserData/cu.footnote.sample new file mode 100644 index 0000000..44942a0 --- /dev/null +++ b/EconDataLens.Tests/TestData/ParserData/cu.footnote.sample @@ -0,0 +1,3 @@ +footnote_code footnote_text +F1 This is a footnote +F2 This is another footnote \ No newline at end of file diff --git a/EconDataLens.Tests/TestData/cu.item.empty b/EconDataLens.Tests/TestData/ParserData/cu.item.empty similarity index 100% rename from EconDataLens.Tests/TestData/cu.item.empty rename to EconDataLens.Tests/TestData/ParserData/cu.item.empty diff --git a/EconDataLens.Tests/TestData/cu.item.sample b/EconDataLens.Tests/TestData/ParserData/cu.item.sample similarity index 100% rename from EconDataLens.Tests/TestData/cu.item.sample rename to EconDataLens.Tests/TestData/ParserData/cu.item.sample diff --git a/EconDataLens.Tests/TestData/cu.period.empty b/EconDataLens.Tests/TestData/ParserData/cu.period.empty similarity index 100% rename from EconDataLens.Tests/TestData/cu.period.empty rename to EconDataLens.Tests/TestData/ParserData/cu.period.empty diff --git a/EconDataLens.Tests/TestData/cu.period.sample b/EconDataLens.Tests/TestData/ParserData/cu.period.sample similarity index 100% rename from EconDataLens.Tests/TestData/cu.period.sample rename to EconDataLens.Tests/TestData/ParserData/cu.period.sample diff --git a/EconDataLens.Tests/TestData/cu.series.empty b/EconDataLens.Tests/TestData/ParserData/cu.series.empty similarity index 100% rename from EconDataLens.Tests/TestData/cu.series.empty rename to EconDataLens.Tests/TestData/ParserData/cu.series.empty diff --git a/EconDataLens.Tests/TestData/cu.series.sample b/EconDataLens.Tests/TestData/ParserData/cu.series.sample similarity index 100% rename from EconDataLens.Tests/TestData/cu.series.sample rename to EconDataLens.Tests/TestData/ParserData/cu.series.sample