Z.Expressions.Eval 6.2.2-beta2

This is a prerelease version of Z.Expressions.Eval.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Z.Expressions.Eval --version 6.2.2-beta2
                    
NuGet\Install-Package Z.Expressions.Eval -Version 6.2.2-beta2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Z.Expressions.Eval" Version="6.2.2-beta2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Z.Expressions.Eval" Version="6.2.2-beta2" />
                    
Directory.Packages.props
<PackageReference Include="Z.Expressions.Eval" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Z.Expressions.Eval --version 6.2.2-beta2
                    
#r "nuget: Z.Expressions.Eval, 6.2.2-beta2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Z.Expressions.Eval&version=6.2.2-beta2&prerelease
                    
Install Z.Expressions.Eval as a Cake Addin
#tool nuget:?package=Z.Expressions.Eval&version=6.2.2-beta2&prerelease
                    
Install Z.Expressions.Eval as a Cake Tool

Z.Expressions.Eval: C# Eval Expression

Z.Expressions.Eval is a robust NuGet package that enables .NET developers to evaluate, compile, and execute dynamic C# expressions. By interpreting and processing strings as executable code, this package empowers developers to craft highly adaptable and customizable applications.

It has the capability to handle an extensive range of mathematical operations, string manipulations, boolean logic, and it can even interact with .NET objects and classes.

The principal advantage of Z.Expressions.Eval lies in its ability to provide enhanced flexibility by facilitating runtime execution and manipulation of C# expressions. This feature is particularly beneficial in scenarios where business rules are subject to frequent changes or need to be configurable.

Having earned the trust and endorsement of over 5000 customers worldwide, C# Eval Expression is a highly regarded library that has become an essential tool for a wide variety of projects.

Resources:

  • Official Website: Visit for comprehensive information, updates, tutorials, and more. Learn how Z.Expressions.Eval can significantly enhance your application's capabilities.
  • Contact Us: Have a question or need assistance? Don't hesitate to reach out. We're here to help you get the most out of C# Eval Expression.
  • GitHub Issues: Encountered an issue or have a feature request? Let us know on GitHub. Your feedback helps us make C# Eval Expression even better.

Supported .NET Versions

Z.Expressions.Eval exhibits broad compatibility with a variety of .NET versions. Starting from .NET Framework 4.5 and .NET Core 2.0, it extends support to the most recent versions of .NET.

To take full advantage of the enhancements in newer .NET versions, we highly recommend upgrading to the latest package version of Z.Expressions.Eval.

Main Features

Z.Expressions.Eval provides a set of powerful features designed to simplify dynamic C# expression evaluation and execution. Here are some of the key features:

  • Eval.Execute: Allows you to evaluate and execute a string as a C# expression at runtime. This feature can handle a wide variety of mathematical operations, string manipulations, boolean logic, and even work with .NET objects and classes.
  • Eval.Compile: Offers the ability to compile a string as a C# expression at runtime, reducing the overhead of repeated evaluations. This feature is especially useful when working with expressions that need to be executed multiple times.
  • LINQ Dynamic: Provides the power to execute LINQ expressions dynamically. This feature opens up new possibilities for creating highly flexible and configurable queries.

For a more detailed explanation and examples of each operation, please refer to the official documentation page.

Getting Started

To get a feel for Z.Expressions.Eval, here is a simple example:

using Z.Expressions;

public class Program
{
    public static void Main()
    {
        var result = Eval.Execute<int>("X*Y", new { X = 10, Y = 20 });
        Console.WriteLine(result); // Outputs: 200
    }
}

In the above example, the "X*Y" string expression is evaluated dynamically at runtime with the values of X and Y provided in an anonymous object. The result is then printed to the console.

Want to explore the library further? We offer an extensive collection of online examples showcasing the various functionalities and capabilities of C# Eval Expression:

These examples are specifically designed to impart practical understanding of C# Eval Expression, demonstrating its potent features and adaptable options in a variety of scenarios.

Advanced Usage

Instance Context

Z.Expressions.Eval allows more advanced scenarios, such as operating in a specific context, using variables, and more. Here's an example illustrating the use of instance context:

// CREATE a new instance of EvalContext
var context = new EvalContext();

// USE the `Execute` method from the context created
var list1 = context.Execute<List<int>>("new List<int>() { 1, 2, 3 };");

In this example, we first create a new instance of EvalContext. Then, we use the Execute method from the created context to evaluate and execute a string as a C# expression, which instantiates a new List<int>.

Try it online

Register Type

The RegisterType method allows you to register all types provided for the context. The method also registers extension methods from those types but does not register other static members. For instance, if you register the type "Z.MyNamespace.MyClass", you can subsequently create an expression such as "new MyClass()" or any extension methods from this type.

In the following example, we'll register the types MyClassHelper and MyExtensions to include their extension methods. We'll first demonstrate how to use our class and extension methods in an arithmetic operation. We'll then show how to utilize the IsRegisteredType and UnregisterType methods with MyClassHelper to verify if the type is currently registered and to unregister it.

using System;
using System.Collections.Generic;
using Z.Expressions;

public class Program
{
	public static void Main()
	{
		// Global Context: EvalManager.DefaultContext.RegisterType(typeof(Helper));
		
		var context = new EvalContext();
		context.RegisterType(typeof(MyClassHelper));
		context.RegisterType(typeof(MyExtensions));
		
		var r1 = context.Execute<int>("new MyClassHelper().MyClassHelperID + 2.AddMe(3)"); // return 6
		Console.WriteLine("1 - Result: " + r1);
		
		// Check if the type `MyClassHelper` is registered
		var r2 = context.IsRegisteredType(typeof(MyClassHelper)); // return true
		Console.WriteLine("2 - Result: " + r2);
		
		// Unregister the type `MyClassHelper`
		context.UnregisterType(typeof(MyClassHelper));
		
		// Check the type `MyClassHelper` has been succesfully unregistered
		var r3 = context.IsRegisteredType(typeof(MyClassHelper)); // return false
		Console.WriteLine("3 - Result: " + r3);
	}
	
	public class MyClassHelper
	{
		public int MyClassHelperID { get; set; } = 1;
	}
}

public static class MyExtensions
{	
	public static int AddMe(this int x, int y)
	{
		return x + y;
	}
}

Try it online

Use Options

The SafeMode option allows you to set the context to only allow the usage of registered members and types within expressions. In essence, it enables a secure execution environment for user input, restricting usage to only what you explicitly permit. By default, SafeMode is set to false.

In this example, we demonstrate how SafeMode method. Please ensure to thoroughly understand the SafeMode documentation if you intend to use this option.

// Global Context: EvalManager.DefaultContext.SafeMode = true;

var context = new EvalContext();

context.SafeMode = true;
context.UnregisterAll();

try
{
	var fail = context.Execute("Math.Min(1, 2)");
	Console.WriteLine(fail);
}
catch(Exception ex)
{
	Console.WriteLine("1 - Exception: " + ex.Message);
}

// try again by registering "System.Math" member
context.RegisterMember(typeof(System.Math));
var r2 = context.Execute("Math.Min(1, 2)");
Console.WriteLine("2 - Result: " + r2);

Try it online

Release Notes

For a thorough record of enhancements, bug fixes, and upgrades in each iteration of C# Eval Expression, we recommend referring to the official Release Notes located in our GitHub repository.

The Release Notes offer essential insights about each version, detailing new features, addressing resolved issues, and mentioning any breaking changes (if applicable). We strongly advise reviewing these notes prior to upgrading to a newer version. This practice not only ensures you leverage the full potential of the newly introduced features but also helps prevent unforeseen complications.

License

C# Eval Expression utilizes a paid licensing model. To acquire a license, please visit our official Pricing Page on the Eval Expression website.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (16)

Showing the top 5 NuGet packages that depend on Z.Expressions.Eval:

Package Downloads
Z.EntityFramework.Plus.EFCore

Entity Framework Plus extends your DbContext with must-haves features: Include Filter, Auditing, Caching, Query Future, Batch Delete, Batch Update, and more **IMPORTANT** - For EF Core 9.x, use the latest EF Plus v9.x version - For EF Core 8.x, use the latest EF Plus v8.x version - For EF Core 7.x, use the latest EF Plus v7.x version - For EF Core 6.x, use the latest EF Plus v6.x version - For EF Core 5.x, use the latest EF Plus v5.x version - For EF Core 3.x, use the latest EF Plus v3.x version - For EF Core 2.x, use the latest EF Plus v2.x version

Z.EntityFramework.Plus.EF6

Entity Framework Plus extends your DbContext with must-haves features: Include Filter, Auditing, Caching, Query Future, Batch Delete, Batch Update, and more

Z.EntityFramework.Classic

Entity Framework Classic is an EF6 fork with performance enhancement, new features, and .NET Core support. This package is FREE (Community Version) Some features are Prime (Enterprise Version) Prime features can be disabled with "EntityFrameworkManager.IsCommunity = true;"

Z.EntityFramework.Plus.EF5

Entity Framework Plus extends your DbContext with must-haves features: Include Filter, Auditing, Caching, Query Future, Batch Delete, Batch Update, and more EF Core Package: https://www.nuget.org/packages/Z.EntityFramework.Plus.EFCore/ EF6 Package: https://www.nuget.org/packages/Z.EntityFramework.Plus.EF6/

DianFengBaseLib.Infrastructure

配合DDD使用

GitHub repositories (6)

Showing the top 6 popular GitHub repositories that depend on Z.Expressions.Eval:

Repository Stars
zzzprojects/EntityFramework-Plus
Entity Framework Plus extends your DbContext with must-haves features: Include Filter, Auditing, Caching, Query Future, Batch Delete, Batch Update, and more
zzzprojects/EntityFramework.DynamicFilters
Global filtering for Entity Framework.
zzzprojects/Eval-Expression.NET
C# Eval Expression | Evaluate, Compile, and Execute C# code and expression at runtime.
zzzprojects/EntityFramework-Effort
Entity Framework Effort is a powerful tool that enables a convenient way to create automated tests for Entity Framework based applications.
DigitalPlatform/dp2
Integrated Library System / 图书馆集成系统
zzzprojects/EntityFramework-Classic
Entity Framework Classic is a supported version of the latest EF6 codebase. It supports .NET Framework and .NET Core and overcomes some EF limitations by adding tons of must-haves built-in features.
Version Downloads Last updated
6.2.10 18,838 5/6/2025
6.2.9 76,920 4/8/2025
6.2.8 195,485 3/10/2025
6.2.7 6,286 2/24/2025
6.2.6 147,510 2/11/2025
6.2.5 228,211 1/14/2025
6.2.4 218,554 12/17/2024
6.2.3 266,936 11/26/2024
6.2.2 267,346 11/12/2024
6.2.2-beta2 105 11/14/2024
6.2.2-beta1 101 11/14/2024
6.2.1 285,769 10/22/2024
6.2.0 344,463 9/23/2024
6.2.0-beta1 126 10/2/2024
6.1.10 340,219 8/27/2024
6.1.9 223,034 8/12/2024
6.1.8 254,818 7/22/2024
6.1.7 571,960 6/18/2024
6.1.6 156,021 6/3/2024
6.1.2 1,050,338 3/11/2024
6.1.1 231,655 2/27/2024
6.1.0 506,261 2/13/2024
6.0.6 710,087 1/15/2024
6.0.5 319,302 12/18/2023
6.0.4 3,730 12/11/2023
6.0.3 148,041 12/5/2023
6.0.2 116,414 11/28/2023
6.0.1 1,247 11/28/2023
6.0.0 284,301 11/15/2023
5.0.12 3,873 11/7/2023
5.0.11 484,070 10/17/2023
5.0.10 307,708 9/26/2023
5.0.9 260,079 9/11/2023
5.0.8 252,969 8/15/2023
5.0.7 673,614 7/11/2023
5.0.6 319,178 6/12/2023
5.0.5 8,786 5/30/2023
5.0.4 502,951 5/16/2023
5.0.3 407,388 4/17/2023
5.0.2 362,689 3/20/2023
5.0.1 532,355 2/20/2023
5.0.0 852,227 1/17/2023
4.0.92 456,934 12/20/2022
4.0.91 458,628 12/5/2022
4.0.90 635,134 11/14/2022
4.0.89 1,016,683 10/10/2022
4.0.88 1,230,185 9/12/2022
4.0.87 897,954 8/16/2022
4.0.86 1,059,636 7/19/2022
4.0.85 803,709 6/14/2022
4.0.84 145,535 6/7/2022
4.0.83 24,614 5/26/2022
4.0.82 455,176 5/24/2022
4.0.81 216,352 5/17/2022
4.0.80 206,946 5/10/2022
4.0.79 836,634 4/12/2022
4.0.78 712,206 3/30/2022
4.0.77 799,060 3/15/2022
4.0.76 324,168 3/1/2022
4.0.75 153,826 2/22/2022
4.0.74 322,290 2/14/2022
4.0.73 133,779 2/8/2022
4.0.72 22,046 2/1/2022
4.0.71 604,194 1/18/2022
4.0.70 301,266 1/11/2022
4.0.69 2,212,244 12/30/2021
4.0.68 18,649 12/15/2021
4.0.67 272,365 12/14/2021
4.0.66 4,210 12/7/2021
4.0.65 3,054 11/30/2021
4.0.64 338,983 11/24/2021
4.0.63 360,081 11/17/2021
4.0.62 308,699 11/9/2021
4.0.61 2,997 11/4/2021
4.0.60 320,689 10/27/2021
4.0.59 150,038 10/20/2021
4.0.58 90,827 10/13/2021
4.0.57 2,725 10/12/2021
4.0.56 7,279 10/6/2021
4.0.55 6,369 9/29/2021
4.0.54 570,602 9/15/2021
4.0.53 111,462 9/8/2021
4.0.52 205,849 9/1/2021
4.0.51 92,013 8/25/2021
4.0.50 170,786 8/17/2021
4.0.49 187,142 8/4/2021
4.0.48 462,103 7/28/2021
4.0.47 200,639 7/20/2021
4.0.46 236,922 7/13/2021
4.0.45 536,219 6/16/2021
4.0.44 76,474 6/14/2021
4.0.43 506,081 5/12/2021
4.0.42 139,078 5/3/2021
4.0.41 220,287 4/26/2021
4.0.40 2,475 4/22/2021
4.0.39 162,530 4/19/2021
4.0.38 157,344 4/7/2021
4.0.37 280,599 3/24/2021
4.0.37-beta1 1,699 4/1/2021
4.0.36 147,234 3/16/2021
4.0.35 38,879 3/15/2021
4.0.34 209,927 3/10/2021
4.0.33 11,712 2/23/2021
4.0.32 589,177 2/16/2021
4.0.31 158,079 2/10/2021
4.0.30 186,161 2/2/2021
4.0.29 321,990 1/13/2021
4.0.28 596,019 12/14/2020
4.0.27 70,244 12/8/2020
4.0.26 106,581 12/1/2020
4.0.25 81,009 11/27/2020
4.0.24 211,556 11/11/2020
4.0.23 222,951 10/30/2020
4.0.22 778,117 10/11/2020
4.0.21 56,931 10/7/2020
4.0.20 3,418 10/5/2020
4.0.19 104,503 9/30/2020
4.0.18 4,391 9/29/2020
4.0.17 34,087 9/24/2020
4.0.16 327,270 9/14/2020
4.0.15 237,359 8/31/2020
4.0.14 7,285 8/25/2020
4.0.13 5,313 8/17/2020
4.0.12 238,941 8/11/2020
4.0.11 102,073 8/3/2020
4.0.10 19,441 7/28/2020
4.0.9 160,057 7/22/2020
4.0.8 3,288 7/19/2020
4.0.7 2,214 7/19/2020
4.0.6 262,221 7/14/2020
4.0.5 2,299 7/13/2020
4.0.4 90,389 7/12/2020
4.0.3 13,037 7/5/2020
4.0.2 8,878 6/30/2020
4.0.1 698,103 6/14/2020
4.0.0 80,680 6/1/2020
3.1.12 23,177 5/25/2020
3.1.11 687,453 5/14/2020
3.1.10 475,203 4/14/2020
3.1.9 49,967 4/3/2020
3.1.8 632,976 3/16/2020
3.1.7 6,035 3/10/2020
3.1.6 571,385 2/21/2020
3.1.5 312,485 2/18/2020
3.1.4 19,907 2/15/2020
3.1.3 61,019 2/7/2020
3.1.2 501,455 1/27/2020
3.1.1 4,279 1/23/2020
3.1.0 9,057 1/14/2020
3.0.14 6,509 1/13/2020
3.0.13 26,280 1/9/2020
3.0.12 8,967 1/3/2020
3.0.11 10,700 12/19/2019
3.0.10 4,012 12/17/2019
3.0.9 521,508 12/16/2019
3.0.8 5,920 12/11/2019
3.0.7 323,464 11/25/2019
3.0.6 23,742 11/18/2019
3.0.5 3,909 11/14/2019
3.0.4 7,843 11/12/2019
3.0.3 619,084 10/30/2019
3.0.2 2,296 10/30/2019
3.0.1 13,584 10/29/2019
3.0.0 2,680 10/29/2019
2.9.57 14,554 10/16/2019
2.9.56 2,716 10/10/2019
2.9.55 6,178 10/2/2019
2.9.54 16,337 9/22/2019
2.9.52 3,103 9/6/2019
2.9.51 2,329 9/5/2019
2.9.50 2,303 9/4/2019
2.9.49 2,785 8/29/2019
2.9.48 8,449 8/24/2019
2.9.47 2,364 8/24/2019
2.9.46 39,942 8/15/2019
2.9.45 161,061 7/28/2019
2.9.44 3,152 7/15/2019
2.9.43 3,580 7/9/2019
2.9.42 6,315 7/4/2019
2.9.41 2,498 7/3/2019
2.9.40 2,453 7/1/2019
2.9.39 16,793 6/29/2019
2.9.38 2,338 6/25/2019
2.9.37 2,858 6/12/2019
2.9.36 2,491 6/7/2019
2.9.35 2,325 6/4/2019
2.9.34 2,625 5/31/2019
2.9.33 4,328 5/31/2019
2.9.32 4,502 5/23/2019
2.9.31 44,271 5/20/2019
2.9.30 2,402 5/17/2019
2.9.29 2,449 5/9/2019
2.9.28 2,271 5/9/2019
2.9.27 4,424 5/5/2019
2.9.26 2,296 5/3/2019
2.9.25 7,261 4/30/2019
2.9.24 3,034 4/18/2019
2.9.22 2,469 4/16/2019
2.9.21 10,972 4/7/2019
2.9.20 32,598 3/30/2019
2.9.19 2,573 3/27/2019
2.9.18 2,396 3/26/2019
2.9.17 2,596 3/21/2019
2.9.16 2,320 3/20/2019
2.9.15 2,351 3/20/2019
2.9.14 2,480 3/16/2019
2.9.13 2,398 3/16/2019
2.9.12 95,139 2/27/2019
2.9.11 2,683 2/20/2019
2.9.10 2,410 2/18/2019
2.9.9 2,346 2/16/2019
2.9.8 3,029 2/13/2019
2.9.7 2,771 2/8/2019
2.9.6 6,274 1/30/2019
2.9.5 9,005 1/13/2019
2.9.4 6,358 12/30/2018
2.9.3 2,979 12/13/2018
2.9.2 2,569 12/13/2018
2.9.1 2,643 12/12/2018
2.9.0 2,480 12/12/2018
2.8.9 3,026 12/11/2018
2.8.8 70,126 11/29/2018
2.8.7 3,006 11/28/2018
2.8.6 2,495 11/27/2018
2.8.5 3,734 11/20/2018
2.8.4 2,624 11/18/2018
2.8.3 2,557 11/17/2018
2.8.2 2,564 11/17/2018
2.8.1 2,954 11/14/2018
2.8.0 2,499 11/14/2018
2.7.13 5,040 10/29/2018
2.7.12 9,618 10/28/2018
2.7.11 2,621 10/23/2018
2.7.10 5,169 10/17/2018
2.7.9 5,130 10/7/2018
2.7.8 5,614 9/29/2018
2.7.7 5,442 8/31/2018
2.7.6 6,119 8/30/2018
2.7.5 2,968 8/18/2018
2.7.4 5,435 8/16/2018
2.7.3 3,521 8/16/2018
2.7.2 4,878 7/31/2018
2.7.1 3,325 7/19/2018
2.7.0 3,367 7/5/2018
2.6.5 3,206 6/29/2018
2.6.4 3,871 5/31/2018
2.6.3 4,139 5/2/2018
2.6.2 3,238 4/30/2018
2.6.1 4,093 3/30/2018
2.6.0 3,141 3/26/2018
2.5.0 3,123 3/20/2018
2.4.21 2,945 3/20/2018
2.4.20 3,033 3/16/2018
2.4.19 3,520 2/27/2018
2.4.18 3,541 2/12/2018
2.4.17 2,864 2/6/2018
2.4.16 3,119 2/2/2018
2.4.15 3,030 1/31/2018
2.4.14 3,004 1/31/2018
2.4.13 3,064 1/23/2018
2.4.12 2,995 1/16/2018
2.4.11 3,137 1/8/2018
2.4.10 3,279 1/5/2018
2.4.9 3,298 12/29/2017
2.4.8 4,883 12/6/2017
2.4.7 3,016 11/30/2017
2.4.6 2,991 11/27/2017
2.4.5 3,237 11/16/2017
2.4.4 3,045 11/13/2017
2.4.3 4,472 11/7/2017
2.4.2 2,979 11/1/2017
2.4.1 3,122 10/30/2017
2.4.0 12,938 9/30/2017
2.3.0 3,137 9/30/2017
2.2.1 3,057 9/24/2017
2.2.0-beta1 2,643 9/20/2017
2.1.15 3,853 8/31/2017
2.1.14 2,958 8/8/2017
2.1.13 3,073 8/2/2017
2.1.12 2,830 8/1/2017
2.1.11 2,954 7/27/2017
2.1.10 3,007 7/25/2017
2.1.9 2,978 7/11/2017
2.1.8 9,008 7/10/2017
2.1.7 2,999 7/7/2017
2.1.6 2,887 7/6/2017
2.1.5 2,943 7/3/2017
2.1.4 3,419 6/29/2017