Skip to content

Instantly share code, notes, and snippets.

@tallguyjenks
Last active November 17, 2023 00:15
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save tallguyjenks/465eff62a0003f1583ad657cffc64808 to your computer and use it in GitHub Desktop.
Save tallguyjenks/465eff62a0003f1583ad657cffc64808 to your computer and use it in GitHub Desktop.
---
title: "Rmarkdown"
author: "me"
date: "7/17/2020"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
#LOAD NEEDED LIBRARIES FIRST:
library(tidyverse)
library(esquisse)
```
# Basic Syntax and some hotkeys
Comment me with ctrl-shift-C
```{r}
my_string <- "comment me with ctrl-shift-C"
print(my_string)
7 # execute this line with ctrl-enter
x <- 1
2 -> y
z = x + y
# Run the whole chunk with ctrl-shift-enter
```
# Data Types and R objects
In contrast to other programming languages like C and java in R, the variables are not declared as some data type. The variables are assigned with R-Objects and the data type of the R-object becomes the data type of the variable. There are many types of R-objects. The frequently used ones are:
## R objects
- Vectors
- Lists
- Matrices
- Arrays
- Factors
- Data Frames
### Vector
```{r}
# Logical TRUE, FALSE
v <- TRUE
print(class(v))
# Numeric 12.3, 5, 999
v <- 23.5
print(class(v))
# Integer 2L, 34L, 0L
v <- 2L
print(class(v))
# Complex 3 + 2i
v <- 2+5i
print(class(v))
# Character 'a' , '"good", "TRUE", '23.4'
v <- "TRUE"
print(class(v))
# Raw "Hello" is stored as 48 65 6c 6c 6f
v <- charToRaw("Hello")
print(class(v))
v
##################################################
# Create a vector.
apple <- c('red','green',"yellow")
print(apple)
# Get the class of the vector.
print(class(apple))
```
### Lists
A list is an R-object which can contain many different types of elements inside it like vectors, functions and even another list inside it.
```{r}
# Create a list.
list1 <- list(c(2,5,3),21.3,sin, TRUE)
# Print the list.
print(list1)
```
### Matrices
A matrix is a two-dimensional rectangular data set. It can be created using a vector input to the matrix function.
```{r}
# Create a matrix.
M = matrix( c('a','a','b','c','b','a'), nrow = 2, ncol = 3, byrow = TRUE)
print(M)
```
### Arrays
```{r}
# Create an array.
a <- array(c('green','yellow'),dim = c(3,3,2))
print(a)
```
### Factors
Factors are the r-objects which are created using a vector. It stores the vector along with the distinct values of the elements in the vector as labels. The labels are always character irrespective of whether it is numeric or character or Boolean etc. in the input vector. They are useful in statistical modeling.
Factors are created using the `factor()` function. The `nlevels` functions gives the count of levels.
```{r}
# Create a vector.
apple_colors <- c('green','green','yellow','red','red','red','green')
# Create a factor object.
factor_apple <- factor(apple_colors)
# Print the factor.
print(factor_apple)
print(nlevels(factor_apple))
```
### Data Frames
Data frames are tabular data objects. Unlike a matrix in data frame each column can contain different modes of data. The first column can be numeric while the second column can be character and third column can be logical. It is a list of vectors of equal length.
Data Frames are created using the `data.frame()` function.
```{r}
# Create the data frame.
BMI <- data.frame(
gender = factor(c("Male", "Male","Female")),
height = c(152, 171.5, 165),
weight = c(81,93, 78),
Age = c(42,38,26)
)
print(BMI)
BMI %>%
dplyr::filter(gender == 'Male')
```
# Get your Data into R
```{r}
install.packages("tidyverse")
library(tidyverse)
```
# Clean Your Data and Re-shape it
Dplyr and the Pipe %>%
```{r}
mpg %>%
dplyr::filter(model == 'a4') %>% # return all rows that satisfy conditions
dplyr::arrange(displ, cyl) %>% # reorder your columns
dplyr::mutate(old = year < 2000,
full_Wheel_drive = drv == 'f') %>% # add new preserve old
# dplyr::transmute(full_wheel_drive = drv == 'f') # add new drop old
dplyr::select(-drv) # keep or remove columns
mpg %>%
dplyr::count(model,sort = T) %>%
dplyr::filter(n > 8)# create aggregate stats
```
# Make Some Graphics
```{r}
# ggplot(data = <DATA>) +
# <GEOM_FUNCTION>(mapping = aes(<MAPPINGS>))
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy))
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy, color = class))
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy)) +
facet_wrap(~ class, nrow = 2)
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy)) +
facet_grid(drv ~ cyl)
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy))
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy)) +
geom_smooth(mapping = aes(x = displ, y = hwy))
ggplot(data = mpg, mapping = aes(x = displ, y = hwy)) +
geom_point(mapping = aes(color = class)) +
geom_smooth()
ggplot(data = diamonds) +
geom_bar(mapping = aes(x = cut))
```
# Examples of EDA
```{r}
smaller <- diamonds %>%
filter(carat < 3)
ggplot(data = smaller, mapping = aes(x = carat)) +
geom_histogram(binwidth = 0.3)
ggplot(data = mpg) +
geom_boxplot(mapping = aes(x = reorder(class, hwy, FUN = median), y = hwy))
diamonds %>%
count(color, cut, sort = T) %>%
ggplot(mapping = aes(x = color, y = cut)) +
geom_tile(mapping = aes(fill = n))
```
# import your own data
```{r}
# read in files
data
# paste tribbles
preg <- tribble(
~pregnant, ~male, ~female,
"yes", NA, 10,
"no", 20, 12
)
preg
```
# Party winners
```{r}
# or use the data pasta package
library(datapasta)
# Ease of making ggplots
library(esquisse)
library(ggplot2)
ggplot(data) +
aes(x = carat, y = price) +
geom_point(size = 1L, colour = "#26828e") +
geom_smooth(span = 0.75) +
labs(x = "carat", y = "price", title = "heres my title", subtitle = "a view of diamonds", caption = "hello caption") +
theme_minimal()
data %>%
filter(depth >= 60L & depth <= 79L) %>%
ggplot() +
aes(x = carat, y = price) +
geom_point(size = 0.78, colour = "#000000") +
labs(x = "carat", y = "price", title = "heres my title", subtitle = "a view of diamonds", caption = "hello caption") +
theme_minimal()
data %>%
filter(depth >= 60L & depth <= 79L) %>%
ggplot() +
aes(x = carat, y = price) +
geom_point(size = 0.78, colour = "#000000") +
labs(x = "carat", y = "price", title = "heres my title", subtitle = "a view of diamonds", caption = "hello caption") +
theme_minimal()
# Ray shaded graphics
library(rayshader)
#Here, I load a map with the raster package.
loadzip = tempfile()
download.file("https://tylermw.com/data/dem_01.tif.zip", loadzip)
localtif = raster::raster(unzip(loadzip, "dem_01.tif"))
unlink(loadzip)
#And convert it to a matrix:
elmat = raster_to_matrix(localtif)
#We use another one of rayshader's built-in textures:
elmat %>%
sphere_shade(texture = "desert") %>%
plot_map()
############################################################################
a = data.frame(x = rnorm(20000, 10, 1.9), y = rnorm(20000, 10, 1.2))
b = data.frame(x = rnorm(20000, 14.5, 1.9), y = rnorm(20000, 14.5, 1.9))
c = data.frame(x = rnorm(20000, 9.5, 1.9), y = rnorm(20000, 15.5, 1.9))
data = rbind(a, b, c)
#Lines
pp = ggplot(data, aes(x = x, y = y)) +
geom_hex(bins = 20, size = 0.5, color = "black") +
scale_fill_viridis_c(option = "C")
par(mfrow = c(1, 2))
plot_gg(pp, width = 5, height = 4, scale = 300, raytrace = FALSE, preview = TRUE)
plot_gg(pp, width = 5, height = 4, scale = 300, multicore = TRUE, windowsize = c(1000, 800))
render_camera(fov = 70, zoom = 0.5, theta = 130, phi = 35)
Sys.sleep(0.2)
render_snapshot(clear = TRUE)
par(mfrow = c(1, 1))
plot_gg(pp, width = 5, height = 4, scale = 300, raytrace = FALSE, windowsize = c(1200, 960),
fov = 70, zoom = 0.4, theta = 330, phi = 20, max_error = 0.01, verbose = TRUE)
```
We can't make this file beautiful and searchable because it's too large.
carat,cut,color,clarity,depth,table,price,x,y,z
0.23,Ideal,E,SI2,61.5,55,326,3.95,3.98,2.43
0.21,Premium,E,SI1,59.8,61,326,3.89,3.84,2.31
0.23,Good,E,VS1,56.9,65,327,4.05,4.07,2.31
0.29,Premium,I,VS2,62.4,58,334,4.2,4.23,2.63
0.31,Good,J,SI2,63.3,58,335,4.34,4.35,2.75
0.24,Very Good,J,VVS2,62.8,57,336,3.94,3.96,2.48
0.24,Very Good,I,VVS1,62.3,57,336,3.95,3.98,2.47
0.26,Very Good,H,SI1,61.9,55,337,4.07,4.11,2.53
0.22,Fair,E,VS2,65.1,61,337,3.87,3.78,2.49
0.23,Very Good,H,VS1,59.4,61,338,4,4.05,2.39
0.3,Good,J,SI1,64,55,339,4.25,4.28,2.73
0.23,Ideal,J,VS1,62.8,56,340,3.93,3.9,2.46
0.22,Premium,F,SI1,60.4,61,342,3.88,3.84,2.33
0.31,Ideal,J,SI2,62.2,54,344,4.35,4.37,2.71
0.2,Premium,E,SI2,60.2,62,345,3.79,3.75,2.27
0.32,Premium,E,I1,60.9,58,345,4.38,4.42,2.68
0.3,Ideal,I,SI2,62,54,348,4.31,4.34,2.68
0.3,Good,J,SI1,63.4,54,351,4.23,4.29,2.7
0.3,Good,J,SI1,63.8,56,351,4.23,4.26,2.71
0.3,Very Good,J,SI1,62.7,59,351,4.21,4.27,2.66
0.3,Good,I,SI2,63.3,56,351,4.26,4.3,2.71
0.23,Very Good,E,VS2,63.8,55,352,3.85,3.92,2.48
0.23,Very Good,H,VS1,61,57,353,3.94,3.96,2.41
0.31,Very Good,J,SI1,59.4,62,353,4.39,4.43,2.62
0.31,Very Good,J,SI1,58.1,62,353,4.44,4.47,2.59
0.23,Very Good,G,VVS2,60.4,58,354,3.97,4.01,2.41
0.24,Premium,I,VS1,62.5,57,355,3.97,3.94,2.47
0.3,Very Good,J,VS2,62.2,57,357,4.28,4.3,2.67
0.23,Very Good,D,VS2,60.5,61,357,3.96,3.97,2.4
0.23,Very Good,F,VS1,60.9,57,357,3.96,3.99,2.42
0.23,Very Good,F,VS1,60,57,402,4,4.03,2.41
0.23,Very Good,F,VS1,59.8,57,402,4.04,4.06,2.42
0.23,Very Good,E,VS1,60.7,59,402,3.97,4.01,2.42
0.23,Very Good,E,VS1,59.5,58,402,4.01,4.06,2.4
0.23,Very Good,D,VS1,61.9,58,402,3.92,3.96,2.44
0.23,Good,F,VS1,58.2,59,402,4.06,4.08,2.37
0.23,Good,E,VS1,64.1,59,402,3.83,3.85,2.46
0.31,Good,H,SI1,64,54,402,4.29,4.31,2.75
0.26,Very Good,D,VS2,60.8,59,403,4.13,4.16,2.52
0.33,Ideal,I,SI2,61.8,55,403,4.49,4.51,2.78
0.33,Ideal,I,SI2,61.2,56,403,4.49,4.5,2.75
0.33,Ideal,J,SI1,61.1,56,403,4.49,4.55,2.76
0.26,Good,D,VS2,65.2,56,403,3.99,4.02,2.61
0.26,Good,D,VS1,58.4,63,403,4.19,4.24,2.46
0.32,Good,H,SI2,63.1,56,403,4.34,4.37,2.75
0.29,Premium,F,SI1,62.4,58,403,4.24,4.26,2.65
0.32,Very Good,H,SI2,61.8,55,403,4.35,4.42,2.71
0.32,Good,H,SI2,63.8,56,403,4.36,4.38,2.79
0.25,Very Good,E,VS2,63.3,60,404,4,4.03,2.54
0.29,Very Good,H,SI2,60.7,60,404,4.33,4.37,2.64
0.24,Very Good,F,SI1,60.9,61,404,4.02,4.03,2.45
0.23,Ideal,G,VS1,61.9,54,404,3.93,3.95,2.44
0.32,Ideal,I,SI1,60.9,55,404,4.45,4.48,2.72
0.22,Premium,E,VS2,61.6,58,404,3.93,3.89,2.41
0.22,Premium,D,VS2,59.3,62,404,3.91,3.88,2.31
0.3,Ideal,I,SI2,61,59,405,4.3,4.33,2.63
0.3,Premium,J,SI2,59.3,61,405,4.43,4.38,2.61
0.3,Very Good,I,SI1,62.6,57,405,4.25,4.28,2.67
0.3,Very Good,I,SI1,63,57,405,4.28,4.32,2.71
0.3,Good,I,SI1,63.2,55,405,4.25,4.29,2.7
0.35,Ideal,I,VS1,60.9,57,552,4.54,4.59,2.78
0.3,Premium,D,SI1,62.6,59,552,4.23,4.27,2.66
0.3,Ideal,D,SI1,62.5,57,552,4.29,4.32,2.69
0.3,Ideal,D,SI1,62.1,56,552,4.3,4.33,2.68
0.42,Premium,I,SI2,61.5,59,552,4.78,4.84,2.96
0.28,Ideal,G,VVS2,61.4,56,553,4.19,4.22,2.58
0.32,Ideal,I,VVS1,62,55.3,553,4.39,4.42,2.73
0.31,Very Good,G,SI1,63.3,57,553,4.33,4.3,2.73
0.31,Premium,G,SI1,61.8,58,553,4.35,4.32,2.68
0.24,Premium,E,VVS1,60.7,58,553,4.01,4.03,2.44
0.24,Very Good,D,VVS1,61.5,60,553,3.97,4,2.45
0.3,Very Good,H,SI1,63.1,56,554,4.29,4.27,2.7
0.3,Premium,H,SI1,62.9,59,554,4.28,4.24,2.68
0.3,Premium,H,SI1,62.5,57,554,4.29,4.25,2.67
0.3,Good,H,SI1,63.7,57,554,4.28,4.26,2.72
0.26,Very Good,F,VVS2,59.2,60,554,4.19,4.22,2.49
0.26,Very Good,E,VVS2,59.9,58,554,4.15,4.23,2.51
0.26,Very Good,D,VVS2,62.4,54,554,4.08,4.13,2.56
0.26,Very Good,D,VVS2,62.8,60,554,4.01,4.05,2.53
0.26,Very Good,E,VVS1,62.6,59,554,4.06,4.09,2.55
0.26,Very Good,E,VVS1,63.4,59,554,4,4.04,2.55
0.26,Very Good,D,VVS1,62.1,60,554,4.03,4.12,2.53
0.26,Ideal,E,VVS2,62.9,58,554,4.02,4.06,2.54
0.38,Ideal,I,SI2,61.6,56,554,4.65,4.67,2.87
0.26,Good,E,VVS1,57.9,60,554,4.22,4.25,2.45
0.24,Premium,G,VVS1,62.3,59,554,3.95,3.92,2.45
0.24,Premium,H,VVS1,61.2,58,554,4.01,3.96,2.44
0.24,Premium,H,VVS1,60.8,59,554,4.02,4,2.44
0.24,Premium,H,VVS2,60.7,58,554,4.07,4.04,2.46
0.32,Premium,I,SI1,62.9,58,554,4.35,4.33,2.73
0.7,Ideal,E,SI1,62.5,57,2757,5.7,5.72,3.57
0.86,Fair,E,SI2,55.1,69,2757,6.45,6.33,3.52
0.7,Ideal,G,VS2,61.6,56,2757,5.7,5.67,3.5
0.71,Very Good,E,VS2,62.4,57,2759,5.68,5.73,3.56
0.78,Very Good,G,SI2,63.8,56,2759,5.81,5.85,3.72
0.7,Good,E,VS2,57.5,58,2759,5.85,5.9,3.38
0.7,Good,F,VS1,59.4,62,2759,5.71,5.76,3.4
0.96,Fair,F,SI2,66.3,62,2759,6.27,5.95,4.07
0.73,Very Good,E,SI1,61.6,59,2760,5.77,5.78,3.56
0.8,Premium,H,SI1,61.5,58,2760,5.97,5.93,3.66
0.75,Very Good,D,SI1,63.2,56,2760,5.8,5.75,3.65
0.75,Premium,E,SI1,59.9,54,2760,6,5.96,3.58
0.74,Ideal,G,SI1,61.6,55,2760,5.8,5.85,3.59
0.75,Premium,G,VS2,61.7,58,2760,5.85,5.79,3.59
0.8,Ideal,I,VS1,62.9,56,2760,5.94,5.87,3.72
0.75,Ideal,G,SI1,62.2,55,2760,5.87,5.8,3.63
0.8,Premium,G,SI1,63,59,2760,5.9,5.81,3.69
0.74,Ideal,I,VVS2,62.3,55,2761,5.77,5.81,3.61
0.81,Ideal,F,SI2,58.8,57,2761,6.14,6.11,3.6
0.59,Ideal,E,VVS2,62,55,2761,5.38,5.43,3.35
0.8,Ideal,F,SI2,61.4,57,2761,5.96,6,3.67
0.74,Ideal,E,SI2,62.2,56,2761,5.8,5.84,3.62
0.9,Premium,I,VS2,63,58,2761,6.16,6.12,3.87
0.74,Very Good,G,SI1,62.2,59,2762,5.73,5.82,3.59
0.73,Ideal,F,VS2,62.6,56,2762,5.77,5.74,3.6
0.73,Ideal,F,VS2,62.7,53,2762,5.8,5.75,3.62
0.8,Premium,F,SI2,61.7,58,2762,5.98,5.94,3.68
0.71,Ideal,G,VS2,62.4,54,2762,5.72,5.76,3.58
0.7,Ideal,E,VS2,60.7,58,2762,5.73,5.76,3.49
0.8,Ideal,F,SI2,59.9,59,2762,6.01,6.07,3.62
0.71,Ideal,D,SI2,62.3,56,2762,5.73,5.69,3.56
0.74,Ideal,E,SI1,62.3,54,2762,5.8,5.83,3.62
0.7,Very Good,F,VS2,61.7,63,2762,5.64,5.61,3.47
0.7,Fair,F,VS2,64.5,57,2762,5.57,5.53,3.58
0.7,Fair,F,VS2,65.3,55,2762,5.63,5.58,3.66
0.7,Premium,F,VS2,61.6,60,2762,5.65,5.59,3.46
0.91,Premium,H,SI1,61.4,56,2763,6.09,5.97,3.7
0.61,Very Good,D,VVS2,59.6,57,2763,5.56,5.58,3.32
0.91,Fair,H,SI2,64.4,57,2763,6.11,6.09,3.93
0.91,Fair,H,SI2,65.7,60,2763,6.03,5.99,3.95
0.77,Ideal,H,VS2,62,56,2763,5.89,5.86,3.64
0.71,Very Good,D,SI1,63.6,58,2764,5.64,5.68,3.6
0.71,Ideal,D,SI1,61.9,59,2764,5.69,5.72,3.53
0.7,Very Good,E,VS2,62.6,60,2765,5.62,5.65,3.53
0.77,Very Good,H,VS1,61.3,60,2765,5.88,5.9,3.61
0.63,Premium,E,VVS1,60.9,60,2765,5.52,5.55,3.37
0.71,Very Good,F,VS1,60.1,62,2765,5.74,5.77,3.46
0.71,Premium,F,VS1,61.8,59,2765,5.69,5.73,3.53
0.76,Ideal,H,SI1,61.2,57,2765,5.88,5.91,3.61
0.64,Ideal,G,VVS1,61.9,56,2766,5.53,5.56,3.43
0.71,Premium,G,VS2,60.9,57,2766,5.78,5.75,3.51
0.71,Premium,G,VS2,59.8,56,2766,5.89,5.81,3.5
0.7,Very Good,D,VS2,61.8,55,2767,5.68,5.72,3.52
0.7,Very Good,F,VS1,60,57,2767,5.8,5.87,3.5
0.71,Ideal,D,SI2,61.6,55,2767,5.74,5.76,3.54
0.7,Good,H,VVS2,62.1,64,2767,5.62,5.65,3.5
0.71,Very Good,G,VS1,63.3,59,2768,5.52,5.61,3.52
0.73,Very Good,D,SI1,60.2,56,2768,5.83,5.87,3.52
0.7,Very Good,D,SI1,61.1,58,2768,5.66,5.73,3.48
0.7,Ideal,E,SI1,60.9,57,2768,5.73,5.76,3.5
0.71,Premium,D,SI2,61.7,59,2768,5.71,5.67,3.51
0.74,Ideal,I,SI1,61.3,56,2769,5.82,5.86,3.57
0.71,Premium,D,VS2,62.5,60,2770,5.65,5.61,3.52
0.73,Premium,G,VS2,61.4,59,2770,5.83,5.76,3.56
0.76,Very Good,F,SI1,62.9,57,2770,5.79,5.81,3.65
0.76,Ideal,D,SI2,62.4,57,2770,5.78,5.83,3.62
0.71,Ideal,F,SI1,60.7,56,2770,5.77,5.8,3.51
0.73,Premium,G,VS2,60.7,58,2770,5.87,5.82,3.55
0.73,Premium,G,VS1,61.5,58,2770,5.79,5.75,3.55
0.73,Ideal,D,SI2,59.9,57,2770,5.92,5.89,3.54
0.73,Premium,G,VS2,59.2,59,2770,5.92,5.87,3.49
0.72,Very Good,H,VVS2,60.3,56,2771,5.81,5.83,3.51
0.73,Very Good,F,SI1,61.7,60,2771,5.79,5.82,3.58
0.71,Ideal,G,VS2,61.9,57,2771,5.73,5.77,3.56
0.79,Ideal,F,SI2,61.9,55,2771,5.97,5.92,3.68
0.73,Very Good,H,VVS1,60.4,59,2772,5.83,5.89,3.54
0.8,Very Good,F,SI2,61,57,2772,6.01,6.03,3.67
0.58,Ideal,G,VVS1,61.5,55,2772,5.39,5.44,3.33
0.58,Ideal,F,VVS1,61.7,56,2772,5.33,5.37,3.3
0.71,Good,E,VS2,59.2,61,2772,5.8,5.88,3.46
0.75,Ideal,D,SI2,61.3,56,2773,5.85,5.89,3.6
0.7,Premium,D,VS2,58,62,2773,5.87,5.78,3.38
1.17,Very Good,J,I1,60.2,61,2774,6.83,6.9,4.13
0.6,Ideal,E,VS1,61.7,55,2774,5.41,5.44,3.35
0.7,Ideal,E,SI1,62.7,55,2774,5.68,5.74,3.58
0.83,Good,I,VS2,64.6,54,2774,5.85,5.88,3.79
0.74,Very Good,F,VS2,61.3,61,2775,5.8,5.84,3.57
0.72,Very Good,G,VS2,63.7,56.4,2776,5.62,5.69,3.61
0.71,Premium,E,VS2,62.7,58,2776,5.74,5.68,3.58
0.71,Ideal,E,VS2,62.2,57,2776,5.79,5.62,3.55
0.54,Ideal,E,VVS2,61.6,56,2776,5.25,5.27,3.24
0.54,Ideal,E,VVS2,61.5,57,2776,5.24,5.26,3.23
0.72,Ideal,G,SI1,61.8,56,2776,5.72,5.75,3.55
0.72,Ideal,G,SI1,60.7,56,2776,5.79,5.82,3.53
0.72,Good,G,VS2,59.7,60.5,2776,5.8,5.84,3.47
0.71,Ideal,G,SI1,60.5,56,2776,5.8,5.76,3.5
0.7,Very Good,D,VS1,62.7,58,2777,5.66,5.73,3.57
0.71,Premium,F,VS2,62.1,58,2777,5.67,5.7,3.53
0.71,Very Good,F,VS2,62.8,57,2777,5.64,5.69,3.56
0.71,Good,F,VS2,63.8,58,2777,5.61,5.64,3.59
0.71,Good,F,VS2,57.8,60,2777,5.87,5.9,3.4
0.7,Ideal,E,VS2,62.1,55,2777,5.7,5.67,3.53
0.7,Premium,E,VS2,61.1,60,2777,5.71,5.64,3.47
0.7,Premium,E,SI1,60,59,2777,5.79,5.75,3.46
0.7,Premium,E,SI1,61.2,57,2777,5.73,5.68,3.49
0.7,Premium,E,SI1,62.7,59,2777,5.67,5.63,3.54
0.7,Premium,E,SI1,61,57,2777,5.73,5.68,3.48
0.7,Premium,E,SI1,61,58,2777,5.78,5.72,3.51
0.7,Ideal,E,SI1,61.4,57,2777,5.76,5.7,3.52
0.72,Premium,F,SI1,61.8,61,2777,5.82,5.71,3.56
0.7,Very Good,E,SI1,59.9,63,2777,5.76,5.7,3.43
0.7,Premium,E,SI1,61.3,58,2777,5.71,5.68,3.49
0.7,Premium,E,SI1,60.5,58,2777,5.77,5.74,3.48
0.7,Good,E,VS2,64.1,59,2777,5.64,5.59,3.6
0.98,Fair,H,SI2,67.9,60,2777,6.05,5.97,4.08
0.78,Premium,F,SI1,62.4,58,2777,5.83,5.8,3.63
0.7,Very Good,E,SI1,63.2,60,2777,5.6,5.51,3.51
0.52,Ideal,F,VVS1,61.3,55,2778,5.19,5.22,3.19
0.73,Very Good,H,VS2,60.8,56,2779,5.82,5.84,3.55
0.74,Ideal,E,SI1,61.7,56,2779,5.84,5.8,3.59
0.7,Very Good,F,VS2,63.6,57,2780,5.61,5.65,3.58
0.77,Premium,G,VS2,61.2,58,2780,5.9,5.93,3.62
0.71,Ideal,F,VS2,62.1,54,2780,5.68,5.72,3.54
0.74,Ideal,G,VS1,61.5,55,2780,5.81,5.86,3.59
0.7,Ideal,G,VS1,61.4,59,2780,5.64,5.73,3.49
1.01,Premium,F,I1,61.8,60,2781,6.39,6.36,3.94
0.77,Ideal,H,SI1,62.2,56,2781,5.83,5.88,3.64
0.78,Ideal,H,SI1,61.2,56,2781,5.92,5.99,3.64
0.72,Very Good,H,VS1,60.6,63,2782,5.83,5.76,3.51
0.53,Very Good,D,VVS2,57.5,64,2782,5.34,5.37,3.08
0.76,Ideal,G,VS2,61.3,56,2782,5.9,5.94,3.63
0.7,Good,E,VS1,57.2,62,2782,5.81,5.77,3.31
0.7,Premium,E,VS1,62.9,60,2782,5.62,5.54,3.51
0.75,Very Good,D,SI2,63.1,58,2782,5.78,5.73,3.63
0.72,Ideal,D,SI1,60.8,57,2782,5.76,5.75,3.5
0.72,Premium,D,SI1,62.7,59,2782,5.73,5.69,3.58
0.7,Premium,D,SI1,62.8,60,2782,5.68,5.66,3.56
0.84,Fair,G,SI1,55.1,67,2782,6.39,6.2,3.47
0.75,Premium,F,SI1,61.4,59,2782,5.88,5.85,3.6
0.52,Ideal,F,IF,62.2,55,2783,5.14,5.18,3.21
0.72,Very Good,F,VS2,63,54,2784,5.69,5.73,3.6
0.79,Very Good,H,VS1,63.7,56,2784,5.85,5.92,3.75
0.72,Very Good,F,VS2,63.6,58,2787,5.66,5.69,3.61
0.51,Ideal,F,VVS1,62,57,2787,5.11,5.15,3.18
0.64,Ideal,D,VS1,61.5,56,2787,5.54,5.55,3.41
0.7,Very Good,H,VVS1,60.5,60,2788,5.74,5.77,3.48
0.83,Very Good,I,VS1,61.1,60,2788,6.07,6.1,3.72
0.76,Ideal,I,VVS2,61.8,56,2788,5.85,5.87,3.62
0.71,Good,D,VS2,63.3,56,2788,5.64,5.68,3.58
0.77,Good,G,VS1,59.4,64,2788,5.97,5.92,3.53
0.71,Ideal,F,SI1,62.5,55,2788,5.71,5.65,3.55
1.01,Fair,E,I1,64.5,58,2788,6.29,6.21,4.03
1.01,Premium,H,SI2,62.7,59,2788,6.31,6.22,3.93
0.77,Good,F,SI1,64.2,52,2789,5.81,5.77,3.72
0.76,Good,E,SI1,63.7,54,2789,5.76,5.85,3.7
0.76,Premium,E,SI1,60.4,58,2789,5.92,5.94,3.58
0.76,Premium,E,SI1,61.8,58,2789,5.82,5.86,3.61
1.05,Very Good,J,SI2,63.2,56,2789,6.49,6.45,4.09
0.81,Ideal,G,SI2,61.6,56,2789,5.97,6.01,3.69
0.7,Ideal,E,SI1,61.6,56,2789,5.72,5.75,3.53
0.55,Ideal,G,IF,60.9,57,2789,5.28,5.3,3.22
0.81,Good,G,SI2,61,61,2789,5.94,5.99,3.64
0.63,Premium,E,VVS2,62.1,57,2789,5.48,5.41,3.38
0.63,Premium,E,VVS1,60.9,60,2789,5.55,5.52,3.37
0.77,Premium,H,VS1,61.3,60,2789,5.9,5.88,3.61
1.05,Fair,J,SI2,65.8,59,2789,6.41,6.27,4.18
0.64,Ideal,G,IF,61.3,56,2790,5.54,5.58,3.41
0.76,Premium,I,VVS1,58.8,59,2790,6,5.94,3.51
0.83,Ideal,F,SI2,62.3,55,2790,6.02,6.05,3.76
0.71,Premium,F,VS1,60.1,62,2790,5.77,5.74,3.46
0.71,Premium,F,VS1,61.8,59,2790,5.73,5.69,3.53
0.87,Very Good,I,SI1,63.6,55.8,2791,6.07,6.1,3.87
0.73,Ideal,E,SI1,62.2,56,2791,5.74,5.78,3.58
0.71,Premium,E,SI1,59.2,59,2792,5.83,5.86,3.46
0.71,Premium,E,SI1,61.8,59,2792,5.7,5.75,3.54
0.71,Ideal,E,SI1,61.3,55,2792,5.72,5.77,3.52
0.7,Premium,F,VS1,62.1,60,2792,5.71,5.65,3.53
0.7,Premium,F,VS1,60.7,60,2792,5.78,5.75,3.5
0.76,Premium,H,VVS2,59.6,57,2792,5.91,5.86,3.51
0.7,Ideal,F,VS1,62.2,56,2792,5.73,5.68,3.55
0.79,Very Good,G,SI1,60.6,57,2793,5.98,6.06,3.65
0.7,Very Good,E,VS2,62.9,57,2793,5.66,5.69,3.57
0.7,Good,E,VS2,64.1,55,2793,5.6,5.66,3.61
0.76,Ideal,I,VS2,61.3,56,2793,5.87,5.91,3.61
0.73,Ideal,H,VS2,62.7,55,2793,5.72,5.76,3.6
0.79,Very Good,E,SI1,63.2,56,2794,5.91,5.86,3.72
0.71,Very Good,E,VS2,60.7,56,2795,5.81,5.82,3.53
0.81,Premium,I,VVS2,61.9,60,2795,5.91,5.86,3.64
0.81,Ideal,F,SI2,62.6,55,2795,5.92,5.96,3.72
0.72,Good,F,VS1,60.7,60,2795,5.74,5.72,3.48
0.72,Premium,D,SI2,62,60,2795,5.73,5.69,3.54
0.72,Premium,I,IF,63,57,2795,5.72,5.7,3.6
0.81,Premium,H,VS2,58,59,2795,6.17,6.13,3.57
0.72,Premium,G,VS2,62.9,57,2795,5.73,5.65,3.58
1,Premium,I,SI2,58.2,60,2795,6.61,6.55,3.83
0.73,Good,E,SI1,63.2,58,2796,5.7,5.76,3.62
0.81,Very Good,H,SI2,61.3,59,2797,5.94,6.01,3.66
0.81,Very Good,E,SI1,60.3,60,2797,6.07,6.1,3.67
0.71,Premium,D,SI1,62.7,60,2797,5.67,5.71,3.57
0.71,Premium,D,SI1,61.3,58,2797,5.73,5.75,3.52
0.71,Premium,D,SI1,61.6,60,2797,5.74,5.69,3.52
0.57,Ideal,F,VVS2,61.9,55,2797,5.34,5.35,3.31
0.51,Ideal,D,VVS1,61.7,56,2797,5.12,5.16,3.17
0.72,Ideal,G,VS2,61.9,58,2797,5.72,5.75,3.55
0.74,Ideal,H,VS1,61.8,58,2797,5.77,5.81,3.58
0.74,Ideal,H,VS1,61.6,56,2797,5.81,5.82,3.58
0.7,Fair,G,VVS1,58.8,66,2797,5.81,5.9,3.44
0.8,Premium,F,SI2,61,57,2797,6.03,6.01,3.67
1.01,Fair,E,SI2,67.4,60,2797,6.19,6.05,4.13
0.8,Very Good,H,VS2,63.4,60,2797,5.92,5.82,3.72
0.77,Ideal,I,VS1,61.5,59,2798,5.87,5.91,3.62
0.83,Very Good,E,SI2,58,62,2799,6.19,6.25,3.61
0.82,Ideal,F,SI2,62.4,54,2799,5.97,6.02,3.74
0.78,Ideal,D,SI1,61.9,57,2799,5.91,5.86,3.64
0.6,Very Good,G,IF,61.6,56,2800,5.43,5.46,3.35
0.9,Good,I,SI2,62.2,59,2800,6.07,6.11,3.79
0.7,Premium,E,VS1,62.2,58,2800,5.6,5.66,3.5
0.9,Very Good,I,SI2,61.3,56,2800,6.17,6.23,3.8
0.83,Ideal,G,SI1,62.3,57,2800,5.99,6.08,3.76
0.83,Ideal,G,SI1,61.8,57,2800,6.03,6.07,3.74
0.83,Very Good,H,SI1,62.5,59,2800,5.95,6.02,3.74
0.74,Premium,G,VS1,62.9,60,2800,5.74,5.68,3.59
0.79,Ideal,I,VS1,61.8,59,2800,5.92,5.95,3.67
0.61,Ideal,G,IF,62.3,56,2800,5.43,5.45,3.39
0.76,Fair,G,VS1,59,70,2800,5.89,5.8,3.46
0.96,Ideal,F,I1,60.7,55,2801,6.37,6.41,3.88
0.73,Ideal,F,VS2,62.5,55,2801,5.8,5.76,3.61
0.73,Premium,F,VS2,62.7,58,2801,5.76,5.7,3.59
0.75,Ideal,H,SI1,60.4,57,2801,5.93,5.96,3.59
0.71,Premium,F,VS2,62.1,58,2801,5.7,5.67,3.53
0.71,Good,F,VS2,57.8,60,2801,5.9,5.87,3.4
0.71,Good,F,VS2,63.8,58,2801,5.64,5.61,3.59
0.71,Premium,F,VS2,62.8,57,2801,5.69,5.64,3.56
1.04,Premium,G,I1,62.2,58,2801,6.46,6.41,4
1,Premium,J,SI2,62.3,58,2801,6.45,6.34,3.98
0.87,Very Good,G,SI2,59.9,58,2802,6.19,6.23,3.72
0.53,Ideal,F,IF,61.9,54,2802,5.22,5.25,3.24
0.72,Premium,E,VS2,63,55,2802,5.79,5.61,3.59
0.72,Premium,F,VS1,62.4,58,2802,5.83,5.7,3.6
0.7,Very Good,F,VS2,62.9,58,2803,5.63,5.65,3.55
0.74,Very Good,E,SI1,63.5,56,2803,5.74,5.79,3.66
0.71,Ideal,G,VS2,61.3,56,2803,5.75,5.71,3.51
0.73,Ideal,E,SI1,60.6,54,2803,5.84,5.89,3.55
0.7,Good,G,VS1,65.1,58,2803,5.56,5.59,3.63
0.71,Premium,F,VS2,62.6,58,2803,5.7,5.67,3.56
0.71,Premium,F,VS2,58,62,2803,5.85,5.81,3.38
0.71,Premium,G,VS1,62.4,61,2803,5.7,5.65,3.54
0.77,Premium,G,VS2,61.3,57,2803,5.93,5.88,3.62
0.71,Premium,G,VS2,59.9,60,2803,5.81,5.77,3.47
0.78,Premium,G,VS2,60.8,58,2803,6.03,5.95,3.64
0.71,Very Good,G,VS1,63.5,55,2803,5.66,5.64,3.59
0.91,Ideal,D,SI2,62.2,57,2803,6.21,6.15,3.85
0.71,Very Good,E,VS2,63.8,58,2804,5.62,5.66,3.6
0.71,Very Good,E,VS2,64,57,2804,5.66,5.68,3.63
0.8,Very Good,E,SI2,62.5,56,2804,5.88,5.96,3.7
0.7,Very Good,D,SI1,62.3,58,2804,5.69,5.73,3.56
0.72,Ideal,F,VS1,61.7,57,2804,5.74,5.77,3.55
0.72,Very Good,F,VS1,62.2,58,2804,5.75,5.7,3.56
0.82,Ideal,H,VS2,61.5,56,2804,6.01,6.08,3.72
0.7,Ideal,D,SI1,61,59,2804,5.68,5.7,3.47
0.72,Ideal,D,SI1,62.2,56,2804,5.74,5.77,3.58
0.72,Ideal,D,SI1,61.5,54,2804,5.77,5.8,3.56
0.9,Fair,I,SI1,67.3,59,2804,5.93,5.84,3.96
0.74,Premium,F,VS2,61.7,58,2805,5.85,5.78,3.59
0.74,Premium,F,VS2,61.9,56,2805,5.8,5.77,3.58
0.73,Ideal,E,SI2,61.8,58,2805,5.77,5.81,3.58
0.57,Fair,E,VVS1,58.7,66,2805,5.34,5.43,3.16
0.73,Premium,F,VS2,62.5,57,2805,5.75,5.7,3.58
0.72,Ideal,G,VS2,62.8,56,2805,5.74,5.7,3.59
0.74,Fair,F,VS2,61.1,68,2805,5.82,5.75,3.53
0.82,Good,G,VS2,64,57,2805,5.92,5.89,3.78
0.81,Very Good,G,SI1,62.5,60,2806,5.89,5.94,3.69
0.75,Very Good,H,VVS1,60.6,58,2806,5.85,5.9,3.56
0.7,Ideal,F,SI1,61.6,55,2806,5.72,5.74,3.53
0.71,Very Good,F,VS1,62.2,58,2807,5.66,5.72,3.54
0.71,Very Good,F,VS1,60,57,2807,5.84,5.9,3.52
0.93,Premium,J,SI2,61.9,57,2807,6.21,6.19,3.84
0.8,Very Good,H,VS2,62.8,57,2808,5.87,5.91,3.7
0.7,Very Good,F,VS1,62,57,2808,5.64,5.71,3.52
1,Fair,G,I1,66.4,59,2808,6.16,6.09,4.07
0.75,Very Good,G,VS2,63.4,56,2808,5.78,5.74,3.65
0.58,Ideal,E,VVS2,60.9,56,2808,5.41,5.43,3.3
0.73,Very Good,D,SI1,63.1,57,2808,5.74,5.7,3.61
0.81,Very Good,F,SI1,63.1,59,2809,5.85,5.79,3.67
0.81,Premium,D,SI2,59.2,57,2809,6.15,6.05,3.61
0.71,Premium,F,SI1,60.7,54,2809,5.84,5.8,3.53
1.2,Fair,F,I1,64.6,56,2809,6.73,6.66,4.33
0.7,Very Good,F,VS1,61.8,56,2810,5.63,5.7,3.5
0.7,Very Good,F,VS1,59.9,60,2810,5.77,5.84,3.48
0.74,Ideal,D,SI2,61.7,55,2810,5.81,5.85,3.6
0.7,Good,F,VS1,62.8,61,2810,5.57,5.61,3.51
0.8,Good,G,SI1,62.7,57,2810,5.84,5.93,3.69
0.75,Very Good,F,SI1,63.4,58,2811,5.72,5.76,3.64
0.83,Very Good,D,SI1,63.5,54,2811,5.98,5.95,3.79
1,Fair,J,VS2,65.7,59,2811,6.14,6.07,4.01
0.99,Fair,I,SI2,68.1,56,2811,6.21,6.06,4.18
0.7,Very Good,G,VS1,63,60,2812,5.57,5.64,3.53
0.7,Very Good,F,VS2,59.5,58,2812,5.75,5.85,3.45
0.7,Good,E,SI1,63.5,59,2812,5.49,5.53,3.5
0.7,Very Good,F,VS2,61.7,58,2812,5.63,5.69,3.49
0.32,Premium,I,SI1,62.7,58,554,4.37,4.34,2.73
0.32,Premium,I,SI1,62.8,58,554,4.39,4.34,2.74
0.32,Ideal,I,SI1,62.4,57,554,4.37,4.35,2.72
0.32,Premium,I,SI1,61,59,554,4.39,4.36,2.67
0.32,Very Good,I,SI1,63.1,56,554,4.39,4.36,2.76
0.32,Ideal,I,SI1,60.7,57,554,4.47,4.42,2.7
0.3,Premium,H,SI1,60.9,59,554,4.31,4.29,2.62
0.3,Premium,H,SI1,60.1,55,554,4.41,4.38,2.64
0.3,Premium,H,SI1,62.9,58,554,4.28,4.24,2.68
0.3,Very Good,H,SI1,63.3,56,554,4.29,4.27,2.71
0.3,Good,H,SI1,63.8,55,554,4.26,4.2,2.7
0.3,Ideal,H,SI1,62.9,57,554,4.27,4.22,2.67
0.3,Very Good,H,SI1,63.4,60,554,4.25,4.23,2.69
0.32,Good,I,SI1,63.9,55,554,4.36,4.34,2.78
0.33,Ideal,H,SI2,61.4,56,554,4.85,4.79,2.95
0.29,Very Good,E,VS1,61.9,55,555,4.28,4.33,2.66
0.29,Very Good,E,VS1,62.4,55,555,4.2,4.25,2.63
0.31,Very Good,F,SI1,61.8,58,555,4.32,4.35,2.68
0.34,Ideal,H,VS2,61.5,56,555,4.47,4.5,2.76
0.34,Ideal,H,VS2,60.4,57,555,4.54,4.57,2.75
0.34,Ideal,I,VS1,61.8,55,555,4.48,4.52,2.78
0.34,Ideal,I,VS1,62,56,555,4.5,4.53,2.8
0.3,Ideal,G,VS1,62.3,56,555,4.29,4.31,2.68
0.29,Ideal,F,VS1,61.6,56,555,4.26,4.31,2.64
0.35,Ideal,G,SI1,60.6,56,555,4.56,4.58,2.77
0.43,Very Good,E,I1,58.4,62,555,4.94,5,2.9
0.32,Very Good,F,VS2,61.4,58,556,4.37,4.42,2.7
0.36,Ideal,I,VS2,61.9,56,556,4.54,4.57,2.82
0.3,Ideal,G,VS2,62,56,556,4.28,4.3,2.66
0.26,Ideal,E,VS1,61.5,57,556,4.09,4.12,2.52
0.7,Very Good,F,VS2,62.3,58,2812,5.64,5.72,3.54
0.7,Very Good,F,VS2,60.9,61,2812,5.66,5.71,3.46
0.71,Ideal,D,SI1,62.4,57,2812,5.69,5.72,3.56
0.99,Fair,J,SI1,55,61,2812,6.72,6.67,3.68
0.73,Premium,E,VS2,58.6,60,2812,5.92,5.89,3.46
0.51,Ideal,F,VVS1,62,57,2812,5.15,5.11,3.18
0.91,Premium,G,SI2,59.8,58,2813,6.3,6.29,3.77
0.84,Very Good,E,SI1,63.4,55,2813,6,5.95,3.79
0.91,Good,I,VS2,64.3,58,2813,6.09,6.05,3.9
0.76,Premium,E,SI1,62.2,59,2814,5.86,5.81,3.63
0.76,Ideal,E,SI1,61.7,57,2814,5.88,5.85,3.62
0.75,Premium,E,SI1,61.1,59,2814,5.86,5.83,3.57
0.55,Very Good,D,VVS1,61.5,56,2815,5.23,5.27,3.23
0.76,Very Good,F,SI2,58.5,62,2815,5.93,6.01,3.49
0.74,Premium,G,VS1,61.7,58,2815,5.79,5.81,3.58
0.7,Ideal,H,SI1,60.4,56,2815,5.75,5.81,3.49
0.7,Ideal,H,SI1,61.4,56,2815,5.7,5.76,3.52
0.7,Ideal,H,SI1,61.5,55,2815,5.73,5.79,3.54
0.7,Ideal,H,SI1,61.4,56,2815,5.72,5.77,3.53
0.9,Fair,J,VS2,65,56,2815,6.08,6.04,3.94
0.95,Fair,F,SI2,56,60,2815,6.62,6.53,3.68
0.89,Premium,H,SI2,60.2,59,2815,6.26,6.23,3.76
0.72,Premium,E,VS2,58.3,58,2815,5.99,5.92,3.47
0.96,Fair,E,SI2,53.1,63,2815,6.73,6.65,3.55
1.02,Premium,G,I1,60.3,58,2815,6.55,6.5,3.94
0.78,Very Good,I,VVS2,61.4,56,2816,5.91,5.95,3.64
0.61,Ideal,G,VVS2,60.1,57,2816,5.52,5.54,3.32
0.71,Good,D,VS1,63.4,55,2816,5.61,5.69,3.58
0.78,Premium,F,SI1,61.5,59,2816,5.96,5.88,3.64
0.87,Ideal,H,SI2,62.7,56,2816,6.16,6.13,3.85
0.83,Ideal,H,SI1,62.5,55,2816,6.04,6,3.76
0.71,Premium,E,SI1,61.3,56,2817,5.78,5.73,3.53
0.71,Ideal,I,VVS2,60.2,56,2817,5.84,5.89,3.53
0.71,Ideal,E,VS2,62.7,57,2817,5.66,5.64,3.54
0.71,Premium,E,VS2,62.3,58,2817,5.69,5.65,3.53
0.63,Ideal,F,VVS2,61.5,56,2817,5.48,5.52,3.38
0.71,Premium,E,SI1,59.2,59,2817,5.86,5.83,3.46
0.71,Premium,E,SI1,61.8,59,2817,5.75,5.7,3.54
0.71,Ideal,E,SI1,61.3,55,2817,5.77,5.72,3.52
0.71,Premium,E,SI1,61.4,58,2817,5.77,5.73,3.53
0.9,Ideal,J,VS2,62.8,55,2817,6.2,6.16,3.88
0.71,Good,E,SI1,62.8,64,2817,5.6,5.54,3.5
0.7,Premium,E,VS2,62.4,61,2818,5.66,5.63,3.52
0.7,Premium,E,VS2,59.3,60,2818,5.78,5.73,3.41
0.7,Premium,E,VS2,63,60,2818,5.64,5.6,3.54
1,Premium,H,I1,61.3,60,2818,6.43,6.39,3.93
0.86,Premium,F,SI2,59.3,62,2818,6.36,6.22,3.73
0.8,Ideal,H,SI1,61,57,2818,6.07,6,3.68
0.7,Ideal,E,VS1,62.9,57,2818,5.66,5.61,3.54
0.7,Premium,E,VS1,59.6,57,2818,5.91,5.83,3.5
0.7,Premium,F,VS2,61.8,60,2818,5.69,5.64,3.5
0.7,Premium,E,VS1,62.7,57,2818,5.68,5.64,3.55
1,Fair,H,SI2,65.3,62,2818,6.34,6.12,4.08
0.72,Very Good,G,VS1,63.8,58,2819,5.64,5.68,3.61
0.72,Ideal,H,VS1,62.3,56,2819,5.73,5.77,3.58
0.7,Good,F,VS1,59.7,63,2819,5.76,5.79,3.45
0.86,Good,F,SI2,64.3,60,2819,5.97,5.95,3.83
0.71,Ideal,G,VS1,62.9,58,2820,5.66,5.69,3.57
0.75,Ideal,E,SI1,62,57,2821,5.8,5.78,3.59
0.73,Premium,E,VS2,61.6,59,2821,5.77,5.73,3.54
0.53,Ideal,E,VVS1,61.9,55,2821,5.2,5.21,3.22
0.73,Premium,E,SI1,61.3,58,2821,5.83,5.76,3.55
0.73,Good,E,SI1,63.6,57,2821,5.72,5.7,3.63
0.73,Premium,E,SI1,59.6,61,2821,5.92,5.85,3.51
0.73,Premium,E,SI1,62.2,59,2821,5.77,5.68,3.56
0.73,Premium,D,SI1,61.7,55,2821,5.84,5.82,3.6
0.73,Very Good,E,SI1,63.2,58,2821,5.76,5.7,3.62
0.7,Premium,E,VS1,60.8,60,2822,5.74,5.71,3.48
0.72,Premium,E,VS2,60.3,59,2822,5.84,5.8,3.51
0.72,Premium,E,VS2,60.9,60,2822,5.8,5.76,3.52
0.72,Premium,E,VS2,62.4,59,2822,5.77,5.7,3.58
0.7,Premium,E,VS2,60.2,60,2822,5.73,5.7,3.44
0.6,Ideal,F,VVS2,62,55,2822,5.37,5.4,3.34
0.74,Ideal,I,VVS1,60.8,57,2822,5.85,5.89,3.57
0.73,Ideal,F,SI1,62.1,55,2822,5.75,5.78,3.58
0.71,Premium,D,SI1,62.7,60,2822,5.71,5.67,3.57
0.71,Premium,D,SI1,61.3,58,2822,5.75,5.73,3.52
0.7,Premium,D,SI1,60.2,60,2822,5.82,5.75,3.48
0.7,Ideal,D,SI1,60.7,56,2822,5.75,5.72,3.48
0.9,Good,J,VS2,64,61,2822,6.04,6.03,3.86
0.71,Ideal,D,SI1,60.2,56,2822,5.86,5.83,3.52
0.7,Premium,E,VS2,61.5,59,2822,5.73,5.68,3.51
0.7,Premium,E,VS2,62.6,56,2822,5.71,5.66,3.56
0.7,Ideal,D,SI1,59.7,58,2822,5.82,5.77,3.46
0.7,Good,E,SI1,61.4,64,2822,5.71,5.66,3.49
0.7,Ideal,D,SI1,62.5,57,2822,5.62,5.59,3.51
0.7,Ideal,D,SI1,61.8,56,2822,5.73,5.63,3.51
0.7,Premium,E,VS2,60.7,62,2822,5.72,5.68,3.46
0.7,Premium,F,VS2,60.6,58,2822,5.8,5.72,3.49
0.7,Ideal,D,SI1,61.4,54,2822,5.75,5.71,3.52
0.79,Very Good,D,SI2,62.8,59,2823,5.86,5.9,3.69
0.9,Good,I,SI1,63.8,57,2823,6.06,6.13,3.89
0.71,Premium,E,VS2,62.3,58,2823,5.71,5.66,3.54
0.61,Ideal,E,VVS2,61.3,54,2823,5.51,5.59,3.4
0.9,Fair,H,SI2,65.8,54,2823,6.05,5.98,3.96
0.71,Ideal,E,SI1,60.5,56,2823,5.77,5.73,3.47
0.71,Premium,D,VS2,61.2,59,2824,5.74,5.69,3.5
0.77,Ideal,I,VVS2,62.1,57,2824,5.84,5.86,3.63
0.74,Good,E,VS1,63.1,58,2824,5.73,5.75,3.62
0.82,Ideal,F,SI2,62.4,54,2824,6.02,5.97,3.74
0.82,Premium,E,SI2,60.8,60,2824,6.05,6.03,3.67
0.71,Premium,G,VS1,62.2,59,2825,5.73,5.66,3.54
0.83,Premium,H,SI1,60,59,2825,6.08,6.05,3.64
0.73,Very Good,G,VS1,62,57,2825,5.75,5.8,3.58
0.83,Premium,H,SI1,62.5,59,2825,6.02,5.95,3.74
1.17,Premium,J,I1,60.2,61,2825,6.9,6.83,4.13
0.91,Fair,H,SI2,61.3,67,2825,6.24,6.19,3.81
0.73,Premium,E,VS1,62.6,60,2826,5.75,5.68,3.58
0.7,Good,E,VS1,57.2,59,2826,5.94,5.88,3.38
0.9,Premium,I,SI2,62.2,59,2826,6.11,6.07,3.79
0.7,Premium,E,VS1,62.2,58,2826,5.66,5.6,3.5
0.7,Very Good,D,VS2,63.3,56,2826,5.6,5.58,3.54
0.7,Premium,E,VS1,59.4,61,2826,5.78,5.74,3.42
0.9,Very Good,I,SI2,63.5,56,2826,6.17,6.07,3.88
0.78,Premium,F,SI1,60.8,60,2826,5.97,5.94,3.62
0.96,Ideal,F,I1,60.7,55,2826,6.41,6.37,3.88
0.7,Very Good,D,SI1,62.3,59,2827,5.67,5.7,3.54
0.72,Good,D,VS2,64,54,2827,5.68,5.7,3.64
0.79,Premium,H,VVS2,62.6,58,2827,5.96,5.9,3.71
0.7,Ideal,H,VVS1,61.6,57,2827,5.69,5.74,3.52
0.7,Ideal,H,VVS1,62.3,55,2827,5.66,5.7,3.54
0.7,Ideal,D,SI2,60.6,57,2828,5.74,5.77,3.49
1.01,Premium,H,SI2,61.6,61,2828,6.39,6.31,3.91
0.72,Premium,F,VS1,62.2,58,2829,5.75,5.7,3.56
0.8,Good,E,SI2,63.7,54,2829,5.91,5.87,3.75
0.59,Ideal,E,VVS1,62,56,2829,5.36,5.38,3.33
0.72,Ideal,F,VS1,61.7,57,2829,5.77,5.74,3.55
0.75,Premium,E,SI2,61.9,57,2829,5.88,5.82,3.62
0.8,Premium,E,SI2,60.2,57,2829,6.05,6.01,3.63
0.71,Very Good,E,VS2,62.7,59,2830,5.65,5.7,3.56
0.77,Very Good,H,SI1,61.7,56,2830,5.84,5.89,3.62
0.97,Ideal,F,I1,60.7,56,2830,6.41,6.43,3.9
0.53,Ideal,F,VVS1,60.9,57,2830,5.23,5.29,3.19
0.53,Ideal,F,VVS1,61.8,57,2830,5.16,5.19,3.2
0.8,Ideal,I,VS2,62.1,54.4,2830,5.94,5.99,3.7
0.9,Premium,G,SI1,60.6,62,2830,6.21,6.13,3.74
0.76,Very Good,E,SI2,60.8,60,2831,5.89,5.98,3.61
0.72,Ideal,E,SI1,62.3,57,2831,5.7,5.76,3.57
0.75,Ideal,E,SI1,61.4,57,2831,5.82,5.87,3.59
0.72,Premium,E,SI1,62.1,58,2831,5.73,5.76,3.57
0.79,Ideal,G,SI1,61.8,56,2831,5.93,5.91,3.66
0.72,Very Good,F,VS2,62.5,58,2832,5.71,5.75,3.58
0.91,Very Good,I,SI2,62.8,61,2832,6.15,6.18,3.87
0.71,Premium,G,VVS2,62.1,57,2832,5.75,5.65,3.54
0.81,Premium,G,SI1,63,60,2832,5.87,5.81,3.68
0.82,Ideal,H,SI1,62.5,57,2832,5.91,5.97,3.71
0.71,Premium,F,VS1,62.2,58,2832,5.72,5.66,3.54
0.9,Good,J,SI1,64.3,63,2832,6.05,6.01,3.88
0.8,Very Good,I,VS2,62,58,2833,5.86,5.95,3.66
0.56,Very Good,E,IF,61,59,2833,5.28,5.34,3.24
0.7,Very Good,D,VS2,59.6,61,2833,5.77,5.8,3.45
0.7,Ideal,D,VS2,61,57,2833,5.74,5.76,3.51
0.61,Ideal,F,VVS2,61.7,55,2833,5.45,5.48,3.37
0.85,Ideal,H,SI2,62.5,57,2833,6.02,6.07,3.78
0.7,Ideal,F,SI1,60.7,57,2833,5.73,5.75,3.49
0.8,Ideal,G,VS2,62.2,56,2834,5.94,5.87,3.67
0.8,Ideal,H,VS2,62.8,57,2834,5.91,5.87,3.7
0.51,Very Good,D,VVS1,59.9,58,2834,5.16,5.19,3.1
0.53,Ideal,F,VVS1,61.4,57,2834,5.2,5.23,3.2
0.78,Ideal,I,VS2,61.8,55,2834,5.92,5.95,3.67
0.9,Very Good,J,SI1,63.4,54,2834,6.17,6.14,3.9
0.9,Fair,G,SI2,65.3,59,2834,6.07,6,3.94
0.77,Ideal,E,SI2,60.7,55,2834,6.01,5.95,3.63
0.73,Ideal,F,VS1,61.2,56,2835,5.89,5.81,3.58
0.63,Ideal,F,VVS2,61.9,57,2835,5.47,5.51,3.4
0.7,Ideal,E,VS2,61.5,54,2835,5.7,5.75,3.52
0.72,Ideal,E,VS2,62.8,57,2835,5.71,5.73,3.59
0.72,Ideal,E,SI1,61,57,2835,5.78,5.8,3.53
0.75,Premium,F,VS2,59.6,59,2835,6.04,5.94,3.57
0.82,Very Good,H,SI1,60.7,56,2836,6.04,6.06,3.67
0.71,Good,E,VS2,62.8,60,2836,5.6,5.65,3.53
0.7,Premium,E,VS1,62.6,59,2837,5.69,5.66,3.55
0.7,Ideal,E,VS1,61.8,56,2837,5.74,5.69,3.53
0.71,Ideal,F,SI1,59.8,53,2838,5.86,5.82,3.49
0.76,Very Good,H,SI1,60.9,55,2838,5.92,5.94,3.61
0.82,Fair,F,SI1,64.9,58,2838,5.83,5.79,3.77
0.72,Premium,F,VS1,58.8,60,2838,5.91,5.89,3.47
0.7,Premium,F,VS2,62.3,58,2838,5.72,5.64,3.54
0.7,Premium,F,VS2,61.7,58,2838,5.69,5.63,3.49
0.7,Premium,G,VS1,62.6,55,2838,5.73,5.64,3.56
0.7,Premium,F,VS2,59.4,61,2838,5.83,5.79,3.45
0.7,Very Good,E,SI1,63.5,59,2838,5.53,5.49,3.5
0.7,Premium,F,VS2,60.9,61,2838,5.71,5.66,3.46
0.7,Premium,F,VS2,59.5,58,2838,5.85,5.75,3.45
0.7,Premium,G,VS1,63,60,2838,5.64,5.57,3.53
0.74,Very Good,E,SI1,60,57,2839,5.85,5.89,3.52
0.71,Ideal,F,VS1,61.5,57,2839,5.74,5.71,3.52
0.7,Ideal,F,VS1,61.6,54,2839,5.75,5.72,3.53
0.71,Ideal,F,VS1,62.1,55,2839,5.82,5.68,3.57
0.71,Premium,F,VS1,59.1,61,2839,5.84,5.81,3.44
0.71,Premium,F,VS1,59,60,2839,5.82,5.8,3.43
0.71,Premium,F,VS1,60.5,58,2839,5.75,5.72,3.47
0.7,Ideal,F,VS1,62.4,53,2839,5.73,5.71,3.57
0.73,Ideal,G,VS2,61.8,54,2839,5.8,5.82,3.59
0.7,Ideal,E,VS2,62.1,54,2839,5.69,5.72,3.54
0.7,Ideal,G,VS1,61.3,57,2839,5.71,5.74,3.51
0.71,Premium,G,VVS2,60.3,58,2839,5.82,5.78,3.5
0.71,Premium,F,VS1,59.2,58,2839,5.87,5.82,3.46
0.79,Premium,G,VS2,59.3,62,2839,6.09,6.01,3.59
0.71,Premium,F,VS1,62.7,59,2839,5.7,5.62,3.55
0.77,Very Good,H,VS1,61,60,2840,5.9,5.87,3.59
0.75,Very Good,F,SI2,59.8,56,2840,5.85,5.92,3.52
0.7,Ideal,F,SI1,61,56,2840,5.75,5.8,3.52
0.71,Premium,F,VS2,59.3,56,2840,5.88,5.82,3.47
0.92,Ideal,D,SI2,61.9,56,2840,6.27,6.2,3.86
0.83,Premium,F,SI2,61.4,59,2840,6.08,6.04,3.72
0.7,Premium,H,VVS1,59.2,60,2840,5.87,5.78,3.45
0.73,Premium,F,VS2,60.3,59,2841,5.9,5.87,3.55
0.71,Very Good,D,VS1,63.4,55,2841,5.69,5.61,3.58
0.73,Very Good,D,SI1,63.9,57,2841,5.66,5.71,3.63
0.82,Ideal,F,SI2,61.7,53,2841,6,6.12,3.74
0.82,Ideal,F,SI2,62.3,56,2841,5.96,6.02,3.73
0.82,Very Good,F,SI2,59.7,57,2841,6.12,6.14,3.66
0.52,Ideal,F,VVS1,61.2,56,2841,5.19,5.21,3.18
1,Premium,F,I1,58.9,60,2841,6.6,6.55,3.87
0.95,Fair,G,SI1,66.7,56,2841,6.16,6.03,4.06
0.73,Ideal,D,SI1,61.4,57,2841,5.76,5.8,3.55
0.73,Premium,F,VS2,59.9,59,2841,5.87,5.77,3.5
0.73,Premium,G,VS1,61.4,58,2841,5.82,5.77,3.56
0.8,Ideal,I,VS1,62.6,54,2842,5.92,5.96,3.72
0.7,Premium,F,VS2,58.7,61,2842,5.8,5.72,3.38
0.7,Very Good,E,VS2,60.2,62,2843,5.71,5.75,3.45
0.7,Very Good,E,VS2,62.7,58,2843,5.65,5.67,3.55
0.71,Very Good,E,VS2,59.4,58,2843,5.76,5.82,3.44
0.81,Very Good,F,SI2,63.2,58,2843,5.91,5.92,3.74
0.71,Very Good,D,SI1,61.5,58,2843,5.73,5.79,3.54
0.73,Ideal,G,VVS2,61.3,57,2843,5.81,5.84,3.57
0.73,Very Good,F,VS1,61.8,59,2843,5.73,5.79,3.56
0.72,Ideal,E,VS2,62,57,2843,5.71,5.74,3.55
0.81,Ideal,F,SI2,62.1,57,2843,5.91,5.95,3.68
0.71,Ideal,G,VVS2,60.7,57,2843,5.81,5.78,3.52
0.73,Very Good,E,SI1,57.7,61,2844,5.92,5.96,3.43
0.7,Very Good,E,VS1,62,59,2844,5.65,5.68,3.51
1.01,Ideal,I,I1,61.5,57,2844,6.45,6.46,3.97
1.01,Good,I,I1,63.1,57,2844,6.35,6.39,4.02
0.79,Ideal,H,VS2,62.5,57,2844,5.91,5.93,3.7
0.7,Very Good,E,VS2,61.8,59,2845,5.65,5.68,3.5
0.7,Very Good,E,VS2,58.9,60,2845,5.83,5.85,3.44
0.8,Good,H,VS2,63.4,60,2845,5.92,5.82,3.72
1.27,Premium,H,SI2,59.3,61,2845,7.12,7.05,4.2
0.79,Ideal,D,SI1,61.5,56,2846,5.96,5.91,3.65
0.72,Very Good,F,VS1,60.2,59,2846,5.79,5.84,3.5
0.73,Ideal,H,VVS2,61.6,56,2846,5.79,5.84,3.58
1.01,Fair,H,SI2,65.4,59,2846,6.3,6.26,4.11
1.01,Good,H,I1,64.2,61,2846,6.25,6.18,3.99
0.73,Ideal,E,SI1,59.1,59,2846,5.92,5.95,3.51
0.7,Ideal,E,SI1,61.6,57,2846,5.71,5.76,3.53
0.7,Good,F,VS2,59.1,61,2846,5.76,5.84,3.43
0.77,Premium,E,SI1,62.9,59,2846,5.84,5.79,3.66
0.77,Premium,G,VS2,61.3,60,2846,5.91,5.81,3.59
0.77,Premium,G,VS1,61.4,58,2846,5.94,5.89,3.63
0.84,Very Good,H,SI1,61.2,57,2847,6.1,6.12,3.74
0.72,Ideal,E,SI1,60.3,57,2847,5.83,5.85,3.52
0.76,Premium,D,SI1,61.1,59,2847,5.93,5.88,3.61
0.7,Very Good,G,VVS2,62.9,59,2848,5.61,5.68,3.55
0.54,Ideal,D,VVS2,61.5,55,2848,5.25,5.29,3.24
0.75,Fair,D,SI2,64.6,57,2848,5.74,5.72,3.7
0.79,Good,E,SI1,64.1,54,2849,5.86,5.84,3.75
0.74,Very Good,E,VS1,63.1,58,2849,5.75,5.73,3.62
0.7,Very Good,E,VS2,61,60,2850,5.74,5.77,3.51
0.7,Ideal,F,VS2,60.8,59,2850,5.69,5.79,3.49
0.75,Ideal,J,SI1,61.5,56,2850,5.83,5.87,3.6
1.2,Very Good,H,I1,63.1,60,2850,6.75,6.67,4.23
0.8,Very Good,F,SI1,63.4,57,2851,5.89,5.82,3.71
0.66,Ideal,D,VS1,62.1,56,2851,5.54,5.57,3.45
0.87,Very Good,F,SI2,61,63,2851,6.22,6.07,3.75
0.86,Premium,H,SI1,62.7,59,2851,6.04,5.98,3.77
0.74,Ideal,F,SI1,61,57,2851,5.85,5.81,3.56
0.58,Very Good,E,IF,60.6,59,2852,5.37,5.43,3.27
0.78,Ideal,I,VS1,61.5,57,2852,5.88,5.92,3.63
0.74,Ideal,G,SI1,61.3,55,2852,5.85,5.86,3.59
0.73,Ideal,E,SI1,62.7,55,2852,5.7,5.79,3.6
0.91,Very Good,I,SI1,63.5,57,2852,6.12,6.07,3.87
0.71,Premium,F,VS2,62.6,58,2853,5.67,5.7,3.56
0.71,Good,G,VS1,63.5,55,2853,5.64,5.66,3.59
0.79,Ideal,D,SI2,62.8,57,2853,5.9,5.85,3.69
0.79,Premium,D,SI2,60,60,2853,6.07,6.03,3.63
0.71,Premium,E,SI1,62.7,58,2853,5.73,5.66,3.57
0.82,Premium,I,VS1,61.9,58,2853,5.99,5.97,3.7
0.78,Very Good,H,VS1,61.9,57.1,2854,5.87,5.95,3.66
0.7,Very Good,E,VS1,62.4,56,2854,5.64,5.7,3.54
1.12,Premium,H,I1,59.1,61,2854,6.78,6.75,4
0.73,Premium,E,VS2,62,57,2854,5.86,5.76,3.6
0.91,Fair,J,VS2,64.4,62,2854,6.06,6.03,3.89
0.91,Fair,J,VS2,65.4,60,2854,6.04,6,3.94
0.91,Good,J,VS2,64.2,58,2854,6.12,6.09,3.92
0.91,Fair,H,SI1,65.8,58,2854,6.04,6.01,3.96
0.7,Premium,E,VS1,58.4,59,2854,5.91,5.83,3.43
0.68,Premium,F,VVS2,61.7,57,2854,5.67,5.64,3.49
0.73,Very Good,F,VS2,62.5,57,2855,5.7,5.75,3.58
1.03,Good,J,SI1,63.6,57,2855,6.38,6.29,4.03
0.74,Premium,D,VS2,62.4,57,2855,5.8,5.74,3.6
0.98,Fair,E,SI2,53.3,67,2855,6.82,6.74,3.61
1.02,Fair,I,SI1,53,63,2856,6.84,6.77,3.66
1,Fair,G,SI2,67.8,61,2856,5.96,5.9,4.02
1.02,Ideal,H,SI2,61.6,55,2856,6.49,6.43,3.98
0.6,Ideal,F,VVS2,60.8,57,2856,5.44,5.49,3.32
0.8,Ideal,G,SI2,61.6,56,2856,5.97,6.01,3.69
0.97,Ideal,F,I1,60.7,56,2856,6.43,6.41,3.9
1,Fair,I,SI1,67.9,62,2856,6.19,6.03,4.15
0.26,Ideal,E,VS1,62.3,57,556,4.05,4.08,2.53
0.26,Ideal,E,VS1,62.1,56,556,4.09,4.12,2.55
0.36,Ideal,H,SI1,61.9,55,556,4.57,4.59,2.83
0.34,Good,G,VS2,57.5,61,556,4.6,4.66,2.66
0.34,Good,E,SI1,63.3,57,556,4.44,4.47,2.82
0.34,Good,E,SI1,63.5,55,556,4.44,4.47,2.83
0.34,Good,E,SI1,63.4,55,556,4.44,4.46,2.82
0.34,Very Good,G,VS2,59.6,62,556,4.54,4.56,2.71
0.34,Ideal,E,SI1,62.2,54,556,4.47,4.5,2.79
0.32,Good,E,VS2,64.1,54,556,4.34,4.37,2.79
0.31,Ideal,I,VVS1,61.6,55,557,4.36,4.41,2.7
0.31,Ideal,I,VVS1,61.3,56,557,4.36,4.38,2.68
0.31,Ideal,I,VVS1,62.3,54,557,4.37,4.4,2.73
0.31,Ideal,I,VVS1,62,54,557,4.37,4.4,2.72
0.31,Ideal,I,VVS1,62.7,53,557,4.33,4.35,2.72
0.31,Ideal,I,VVS1,62.2,53,557,4.36,4.38,2.72
0.31,Ideal,G,VS2,62.2,53.6,557,4.32,4.35,2.7
0.31,Ideal,H,VS1,61.6,54.8,557,4.35,4.37,2.69
0.31,Ideal,H,VS1,61.8,54.2,557,4.33,4.37,2.69
0.33,Premium,G,SI2,59.4,59,557,4.52,4.5,2.68
0.33,Premium,F,SI2,62.3,58,557,4.43,4.4,2.75
0.33,Premium,G,SI2,62.6,58,557,4.42,4.4,2.76
0.33,Ideal,G,SI2,61.9,56,557,4.45,4.41,2.74
0.33,Premium,F,SI2,63,58,557,4.42,4.4,2.78
0.33,Premium,J,VS1,62.8,58,557,4.41,4.38,2.76
0.33,Premium,J,VS1,61.5,61,557,4.46,4.39,2.72
0.33,Ideal,J,VS1,62.1,55,557,4.44,4.41,2.75
0.33,Ideal,I,SI1,63,57,557,4.39,4.37,2.76
0.33,Good,I,SI1,63.6,53,557,4.43,4.4,2.81
0.33,Premium,I,SI1,60.4,59,557,4.54,4.5,2.73
1,Fair,H,SI2,66.1,56,2856,6.21,5.97,4.04
0.77,Premium,F,SI1,60.8,59,2856,5.92,5.86,3.58
0.77,Premium,F,SI1,61,58,2856,5.94,5.9,3.61
0.7,Good,E,VVS2,60.1,63,2857,5.68,5.71,3.42
0.9,Very Good,G,SI2,63.1,58,2857,6.08,6.02,3.82
0.72,Ideal,E,SI1,62.3,57,2857,5.76,5.7,3.57
0.9,Premium,I,VS2,61.9,59,2857,6.2,6.14,3.82
0.72,Premium,E,SI1,62.1,58,2857,5.76,5.73,3.57
0.7,Ideal,G,VVS2,62.1,56,2858,5.63,5.71,3.52
0.81,Very Good,F,SI1,61.3,57,2858,6.02,6.05,3.7
0.81,Very Good,F,SI1,61.7,57,2858,6,6.05,3.72
0.71,Premium,E,VS2,61,60,2858,5.76,5.69,3.49
0.7,Premium,E,VS2,61.4,59,2858,5.73,5.7,3.51
0.71,Premium,E,VS2,61.5,60,2858,5.76,5.68,3.52
0.71,Very Good,E,VS2,63.5,59,2858,5.68,5.59,3.58
0.92,Premium,J,SI1,62.9,58,2858,6.22,6.18,3.9
0.76,Ideal,E,SI1,62.7,54,2858,5.88,5.83,3.67
0.73,Ideal,D,SI1,61.5,56,2858,5.84,5.8,3.58
0.71,Premium,D,VS2,60.4,62,2858,5.74,5.72,3.46
0.7,Good,E,VVS2,63.6,62,2858,5.61,5.58,3.56
0.9,Fair,G,SI2,64.5,56,2858,6.06,6,3.89
0.71,Fair,D,VS2,56.9,65,2858,5.89,5.84,3.34
0.7,Ideal,D,VS2,61,57,2859,5.76,5.74,3.51
0.7,Premium,D,VS2,62.4,56,2859,5.72,5.66,3.55
0.77,Premium,F,VS1,60.9,60,2859,5.91,5.88,3.59
0.71,Ideal,G,VS1,61.5,56,2859,5.74,5.78,3.54
0.7,Premium,D,VS2,59.6,61,2859,5.8,5.77,3.45
0.75,Fair,F,VS1,55.8,70,2859,6.09,5.98,3.37
0.83,Premium,E,SI2,59.2,60,2859,6.17,6.12,3.64
0.71,Very Good,F,VS2,61.3,61,2860,5.68,5.73,3.5
0.9,Very Good,J,SI2,63.6,58,2860,6.07,6.1,3.87
0.6,Ideal,E,VVS2,61.9,54.9,2860,5.41,5.44,3.35
0.71,Premium,D,VS1,62.9,57,2860,5.66,5.6,3.54
0.53,Ideal,F,VVS1,61.4,57,2860,5.23,5.2,3.2
0.71,Premium,D,SI1,60.7,58,2861,5.95,5.78,3.56
0.62,Ideal,G,VVS2,61.6,56,2861,5.45,5.48,3.37
0.62,Ideal,G,VVS2,61.6,56,2861,5.48,5.51,3.38
0.9,Premium,I,SI1,63,58,2861,6.09,6.01,3.81
0.62,Fair,F,IF,60.1,61,2861,5.53,5.56,3.33
0.82,Premium,E,SI2,61.7,59,2861,6.01,5.98,3.7
0.66,Premium,D,VS1,61,58,2861,5.67,5.57,3.43
0.7,Very Good,D,SI1,62.5,55,2862,5.67,5.72,3.56
0.8,Very Good,F,SI1,62.6,58,2862,5.9,5.92,3.7
0.8,Very Good,D,SI2,62.5,59,2862,5.88,5.92,3.69
0.79,Premium,F,SI1,62.3,54,2862,5.97,5.91,3.7
0.71,Very Good,F,VVS1,63.2,60,2862,5.65,5.61,3.56
0.7,Ideal,H,VS2,61.1,57,2862,5.71,5.74,3.5
0.7,Very Good,E,VS2,58.7,63,2862,5.73,5.69,3.35
0.79,Premium,H,VS1,60,60,2862,6.07,5.99,3.64
0.7,Premium,E,VS2,59.5,59,2862,5.82,5.77,3.45
1.22,Premium,E,I1,60.9,57,2862,6.93,6.88,4.21
1.01,Fair,E,SI2,67.6,57,2862,6.21,6.11,4.18
0.73,Premium,E,VS2,62.5,61,2862,5.78,5.64,3.59
0.91,Good,I,VS2,64.3,58,2863,6.05,6.09,3.9
0.71,Ideal,D,SI1,60.8,56,2863,5.8,5.77,3.52
0.83,Premium,G,SI1,62.3,58,2863,6.01,5.97,3.73
0.84,Premium,F,SI2,62.3,59,2863,6.06,6.01,3.76
0.71,Premium,D,SI1,61,61,2863,5.82,5.75,3.53
0.71,Premium,D,SI1,59.7,59,2863,5.82,5.8,3.47
0.71,Premium,D,SI1,61.7,56,2863,5.8,5.68,3.54
0.71,Ideal,D,SI1,61.7,57,2863,5.75,5.7,3.53
0.71,Premium,D,SI1,61.4,58,2863,5.79,5.75,3.54
0.71,Premium,D,SI1,60.6,58,2863,5.79,5.77,3.5
0.91,Premium,J,SI1,59.5,62,2863,6.4,6.18,3.74
0.9,Premium,J,VS2,59.8,62,2863,6.24,6.21,3.72
0.71,Premium,H,VVS2,61.5,62,2863,5.74,5.68,3.51
0.71,Premium,E,SI1,59.1,61,2863,5.84,5.8,3.44
0.72,Ideal,F,VS2,59.5,57,2863,5.91,5.86,3.5
0.72,Premium,E,SI1,60.9,60,2863,5.78,5.74,3.51
0.71,Ideal,E,VS2,61,55,2863,5.79,5.75,3.52
0.81,Ideal,E,SI2,60.3,57,2864,6.07,6.04,3.65
0.83,Very Good,I,VS2,61.6,58,2865,6.05,6.07,3.73
0.73,Premium,D,SI1,60.8,55,2865,5.87,5.81,3.55
0.56,Very Good,D,VVS1,62,56,2866,5.25,5.3,3.27
0.56,Very Good,D,VVS1,61.8,55,2866,5.27,5.31,3.27
0.71,Ideal,E,VS1,62.2,55,2866,5.74,5.7,3.56
0.7,Ideal,H,VVS1,62.3,58,2866,5.66,5.7,3.54
0.96,Premium,I,SI1,61.3,58,2866,6.39,6.3,3.89
0.71,Very Good,H,VVS1,62.9,57,2867,5.67,5.69,3.57
0.7,Ideal,D,VS2,62.4,57,2867,5.68,5.61,3.52
0.71,Ideal,H,VVS1,60.4,57,2867,5.78,5.81,3.5
0.8,Premium,H,VS2,61.2,53,2867,6.05,5.98,3.68
0.95,Premium,F,SI2,58.4,57,2867,6.49,6.41,3.77
0.82,Ideal,F,SI2,62.3,56,2867,5.99,5.95,3.72
0.52,Ideal,F,VVS1,61.2,56,2867,5.21,5.19,3.18
0.82,Ideal,F,SI2,61.7,53,2867,6.12,6,3.74
0.82,Ideal,F,SI2,62.3,56,2867,6.02,5.96,3.73
0.82,Premium,F,SI2,59.7,57,2867,6.14,6.12,3.66
0.8,Ideal,G,SI1,61.3,57,2867,5.96,5.91,3.64
0.96,Fair,F,SI2,68.2,61,2867,6.07,5.88,4.1
0.72,Ideal,I,VS1,62.4,55,2868,5.72,5.75,3.58
0.62,Ideal,G,IF,60.5,57,2868,5.52,5.56,3.35
0.79,Premium,E,SI2,61,58,2868,5.96,5.9,3.62
0.75,Very Good,E,SI1,63.1,56,2868,5.78,5.7,3.62
1.08,Premium,D,I1,61.9,60,2869,6.55,6.48,4.03
0.72,Ideal,E,SI1,60.8,55,2869,5.77,5.84,3.53
0.62,Ideal,G,IF,61.8,56,2869,5.43,5.47,3.37
0.73,Ideal,G,VVS2,61.3,57,2869,5.84,5.81,3.57
0.72,Ideal,H,VVS2,60.9,57,2869,5.79,5.77,3.52
0.52,Premium,F,VVS2,61.8,60,2870,5.16,5.13,3.18
0.83,Ideal,E,SI2,62.2,57,2870,6,6.05,3.75
0.64,Premium,E,VVS2,62.1,58,2870,5.56,5.51,3.44
0.8,Ideal,G,SI1,62.5,57,2870,5.94,5.9,3.7
0.74,Ideal,H,SI1,62.1,56,2870,5.77,5.83,3.6
0.72,Ideal,F,SI1,61.5,56,2870,5.72,5.79,3.54
0.82,Ideal,H,VS2,59.5,57,2870,6.12,6.09,3.63
0.73,Premium,E,VS1,61.3,59,2870,5.81,5.78,3.55
1.04,Premium,I,I1,61.6,61,2870,6.47,6.45,3.98
0.73,Very Good,E,SI1,61.3,58,2871,5.76,5.83,3.55
0.73,Good,E,SI1,63.6,57,2871,5.7,5.72,3.63
0.9,Premium,J,SI1,62.8,59,2871,6.13,6.03,3.82
0.75,Ideal,I,SI1,61.8,55,2871,5.83,5.85,3.61
0.79,Ideal,G,SI1,62.6,55,2871,5.91,5.95,3.71
0.7,Good,D,SI1,62.5,56.7,2872,5.59,5.62,3.51
0.75,Very Good,D,SI1,60.7,55,2872,5.87,5.92,3.58
1.02,Ideal,I,I1,61.7,56,2872,6.44,6.49,3.99
0.7,Very Good,G,SI2,59,62,2872,5.79,5.81,3.42
0.7,Ideal,D,SI1,61.8,56,2872,5.63,5.73,3.51
0.7,Good,E,SI1,61.4,64,2872,5.66,5.71,3.49
0.7,Ideal,D,SI1,61.4,54,2872,5.71,5.75,3.52
0.7,Ideal,D,SI1,60.7,56,2872,5.72,5.75,3.48
0.7,Very Good,D,SI1,60.2,60,2872,5.75,5.82,3.48
0.72,Very Good,E,VS2,58.3,57,2872,5.89,5.94,3.45
0.74,Ideal,E,SI1,62.3,58,2872,5.74,5.78,3.59
0.84,Good,G,SI1,65.1,55,2872,5.88,5.97,3.86
0.76,Very Good,F,VS2,62,58,2873,5.8,5.86,3.62
0.77,Very Good,E,SI1,63.2,58,2873,5.8,5.84,3.68
0.76,Ideal,E,SI2,62.8,56,2873,5.78,5.82,3.64
1,Ideal,I,SI2,61.7,56,2873,6.45,6.41,3.97
1,Fair,H,SI1,65.5,62,2873,6.14,6.07,4
0.9,Fair,I,SI1,65.7,58,2873,6.03,6,3.95
0.9,Premium,J,SI1,61.8,58,2873,6.16,6.13,3.8
0.9,Good,J,SI1,64,61,2873,6,5.96,3.83
0.9,Fair,I,SI1,65.3,61,2873,5.98,5.94,3.89
0.9,Fair,I,SI1,65.8,56,2873,6.01,5.96,3.94
0.9,Premium,J,SI1,60.9,61,2873,6.26,6.22,3.8
0.78,Premium,F,VS2,62.6,58,2874,5.91,5.82,3.67
0.71,Premium,D,VS2,61.2,59,2874,5.69,5.74,3.5
0.7,Premium,F,VS1,59,59,2874,5.79,5.77,3.41
0.7,Premium,F,VS1,60.8,62,2874,5.71,5.67,3.46
0.7,Premium,G,VVS2,61.8,58,2874,5.67,5.63,3.49
0.7,Ideal,F,VS1,61,55,2874,5.77,5.73,3.51
0.7,Ideal,F,VS1,61.6,55,2874,5.75,5.71,3.53
0.7,Ideal,F,VS1,62.4,56,2874,5.69,5.65,3.54
0.7,Premium,G,VVS2,62.9,59,2874,5.68,5.61,3.55
1,Fair,H,SI2,67.7,60,2875,6.11,5.98,4.09
0.77,Ideal,H,SI1,62.4,56,2875,5.84,5.9,3.66
1,Fair,J,VS1,65.5,55,2875,6.3,6.25,4.11
1,Fair,I,SI1,66.3,61,2875,6.08,6.03,4.01
1,Fair,H,SI2,69.5,55,2875,6.17,6.1,4.26
0.73,Premium,E,VS1,62.6,60,2876,5.68,5.75,3.58
0.79,Premium,E,VS2,60.6,53,2876,6.04,5.98,3.64
0.72,Very Good,H,VS1,62.2,54,2877,5.74,5.76,3.57
0.71,Ideal,E,VS1,62.4,56,2877,5.75,5.7,3.57
0.74,Ideal,G,VS2,62.3,55,2877,5.8,5.83,3.62
0.7,Good,H,VVS1,62.7,56,2877,5.6,5.66,3.53
0.7,Good,F,VS1,59.1,62,2877,5.82,5.86,3.44
0.79,Very Good,F,SI1,62.8,59,2878,5.86,5.89,3.69
0.79,Very Good,F,SI1,62.7,60,2878,5.82,5.89,3.67
0.79,Very Good,D,SI2,59.7,58,2878,6,6.07,3.6
0.71,Ideal,I,VS2,61.5,55,2878,5.76,5.78,3.55
0.79,Ideal,F,SI1,62.8,56,2878,5.88,5.9,3.7
0.73,Very Good,F,SI1,61.4,56,2879,5.81,5.86,3.58
0.63,Premium,E,IF,60.3,62,2879,5.55,5.53,3.34
0.7,Premium,F,VS1,60.4,60,2879,5.73,5.7,3.45
0.71,Premium,F,VS1,62.7,58,2879,5.71,5.67,3.57
0.84,Ideal,G,SI2,61,56,2879,6.13,6.1,3.73
0.84,Ideal,G,SI2,62.3,55,2879,6.08,6.03,3.77
1.02,Ideal,J,SI2,60.3,54,2879,6.53,6.5,3.93
0.72,Fair,F,VS1,56.9,69,2879,5.93,5.77,3.33
0.72,Ideal,F,VS1,62,56,2879,5.76,5.73,3.56
0.92,Very Good,J,SI2,58.7,61,2880,6.34,6.43,3.75
0.74,Very Good,D,SI1,63.9,57,2880,5.72,5.74,3.66
0.7,Ideal,H,VVS1,62,55,2881,5.74,5.71,3.55
0.71,Very Good,E,VS2,60,59,2881,5.84,5.83,3.5
1.05,Premium,H,I1,62,59,2881,6.5,6.47,4.02
0.7,Very Good,H,IF,62.8,56,2882,5.62,5.65,3.54
0.54,Ideal,F,VVS1,61.8,56,2882,5.23,5.26,3.24
0.73,Premium,F,VS2,59.9,58,2882,5.87,5.84,3.51
0.88,Fair,F,SI1,56.6,65,2882,6.39,6.32,3.6
0.73,Premium,F,VS2,58.7,57,2882,5.97,5.92,3.49
0.72,Ideal,D,SI1,61.8,56,2883,5.75,5.81,3.57
0.9,Good,H,SI2,62.7,64,2883,6.09,6,3.79
0.9,Fair,H,SI2,65,61,2883,6.01,5.96,3.89
1.03,Fair,I,SI2,65.3,55,2884,6.32,6.27,4.11
0.84,Very Good,F,SI1,63.8,57,2885,5.95,6,3.81
1.01,Premium,I,SI1,62.7,60,2885,6.36,6.27,3.96
0.77,Ideal,D,SI2,61.5,55,2885,5.9,5.93,3.64
0.8,Fair,E,SI1,56.3,63,2885,6.22,6.14,3.48
0.9,Fair,D,SI2,66.9,57,2885,6.02,5.9,3.99
0.73,Ideal,E,SI1,61.4,56,2886,5.79,5.81,3.56
0.72,Ideal,E,SI1,62.7,55,2886,5.64,5.69,3.55
0.71,Very Good,D,SI1,62.4,54,2887,5.71,5.79,3.59
0.7,Premium,E,VS1,62.6,59,2887,5.66,5.69,3.55
0.79,Ideal,I,VS1,61.7,59,2888,5.93,5.96,3.67
0.72,Very Good,G,VVS2,62.5,58,2889,5.68,5.72,3.56
0.7,Very Good,E,VS2,63.5,54,2889,5.62,5.66,3.58
0.7,Very Good,F,VS1,62.2,58,2889,5.64,5.75,3.54
0.9,Good,H,SI2,63.5,58,2889,6.09,6.14,3.88
0.71,Very Good,F,VS1,62.8,56,2889,5.69,5.72,3.58
0.5,Ideal,E,VVS2,62.2,54,2889,5.08,5.12,3.17
0.5,Ideal,E,VVS2,62.2,54,2889,5.09,5.11,3.17
0.74,Ideal,F,SI1,61.2,56,2889,5.83,5.87,3.58
0.77,Premium,F,VS2,61.8,56,2889,5.94,5.9,3.66
0.77,Premium,E,SI1,59.8,61,2889,5.99,5.95,3.57
0.8,Ideal,F,SI1,61.5,54,2890,6.07,6,3.71
0.8,Ideal,F,SI1,62.4,57,2890,5.9,5.87,3.67
0.8,Premium,F,SI1,61.5,60,2890,5.97,5.94,3.66
0.8,Good,F,SI1,63.8,59,2890,5.87,5.83,3.73
0.66,Ideal,G,VVS1,61.5,56,2890,5.61,5.58,3.44
0.71,Very Good,E,VS2,61.2,58,2891,5.71,5.79,3.52
0.71,Ideal,F,VS2,61.2,56,2891,5.73,5.77,3.52
0.71,Ideal,E,VS2,61.6,56,2891,5.74,5.76,3.54
0.71,Ideal,E,VS2,62.7,56,2891,5.71,5.75,3.59
0.72,Ideal,D,SI1,61.1,56,2891,5.78,5.81,3.54
0.71,Good,D,VS2,62.3,61,2891,5.7,5.73,3.56
0.86,Ideal,H,SI2,61.8,55,2892,6.12,6.14,3.79
1.19,Fair,H,I1,65.1,59,2892,6.62,6.55,4.29
0.71,Very Good,F,VS1,62.6,55,2893,5.66,5.71,3.56
0.82,Very Good,G,SI2,62.5,56,2893,5.99,6.04,3.76
0.71,Ideal,G,VVS2,61.5,57,2893,5.73,5.75,3.53
0.75,Ideal,F,VS2,62.5,57,2893,5.78,5.83,3.63
0.7,Very Good,H,VVS1,59.2,60,2893,5.87,5.78,3.45
0.8,Ideal,G,SI2,62.5,55,2893,5.89,5.92,3.69
0.82,Good,G,SI2,59.9,62,2893,6.02,6.04,3.61
0.82,Very Good,G,SI1,63.4,55,2893,6,5.93,3.78
0.82,Premium,G,SI1,59.9,59,2893,6.09,6.06,3.64
0.81,Very Good,E,SI2,62.4,57,2894,5.91,5.99,3.71
0.81,Ideal,G,SI2,62.2,57,2894,5.96,6,3.72
0.76,Ideal,F,SI1,61.4,56,2894,5.88,5.92,3.62
0.71,Very Good,G,VS2,60.9,56,2895,5.75,5.78,3.51
0.7,Very Good,F,VS1,61.8,59,2895,5.66,5.76,3.53
0.7,Ideal,G,VVS2,62.1,53,2895,5.71,5.75,3.56
0.74,Very Good,G,VS1,59.8,58,2896,5.85,5.89,3.51
0.77,Very Good,G,VS2,61.3,60,2896,5.81,5.91,3.59
0.77,Very Good,G,VS2,58.3,63,2896,6,6.05,3.51
0.53,Ideal,F,VVS1,61.6,56,2896,5.18,5.24,3.21
0.79,Ideal,D,SI1,61.5,56,2896,5.91,5.96,3.65
0.73,Ideal,E,SI2,61.5,55,2896,5.82,5.86,3.59
0.77,Ideal,D,SI2,62.1,56,2896,5.83,5.89,3.64
0.77,Premium,E,SI1,60.9,58,2896,5.94,5.88,3.6
1.01,Very Good,I,I1,63.1,57,2896,6.39,6.35,4.02
1.01,Ideal,I,I1,61.5,57,2896,6.46,6.45,3.97
0.6,Very Good,D,VVS2,60.6,57,2897,5.48,5.51,3.33
0.76,Premium,E,SI1,61.1,58,2897,5.91,5.85,3.59
0.54,Ideal,D,VVS2,61.4,52,2897,5.3,5.34,3.26
0.72,Ideal,E,SI1,62.5,55,2897,5.69,5.74,3.57
0.72,Good,F,VS1,59.4,61,2897,5.82,5.89,3.48
0.74,Premium,D,VS2,61.8,58,2897,5.81,5.77,3.58
1.12,Premium,J,SI2,60.6,59,2898,6.68,6.61,4.03
0.75,Ideal,D,SI1,62.3,55,2898,5.83,5.8,3.62
0.77,Ideal,D,SI1,62.6,57,2898,5.92,5.81,3.67
0.98,Good,H,SI2,57.9,56,2898,6.51,6.47,3.76
0.79,Ideal,G,SI1,61.1,57,2898,5.98,5.93,3.64
0.79,Ideal,G,SI1,62.3,57,2898,5.9,5.85,3.66
0.79,Ideal,G,SI1,62.3,57,2898,5.9,5.85,3.66
0.79,Ideal,G,SI1,62.3,57,2898,5.9,5.85,3.66
0.79,Ideal,G,SI1,62.3,57,2898,5.9,5.85,3.66
0.79,Ideal,G,SI1,62.3,57,2898,5.9,5.85,3.66
0.7,Good,G,VVS1,59.9,61,2899,5.75,5.81,3.46
0.7,Very Good,F,SI1,61.9,58,2900,5.71,5.72,3.54
0.72,Premium,D,VS1,62.7,58,2900,5.68,5.65,3.55
0.8,Premium,F,SI1,62.7,58,2901,5.91,5.93,3.71
0.81,Ideal,E,SI2,63,56,2901,5.95,5.9,3.73
0.81,Premium,E,SI2,62.5,59,2901,5.97,5.9,3.71
0.74,Ideal,E,VS2,61.9,57,2901,5.81,5.78,3.59
0.73,Premium,E,VS2,62,60,2902,5.76,5.73,3.56
0.73,Ideal,E,VS2,61.4,55,2902,5.82,5.8,3.57
0.75,Ideal,G,SI1,61.6,55,2902,5.82,5.86,3.6
0.71,Fair,E,VS2,64.6,59,2902,5.62,5.59,3.62
0.71,Premium,E,VS2,59.6,60,2902,5.85,5.8,3.47
0.75,Premium,D,SI1,62.8,60,2903,5.78,5.74,3.62
0.75,Ideal,D,SI1,62.3,57,2903,5.83,5.8,3.62
0.72,Ideal,D,SI1,61.9,55,2903,5.78,5.75,3.57
0.72,Premium,D,SI1,61.4,59,2903,5.79,5.71,3.53
0.72,Premium,E,VS2,61.1,59,2903,5.8,5.75,3.53
0.79,Very Good,F,SI1,63,54,2904,5.91,5.94,3.73
0.79,Very Good,D,SI2,62.8,57,2904,5.85,5.9,3.69
0.7,Very Good,E,VS1,58.4,59,2904,5.83,5.91,3.43
0.62,Ideal,E,VVS2,62,56,2904,5.48,5.52,3.41
0.7,Very Good,G,VVS2,59.3,62,2905,5.78,5.82,3.44
0.7,Very Good,G,VVS2,63.4,59,2905,5.62,5.64,3.57
0.7,Very Good,G,VVS2,63.3,59,2905,5.59,5.62,3.55
0.71,Very Good,G,VS2,62.1,58,2905,5.65,5.71,3.53
0.86,Very Good,I,VS1,61.2,58,2905,6.1,6.16,3.75
0.53,Ideal,D,VVS1,62.5,54,2905,5.16,5.21,3.24
0.91,Very Good,J,SI1,63.5,58,2905,6.17,6.12,3.9
0.95,Good,I,SI2,63.8,57,2905,6.23,6.13,3.94
0.91,Premium,J,SI1,62.8,59,2905,6.19,6.14,3.87
0.74,Very Good,D,VS2,62.4,57,2906,5.74,5.8,3.6
0.8,Ideal,I,VS1,62.2,58,2906,5.92,5.95,3.69
0.74,Good,E,SI1,62.8,61,2906,5.74,5.76,3.61
0.61,Ideal,E,VVS2,62.4,53.9,2907,5.42,5.43,3.38
0.61,Ideal,E,VVS2,62.4,53.6,2907,5.42,5.45,3.39
0.61,Ideal,E,VVS2,62.1,54.2,2907,5.43,5.45,3.38
0.72,Ideal,H,VVS1,62.8,57,2907,5.68,5.72,3.58
0.7,Ideal,F,VS2,62.3,53,2907,5.69,5.73,3.56
0.71,Ideal,F,VS1,61.9,56,2907,5.7,5.74,3.54
0.79,Ideal,G,SI1,60.3,60,2907,5.98,6.02,3.62
0.72,Ideal,E,SI1,62.6,56,2907,5.7,5.73,3.58
0.33,Ideal,G,SI2,62.9,55,557,4.46,4.41,2.79
0.39,Ideal,H,SI2,61.5,57,558,4.66,4.7,2.88
0.32,Ideal,D,SI1,61.3,55,558,4.41,4.46,2.72
0.25,Premium,F,VS1,61.2,59,558,4.05,4.02,2.47
0.25,Good,F,VS1,63.6,57,558,4.04,4.01,2.56
0.25,Premium,E,VS1,60.7,59,558,4.13,4.11,2.5
0.25,Premium,E,VS1,61.5,60,558,4.04,4.02,2.48
0.31,Premium,I,VS2,60.8,58,558,4.37,4.34,2.65
0.31,Premium,I,VS2,59.8,60,558,4.42,4.38,2.63
0.31,Very Good,I,VS2,63.2,55,558,4.4,4.3,2.75
0.31,Premium,I,VS2,62.3,57,558,4.35,4.32,2.7
0.31,Premium,H,SI1,58.7,60,558,4.47,4.43,2.61
0.31,Premium,H,SI1,62.7,58,558,4.34,4.31,2.71
0.31,Ideal,E,SI2,61.7,56,558,4.4,4.35,2.7
0.31,Ideal,E,SI2,60.1,57,558,4.44,4.41,2.66
0.31,Ideal,E,SI2,61.3,55,558,4.37,4.34,2.67
0.31,Premium,I,VS2,60.8,60,558,4.42,4.37,2.67
0.31,Ideal,I,VS2,59.9,57,558,4.4,4.38,2.63
0.31,Premium,I,VS2,59.9,60,558,4.44,4.41,2.65
0.31,Premium,I,VS2,61.1,58,558,4.38,4.36,2.67
0.31,Premium,I,VS2,60.7,61,558,4.34,4.32,2.63
0.31,Very Good,I,VS2,63.1,54,558,4.34,4.31,2.73
0.31,Premium,I,VS2,62.3,60,558,4.32,4.31,2.69
0.31,Premium,H,SI1,61.7,59,558,4.39,4.36,2.7
0.31,Premium,H,SI1,61,61,558,4.39,4.33,2.66
0.31,Good,H,SI1,63.6,57,558,4.31,4.28,2.73
0.31,Premium,H,SI1,62.4,57,558,4.35,4.31,2.7
0.31,Premium,H,SI1,62.8,58,558,4.32,4.28,2.7
0.31,Ideal,H,SI1,62.9,56,558,4.31,4.27,2.7
0.31,Premium,E,SI2,60.9,60,558,4.38,4.35,2.66
0.82,Very Good,H,SI1,63.6,56,2908,5.9,5.95,3.77
0.73,Ideal,I,VS1,61.5,55,2908,5.8,5.84,3.58
0.7,Premium,D,VS2,61,60,2909,5.75,5.7,3.49
0.7,Premium,D,VS2,60.9,57,2909,5.71,5.69,3.47
0.71,Ideal,H,VS1,61.2,56,2909,5.76,5.81,3.54
0.71,Ideal,H,VS1,61.9,56,2909,5.7,5.74,3.54
0.9,Ideal,I,SI2,61.9,57,2909,6.19,6.13,3.81
0.71,Very Good,D,VS1,62.9,57,2910,5.6,5.66,3.54
1.05,Premium,I,SI2,58.3,57,2911,6.72,6.67,3.9
0.59,Ideal,E,VVS2,61.1,57,2911,5.39,5.41,3.3
0.71,Ideal,G,VS2,60.6,56,2911,5.76,5.8,3.5
0.77,Good,F,VS2,60.3,61,2911,5.89,5.96,3.57
0.73,Good,E,VS2,64.2,54,2912,5.68,5.72,3.66
0.7,Good,E,VS2,58.7,63,2912,5.69,5.73,3.35
0.73,Good,E,VS2,63.2,56,2912,5.75,5.76,3.64
0.8,Premium,E,SI1,61.2,60,2912,5.97,5.95,3.65
1,Fair,H,SI2,65.2,54,2912,6.3,6.22,4.08
1,Fair,I,SI1,66,56,2912,6.31,6.24,4.13
1,Fair,H,SI2,67,55,2912,6.25,6.12,4.16
0.7,Very Good,D,VS2,60.7,60,2913,5.72,5.74,3.48
0.71,Premium,D,SI1,61.4,58,2913,5.75,5.79,3.54
0.71,Premium,G,SI2,60.8,59,2913,5.7,5.74,3.48
0.71,Premium,D,SI1,60.6,58,2913,5.77,5.79,3.5
0.71,Very Good,D,SI1,61.7,56,2913,5.68,5.8,3.54
0.71,Ideal,D,SI1,61.7,57,2913,5.7,5.75,3.53
0.71,Premium,D,SI1,59.7,59,2913,5.8,5.82,3.47
0.91,Premium,I,SI2,62,59,2913,6.18,6.23,3.85
0.83,Premium,E,SI1,62.2,59,2913,6.05,5.97,3.74
0.85,Ideal,G,SI2,62,57,2913,6.1,6.02,3.76
0.8,Very Good,F,SI1,63.5,55,2914,5.86,5.89,3.73
0.73,Ideal,E,SI1,61.4,58,2914,5.76,5.8,3.55
0.83,Very Good,I,VS2,62,55,2915,6.03,6.06,3.74
0.77,Very Good,G,SI1,63.6,57,2915,5.79,5.88,3.71
0.8,Very Good,G,SI2,62,55,2915,5.94,6.01,3.7
0.71,Ideal,F,VS2,62.2,56,2915,5.74,5.71,3.56
0.73,Very Good,H,VS1,60.8,57,2916,5.8,5.83,3.54
0.93,Ideal,I,SI1,62,57,2917,6.22,6.26,3.87
0.74,Premium,F,VS1,62.5,60,2917,5.78,5.74,3.6
0.7,Ideal,E,VS2,62.5,58,2917,5.63,5.67,3.53
0.71,Ideal,F,VS2,61.2,56,2917,5.77,5.73,3.52
0.71,Very Good,F,VS2,59.5,58,2918,5.82,5.87,3.48
0.8,Very Good,H,VS2,61.2,53,2918,5.98,6.05,3.68
0.71,Ideal,H,VVS1,62.1,54,2918,5.7,5.76,3.56
0.72,Ideal,I,VS2,61.8,55,2918,5.75,5.79,3.56
0.83,Very Good,D,SI2,63.1,57,2918,5.95,5.9,3.74
0.72,Very Good,G,VS1,60.5,57,2919,5.8,5.83,3.52
0.8,Very Good,H,SI1,62.5,56,2919,5.92,5.96,3.71
0.73,Premium,G,VVS2,62.2,56,2919,5.79,5.75,3.59
0.7,Good,F,VS1,63.8,58,2919,5.61,5.58,3.57
0.73,Ideal,H,VS1,61.9,55,2919,5.79,5.76,3.58
0.73,Ideal,G,VVS2,61.9,55,2919,5.83,5.77,3.59
0.71,Premium,E,VS1,59.7,57,2920,5.87,5.78,3.48
0.72,Ideal,F,SI1,61,55,2920,5.78,5.85,3.55
0.71,Premium,F,VS1,59.1,59,2920,5.88,5.83,3.46
0.71,Ideal,F,VS1,62.6,55,2920,5.71,5.67,3.56
0.74,Very Good,H,VVS2,60.5,60,2921,5.79,5.81,3.51
0.71,Very Good,E,VS2,59.9,59,2921,5.77,5.81,3.47
0.71,Very Good,E,VS2,60.7,60,2921,5.75,5.78,3.5
0.71,Very Good,D,SI1,60.1,60,2921,5.76,5.79,3.47
0.65,Ideal,F,VVS2,61.3,56,2921,5.58,5.61,3.43
0.9,Fair,I,VS2,64.1,66,2921,6.04,5.98,3.85
0.71,Very Good,E,VS2,63.7,58,2922,5.6,5.64,3.58
0.71,Very Good,E,VS2,63.3,59,2922,5.62,5.66,3.57
0.68,Very Good,F,VS1,59.7,57,2922,5.79,5.76,3.45
0.53,Ideal,F,VVS1,61.6,56,2922,5.24,5.18,3.21
0.77,Ideal,D,SI2,60.6,56,2922,5.95,5.9,3.59
0.72,Very Good,E,VS2,63,57,2923,5.69,5.73,3.6
0.72,Very Good,E,VS2,63.2,58,2923,5.67,5.72,3.6
0.7,Very Good,E,SI1,61.8,59,2923,5.63,5.69,3.5
0.75,Very Good,E,SI1,62.3,58,2923,5.78,5.81,3.61
0.75,Very Good,E,SI1,61.5,58,2923,5.82,5.86,3.59
0.87,Ideal,H,SI1,62.5,57,2923,6.13,6.06,3.81
0.71,Ideal,E,VS1,62.4,54,2923,5.71,5.74,3.57
0.77,Ideal,D,SI2,60.2,56,2923,5.98,6.04,3.62
0.78,Ideal,F,SI1,61.1,56,2923,5.94,5.98,3.64
0.75,Good,E,SI1,58.3,60,2923,5.94,5.99,3.48
0.9,Premium,I,VS2,58.7,60,2923,6.35,6.28,3.7
0.7,Ideal,I,VS1,61.5,56,2924,5.71,5.75,3.52
0.8,Very Good,D,SI1,58.2,63,2925,6.07,6.03,3.52
0.7,Very Good,F,VS1,64.5,58,2925,5.55,5.59,3.59
0.51,Very Good,E,IF,63.3,58,2925,5.03,5.08,3.2
0.71,Ideal,I,IF,61.5,56,2925,5.74,5.77,3.54
1.02,Ideal,I,I1,61.7,56,2925,6.49,6.44,3.99
1.2,Premium,I,I1,60.5,58,2925,6.9,6.79,4.14
0.81,Good,D,SI2,63.6,55,2926,5.91,5.86,3.74
0.81,Premium,F,SI1,61.2,56,2926,6.03,6,3.68
0.81,Premium,F,SI1,61.3,60,2926,6,5.94,3.66
0.77,Very Good,H,VS1,63.3,57,2927,5.79,5.83,3.68
0.8,Ideal,I,SI1,59.4,58,2927,6.07,6.09,3.61
0.9,Premium,H,SI2,59.5,60,2927,6.32,6.29,3.75
0.7,Very Good,F,VS2,61.3,54,2928,5.72,5.76,3.52
0.7,Very Good,D,VS2,60.8,59,2928,5.67,5.71,3.46
0.74,Very Good,E,SI1,61,58,2929,5.82,5.85,3.56
0.8,Very Good,G,VS2,61.1,57,2929,6.01,6.07,3.69
0.7,Ideal,G,VS2,61.8,57,2929,5.68,5.71,3.52
0.7,Ideal,E,SI1,60.1,57,2929,5.78,5.83,3.49
0.71,Very Good,E,VS2,61.3,60,2930,5.74,5.71,3.51
0.7,Premium,E,VS1,60.3,58,2930,5.7,5.74,3.45
0.7,Ideal,E,VS1,62.3,54,2930,5.67,5.72,3.55
0.71,Ideal,F,VS2,62.3,57,2930,5.69,5.74,3.56
0.71,Ideal,G,VS1,62.7,57,2930,5.69,5.73,3.58
0.71,Ideal,G,VS1,62.6,57,2930,5.67,5.7,3.56
0.9,Very Good,E,SI2,58.7,63,2930,6.23,6.2,3.65
0.9,Fair,E,SI2,65,58,2930,6.08,6.04,3.94
0.71,Ideal,G,VVS1,61.7,57,2930,5.75,5.7,3.53
0.7,Very Good,G,VVS2,60.8,57,2931,5.72,5.76,3.49
0.72,Very Good,F,VS2,63.3,57,2931,5.69,5.72,3.61
0.72,Ideal,F,VS2,61.8,59,2931,5.71,5.74,3.54
0.7,Premium,G,VVS1,62,61,2932,5.71,5.62,3.51
0.7,Premium,F,VVS2,61,57,2932,5.8,5.71,3.51
0.7,Very Good,F,VVS2,63.2,58,2932,5.66,5.6,3.56
0.72,Very Good,G,VVS2,62.2,57,2933,5.67,5.72,3.54
0.59,Very Good,D,VVS2,60.6,59,2933,5.44,5.49,3.31
0.73,Premium,F,VS2,59.9,58,2933,5.84,5.87,3.51
0.75,Ideal,F,VS2,62.3,57,2933,5.81,5.87,3.64
0.75,Good,D,SI2,57.6,56,2933,5.98,6.07,3.47
0.9,Good,H,SI2,62.7,64,2934,6,6.09,3.79
0.71,Ideal,D,SI2,62,54,2934,5.77,5.74,3.57
0.91,Premium,H,SI1,60.2,52,2935,6.27,6.15,3.74
1.17,Fair,I,I1,65.4,62,2935,6.68,6.57,4.33
0.8,Premium,H,VS1,62,60,2935,5.92,5.86,3.65
0.7,Very Good,G,VVS2,61.8,60,2936,5.63,5.69,3.5
0.81,Very Good,H,SI1,60.2,58,2936,6.06,6.1,3.66
0.74,Ideal,F,VS2,60.5,59,2936,5.81,5.86,3.53
0.7,Ideal,D,SI2,62.6,54,2936,5.69,5.72,3.57
0.82,Ideal,E,SI2,62.1,56,2937,6.01,5.98,3.72
0.76,Premium,E,SI1,58.3,62,2937,6.12,5.95,3.52
0.76,Premium,G,VS1,59.6,57,2937,6.01,5.91,3.55
0.95,Premium,G,SI2,58.8,60,2937,6.35,6.31,3.72
0.71,Very Good,H,VVS1,62.7,57,2938,5.66,5.72,3.57
0.71,Very Good,H,VVS1,62.7,59,2938,5.65,5.67,3.55
0.81,Ideal,E,SI2,60.2,57,2938,6.1,6.06,3.66
0.73,Very Good,F,VS2,62.7,58,2939,5.73,5.75,3.6
0.73,Very Good,G,VS1,60.7,57,2939,5.76,5.83,3.52
0.83,Very Good,F,SI2,61.9,56,2939,5.99,6.02,3.72
0.77,Premium,D,SI1,59.5,60,2939,6.01,5.95,3.56
0.8,Ideal,E,SI2,60.8,56,2939,6.02,6.01,3.66
0.73,Ideal,F,VS2,62.7,58,2939,5.72,5.77,3.6
0.72,Ideal,E,SI2,62.4,57,2939,5.71,5.74,3.57
0.75,Ideal,G,VS2,60.6,55,2939,5.93,5.91,3.59
0.8,Premium,E,SI2,59.9,58,2939,6.03,5.96,3.59
0.81,Ideal,I,VS2,61.8,56,2939,6.02,5.99,3.71
0.82,Premium,H,VS2,62.6,59,2939,5.99,5.93,3.73
0.7,Good,F,VVS2,63.1,57,2940,5.59,5.66,3.55
1.24,Very Good,J,I1,61.9,55,2940,6.85,6.92,4.26
0.7,Very Good,F,VVS2,62.6,59,2940,5.6,5.64,3.52
0.7,Ideal,F,VS1,61.2,54,2940,5.92,5.64,3.54
0.75,Fair,E,VS2,56,67,2940,6.18,6.08,3.43
1,Good,H,I1,57.6,61,2940,6.67,6.6,3.82
0.75,Ideal,E,VS2,61.6,57,2940,5.84,5.81,3.59
0.7,Ideal,E,VS2,61.5,56,2940,5.73,5.68,3.51
0.79,Very Good,E,SI2,59.2,59,2941,6.04,6.06,3.58
0.8,Good,F,SI1,63.8,59,2941,5.83,5.87,3.73
0.81,Very Good,F,SI2,62.7,58,2942,5.92,5.95,3.72
0.71,Premium,F,VS1,61.1,58,2942,5.76,5.72,3.51
1.03,Fair,G,SI2,65.7,59,2942,6.3,6.24,4.12
0.7,Ideal,F,VS2,60.8,56,2942,5.78,5.79,3.52
0.76,Premium,D,SI1,61.6,59,2942,5.84,5.82,3.59
1.01,Fair,G,SI2,67.1,59,2942,6.27,6.19,4.18
0.73,Ideal,D,SI1,61.4,56,2943,5.82,5.78,3.56
0.72,Ideal,F,VS2,62,56,2943,5.77,5.75,3.57
0.74,Very Good,H,VVS2,61.3,58,2944,5.8,5.85,3.57
0.79,Ideal,G,SI1,61.6,55,2944,5.96,5.98,3.68
0.57,Very Good,D,VVS1,60.4,57,2945,5.39,5.44,3.27
0.79,Very Good,H,VS2,61.5,55,2945,5.89,5.94,3.64
0.78,Very Good,D,SI1,62.4,58,2945,5.86,5.9,3.67
0.85,Good,G,SI1,64.9,56,2945,5.95,5.98,3.87
0.71,Very Good,E,VS1,63.3,59,2946,5.64,5.67,3.58
0.71,Very Good,E,VS1,62.7,57,2946,5.69,5.73,3.58
0.72,Ideal,H,VVS1,62.2,56,2946,5.72,5.75,3.57
0.72,Ideal,H,VVS1,62.5,57,2946,5.7,5.73,3.57
0.77,Ideal,I,SI1,61.5,56,2946,5.9,5.93,3.64
0.79,Ideal,E,SI1,62.3,55,2946,5.9,5.94,3.69
0.78,Very Good,H,VS1,61.7,56,2947,5.92,5.94,3.66
0.76,Ideal,E,VS1,62.1,57,2947,5.82,5.87,3.63
0.92,Ideal,H,SI2,58.5,57,2947,6.37,6.34,3.72
0.73,Premium,D,VS2,60.9,59,2947,5.82,5.77,3.53
0.7,Ideal,H,VVS1,61.2,57,2947,5.69,5.72,3.49
0.7,Ideal,H,VVS1,60.5,58,2947,5.76,5.81,3.5
0.74,Ideal,I,VS1,62,56,2947,5.79,5.82,3.6
0.74,Ideal,I,VS1,61.1,57,2947,5.83,5.86,3.57
0.73,Ideal,D,SI1,61.2,57,2947,5.79,5.81,3.55
0.82,Good,H,VS2,62.4,54,2947,5.97,6.04,3.75
0.9,Premium,I,SI1,60.9,56,2947,6.26,6.21,3.8
0.73,Ideal,G,VS1,61.7,55,2948,5.8,5.84,3.59
0.7,Ideal,E,SI1,62,56,2948,5.68,5.7,3.53
0.9,Premium,I,SI2,62.5,58,2948,6.15,6.1,3.83
0.9,Fair,I,SI2,66.4,60,2948,5.92,5.86,3.91
0.9,Premium,I,SI2,60.6,60,2948,6.28,6.23,3.79
0.9,Ideal,I,SI2,62,56,2948,6.2,6.16,3.83
1,Fair,E,SI2,65.8,58,2948,6.28,6.16,4.09
0.72,Very Good,E,VS2,63,56,2949,5.66,5.73,3.59
0.76,Ideal,E,SI1,61.7,57,2949,5.84,5.89,3.62
0.77,Ideal,D,SI1,62.6,57,2949,5.81,5.92,3.67
0.72,Ideal,H,VS1,62.3,55,2949,5.72,5.74,3.57
0.99,Fair,J,SI1,58,67,2949,6.57,6.5,3.79
0.81,Very Good,I,VS1,62.7,58,2950,5.9,5.96,3.72
0.71,Ideal,G,VS1,62.4,57,2950,5.68,5.73,3.56
0.71,Premium,D,VS2,62.1,60,2950,5.72,5.68,3.54
0.54,Ideal,F,VVS1,61.6,55,2951,5.27,5.28,3.25
0.72,Very Good,D,VS1,62.7,58,2951,5.65,5.68,3.55
0.81,Ideal,H,SI1,62.3,58,2951,5.95,5.96,3.71
0.73,Ideal,F,SI1,61.6,55,2951,5.77,5.81,3.56
0.72,Ideal,E,SI1,61,56,2951,5.84,5.79,3.55
0.7,Very Good,E,VS2,62.4,58,2952,5.66,5.68,3.54
0.7,Very Good,E,VS2,63.4,59,2952,5.63,5.67,3.58
0.7,Very Good,E,VS2,61.8,59,2952,5.63,5.67,3.49
0.7,Very Good,E,VS1,61.3,60,2952,5.68,5.7,3.49
0.72,Ideal,G,VS2,61.5,55,2952,5.76,5.79,3.55
0.72,Ideal,G,VS2,61.4,55,2952,5.76,5.8,3.55
0.7,Ideal,E,VS2,61.9,58,2952,5.7,5.73,3.54
0.7,Ideal,E,VS2,62.6,57,2952,5.63,5.68,3.54
0.7,Ideal,E,VS2,62.1,55,2952,5.71,5.75,3.56
0.74,Ideal,I,IF,62.1,53.9,2952,5.79,5.81,3.6
0.7,Good,E,VS1,61,61,2952,5.69,5.72,3.48
0.8,Very Good,H,VS2,59.1,59,2953,6.02,6.07,3.57
0.79,Premium,F,VS2,63,59,2953,5.84,5.8,3.66
0.75,Good,F,VS1,64.4,59,2953,5.67,5.72,3.66
0.71,Very Good,E,VS2,59.6,60,2954,5.8,5.85,3.47
0.72,Ideal,D,SI1,61.9,55,2954,5.75,5.78,3.57
0.72,Premium,E,VS2,61.1,59,2954,5.75,5.8,3.53
0.72,Premium,D,SI1,61.4,59,2954,5.71,5.79,3.53
0.75,Ideal,D,SI1,62.3,57,2954,5.8,5.83,3.62
0.82,Very Good,D,SI1,63.1,58,2954,5.97,5.95,3.76
0.76,Ideal,G,VS2,61.7,54,2954,5.88,5.92,3.64
0.89,Premium,I,VS1,62.2,62,2955,6.14,6.02,3.78
0.7,Very Good,F,VS2,62.4,57,2956,5.67,5.71,3.55
0.74,Very Good,H,VS1,61.4,56,2956,5.81,5.84,3.57
0.74,Very Good,H,VS1,62.3,56,2956,5.75,5.78,3.59
0.95,Good,I,SI2,63.8,57,2956,6.13,6.23,3.94
0.91,Very Good,J,SI1,62.8,59,2956,6.14,6.19,3.87
0.7,Ideal,F,VS2,60.8,57,2956,5.75,5.77,3.5
0.71,Good,F,VVS2,58.2,60,2956,5.89,5.94,3.44
0.7,Premium,D,VS1,60.4,58,2956,5.78,5.71,3.47
0.72,Ideal,F,VS2,62.6,56,2956,5.75,5.72,3.59
0.72,Ideal,F,VS2,62.2,56,2956,5.75,5.73,3.57
0.72,Ideal,H,VVS1,62,55,2958,5.74,5.77,3.57
0.79,Ideal,I,VS1,62.2,57,2958,5.89,5.94,3.68
0.72,Good,G,VS1,58,57.8,2958,5.85,5.87,3.4
0.98,Fair,F,SI2,61.6,66,2958,6.46,6.24,3.92
0.56,Very Good,D,VVS1,60.1,58,2959,5.36,5.42,3.24
0.7,Very Good,F,VS1,60.1,58,2959,5.73,5.79,3.46
0.79,Premium,G,VS2,62.3,58,2959,5.92,5.89,3.68
0.82,Ideal,I,SI1,61.8,55,2959,6,6.03,3.72
0.74,Fair,G,VVS2,65.2,58,2959,5.7,5.6,3.69
0.71,Very Good,H,VVS2,61.8,56,2960,5.7,5.73,3.53
0.7,Very Good,D,VS2,63,56,2960,5.61,5.69,3.56
0.7,Good,D,VS2,63.4,57,2960,5.6,5.67,3.57
0.7,Ideal,D,VS2,61.3,57,2960,5.72,5.76,3.52
0.76,Ideal,F,VS2,62.6,56,2960,5.82,5.78,3.63
0.72,Ideal,G,VS2,61.3,56,2960,5.77,5.81,3.55
0.64,Ideal,G,IF,61.7,58,2960,5.52,5.56,3.42
0.71,Good,F,VVS2,58.9,61,2960,5.8,5.9,3.44
0.74,Ideal,G,VS1,61.8,55,2960,5.85,5.8,3.6
0.77,Very Good,H,VS1,62.8,58,2961,5.75,5.78,3.62
0.74,Ideal,H,VVS2,61.2,57,2961,5.79,5.85,3.56
0.72,Premium,E,VS1,61.5,60,2961,5.79,5.75,3.55
0.73,Premium,F,VS1,61.9,56,2961,5.81,5.76,3.58
0.73,Premium,F,VS1,62.7,56,2961,5.75,5.73,3.6
0.63,Ideal,F,VVS2,62.3,56,2961,5.48,5.5,3.42
0.72,Ideal,H,VS1,61.1,57,2961,5.8,5.82,3.55
0.76,Ideal,E,SI1,60.6,57,2961,5.91,5.93,3.59
0.71,Premium,F,VS1,62.1,53,2961,5.77,5.7,3.56
0.75,Premium,H,VS1,61.9,61,2961,5.85,5.82,3.61
0.96,Premium,E,SI2,60.4,56,2961,6.32,6.23,3.79
0.63,Ideal,D,VVS2,62.6,56,2962,5.47,5.49,3.43
0.72,Ideal,E,VS2,62,56,2962,5.73,5.76,3.56
0.71,Ideal,G,VS1,62.2,56,2962,5.69,5.72,3.55
0.82,Premium,F,SI1,62.4,56,2962,6.01,5.98,3.74
0.71,Ideal,E,VS1,62.1,53,2963,5.76,5.73,3.57
0.91,Very Good,E,SI2,58.6,63,2963,6.38,6.32,3.72
0.71,Very Good,E,VS2,62.9,57,2964,5.68,5.7,3.58
0.71,Very Good,E,SI1,62.9,55,2964,5.64,5.68,3.56
0.71,Very Good,D,SI1,59.4,59,2964,5.78,5.81,3.44
0.7,Good,E,VS1,63.6,58,2964,5.61,5.56,3.55
0.7,Fair,E,VS1,64.5,57,2964,5.59,5.55,3.59
0.75,Ideal,E,SI1,61.7,56,2964,5.84,5.86,3.61
0.9,Fair,F,SI2,65.7,59,2964,6.03,5.99,3.95
0.9,Good,F,SI2,64.2,62,2964,6.08,6,3.88
0.9,Fair,J,VS1,65.4,60,2964,6.02,5.93,3.91
0.9,Premium,J,VS1,62.1,62,2964,6.12,6.05,3.78
1,Fair,G,SI1,65.7,54,2964,6.24,6.16,4.07
1.5,Fair,H,I1,65.6,54,2964,7.26,7.09,4.7
1.05,Premium,E,I1,61.4,58,2964,6.53,6.46,3.99
0.9,Fair,J,VS1,64.6,58,2964,6.12,6.06,3.93
0.71,Ideal,I,VS1,61.8,56,2965,5.68,5.72,3.52
0.71,Ideal,I,VS1,61.6,56,2965,5.71,5.75,3.53
0.71,Ideal,I,VS1,61.3,57,2965,5.73,5.76,3.52
0.71,Ideal,I,VS1,61.5,56,2965,5.72,5.76,3.52
0.7,Ideal,G,SI1,61.7,55,2965,5.7,5.73,3.53
0.7,Ideal,G,SI1,60.9,56,2965,5.73,5.79,3.51
0.73,Very Good,G,VS2,62.1,59,2966,5.68,5.73,3.54
0.85,Very Good,E,SI2,63.1,58,2966,6.02,6,3.79
0.7,Ideal,I,VVS1,61.8,56,2966,5.69,5.73,3.53
0.75,Ideal,F,SI1,61.2,55,2966,5.87,5.92,3.61
0.82,Ideal,F,SI2,60.9,57,2966,6.06,6.02,3.68
0.7,Very Good,E,VS1,61.3,56,2967,5.68,5.71,3.49
0.7,Very Good,E,VS1,61.5,56,2967,5.69,5.75,3.52
0.86,Very Good,G,SI2,62.6,56,2967,6.01,6.07,3.78
0.79,Ideal,H,VS2,62,56,2967,5.91,5.93,3.67
0.31,Premium,E,SI2,60.8,61,558,4.43,4.39,2.68
0.31,Premium,E,SI2,61.2,61,558,4.37,4.36,2.67
0.31,Ideal,G,SI2,61.4,55,558,4.39,4.37,2.69
0.3,Very Good,H,VVS2,62,56,559,4.28,4.3,2.66
0.31,Very Good,G,VS2,62.6,56,559,4.33,4.37,2.72
0.31,Very Good,G,VS2,61.4,55,559,4.38,4.41,2.69
0.31,Very Good,G,VS2,60.9,57,559,4.37,4.39,2.67
0.24,Ideal,G,VVS1,62.4,56,559,3.97,3.99,2.48
0.24,Ideal,G,VVS1,62.1,56,559,3.97,4,2.47
0.24,Ideal,G,VVS1,62.2,56,559,4,4.04,2.5
0.24,Ideal,G,VVS1,62,55,559,4.01,4.03,2.49
0.24,Ideal,G,VVS1,62,56,559,3.97,4.01,2.47
0.32,Ideal,E,SI1,61.9,55,559,4.4,4.43,2.73
0.32,Ideal,E,SI1,61,56,559,4.41,4.45,2.7
0.24,Ideal,G,IF,61.7,56,559,3.99,4.01,2.47
0.24,Ideal,G,IF,60.8,58,559,4.01,4.05,2.44
0.24,Ideal,G,IF,61.8,55,559,3.99,4.02,2.47
0.24,Ideal,G,IF,61.6,57,559,3.99,4.02,2.46
0.24,Ideal,G,IF,61.3,57,559,4,4.03,2.46
0.32,Ideal,G,VS1,62.3,55,559,4.39,4.41,2.74
0.32,Ideal,G,VS1,61.8,55,559,4.42,4.45,2.74
0.25,Very Good,E,VVS2,62,56,560,4.05,4.08,2.52
0.25,Very Good,E,VVS1,61.5,56,560,4.06,4.08,2.5
0.25,Very Good,F,IF,61.5,56,560,4.04,4.06,2.48
0.27,Very Good,F,IF,60.4,58,560,4.18,4.2,2.53
0.32,Ideal,G,VS2,61.6,54,560,4.4,4.43,2.72
0.36,Ideal,F,SI1,61.6,56,560,4.57,4.62,2.83
0.41,Ideal,I,SI1,61.7,55,561,4.77,4.8,2.95
0.32,Premium,H,VS1,60.2,58,561,4.43,4.47,2.68
0.32,Ideal,H,VS1,61.5,57,561,4.4,4.42,2.71
0.75,Very Good,E,SI1,60.2,60,2968,5.89,5.93,3.56
0.92,Premium,H,SI1,59.2,60,2968,6.4,6.35,3.76
1.13,Fair,H,I1,64.8,59,2968,6.52,6.42,4.19
0.71,Premium,D,VS2,58.7,61,2968,5.88,5.85,3.44
1.06,Premium,I,SI2,61.5,57,2968,6.57,6.49,4.02
0.9,Ideal,G,SI2,62.4,57,2968,6.16,6.13,3.84
0.8,Ideal,G,VS2,61.2,57,2969,6.02,6.07,3.7
0.52,Premium,E,VVS2,60.1,58,2970,5.23,5.18,3.13
0.72,Very Good,G,VS1,60.6,56,2970,5.84,5.87,3.55
0.7,Good,F,VS1,63.8,58,2970,5.58,5.61,3.57
0.78,Premium,E,VS2,62.6,57,2970,5.91,5.85,3.68
0.78,Ideal,H,VS2,61.6,56,2970,5.94,5.91,3.64
1.04,Good,I,SI2,59.9,64,2970,6.51,6.45,3.88
0.91,Fair,F,SI1,64.9,57,2971,6.13,6.08,3.96
0.81,Very Good,E,SI1,63.8,58,2972,5.85,5.97,3.77
0.76,Ideal,G,VS1,59.4,57,2972,5.99,6.03,3.57
0.7,Ideal,G,VS1,61.7,56,2972,5.64,5.71,3.5
0.9,Very Good,H,SI2,63.1,60,2972,6.14,6.09,3.86
0.81,Premium,H,VS1,62.6,58,2972,5.96,5.9,3.71
0.9,Very Good,J,SI2,63.3,59,2973,6.08,6.12,3.86
0.75,Ideal,G,VS1,62.3,57,2973,5.83,5.86,3.64
0.77,Ideal,D,SI2,60.6,56,2973,5.9,5.95,3.59
0.7,Ideal,E,VS1,60.5,56,2973,5.74,5.79,3.49
0.81,Very Good,E,SI1,59.5,60,2973,6.05,6.09,3.61
0.7,Good,E,VS1,59.8,62,2973,5.74,5.8,3.45
0.82,Ideal,F,SI1,62.6,57,2974,5.96,6.02,3.75
0.57,Ideal,F,IF,61.8,54,2974,5.33,5.35,3.3
0.9,Good,H,SI1,64.2,60,2974,6.05,6.02,3.87
1,Fair,D,SI2,69.3,58,2974,5.96,5.87,4.1
0.71,Ideal,G,VS2,59.5,57,2974,5.81,5.8,3.46
0.7,Very Good,F,VS1,62.1,57,2975,5.69,5.72,3.54
0.7,Premium,F,VVS2,62.2,58,2975,5.72,5.66,3.54
0.82,Very Good,E,SI2,63.3,56,2975,5.99,5.95,3.78
0.8,Ideal,F,SI1,62.8,54,2975,5.9,5.97,3.74
0.83,Premium,G,SI1,61.6,59,2975,6.02,5.99,3.7
0.83,Ideal,H,VS2,61.3,54,2975,6.1,6.06,3.73
0.77,Premium,E,SI1,60.4,58,2975,6,5.88,3.59
0.79,Ideal,F,SI1,62.5,57,2976,5.88,5.92,3.69
0.72,Ideal,E,SI1,61,56,2976,5.82,5.85,3.56
0.91,Ideal,I,SI2,63,54,2976,6.17,6.12,3.86
0.71,Very Good,G,VVS2,60.8,58,2977,5.75,5.77,3.5
0.81,Ideal,F,SI1,61.9,57,2977,5.98,6.01,3.71
0.76,Premium,D,VS2,60.9,58,2977,5.9,5.85,3.58
0.54,Ideal,F,VVS1,61.6,55,2977,5.28,5.27,3.25
0.71,Ideal,G,VVS2,62.5,58,2978,5.7,5.73,3.57
0.7,Ideal,E,VS1,61.3,54,2978,5.77,5.83,3.54
0.8,Ideal,E,SI2,61,55,2978,6,6.03,3.67
0.76,Ideal,E,SI2,62.1,56,2978,5.85,5.88,3.64
0.72,Ideal,H,VVS1,59.9,59,2979,5.76,5.82,3.47
0.7,Ideal,E,VS2,61.7,56,2979,5.74,5.71,3.53
0.86,Premium,F,SI2,61.8,58,2980,6.12,6.15,3.79
0.7,Ideal,E,VS2,61.5,57,2980,5.67,5.78,3.52
0.7,Good,D,SI1,61.3,61,2980,5.63,5.69,3.47
0.64,Good,F,IF,58.6,61,2980,5.69,5.71,3.34
0.7,Ideal,E,VS2,62.2,55,2981,5.67,5.71,3.54
0.91,Premium,I,SI2,60.2,59,2981,6.29,6.24,3.77
0.91,Ideal,I,SI2,61.6,57,2981,6.24,6.23,3.84
0.9,Good,E,SI2,58.7,63,2982,6.2,6.23,3.65
0.71,Ideal,G,VVS1,61.7,57,2982,5.7,5.75,3.53
0.9,Fair,E,SI2,65.8,59,2982,6.03,5.98,3.95
0.71,Ideal,E,VS2,59.5,57,2982,5.86,5.83,3.48
0.71,Very Good,G,VS1,60.8,63,2982,5.76,5.68,3.48
0.71,Premium,E,VS2,62.6,58,2982,5.72,5.68,3.57
0.74,Ideal,E,VS2,62.7,54,2984,5.8,5.77,3.63
0.9,Very Good,J,VS2,63.1,57,2984,6.12,6.06,3.84
1,Premium,G,I1,62.5,62,2984,6.42,6.35,3.99
0.7,Very Good,D,VS2,63.1,56,2985,5.62,5.69,3.57
0.75,Ideal,E,SI1,62.2,57,2985,5.82,5.86,3.63
0.82,Premium,H,VS1,62.3,60,2985,5.97,5.94,3.71
0.77,Very Good,G,VS1,62.8,58,2986,5.78,5.84,3.65
0.8,Ideal,I,VS1,61.9,54.1,2986,5.92,5.98,3.69
0.82,Ideal,I,VS1,61.6,57,2986,6,6.05,3.71
0.84,Ideal,G,SI2,62,56,2986,6.02,6.05,3.74
0.7,Ideal,G,VS1,61.3,59,2987,5.68,5.7,3.49
0.74,Ideal,D,SI1,61.5,56,2987,5.8,5.84,3.58
0.77,Premium,E,SI1,61.7,58,2988,5.86,5.9,3.63
0.6,Very Good,F,IF,60.1,54,2988,5.5,5.58,3.33
1.03,Very Good,G,I1,63.2,58,2988,6.44,6.34,4.04
0.76,Ideal,I,IF,61.6,55,2988,5.92,5.89,3.64
0.72,Ideal,F,VS2,62.1,54,2989,5.76,5.8,3.59
0.83,Premium,D,SI1,61.3,58,2990,6.03,6,3.69
0.76,Very Good,G,VS2,62.1,54,2990,5.88,5.94,3.67
0.72,Very Good,E,VS2,62.9,57,2990,5.68,5.73,3.59
0.57,Good,E,VVS1,59.1,65,2990,5.34,5.43,3.18
0.75,Ideal,G,VS2,60.6,55,2991,5.91,5.93,3.59
0.7,Ideal,D,VS2,60.3,60,2991,5.71,5.76,3.46
0.7,Very Good,E,VS2,62.8,56,2992,5.66,5.68,3.56
0.75,Ideal,H,VVS2,62,55.1,2992,5.83,5.85,3.62
1.06,Fair,J,SI2,61,66,2992,6.54,6.35,3.93
0.69,Very Good,F,VVS2,61.5,60,2993,5.64,5.67,3.48
0.87,Very Good,H,SI2,61,56,2993,6.15,6.19,3.77
0.75,Very Good,E,SI1,63.6,56,2993,5.73,5.75,3.65
0.7,Ideal,G,VVS2,63,55,2993,5.65,5.69,3.57
0.7,Ideal,F,VS1,62.4,55,2993,5.65,5.7,3.54
0.75,Ideal,E,SI1,61.1,57,2993,5.83,5.86,3.57
0.72,Ideal,D,SI1,61.1,59,2993,5.76,5.8,3.53
1.01,Fair,G,SI1,65.1,57,2993,6.27,6.22,4.07
0.71,Very Good,F,VS2,59.6,56,2994,5.84,5.88,3.49
0.71,Very Good,G,VS1,59.3,55,2994,5.88,5.95,3.51
0.81,Very Good,G,VS2,63.1,58,2994,5.88,5.84,3.7
1.24,Premium,J,I1,61.9,55,2994,6.92,6.85,4.26
0.81,Premium,G,VS2,62,58,2994,5.95,5.92,3.68
0.81,Premium,D,SI2,61.7,58,2994,5.97,5.93,3.67
0.73,Ideal,D,SI1,61.4,56,2995,5.78,5.82,3.56
0.7,Ideal,G,VS1,60.9,56,2995,5.76,5.8,3.52
0.91,Fair,F,SI2,65.3,51,2996,6.05,5.98,3.93
0.88,Very Good,I,VS1,63.3,55,2996,6.11,6.06,3.85
0.77,Ideal,D,SI1,61.4,56,2996,5.9,5.93,3.63
0.74,Ideal,I,VS2,61.9,55,2997,5.8,5.83,3.6
0.72,Ideal,H,SI1,61.1,56,2997,5.78,5.8,3.54
0.7,Ideal,D,VS2,62.8,57,2998,5.69,5.75,3.59
0.72,Ideal,H,VS1,61.4,56,2998,5.79,5.81,3.56
0.7,Ideal,F,VS1,61.6,57,2998,5.7,5.73,3.52
1.01,Fair,J,VVS2,66,56,2998,6.29,6.22,4.13
0.85,Fair,G,VS1,57.7,67,2998,6.26,6.19,3.59
0.7,Very Good,D,VS2,59.7,59,2999,5.82,5.78,3.46
0.73,Very Good,G,VS1,62.4,58.1,2999,5.71,5.75,3.58
1.02,Fair,H,I1,61.5,60,2999,6.4,6.34,3.92
0.87,Premium,F,SI2,61.6,58,2999,6.14,6.1,3.77
0.71,Ideal,F,SI1,61.9,56,2999,5.69,5.74,3.54
0.7,Premium,G,VVS2,60.6,60,2999,5.77,5.69,3.47
0.74,Premium,E,VS1,62.7,58,2999,5.83,5.74,3.63
0.74,Premium,E,VS1,60.9,62,2999,5.83,5.8,3.54
0.7,Premium,G,VVS2,60.2,61,2999,5.74,5.66,3.43
0.77,Ideal,E,SI1,62.5,56,3000,5.87,5.91,3.68
0.93,Good,J,VS2,63.6,61,3000,6.16,6.08,3.89
0.9,Premium,I,SI2,60.6,60,3001,6.23,6.28,3.79
0.9,Very Good,I,SI2,62.5,58,3001,6.1,6.15,3.83
0.9,Ideal,I,SI2,62,56,3001,6.16,6.2,3.83
0.72,Very Good,D,SI1,61.5,58,3001,5.74,5.78,3.54
0.7,Premium,D,VS1,61.6,61,3001,5.66,5.61,3.47
0.7,Good,D,VS1,63.6,60,3001,5.61,5.52,3.54
0.7,Very Good,D,VS1,63.4,59,3001,5.58,5.55,3.53
0.6,Ideal,G,VVS1,62.1,56,3001,5.42,5.43,3.37
0.75,Very Good,H,VVS2,60.6,57,3002,5.86,5.89,3.56
0.83,Very Good,E,SI1,62.1,58,3002,6.01,6.04,3.74
0.77,Very Good,E,SI2,60.4,58,3002,5.91,5.95,3.58
0.71,Premium,D,VS2,62.1,60,3002,5.68,5.72,3.54
0.89,Good,H,SI2,63.3,59,3002,6.04,6.09,3.84
0.72,Good,F,VS1,63.8,58,3002,5.68,5.63,3.61
0.72,Ideal,G,VVS2,61.6,55,3002,5.78,5.77,3.56
0.8,Premium,G,VS2,60.6,59,3002,6.02,5.97,3.63
0.73,Fair,F,VS1,58.6,66,3002,5.92,5.88,3.46
0.76,Ideal,E,SI1,61.5,56,3003,5.89,5.91,3.63
1.01,Fair,D,SI2,64.6,56,3003,6.31,6.24,4.05
0.65,Premium,D,VVS2,59.9,58,3003,5.69,5.63,3.39
0.81,Premium,F,SI1,61.9,58,3004,5.99,5.96,3.7
0.81,Ideal,F,SI1,61.8,55,3004,6.04,6,3.72
0.7,Ideal,H,VS1,61.7,55,3004,5.69,5.72,3.52
0.61,Ideal,E,VS1,61.3,54,3004,5.53,5.5,3.38
0.78,Ideal,G,SI1,60.6,57,3004,5.95,5.97,3.61
0.72,Ideal,F,SI1,62.3,56,3004,5.77,5.79,3.6
0.92,Premium,D,SI2,60.2,61,3004,6.32,6.27,3.79
0.75,Very Good,E,SI1,61.1,59,3005,5.85,5.9,3.59
0.55,Ideal,F,VVS1,61.2,54,3005,5.3,5.35,3.26
0.8,Very Good,H,SI1,63,57,3005,5.89,5.95,3.73
0.72,Ideal,I,VS1,60.4,56,3005,5.8,5.86,3.52
0.73,Ideal,H,VVS1,61.6,57,3005,5.81,5.78,3.57
0.91,Very Good,I,SI2,63.4,58,3006,6.08,6.12,3.87
0.91,Very Good,G,SI2,62.8,59,3006,6.09,6.14,3.84
0.71,Premium,E,VS1,61.1,58,3006,5.8,5.76,3.53
0.71,Very Good,E,VS1,63.2,60,3006,5.63,5.6,3.55
0.55,Premium,D,VVS1,60.3,59,3006,5.34,5.3,3.21
0.71,Ideal,I,VVS2,60.7,57,3007,5.76,5.8,3.51
0.71,Ideal,I,VVS2,60.4,57,3007,5.78,5.81,3.5
0.7,Premium,E,VVS2,62.7,53,3007,5.65,5.61,3.53
0.71,Ideal,G,SI1,61.3,55,3007,5.73,5.79,3.53
0.71,Ideal,G,SI1,61.6,55,3007,5.72,5.78,3.54
0.71,Ideal,G,SI1,61.9,56,3007,5.73,5.76,3.55
0.71,Ideal,G,SI1,61.6,57,3007,5.73,5.76,3.54
0.71,Ideal,G,SI1,61.4,56,3007,5.72,5.77,3.53
0.76,Ideal,D,SI1,61.2,57,3007,5.88,5.91,3.61
0.91,Very Good,F,SI1,63.1,60,3007,6.13,6.1,3.86
0.7,Very Good,D,VS1,60.4,58,3008,5.71,5.78,3.47
0.61,Ideal,G,VVS1,61.2,56,3008,5.46,5.48,3.35
0.7,Ideal,F,VS2,61.3,57,3008,5.7,5.76,3.51
0.82,Premium,H,VS1,62.5,59,3008,5.96,5.94,3.72
0.71,Very Good,E,VS1,63.7,58,3009,5.63,5.68,3.6
0.71,Very Good,E,VS1,62.1,57,3009,5.67,5.69,3.53
0.71,Very Good,E,VS1,63.4,58,3009,5.64,5.68,3.59
0.74,Very Good,E,SI1,61.3,58,3009,5.8,5.84,3.57
0.83,Ideal,F,SI1,62.1,57,3010,6,6.02,3.73
0.83,Very Good,F,SI1,62.1,58,3010,5.98,6.06,3.74
0.8,Ideal,I,VS1,60.7,59,3010,5.98,6.02,3.64
0.8,Ideal,D,SI1,62.2,57,3011,5.89,5.85,3.65
0.73,Very Good,G,VS1,60.7,55,3011,5.87,5.89,3.57
1,Very Good,G,I1,62.5,62,3011,6.42,6.35,3.99
1.2,Fair,J,I1,64.9,59,3011,6.61,6.54,4.27
1.2,Fair,I,I1,62.2,66,3011,6.77,6.7,4.2
1.2,Fair,I,I1,66.2,55,3011,6.61,6.51,4.34
0.61,Ideal,E,VVS2,62,54,3011,5.43,5.47,3.38
0.7,Ideal,F,VS2,61.9,55,3011,5.7,5.74,3.54
0.7,Ideal,F,VS2,61.8,57,3011,5.67,5.75,3.53
0.7,Ideal,F,VS2,62.7,55,3011,5.66,5.69,3.56
0.7,Ideal,F,VS2,61.4,58,3011,5.7,5.73,3.51
0.77,Ideal,D,SI2,62.3,55,3011,5.9,5.85,3.66
0.75,Ideal,H,SI1,61.9,55,3011,5.82,5.85,3.61
0.75,Ideal,H,SI1,61.9,56,3011,5.81,5.85,3.61
1,Fair,E,SI2,55.4,62,3011,6.63,6.59,3.66
0.78,Very Good,G,VS2,61.3,60,3012,5.89,5.96,3.63
0.82,Ideal,E,SI2,62.2,57,3012,6,5.97,3.72
0.72,Ideal,G,VS2,61.7,56,3012,5.74,5.78,3.55
0.72,Ideal,E,SI1,61,57,3012,5.77,5.8,3.53
0.72,Ideal,E,SI1,60.3,55,3012,5.85,5.89,3.54
0.8,Very Good,F,SI1,63.9,56,3013,5.84,5.87,3.74
0.75,Premium,F,VS2,61.6,58,3013,5.84,5.89,3.61
0.71,Very Good,F,VS1,62.1,53,3013,5.7,5.77,3.56
0.71,Ideal,F,VS1,61.1,57,3013,5.76,5.82,3.54
0.81,Ideal,E,SI2,61.8,56,3013,6,5.97,3.7
0.81,Ideal,E,SI2,60.1,57,3013,6.07,6.1,3.66
0.9,Premium,D,SI1,62.2,60,3013,6.08,6.05,3.77
0.78,Ideal,E,SI1,62.7,55,3014,5.9,5.87,3.69
0.71,Ideal,H,VVS1,61.8,56,3014,5.7,5.75,3.54
0.73,Very Good,D,SI1,60.8,59,3014,5.8,5.85,3.54
1.01,Premium,G,I1,61.1,61,3014,6.49,6.35,3.92
0.9,Good,G,SI2,63.7,62,3014,6.07,6.01,3.85
0.84,Very Good,G,SI2,62.8,57,3015,6,6.04,3.78
0.91,Very Good,E,SI2,58.6,63,3015,6.32,6.38,3.72
0.78,Ideal,H,VVS2,61.7,55,3015,5.9,5.94,3.65
0.81,Ideal,E,SI2,61,56,3015,5.99,6.05,3.67
0.72,Very Good,D,VS2,62.1,59,3016,5.7,5.73,3.55
0.7,Premium,E,VS1,61.8,58,3016,5.71,5.75,3.54
0.7,Ideal,E,VS1,62.7,57,3016,5.65,5.7,3.56
0.9,Good,F,SI2,64.2,62,3016,6,6.08,3.88
0.76,Ideal,H,VS2,61.9,55,3016,5.85,5.88,3.64
0.96,Premium,E,SI2,62.8,60,3016,6.3,6.24,3.94
0.9,Ideal,H,SI2,62.8,55,3016,6.18,6.11,3.86
0.7,Very Good,G,VS1,60.1,60,3017,5.73,5.76,3.45
0.71,Very Good,F,VS1,61.8,60,3017,5.66,5.7,3.51
1.12,Premium,G,I1,60.3,60,3017,6.75,6.69,4.05
0.7,Ideal,G,VS1,61.1,56,3017,5.72,5.74,3.5
0.5,Good,D,VVS2,62.4,64,3017,5.03,5.06,3.14
1.12,Very Good,G,I1,61.2,63,3017,6.68,6.59,4.05
0.7,Good,F,VVS1,63.2,58,3018,5.58,5.62,3.54
1.03,Very Good,G,I1,60.8,57,3018,6.51,6.55,3.97
0.7,Premium,F,VVS2,62.5,59,3018,5.68,5.61,3.53
0.71,Ideal,F,VVS2,62.6,56,3018,5.7,5.65,3.55
0.72,Ideal,H,VS2,61.2,57,3018,5.79,5.77,3.54
0.7,Good,E,VS1,60.2,61,3018,5.71,5.75,3.45
1.02,Very Good,F,SI2,63.3,56,3018,6.38,6.31,4.02
0.77,Premium,F,VS2,62.4,59,3018,5.85,5.81,3.64
0.7,Premium,F,VVS2,62.2,56,3018,5.72,5.63,3.53
0.93,Premium,G,SI2,61.4,56,3019,6.27,6.23,3.84
0.78,Premium,D,SI1,60.4,57,3019,6.02,5.97,3.62
0.71,Ideal,D,VS2,60.4,53,3020,5.81,5.85,3.52
0.73,Very Good,F,SI1,61.3,56,3023,5.78,5.84,3.56
0.65,Ideal,E,VVS2,62.1,57,3023,5.55,5.6,3.46
0.85,Ideal,G,SI1,61.6,55,3023,6.09,6.11,3.76
0.9,Good,H,SI2,63.1,60,3024,6.09,6.14,3.86
0.9,Good,H,SI2,63.1,55,3024,6.08,6.13,3.85
0.75,Premium,E,VS2,62.1,57,3024,5.9,5.79,3.63
0.9,Very Good,J,VS2,63.1,59,3024,6.09,6.05,3.83
0.9,Good,J,VS2,63.9,58,3024,6.15,6.08,3.91
0.72,Premium,E,VS2,60.4,61,3024,5.79,5.76,3.49
0.9,Fair,H,SI1,65.6,57,3024,6.04,6.01,3.95
0.72,Premium,E,VS2,62.5,59,3024,5.73,5.7,3.57
0.75,Good,D,SI1,63.6,58,3024,5.77,5.65,3.63
0.75,Premium,E,SI1,61.7,60,3024,5.84,5.8,3.59
0.72,Very Good,G,VS1,60.1,63,3024,5.86,5.82,3.51
0.75,Premium,D,SI1,59.2,58,3024,5.96,5.93,3.52
0.65,Very Good,D,VVS2,57.7,60,3025,5.69,5.74,3.3
0.7,Very Good,G,VS2,61.8,55,3026,5.69,5.74,3.53
0.59,Ideal,E,VVS2,61.8,57,3026,5.35,5.4,3.32
0.71,Ideal,E,VS2,62.3,56,3026,5.7,5.73,3.56
0.83,Ideal,H,VS2,61.3,54,3027,6.06,6.1,3.73
1.02,Fair,J,SI1,66.8,55,3027,6.25,6.18,4.15
1,Fair,G,SI2,64.9,57,3027,6.29,6.2,4.05
1.02,Premium,G,SI2,61.7,58,3027,6.46,6.41,3.97
0.77,Good,H,VVS2,57.9,61,3027,6.07,6.01,3.5
0.7,Very Good,F,VVS2,58.5,60,3028,5.82,5.94,3.44
0.8,Ideal,H,VS2,62.1,54,3030,5.96,5.99,3.71
0.74,Ideal,H,VS1,61.6,55,3030,5.79,5.83,3.58
0.77,Fair,F,VS1,66.8,57,3031,5.66,5.76,3.82
0.72,Premium,G,VS1,58.9,58,3032,5.93,5.85,3.47
1.01,Good,E,I1,63.8,57,3032,6.4,6.33,4.06
1.01,Very Good,H,SI2,63.5,55,3032,6.32,6.27,4
0.55,Ideal,F,VVS1,61.2,54,3032,5.35,5.3,3.26
0.71,Very Good,D,VS2,63,57,3033,5.67,5.7,3.58
0.73,Ideal,G,VS1,61.6,57,3033,5.76,5.79,3.56
0.76,Ideal,E,SI1,62.5,57,3033,5.8,5.82,3.63
0.52,Ideal,E,IF,61.1,57,3033,5.17,5.21,3.17
0.7,Good,D,VS2,64.1,59,3033,5.56,5.49,3.54
0.7,Very Good,D,VS2,63.2,60,3033,5.61,5.56,3.53
0.7,Good,D,VS2,63.9,58,3033,5.62,5.58,3.58
0.92,Fair,I,VS2,64.4,58,3033,6.13,6.1,3.94
0.91,Premium,H,SI1,63,57,3033,6.19,6.1,3.87
0.91,Ideal,I,SI2,61.6,57,3034,6.23,6.24,3.84
0.91,Good,I,SI2,60.2,59,3034,6.24,6.29,3.77
0.7,Ideal,G,VS1,61.4,57,3034,5.7,5.73,3.51
0.72,Very Good,E,VS2,63.8,57,3035,5.66,5.69,3.62
0.71,Ideal,E,VS2,59.5,57,3035,5.83,5.86,3.48
0.72,Ideal,G,VS1,62.4,59,3035,5.71,5.74,3.57
0.78,Ideal,D,SI1,62.4,57,3035,5.87,5.89,3.67
0.71,Ideal,D,SI1,60.6,57,3035,5.82,5.72,3.5
0.8,Very Good,H,VVS2,62.9,56,3036,5.9,5.96,3.73
0.74,Ideal,E,VS2,62.6,56,3036,5.73,5.81,3.61
0.74,Premium,D,SI1,62.4,59,3036,5.73,5.8,3.6
0.61,Ideal,D,VVS2,62.4,58,3036,5.38,5.42,3.37
0.78,Ideal,F,SI1,61,55,3036,6,5.96,3.65
0.7,Very Good,G,VVS1,63.3,57,3037,5.59,5.63,3.55
0.32,Good,E,SI1,63.3,56,561,4.34,4.35,2.75
0.32,Premium,G,VS2,60.5,58,561,4.41,4.42,2.67
0.4,Good,H,SI2,63.7,59,561,4.64,4.69,2.97
0.32,Premium,G,VS2,62.5,60,561,4.32,4.38,2.72
0.32,Ideal,G,VS2,61.4,56,561,4.37,4.39,2.69
0.32,Premium,G,VS2,59.8,59,561,4.48,4.52,2.69
0.32,Premium,I,VVS2,60.7,59,561,4.4,4.43,2.68
0.32,Very Good,G,VS2,60.2,57,561,4.42,4.45,2.67
0.32,Good,G,VS2,63.3,54,561,4.36,4.39,2.77
0.32,Good,H,VS1,63.1,57,561,4.34,4.37,2.75
0.32,Ideal,G,VS2,61.4,55,561,4.4,4.46,2.72
0.32,Ideal,G,VS2,59.8,57,561,4.43,4.46,2.66
0.32,Ideal,G,VS2,61.7,57,561,4.38,4.4,2.71
0.32,Premium,H,VS1,62.3,58,561,4.34,4.39,2.72
0.32,Very Good,H,VS1,63,57,561,4.32,4.35,2.73
0.32,Premium,G,VS2,61.9,58,561,4.36,4.43,2.72
0.32,Good,G,VS2,63.1,57,561,4.3,4.35,2.73
0.32,Very Good,H,VS1,63,57,561,4.37,4.39,2.76
0.32,Ideal,G,VS2,61.8,57,561,4.37,4.4,2.71
0.32,Very Good,H,VS1,61.7,58,561,4.37,4.41,2.71
0.32,Premium,H,VS1,61.7,58,561,4.38,4.44,2.72
0.32,Very Good,E,SI1,60.1,60,561,4.42,4.47,2.67
0.32,Ideal,G,VS2,61.8,55,561,4.41,4.42,2.73
0.32,Premium,G,VS2,61.7,60,561,4.32,4.4,2.69
0.32,Good,E,SI1,63.4,55,561,4.35,4.36,2.76
0.32,Very Good,G,VS2,62.6,58,561,4.37,4.39,2.74
0.32,Premium,G,VS2,62.3,58,561,4.36,4.41,2.73
0.32,Ideal,G,VS2,61.6,57,561,4.39,4.41,2.71
0.32,Ideal,H,VS1,61.9,55,561,4.4,4.42,2.73
0.32,Ideal,H,VS1,60.2,56,561,4.44,4.49,2.69
0.72,Ideal,E,SI1,62.2,58,3037,5.72,5.75,3.57
0.76,Ideal,H,VS2,61.4,57,3038,5.85,5.88,3.6
0.7,Ideal,H,VS2,61.5,56,3038,5.71,5.73,3.52
0.73,Ideal,E,SI1,62.2,56,3038,5.76,5.79,3.59
0.7,Very Good,G,VVS2,61,59,3039,5.67,5.7,3.47
0.7,Fair,F,VS1,64.9,59,3039,5.56,5.59,3.62
0.77,Very Good,D,SI1,62.1,58,3040,5.84,5.89,3.64
0.92,Premium,I,SI2,61.5,59,3040,6.27,6.21,3.84
0.73,Ideal,G,VS1,61.8,57,3041,5.78,5.81,3.58
0.71,Ideal,F,VS1,62.7,57,3041,5.66,5.7,3.56
0.71,Ideal,F,VS1,61.7,55,3041,5.73,5.77,3.55
0.81,Good,I,VS1,59.4,56,3042,5.97,6.11,3.59
0.71,Ideal,G,VVS2,62.5,57,3042,5.73,5.7,3.57
0.72,Very Good,G,VVS2,60.4,58,3043,5.77,5.82,3.5
0.81,Premium,F,SI1,61.9,59,3043,5.97,5.95,3.69
0.81,Ideal,I,SI1,61.3,56,3043,6.27,6.23,3.83
0.77,Very Good,F,SI1,59.6,60,3044,5.95,5.97,3.55
0.83,Ideal,G,SI1,62.1,57,3044,6.03,5.95,3.72
0.71,Very Good,F,VS1,62.2,55,3045,5.68,5.74,3.56
0.71,Very Good,F,VS1,61.2,57,3045,5.73,5.77,3.52
0.78,Very Good,F,SI1,62.4,58,3045,5.83,5.86,3.65
0.71,Very Good,D,VS2,62.8,56,3045,5.67,5.7,3.57
0.72,Premium,D,VS2,60.2,60,3045,5.76,5.81,3.48
1.14,Ideal,J,SI1,60.2,57,3045,6.81,6.71,4.07
0.75,Ideal,E,SI1,60.8,56,3045,5.91,5.89,3.59
0.75,Very Good,D,SI1,59.7,62,3046,5.89,5.94,3.53
0.7,Good,G,VVS2,61.1,61,3046,5.67,5.69,3.47
0.79,Very Good,F,SI1,61.5,58,3047,5.94,5.97,3.66
0.73,Fair,D,VS1,66,54,3047,5.56,5.66,3.7
0.91,Premium,G,SI2,60.1,62,3047,6.24,6.2,3.73
0.91,Premium,G,SI2,62.8,59,3047,6.14,6.12,3.85
0.93,Ideal,I,SI2,62.3,57,3047,6.22,6.2,3.87
0.82,Very Good,F,SI1,63.9,56.9,3048,5.85,5.92,3.76
0.75,Very Good,D,SI1,61.8,57,3048,5.78,5.81,3.58
0.72,Premium,H,IF,58.7,59,3048,5.94,5.88,3.47
0.72,Ideal,G,SI1,61.8,56,3048,5.7,5.76,3.55
0.72,Good,E,VS1,57.9,60,3048,5.97,5.91,3.44
0.72,Very Good,E,VS1,63.1,56,3048,5.7,5.65,3.58
0.9,Ideal,J,VS1,62.6,55,3048,6.13,6.11,3.83
0.72,Premium,D,SI1,60.5,57,3048,5.89,5.85,3.55
0.72,Premium,D,SI1,62.6,54,3048,5.78,5.72,3.6
0.75,Ideal,E,SI1,61.4,55,3049,5.8,5.86,3.58
0.66,Ideal,D,VVS2,61.6,57,3049,5.64,5.57,3.45
0.83,Ideal,E,SI2,61.9,53,3049,6.08,6.04,3.75
0.62,Very Good,D,VVS2,58.1,63,3050,5.59,5.66,3.27
0.8,Very Good,E,SI1,63.1,56,3050,5.93,5.83,3.71
0.76,Ideal,H,SI1,61.3,55,3050,5.87,5.93,3.62
0.76,Ideal,H,SI1,61.4,55,3050,5.82,5.9,3.6
0.82,Good,E,SI2,61.8,56,3050,5.95,5.99,3.69
0.81,Ideal,E,SI2,62.1,57,3050,5.97,5.91,3.69
1.02,Good,E,I1,63.1,60,3051,6.31,6.4,4.01
0.66,Very Good,G,IF,60.5,59,3051,5.69,5.74,3.46
0.7,Very Good,D,VS2,62.5,55,3052,5.65,5.71,3.55
0.77,Ideal,F,VS2,61.2,57,3052,5.93,5.97,3.64
0.7,Very Good,G,VVS2,60.2,61,3052,5.66,5.74,3.43
1.03,Fair,G,SI1,66.1,56,3052,6.26,6.2,4.12
0.7,Very Good,D,VS2,62.6,58,3053,5.67,5.7,3.56
0.71,Very Good,E,VS2,59.9,59,3053,5.79,5.83,3.48
0.7,Very Good,F,VS1,62.8,59,3053,5.65,5.69,3.56
0.71,Ideal,E,VS2,60.9,56,3053,5.77,5.83,3.53
0.81,Ideal,F,SI2,62.3,54,3053,5.94,5.98,3.72
0.78,Ideal,E,SI2,61,56,3053,5.92,5.98,3.63
0.75,Ideal,E,SI1,61.3,57,3053,5.84,5.91,3.6
0.79,Very Good,E,SI1,63.2,56,3053,5.91,5.83,3.71
0.79,Premium,G,VS1,62.3,56,3053,5.94,5.87,3.68
0.79,Premium,G,VS1,61.3,59,3053,5.97,5.91,3.64
0.79,Ideal,E,SI1,62.1,54,3053,5.96,5.92,3.69
0.7,Very Good,D,VS1,62.9,60,3054,5.62,5.67,3.55
1.01,Premium,H,SI2,61.1,60,3054,6.46,6.41,3.93
1.01,Premium,I,SI2,61.9,58,3054,6.45,6.41,3.98
1.01,Fair,I,SI2,66.1,58,3054,6.21,6.04,4.05
1.01,Fair,I,SI2,68.1,59,3054,6.14,6.11,4.17
0.78,Very Good,E,SI1,60.9,57,3055,5.93,5.97,3.62
0.65,Very Good,D,VVS2,59.9,58,3056,5.63,5.69,3.39
0.61,Ideal,E,VVS2,60.8,56,3056,5.5,5.47,3.34
0.78,Ideal,G,SI1,61.7,56,3056,5.9,5.93,3.65
0.76,Ideal,E,SI1,62.4,54,3056,5.84,5.86,3.65
0.9,Very Good,I,SI2,61.5,61,3057,6.13,6.16,3.78
0.92,Very Good,D,SI2,60.2,61,3057,6.27,6.32,3.79
0.57,Ideal,F,VVS1,61.1,55,3057,5.36,5.44,3.3
0.76,Good,F,VS1,59.9,61,3057,5.89,5.98,3.56
0.9,Good,I,SI2,60.7,58,3057,6.17,6.21,3.76
0.82,Fair,H,SI1,64.9,58,3057,5.82,5.77,3.76
0.91,Good,F,SI2,63.9,56,3058,6.11,6.06,3.89
0.79,Premium,D,SI1,61.4,59,3058,5.96,5.89,3.64
0.91,Premium,J,VS2,61.6,58,3058,6.28,6.23,3.85
0.72,Very Good,F,VS1,62.1,59,3059,5.69,5.74,3.55
0.81,Very Good,E,SI2,62.9,56,3059,5.87,5.9,3.7
0.71,Very Good,E,VS1,61.8,56,3059,5.74,5.78,3.56
1.03,Very Good,G,I1,62.4,57,3060,6.41,6.45,4.01
0.9,Good,G,SI2,63.6,57,3060,6.1,6.04,3.86
0.74,Very Good,H,VVS1,62.4,57,3061,5.76,5.81,3.61
0.7,Very Good,E,VS1,61.1,55,3061,5.72,5.77,3.51
0.71,Very Good,E,VS1,63.3,56,3061,5.64,5.68,3.58
0.9,Very Good,J,SI1,63.8,56,3061,6.11,6.14,3.91
0.71,Ideal,G,SI1,61.5,55,3061,5.75,5.79,3.55
0.91,Good,I,SI2,57.9,60,3061,6.46,6.39,3.72
0.71,Fair,G,VVS1,62.8,57,3062,5.67,5.57,3.53
0.7,Premium,F,VVS2,58.7,60,3062,5.8,5.75,3.39
0.72,Ideal,D,SI1,61.5,56.5,3062,5.76,5.79,3.55
0.9,Fair,F,SI2,65.7,63,3062,6.01,5.96,3.93
0.71,Premium,E,VS2,62.2,59,3062,5.71,5.61,3.52
0.71,Premium,E,VS2,62,61,3062,5.71,5.65,3.52
0.93,Premium,J,VS1,60.3,58,3062,6.37,6.31,3.82
0.7,Very Good,E,VS1,62.2,57,3063,5.63,5.68,3.52
0.7,Very Good,E,VS1,62.5,56,3063,5.64,5.68,3.54
0.7,Good,E,VS1,59.4,61,3063,5.79,5.83,3.45
0.71,Very Good,E,VS1,63.3,59,3064,5.64,5.68,3.58
0.76,Premium,E,VS2,61.7,62,3064,5.85,5.82,3.6
0.7,Ideal,F,VS2,61.4,56,3064,5.72,5.75,3.52
0.7,Ideal,F,VS2,61.6,55,3064,5.72,5.75,3.53
0.8,Ideal,F,SI2,61.4,56,3064,5.99,5.93,3.66
0.72,Very Good,E,VS2,63,58,3065,5.69,5.73,3.6
0.7,Ideal,G,VS1,61.5,56,3065,5.7,5.75,3.52
0.65,Ideal,H,IF,61.5,55,3065,5.6,5.62,3.45
0.85,Very Good,D,SI2,61.4,60,3066,6.05,6.13,3.74
0.77,Ideal,I,VS1,61.4,56,3066,5.9,5.93,3.63
0.71,Ideal,F,VS1,62,57,3066,5.7,5.75,3.55
0.71,Ideal,F,VS1,62.1,57,3066,5.73,5.76,3.57
0.8,Ideal,F,SI2,62.5,56,3066,5.94,5.99,3.73
0.8,Ideal,F,SI2,61.8,59,3066,5.94,5.96,3.68
0.73,Very Good,E,VS2,63.1,55,3066,5.77,5.71,3.62
0.9,Good,G,SI2,63.7,62,3067,6.01,6.07,3.85
0.78,Ideal,E,SI1,62.7,55,3067,5.87,5.9,3.69
0.7,Very Good,E,VS1,63.4,60,3068,5.63,5.66,3.58
0.7,Ideal,E,VS2,62.6,56,3068,5.65,5.69,3.55
0.85,Very Good,I,VS2,60,57,3070,6.1,6.16,3.68
0.8,Very Good,G,SI1,62.9,56,3070,5.88,5.95,3.72
0.8,Very Good,E,SI2,62.6,59,3070,5.84,5.91,3.68
0.92,Good,J,SI2,59,63,3070,6.3,6.35,3.73
0.8,Very Good,G,SI1,62.1,56,3071,6.01,5.85,3.68
0.82,Ideal,I,VS1,61.6,56,3071,6.05,6.01,3.72
0.71,Good,G,VVS1,62.7,61,3072,5.64,5.68,3.55
0.7,Very Good,G,VVS1,63.1,56,3073,5.64,5.67,3.57
0.79,Very Good,F,SI1,58.5,61,3073,6.03,6.08,3.54
0.7,Ideal,G,VVS1,61.6,55,3073,5.72,5.75,3.53
0.75,Ideal,G,VS2,61.6,55,3073,5.86,5.89,3.62
0.71,Ideal,E,VS2,62.2,57,3073,5.69,5.73,3.55
0.62,Premium,E,VVS1,61.9,59,3073,5.62,5.5,3.44
1.03,Premium,G,I1,60.8,57,3073,6.55,6.51,3.97
0.7,Good,D,VS2,58,65,3073,5.81,5.73,3.39
0.78,Very Good,G,VS2,61.7,58,3074,5.87,5.92,3.64
0.9,Fair,I,VVS2,67,56,3074,5.91,5.83,3.93
0.77,Ideal,H,VS1,61.4,55,3074,5.89,5.93,3.63
0.9,Good,G,SI1,63.7,56,3074,6.1,6.06,3.87
0.72,Very Good,D,VS2,61.8,58,3075,5.73,5.76,3.55
0.72,Very Good,D,VS2,62.6,59,3075,5.69,5.72,3.57
0.71,Very Good,F,SI2,61.4,56,3075,5.71,5.73,3.51
0.7,Very Good,D,SI1,62.4,57,3075,5.64,5.67,3.53
0.72,Ideal,H,VVS1,62.2,57,3075,5.72,5.75,3.57
0.76,Ideal,I,VS2,61.7,56,3075,5.87,5.9,3.63
0.76,Ideal,D,SI1,62.8,57,3075,5.81,5.85,3.66
0.79,Ideal,E,SI1,62.9,55,3075,5.93,5.86,3.71
0.79,Very Good,E,SI1,60.4,59,3077,5.97,5.99,3.61
0.79,Very Good,E,SI1,63.7,58,3077,5.79,5.85,3.71
0.73,Ideal,E,VS2,62.7,56,3077,5.75,5.8,3.62
0.71,Fair,D,VS2,64.7,58,3077,5.61,5.58,3.62
0.71,Premium,D,VS2,60.3,62,3077,5.76,5.69,3.45
0.75,Good,D,SI1,63.6,58,3078,5.65,5.77,3.63
0.72,Premium,E,VS2,62.5,59,3078,5.7,5.73,3.57
0.83,Premium,D,SI2,62.7,56,3078,6.01,5.98,3.76
0.76,Ideal,E,VS2,61.3,56,3079,5.79,5.83,3.56
0.94,Good,I,SI2,63.8,60,3079,6.21,6.14,3.94
0.91,Fair,D,SI2,62.5,66,3079,6.08,6.01,3.78
1,Very Good,E,I1,62.3,58,3080,6.33,6.38,3.96
1,Ideal,H,I1,61.3,57,3080,6.41,6.44,3.94
1,Fair,J,VS1,66.6,57,3080,6.07,6.03,4.03
1,Premium,H,SI2,59.4,60,3080,6.49,6.4,3.83
1,Premium,H,SI2,62.8,60,3080,6.46,6.34,4.02
0.82,Premium,F,SI1,61.1,60,3080,6.02,5.96,3.66
0.71,Ideal,H,VS2,61.8,55,3080,5.75,5.78,3.56
0.71,Ideal,H,VS2,61.8,55,3080,5.73,5.75,3.55
0.79,Very Good,D,SI2,63.2,57,3081,5.81,5.86,3.69
0.75,Ideal,F,VS2,62.1,57,3081,5.8,5.82,3.61
0.79,Ideal,F,SI1,62,55,3081,5.93,5.95,3.68
0.71,Ideal,E,VS1,62.2,57,3081,5.74,5.7,3.56
0.8,Very Good,F,SI1,63.5,58,3082,5.89,5.85,3.73
0.91,Very Good,H,SI1,63.4,55,3082,6.18,6.15,3.91
0.6,Ideal,E,VVS1,62.5,53.7,3082,5.35,5.43,3.38
0.6,Ideal,E,VVS1,62,53.7,3082,5.4,5.44,3.36
0.7,Good,D,VS2,57.7,60,3082,5.83,5.86,3.37
0.91,Very Good,J,VS1,63.5,55,3082,6.22,6.12,3.92
0.71,Premium,F,VS1,58.6,62,3082,5.88,5.82,3.43
0.86,Premium,H,VS2,61.3,59,3082,6.17,6.1,3.76
0.8,Ideal,F,SI1,61,56,3082,6.05,5.98,3.67
0.8,Premium,F,SI1,60.1,58,3082,6.07,6.05,3.64
0.8,Premium,D,SI2,61.1,58,3082,5.94,5.9,3.62
0.92,Premium,F,SI2,62.1,60,3083,6.21,6.26,3.87
0.72,Very Good,F,VS1,63.2,57,3083,5.69,5.73,3.61
1.01,Premium,H,SI2,59.4,62,3083,6.47,6.43,3.83
0.71,Very Good,D,VS2,61.8,55,3084,5.72,5.74,3.54
0.72,Very Good,E,SI2,61,59,3084,5.73,5.78,3.51
0.81,Premium,I,VVS2,62.9,59,3084,5.95,5.84,3.71
0.53,Ideal,E,VVS1,61.8,55,3084,5.19,5.24,3.22
0.61,Ideal,E,VVS1,62.2,56,3084,5.43,5.47,3.39
0.85,Ideal,G,SI1,62,54,3084,6.08,6.11,3.78
0.75,Good,E,VS2,62.6,58,3084,5.73,5.78,3.6
0.9,Good,E,SI2,64.1,57,3084,6.09,6.07,3.9
0.9,Very Good,E,SI2,63.4,62,3084,6.02,6,3.81
0.9,Premium,E,SI2,60.7,61,3084,6.22,6.16,3.76
0.9,Premium,E,SI2,59.5,61,3084,6.3,6.24,3.73
0.9,Fair,E,SI2,64.5,55,3084,6.12,6.03,3.92
0.9,Fair,E,SI2,65.8,58,3084,6.02,5.98,3.95
0.9,Premium,E,SI2,63,57,3084,6.08,6.05,3.82
0.81,Ideal,H,VS2,61.6,56,3084,6.03,5.98,3.7
0.81,Premium,G,VS2,61.2,60,3084,6,5.99,3.67
0.9,Very Good,E,SI2,63.1,54,3084,6.2,6.17,3.9
1.02,Fair,I,SI2,64.5,56,3084,6.28,6.25,4.04
0.72,Ideal,F,VS1,62.4,56,3084,5.76,5.72,3.58
0.75,Very Good,D,SI1,63.9,56,3085,5.73,5.75,3.67
0.84,Premium,E,SI2,59.2,59,3086,6.19,6.14,3.65
0.75,Ideal,E,VS1,61.8,55,3086,5.85,5.87,3.62
0.7,Good,D,VS2,63.9,58,3087,5.58,5.62,3.58
0.7,Good,D,VS2,63.2,60,3087,5.56,5.61,3.53
0.91,Very Good,H,SI1,63,57,3087,6.1,6.19,3.87
0.7,Good,D,VS2,64.1,59,3087,5.49,5.56,3.54
0.76,Ideal,E,SI1,62.4,57,3087,5.83,5.87,3.65
0.74,Ideal,D,VS2,61.9,56,3087,5.84,5.79,3.6
1.01,Good,J,SI2,63.7,60,3088,6.4,6.29,4.05
1.01,Very Good,J,SI2,63.3,53,3088,6.35,6.31,4.01
0.79,Premium,F,VS2,60.7,60,3089,5.95,5.97,3.62
0.77,Ideal,H,SI1,61.3,56,3089,5.87,5.91,3.61
0.73,Ideal,G,SI1,61.4,57,3089,5.74,5.79,3.54
0.73,Ideal,G,SI1,60.9,57,3089,5.81,5.85,3.55
0.73,Ideal,G,SI1,60.6,57,3089,5.84,5.87,3.55
0.73,Ideal,G,SI1,61.9,55,3089,5.76,5.8,3.58
0.73,Ideal,G,SI1,61.2,57,3089,5.79,5.86,3.56
0.73,Ideal,G,SI1,61.7,57,3089,5.78,5.81,3.57
0.71,Ideal,D,VS1,62.5,57,3090,5.71,5.68,3.56
0.58,Ideal,F,VVS1,61.7,55,3090,5.36,5.39,3.31
0.87,Ideal,F,SI2,62.2,56,3090,6.03,6.13,3.78
0.71,Premium,D,VS1,58.1,62,3090,5.89,5.84,3.41
0.72,Ideal,E,VS2,60.8,57,3091,5.79,5.82,3.53
0.92,Premium,J,VS2,60.9,62,3091,6.31,6.26,3.83
1.2,Premium,G,I1,60.3,58,3091,6.82,6.77,4.1
0.8,Premium,E,SI1,62.9,60,3091,5.89,5.87,3.7
0.98,Very Good,H,SI2,63.4,57,3091,6.41,6.32,4.04
0.7,Very Good,D,VS2,60.7,58,3092,5.7,5.73,3.47
0.7,Ideal,D,VS2,61.6,58,3092,5.66,5.7,3.5
0.7,Ideal,D,VS2,62.3,55,3092,5.67,5.7,3.54
0.8,Very Good,F,SI1,63.1,58,3093,5.89,5.93,3.73
0.7,Ideal,E,VS2,62,57,3093,5.68,5.71,3.53
0.7,Ideal,D,VS1,61.9,57,3093,5.69,5.72,3.53
0.72,Ideal,E,VVS2,62.1,57,3093,5.76,5.74,3.57
0.71,Ideal,G,VVS2,62.5,57,3095,5.7,5.73,3.57
0.7,Very Good,E,VS1,63.4,57,3095,5.63,5.67,3.58
0.81,Very Good,G,SI1,62.3,59,3095,5.93,5.98,3.71
0.94,Premium,F,SI2,62.3,59,3095,6.32,6.23,3.91
0.9,Premium,H,SI1,62.4,56,3095,6.13,6.05,3.8
0.71,Very Good,D,VS2,63.1,59,3096,5.64,5.67,3.57
0.71,Very Good,D,VS2,63,58,3096,5.65,5.68,3.57
0.77,Good,H,VVS1,63.1,57,3096,5.83,5.86,3.69
0.91,Premium,F,SI2,62.1,56,3096,6.26,6.21,3.87
0.81,Ideal,I,SI1,61.3,56,3097,6.23,6.27,3.83
0.81,Premium,F,SI1,60.3,59,3097,5.98,6.05,3.63
0.52,Ideal,E,VVS1,61.8,55,3097,5.19,5.2,3.21
0.53,Ideal,D,VVS1,61.6,55,3097,5.21,5.27,3.23
1.29,Good,I,I1,64.2,54,3098,6.93,6.83,4.42
0.9,Very Good,I,SI2,60.4,58,3099,6.25,6.31,3.79
0.72,Ideal,D,VS2,61.8,57,3099,5.76,5.73,3.55
0.94,Premium,G,SI2,63,59,3099,6.16,6.1,3.86
0.93,Ideal,I,SI2,62.3,57,3101,6.2,6.22,3.87
0.74,Ideal,F,VVS2,61.5,54,3101,5.84,5.86,3.6
0.81,Ideal,E,SI2,62.1,55,3101,5.94,5.98,3.7
0.71,Premium,E,VS2,62.2,59,3101,5.79,5.76,3.59
0.72,Very Good,D,SI1,60.5,57,3102,5.85,5.89,3.55
0.9,Very Good,J,VS1,62.6,55,3102,6.11,6.13,3.83
0.72,Ideal,G,VS1,61.3,56,3102,5.77,5.82,3.55
0.9,Ideal,J,SI1,62.6,54,3102,6.16,6.23,3.88
0.83,Ideal,E,SI2,61.9,53,3103,6.04,6.08,3.75
0.66,Ideal,D,VVS2,61.6,57,3103,5.57,5.64,3.45
0.71,Ideal,E,VS2,62.2,56,3103,5.7,5.75,3.56
0.78,Premium,D,SI1,61.8,59,3103,5.93,5.88,3.65
0.81,Very Good,H,VS1,63.6,57,3104,5.87,5.9,3.74
0.71,Very Good,F,VVS1,63.3,58,3104,5.67,5.64,3.58
0.9,Fair,G,SI2,55.9,62,3104,6.35,6.42,3.57
0.9,Fair,G,SI2,64.7,58,3104,5.94,6.03,3.87
0.9,Ideal,I,SI2,62.8,55,3104,6.19,6.14,3.87
0.7,Premium,F,VVS2,62.6,59,3105,5.66,5.62,3.53
0.78,Ideal,I,VS1,61.9,56,3105,5.91,5.94,3.67
0.78,Ideal,I,VS1,60.7,56,3105,5.97,6.03,3.64
0.9,Very Good,H,SI2,59.5,63,3105,6.31,6.26,3.74
0.9,Premium,H,SI2,62.4,61,3105,6.11,6.03,3.79
0.9,Very Good,H,SI2,61.1,63,3105,6.19,6.12,3.76
1.52,Good,E,I1,57.3,58,3105,7.53,7.42,4.28
1.52,Good,E,I1,57.3,58,3105,7.53,7.42,4.28
0.9,Ideal,J,VS2,59.8,56,3105,6.27,6.24,3.74
0.9,Fair,H,SI2,65.6,58,3105,6.05,5.95,3.95
0.75,Premium,D,SI1,58.9,60,3105,5.99,5.97,3.52
0.7,Premium,G,VVS1,61.2,56,3105,5.75,5.68,3.5
0.9,Very Good,H,SI2,63.4,60,3105,6.08,6.03,3.84
0.72,Ideal,F,VS1,62.4,55,3105,5.78,5.75,3.6
0.9,Premium,H,SI2,59.6,59,3105,6.38,6.24,3.76
0.9,Good,H,SI2,64.1,58,3105,6.05,6.02,3.87
0.72,Premium,F,VVS2,61.6,59,3105,5.78,5.72,3.54
0.79,Ideal,E,SI1,62.1,54,3107,5.92,5.96,3.69
0.79,Good,E,SI1,63.2,56,3107,5.83,5.91,3.71
0.7,Very Good,E,VS1,63.4,56,3107,5.6,5.63,3.56
0.7,Ideal,E,VS1,62.2,58,3107,5.62,5.69,3.52
0.7,Good,D,VS1,60.4,63,3107,5.73,5.76,3.47
0.32,Good,E,SI1,63.2,56,561,4.35,4.38,2.76
0.32,Ideal,I,VVS2,61.5,56,561,4.4,4.42,2.71
0.32,Ideal,H,VS1,61.3,55,561,4.41,4.43,2.71
0.32,Premium,G,VS2,61,59,561,4.42,4.46,2.71
0.32,Premium,H,VS1,61.3,60,561,4.33,4.38,2.67
0.32,Premium,G,VS2,62.3,60,561,4.37,4.4,2.73
0.32,Ideal,I,VVS2,62.6,54,561,4.37,4.41,2.75
0.32,Very Good,E,SI1,61.6,56,561,4.39,4.41,2.71
0.32,Ideal,G,VS2,61.8,57,561,4.38,4.42,2.72
0.32,Very Good,G,VS2,62.4,59,561,4.33,4.36,2.71
0.32,Good,E,SI1,63.1,56,561,4.36,4.39,2.76
0.32,Very Good,H,VS1,61.7,61,561,4.38,4.43,2.72
0.32,Premium,G,VS2,62,58,561,4.33,4.38,2.7
0.32,Premium,G,VS2,62.6,59,561,4.33,4.36,2.72
0.32,Very Good,E,SI1,62.8,57,561,4.34,4.39,2.74
0.32,Premium,G,VS2,62.6,60,561,4.33,4.36,2.72
0.32,Very Good,H,VS1,60.5,59,561,4.41,4.42,2.67
0.32,Very Good,E,SI1,62.2,57,561,4.38,4.43,2.74
0.32,Premium,H,VS1,60.6,60,561,4.4,4.44,2.68
0.32,Ideal,G,VS2,60.3,57,561,4.43,4.46,2.68
0.32,Very Good,E,VS2,60.5,58,561,4.4,4.42,2.67
0.32,Very Good,H,VS1,62.9,54,561,4.37,4.41,2.76
0.32,Premium,E,SI1,60.2,60,561,4.39,4.44,2.66
0.32,Premium,G,VS2,62.1,60,561,4.34,4.39,2.71
0.32,Premium,I,VVS2,61.9,59,561,4.35,4.38,2.7
0.32,Premium,H,VS1,62.4,58,561,4.35,4.4,2.73
0.32,Premium,G,VS2,61.5,58,561,4.35,4.4,2.69
0.32,Ideal,E,SI1,61.9,56,561,4.39,4.43,2.73
0.32,Premium,G,VS2,61.5,60,561,4.4,4.42,2.71
0.32,Premium,E,SI1,61.9,59,561,4.36,4.39,2.71
0.76,Premium,E,VS2,63,59,3107,5.79,5.76,3.64
0.9,Good,I,VS2,62.4,65,3107,6.12,6.09,3.81
0.9,Very Good,G,SI2,63.3,59,3107,6.12,6.07,3.86
0.76,Premium,E,VS2,60.3,60,3107,5.97,5.94,3.59
0.81,Premium,H,VS1,61.7,58,3107,5.98,5.95,3.68
0.77,Ideal,F,SI1,61.5,56,3108,5.89,5.95,3.64
0.74,Premium,E,VS2,62.4,59,3108,5.77,5.73,3.59
0.75,Premium,E,VS2,59.9,61,3108,5.97,5.91,3.56
0.7,Very Good,E,VS1,62,60,3109,5.61,5.64,3.49
0.7,Premium,F,VVS1,61.9,59,3109,5.67,5.6,3.49
0.81,Ideal,E,SI1,62.4,57,3109,5.92,5.97,3.71
1.01,Good,H,I1,63.2,58,3110,6.33,6.39,4.02
0.76,Very Good,E,VS2,61,58,3111,5.88,5.93,3.6
1.01,Good,H,SI2,64.1,56,3111,6.37,6.3,4.06
0.8,Ideal,H,VS1,63.1,58,3111,5.89,5.96,3.74
0.68,Very Good,F,VVS2,57.3,60,3112,5.83,5.89,3.36
0.91,Very Good,J,VS2,61.6,58,3112,6.23,6.28,3.85
0.79,Premium,D,SI1,61.4,59,3112,5.89,5.96,3.64
0.71,Very Good,E,VS1,59.8,58,3112,5.78,5.82,3.47
0.71,Very Good,H,IF,63,57,3112,5.63,5.7,3.57
0.71,Ideal,E,VS2,61.6,57,3112,5.71,5.79,3.54
0.71,Very Good,G,VVS2,61.2,58,3113,5.68,5.72,3.49
0.78,Very Good,G,VS2,62.6,58,3113,5.81,5.89,3.66
0.82,Ideal,I,VS1,61.3,57,3113,6.02,6.07,3.7
0.9,Good,H,SI2,60.4,61,3114,6.14,6.22,3.73
0.9,Very Good,G,SI2,60.1,60,3114,6.22,6.32,3.77
0.76,Ideal,G,VS2,61.7,55,3114,5.86,5.91,3.63
0.77,Ideal,G,VS2,62.1,56,3114,5.85,5.88,3.64
0.9,Good,H,SI2,64.3,58,3114,5.97,6.03,3.86
0.93,Ideal,G,SI2,61,54,3114,6.35,6.32,3.87
0.86,Very Good,H,SI1,63.8,56,3115,6.02,6.05,3.85
0.7,Good,E,VS2,60.3,60,3115,5.69,5.75,3.45
0.9,Good,H,SI2,64.3,60,3115,6,6.1,3.89
0.84,Premium,F,SI1,59,59,3115,6.18,6.13,3.63
0.8,Good,F,VS1,63.3,55,3116,5.87,5.92,3.73
0.9,Good,F,SI2,63.3,57,3116,6.08,6.14,3.87
0.9,Good,F,SI2,63.2,59,3116,6.06,6.13,3.85
0.71,Ideal,F,VS2,61.2,56,3116,5.77,5.79,3.54
0.92,Fair,F,SI1,64.9,58,3117,6.1,6.04,3.94
1.08,Premium,H,I1,61.7,59,3118,6.54,6.59,4.05
0.85,Ideal,G,SI1,60.4,56,3118,6.26,6.17,3.75
0.83,Very Good,F,SI1,63.1,58,3118,5.98,5.94,3.76
1.16,Fair,H,SI2,68.2,55,3118,6.47,6.37,4.38
0.87,Ideal,H,VS2,61.7,57,3118,6.14,6.09,3.77
0.9,Very Good,J,VS2,61.9,59,3119,6.14,6.2,3.82
0.7,Ideal,F,SI1,61.9,55,3119,5.7,5.74,3.54
0.7,Ideal,F,SI1,61.2,55,3119,5.74,5.76,3.52
1.02,Premium,J,SI2,62.3,58,3119,6.42,6.37,3.98
1.02,Fair,J,SI2,65,59,3119,6.34,6.24,4.08
0.91,Fair,E,SI2,64.5,60,3119,6.04,5.96,3.87
0.75,Ideal,E,VS2,62,56,3120,5.82,5.85,3.62
0.9,Very Good,I,SI1,63.2,56,3120,6.15,6.12,3.88
0.77,Ideal,G,VS1,62.4,54,3121,5.93,5.89,3.69
0.76,Good,G,VS1,60.3,60.7,3121,5.86,5.9,3.55
0.9,Premium,I,SI1,61.8,58,3121,6.26,6.2,3.85
0.9,Very Good,I,SI1,63.5,59,3121,6.1,6.05,3.86
0.9,Premium,I,SI1,62.1,59,3121,6.19,6.15,3.83
0.86,Ideal,I,VS2,62.1,57,3121,6.1,6.07,3.78
0.71,Very Good,E,SI1,60,56,3122,5.85,5.78,3.49
0.72,Ideal,H,VS2,61.7,56,3122,5.74,5.77,3.56
0.72,Ideal,H,VS2,60.1,56,3122,5.85,5.88,3.52
0.92,Good,I,SI1,57.4,65,3122,6.42,6.48,3.7
0.9,Very Good,G,SI2,64.2,56,3123,6.04,6.11,3.9
0.7,Ideal,G,VVS1,62.3,57,3123,5.61,5.65,3.51
0.71,Ideal,F,VS2,61.8,56.2,3123,5.7,5.75,3.53
0.71,Ideal,G,VS1,60.9,56.6,3123,5.75,5.79,3.52
0.71,Ideal,G,VS1,61.8,56.1,3123,5.72,5.74,3.54
0.82,Ideal,G,SI1,60.7,57,3123,6.07,6.06,3.68
0.77,Very Good,G,VS2,62.8,59,3124,5.81,5.84,3.66
0.72,Ideal,H,VVS1,61.4,56,3124,5.79,5.77,3.55
0.84,Very Good,E,SI2,62.1,58,3125,6.02,6.09,3.76
0.83,Ideal,E,SI2,61.3,57,3125,6.02,6.05,3.7
0.94,Good,D,SI2,57.9,61,3125,6.48,6.43,3.74
0.9,Good,H,SI1,60.5,64,3125,6.18,6.11,3.72
0.52,Ideal,E,VVS1,61.8,55,3125,5.2,5.19,3.21
0.93,Premium,J,VS2,61.1,59,3125,6.34,6.32,3.87
0.57,Very Good,D,VVS1,62.8,56,3126,5.27,5.31,3.32
0.72,Ideal,G,VVS2,61.2,57,3126,5.72,5.81,3.53
0.57,Ideal,D,VVS1,61.6,56,3126,5.33,5.35,3.29
1.13,Good,G,I1,63.4,58,3127,6.58,6.61,4.18
0.7,Very Good,G,VS1,61.6,57,3127,5.69,5.73,3.52
0.7,Very Good,G,VS1,61.9,57,3127,5.68,5.71,3.53
0.73,Ideal,G,VVS2,62.2,55,3127,5.77,5.74,3.58
0.73,Ideal,G,VVS2,61.9,56,3127,5.81,5.75,3.58
0.73,Premium,E,VS2,61.9,57,3127,5.79,5.75,3.57
0.71,Ideal,E,SI1,61.1,57,3128,5.75,5.77,3.52
0.7,Ideal,D,VS2,61.5,56,3129,5.7,5.74,3.52
0.75,Very Good,F,VS1,63.2,57,3129,5.78,5.74,3.64
0.75,Ideal,E,SI2,62.6,55,3129,5.72,5.79,3.6
0.97,Good,J,VS2,64.3,58,3129,6.25,6.22,4.01
0.74,Ideal,I,VVS2,61.3,57,3130,5.82,5.85,3.57
0.74,Ideal,G,SI1,60.6,55,3130,5.87,5.93,3.57
0.74,Ideal,G,SI1,61.9,55,3130,5.8,5.83,3.6
0.74,Ideal,G,SI1,61.3,57,3130,5.81,5.83,3.57
0.7,Very Good,D,VS2,61.2,60,3131,5.73,5.77,3.52
0.71,Very Good,D,VS2,60.3,62,3131,5.69,5.76,3.45
0.82,Ideal,E,SI2,62.6,55,3131,5.94,5.98,3.73
0.72,Ideal,H,VS1,61.6,55,3133,5.76,5.8,3.56
0.82,Ideal,G,SI1,61.8,55,3133,6.02,6.05,3.73
0.74,Premium,E,VS1,60,57,3133,5.94,5.89,3.55
0.94,Good,I,SI2,63.8,60,3134,6.14,6.21,3.94
0.71,Ideal,D,VS2,61.2,56,3135,5.76,5.78,3.53
0.71,Ideal,D,VS2,60.4,57,3135,5.77,5.82,3.5
0.73,Ideal,F,VS1,62.9,56,3135,5.71,5.77,3.61
0.8,Very Good,D,VS2,63.1,57,3135,5.94,5.89,3.73
0.81,Premium,D,SI1,60.7,58,3135,6.07,5.99,3.66
0.7,Premium,F,VVS2,62.6,59,3136,5.66,5.62,3.53
1,Fair,E,SI2,66.6,59,3136,6.07,6.01,4.02
0.8,Premium,G,VS2,59.6,59,3136,6.09,6,3.6
0.75,Ideal,E,VS2,60.2,57,3136,5.93,5.9,3.56
1,Premium,E,I1,62.3,58,3136,6.38,6.33,3.96
0.71,Ideal,D,VS1,62.2,55,3136,5.74,5.71,3.56
1,Fair,E,SI2,67,53,3136,6.19,6.13,4.13
1,Fair,E,SI2,67,53,3136,6.19,6.13,4.13
1,Premium,G,SI2,62.5,59,3136,6.41,6.33,3.98
1,Ideal,H,I1,61.3,57,3136,6.44,6.41,3.94
0.8,Ideal,F,SI1,61,56,3137,5.98,6.05,3.67
0.72,Premium,H,VVS1,61.4,58,3137,5.75,5.78,3.54
0.71,Ideal,H,VVS1,61.1,56,3137,5.78,5.81,3.53
0.71,Ideal,D,VS2,62.3,56,3137,5.68,5.72,3.55
1.01,Very Good,G,SI1,62,63,3137,6.34,6.25,3.9
0.79,Very Good,E,SI1,63.3,56.3,3138,5.85,5.88,3.71
0.74,Very Good,D,SI1,61.5,59,3138,5.76,5.82,3.56
0.72,Very Good,D,VS2,63.1,59,3139,5.67,5.7,3.59
0.9,Very Good,E,SI2,60.7,61,3139,6.16,6.22,3.76
0.9,Good,E,SI2,64.1,57,3139,6.07,6.09,3.9
0.9,Good,E,SI2,63.4,62,3139,6,6.02,3.81
0.9,Very Good,E,SI2,59.5,61,3139,6.24,6.3,3.73
0.72,Ideal,G,VVS2,62.4,57,3139,5.71,5.76,3.58
0.54,Ideal,D,VVS1,61.4,58,3139,5.28,5.25,3.23
0.73,Ideal,F,VS1,61.1,57,3140,5.8,5.89,3.57
0.7,Ideal,G,VS1,61.2,57,3140,5.7,5.74,3.5
0.72,Good,E,VS2,60.8,62,3140,5.73,5.78,3.5
0.73,Ideal,D,SI1,62.4,53,3140,5.82,5.79,3.62
1.02,Premium,H,I1,62.5,60,3141,6.39,6.41,4
1.02,Very Good,E,I1,60.6,63,3141,6.46,6.52,3.93
0.9,Premium,J,SI1,60.4,59,3141,6.27,6.24,3.78
1,Premium,G,SI2,59.1,59,3142,6.55,6.48,0
0.7,Ideal,E,VS2,61.9,56,3142,5.69,5.72,3.53
1,Fair,G,SI2,64.6,67,3142,6.25,6.19,4.02
1.02,Ideal,H,SI2,58.8,57,3142,6.61,6.55,3.87
1,Premium,G,SI2,61.5,56,3142,6.49,6.44,3.97
1,Fair,G,SI2,68.3,54,3142,6.21,6.12,4.2
0.68,Very Good,G,IF,62.7,56,3143,5.56,5.6,3.5
0.83,Ideal,E,SI2,61,57,3143,6.06,6.13,3.72
0.8,Very Good,H,VS1,62.7,56,3144,5.88,5.96,3.71
1.21,Good,E,I1,57.2,62,3144,7.01,6.95,3.99
0.7,Very Good,E,VS1,62.8,57,3145,5.65,5.68,3.56
0.71,Very Good,D,VS1,58.1,62,3145,5.84,5.89,3.41
0.84,Very Good,D,SI2,63.6,57,3145,5.95,6,3.8
0.9,Premium,I,VS1,60.7,58,3145,6.3,6.19,3.79
0.9,Very Good,J,VS2,63.5,56,3145,6.12,6.1,3.88
0.7,Ideal,H,VS2,61.2,56,3145,5.72,5.75,3.51
0.7,Ideal,H,VS2,61.2,57,3145,5.73,5.77,3.52
0.71,Ideal,E,VS2,60.1,59,3145,5.79,5.83,3.49
0.7,Ideal,G,SI1,61.6,55,3145,5.71,5.76,3.53
0.9,Fair,G,SI1,65.4,57,3145,6.04,5.95,3.92
0.9,Fair,G,SI1,65.6,56,3145,6.1,6.03,3.98
0.9,Fair,G,SI1,65.4,59,3145,6.04,6,3.94
0.9,Fair,H,SI1,66.8,55,3145,5.98,5.9,3.97
0.74,Premium,G,VVS1,61.2,59,3145,5.84,5.79,3.56
0.72,Ideal,E,VS2,60.6,57,3145,5.85,5.83,3.54
0.72,Good,F,VVS2,61.3,65,3145,5.76,5.72,3.52
0.78,Premium,D,SI1,60.9,55,3145,6,5.93,3.63
0.71,Very Good,F,VS2,63.3,57,3146,5.65,5.69,3.59
0.71,Ideal,H,IF,61.2,56,3146,5.74,5.79,3.53
0.92,Very Good,J,VS2,60.9,62,3146,6.26,6.31,3.83
0.8,Very Good,E,SI1,62.9,60,3146,5.87,5.89,3.7
0.81,Ideal,F,SI1,61.2,57,3146,6,6.05,3.69
0.78,Ideal,E,SI1,62.1,58,3146,5.86,5.9,3.65
0.73,Good,E,VS1,63.7,59,3146,5.67,5.69,3.62
1.06,Ideal,I,SI2,62.8,55,3146,6.51,6.46,4.07
1,Fair,F,SI2,65.5,56,3146,6.3,6.19,4.09
0.77,Ideal,G,VS1,62.2,56,3148,5.9,5.85,3.66
0.7,Good,E,VS1,61.2,58,3148,5.66,5.72,3.48
0.7,Good,E,VS1,58.7,60,3148,5.79,5.83,3.41
1.02,Ideal,I,VS2,62.8,57,3148,6.45,6.39,4.03
0.91,Good,G,SI2,62.5,60,3149,6.05,6.08,3.79
1.03,Good,J,SI2,64.1,62,3149,6.37,6.33,4.07
1.03,Fair,J,SI2,64.6,62,3149,6.3,6.21,4.06
1.03,Premium,J,SI2,62.2,59,3149,6.42,6.4,3.99
0.94,Very Good,F,SI2,62.3,59,3150,6.23,6.32,3.91
0.88,Very Good,E,SI2,59.1,58,3150,6.22,6.3,3.7
0.75,Ideal,E,VS2,61.7,56,3150,5.86,5.84,3.61
0.75,Premium,E,VS2,61.8,58,3150,5.85,5.83,3.61
0.72,Ideal,F,VS2,61.3,56,3151,5.78,5.8,3.55
0.77,Very Good,H,VS1,62.2,57,3152,5.81,5.86,3.63
0.75,Ideal,D,SI1,62,58,3152,5.81,5.84,3.61
0.83,Very Good,H,VS1,63.1,60,3153,5.91,5.98,3.75
0.9,Good,D,SI2,63.9,60,3153,6.07,6.11,3.89
0.8,Ideal,H,VS2,60.6,56,3153,6.03,6.08,3.67
0.71,Ideal,D,VS2,62,57,3153,5.69,5.73,3.54
0.92,Good,E,SI2,62,64,3153,6.2,6.16,3.83
0.7,Very Good,E,VVS2,59.2,61,3154,5.79,5.84,3.44
0.7,Very Good,E,VS1,62.2,55,3154,5.65,5.67,3.52
0.7,Very Good,E,VS1,63.6,57,3154,5.61,5.65,3.58
0.95,Very Good,J,SI1,63.4,55,3154,6.25,6.21,3.95
0.58,Ideal,D,VVS1,61.6,60,3154,5.34,5.35,3.29
0.73,Ideal,G,VS2,61.7,56,3154,5.79,5.81,3.58
0.77,Ideal,G,VS2,61.7,55,3154,5.87,5.9,3.63
0.7,Ideal,F,VS1,61.2,58,3154,5.7,5.73,3.5
0.7,Ideal,F,VS1,61.7,55,3154,5.72,5.76,3.54
0.95,Fair,J,SI1,58,66,3154,6.5,6.46,3.76
0.8,Ideal,D,SI2,61.9,54,3154,6,5.95,3.7
1.22,Premium,J,SI2,62.6,59,3156,6.79,4.24,3.76
0.64,Ideal,E,VVS2,62.1,53,3157,5.51,5.54,3.43
1.06,Premium,F,I1,60.3,58,3158,6.59,6.56,3.96
0.77,Ideal,D,SI1,62.3,56,3158,5.84,5.87,3.65
0.8,Very Good,G,VS1,59.5,63,3158,6.11,6.05,3.61
0.82,Premium,D,SI2,61.7,56,3159,6.01,5.99,3.7
0.78,Ideal,E,VS2,62.1,54,3159,5.92,5.94,3.68
0.7,Ideal,F,VVS2,62,57,3160,5.68,5.74,3.54
0.9,Very Good,H,SI2,62.8,57,3160,6.15,6.2,3.88
0.77,Very Good,D,SI1,58.6,59,3160,6,6.04,3.53
0.9,Good,H,SI2,63.4,60,3160,6.03,6.08,3.84
0.9,Very Good,H,SI2,62.9,57,3160,6.09,6.16,3.85
0.9,Good,H,SI2,62.4,61,3160,6.03,6.11,3.79
0.9,Very Good,H,SI2,59.5,63,3160,6.26,6.31,3.74
0.9,Ideal,J,VS2,61.3,57,3160,6.16,6.24,3.8
0.9,Very Good,H,SI2,61.1,63,3160,6.12,6.19,3.76
0.9,Very Good,H,SI2,59.2,61,3160,6.23,6.27,3.7
0.81,Ideal,D,SI2,61.9,54,3160,5.96,5.99,3.7
0.9,Fair,F,SI1,66,57,3160,6.06,6,3.98
0.63,Ideal,E,VVS1,62.4,56,3161,5.48,5.52,3.43
0.71,Premium,D,VS2,62.4,59,3161,5.73,5.68,3.56
0.71,Ideal,D,VS2,62.5,55,3161,5.74,5.71,3.58
0.71,Premium,D,VS2,59.2,59,3161,5.86,5.8,3.45
0.76,Very Good,E,VS2,63,59,3162,5.76,5.79,3.64
0.9,Good,I,VS2,62.4,65,3162,6.09,6.12,3.81
0.9,Good,G,SI2,63.3,59,3162,6.07,6.12,3.86
0.9,Very Good,H,SI2,63,55,3162,6.1,6.16,3.86
0.7,Ideal,F,VS1,61,58,3162,5.74,5.76,3.51
0.74,Good,E,VS2,63.9,54,3163,5.77,5.81,3.7
0.74,Good,E,VS2,63.5,56,3163,5.75,5.8,3.67
0.78,Good,F,VS1,64,54,3163,5.86,5.82,3.74
0.79,Ideal,F,SI1,61.3,56,3163,5.96,6.01,3.67
0.73,Ideal,H,VS2,61.4,55,3164,5.79,5.82,3.56
0.73,Ideal,H,VS2,61,56,3164,5.83,5.88,3.57
1,Fair,H,SI2,63.7,54,3164,6.42,6.27,4.06
0.7,Ideal,G,VVS1,62.8,57,3165,5.63,5.68,3.55
0.92,Premium,H,SI1,60.7,59,3165,6.34,6.25,3.82
0.77,Very Good,D,SI1,60.3,58,3166,5.89,5.96,3.57
0.73,Good,F,VVS2,58.2,63,3166,5.87,6.01,3.46
0.87,Fair,I,VS2,57.3,59,3166,6.29,6.44,3.65
1.01,Premium,H,I1,58.1,59,3167,6.66,6.6,0
0.71,Ideal,G,VVS1,62.1,56,3167,5.72,5.84,3.59
0.72,Ideal,H,VS1,61.8,55,3167,5.78,5.81,3.58
0.7,Ideal,E,VS1,62.6,55,3167,5.66,5.69,3.55
0.79,Ideal,H,SI1,61.4,56,3167,5.93,5.96,3.65
0.85,Ideal,E,SI1,61.8,54,3167,6.1,6.14,3.78
0.7,Ideal,H,IF,62.2,55,3167,5.68,5.71,3.54
0.72,Premium,F,VS1,62.2,57,3167,5.74,5.67,3.55
1.01,Fair,H,SI2,64.5,54,3167,6.26,6.15,4
1.01,Very Good,H,I1,63.2,58,3167,6.39,6.33,4.02
1.08,Ideal,F,I1,61.8,56,3168,6.64,6.62,4.1
1.23,Ideal,H,I1,61.6,55,3168,6.92,6.87,4.25
0.91,Very Good,J,SI2,62.4,61,3169,6.13,6.2,3.85
0.79,Ideal,F,SI1,61.2,56,3169,5.96,6.01,3.66
0.77,Ideal,F,SI1,61.4,55,3169,5.93,5.95,3.65
0.76,Very Good,G,VS2,61.1,57,3170,5.84,5.95,3.6
0.92,Very Good,J,SI1,62.6,58,3170,6.18,6.22,3.88
0.92,Ideal,J,SI1,62.3,56,3170,6.24,6.29,3.9
0.76,Ideal,E,SI1,61.8,57,3170,5.84,5.87,3.62
0.75,Ideal,E,SI1,62.1,55,3170,5.81,5.85,3.62
0.74,Premium,F,VS1,61.7,57,3170,5.85,5.79,3.59
0.74,Ideal,F,VS1,62.3,56,3170,5.79,5.76,3.6
1.09,Fair,F,SI2,66.3,56,3170,6.47,6.39,4.27
0.74,Ideal,F,VS1,61.7,56,3170,5.83,5.78,3.58
0.74,Ideal,F,VS1,62.3,57,3170,5.79,5.77,3.6
0.74,Ideal,F,VS2,62.1,56,3171,5.79,5.83,3.61
0.83,Very Good,G,SI1,62.3,58,3171,5.97,6.01,3.73
0.83,Ideal,H,VS2,61.6,55,3171,6.04,6.08,3.73
0.78,Ideal,G,VS2,62.2,57,3171,5.87,5.9,3.66
0.75,Ideal,G,SI1,61.8,55,3171,5.81,5.84,3.6
0.83,Ideal,G,SI1,61.8,55,3171,6.05,6.09,3.75
0.79,Ideal,E,SI1,60.3,56,3171,5.99,6.05,3.63
1.03,Ideal,H,I1,61.5,57,3172,6.48,6.52,4
1.03,Premium,H,I1,61.1,60,3172,6.46,6.51,3.96
1.03,Ideal,H,SI2,62.4,57,3172,6.43,6.36,4
0.7,Ideal,G,VS2,62.7,54,3172,5.65,5.7,3.65
0.7,Ideal,E,VS2,62.2,55,3172,5.64,5.67,3.52
0.84,Fair,F,VS2,65,57.2,3172,5.83,5.87,3.81
0.93,Fair,G,SI2,66.1,58.1,3172,6,6.04,3.98
0.7,Very Good,E,SI1,63.9,57,3173,5.55,5.66,3.58
1.01,Premium,G,SI2,60.1,58,3173,6.54,6.39,3.89
0.8,Ideal,D,SI2,61.5,58,3173,5.97,6,3.68
1.01,Fair,G,SI2,68.5,63,3173,6.08,6,4.14
0.92,Premium,H,SI2,60.4,59,3174,6.36,6.33,3.83
0.71,Very Good,F,VS1,62.9,55,3175,5.68,5.71,3.58
0.7,Ideal,H,VVS1,60.2,57,3175,5.78,5.82,3.49
0.9,Ideal,J,VS1,62.5,55,3175,6.18,6.14,3.85
0.7,Premium,E,VS1,62.9,61,3175,5.65,5.57,3.53
0.9,Premium,G,SI2,61.9,61,3175,6.13,6.06,3.77
0.9,Premium,J,VS1,62.3,56,3175,6.23,6.19,3.87
0.7,Good,E,VS1,63.6,58,3175,5.67,5.62,3.59
1,Fair,J,SI1,65.3,57,3175,6.33,6.12,4.08
1.5,Fair,H,I1,69.3,61,3175,6.99,6.81,4.78
0.9,Very Good,I,SI1,61.8,58,3176,6.2,6.26,3.85
0.9,Good,I,SI1,63.5,59,3176,6.05,6.1,3.86
0.77,Ideal,G,VS1,62.4,54,3176,5.89,5.93,3.69
0.32,Ideal,F,SI2,61.7,56,561,4.41,4.44,2.73
0.32,Premium,G,VS2,62.5,58,561,4.36,4.38,2.73
0.32,Ideal,G,VS2,62,57,561,4.39,4.41,2.73
0.32,Ideal,H,VS1,61.8,55,561,4.41,4.42,2.73
0.32,Ideal,G,VS2,61.5,57,561,4.4,4.41,2.71
0.32,Very Good,H,VS1,63,55,561,4.4,4.42,2.78
0.32,Premium,I,VVS2,62.1,59,561,4.35,4.38,2.71
0.32,Very Good,I,VVS2,63,57,561,4.33,4.37,2.74
0.32,Very Good,G,VS2,62.8,58,561,4.31,4.35,2.72
0.32,Premium,G,VS2,60.8,59,561,4.41,4.44,2.69
0.32,Premium,G,VS2,61.1,58,561,4.42,4.45,2.71
0.32,Very Good,G,VS2,59.9,57,561,4.47,4.51,2.69
0.32,Very Good,H,VS1,62.8,58,561,4.35,4.37,2.74
0.32,Very Good,E,SI1,62.2,58,561,4.36,4.39,2.72
0.32,Premium,E,SI1,62.3,58,561,4.37,4.4,2.73
0.4,Good,H,SI2,63.8,57,561,4.67,4.7,2.99
0.32,Premium,G,VS2,61.5,60,561,4.36,4.39,2.69
0.32,Premium,G,VS2,60.7,58,561,4.38,4.42,2.67
0.32,Premium,G,VS2,61.5,59,561,4.4,4.42,2.71
0.32,Ideal,G,VS2,61.4,57,561,4.39,4.4,2.7
0.32,Ideal,G,VS2,62,57,561,4.37,4.4,2.72
0.32,Ideal,E,SI1,61.8,55,561,4.42,4.45,2.74
0.32,Ideal,H,VS1,61.1,56,561,4.44,4.46,2.72
0.32,Ideal,G,VS2,62.5,56,561,4.38,4.42,2.75
0.32,Very Good,H,VS1,62.8,55,561,4.35,4.41,2.75
0.32,Ideal,G,VS2,61.8,55,561,4.41,4.43,2.73
0.32,Premium,G,VS2,61.2,59,561,4.38,4.41,2.69
0.32,Very Good,G,VS2,62,59,561,4.37,4.41,2.72
0.26,Very Good,F,VVS1,61.3,58,562,4.13,4.16,2.54
0.31,Ideal,G,VS2,61.7,55,562,4.37,4.39,2.7
0.7,Ideal,E,VS2,61.1,56,3176,5.73,5.76,3.51
0.72,Ideal,D,SI2,60.5,57,3176,5.82,5.89,3.54
0.7,Very Good,E,VS1,63.8,57,3177,5.61,5.65,3.59
0.74,Ideal,D,VS2,61.1,54,3177,5.86,5.89,3.59
0.67,Very Good,G,VVS1,62,56,3178,5.6,5.62,3.48
0.74,Ideal,H,VS2,62.2,55,3178,5.83,5.81,3.62
0.72,Ideal,G,VVS2,62.6,56,3179,5.7,5.74,3.58
0.72,Ideal,D,VS2,60.8,56,3179,5.8,5.84,3.54
0.72,Ideal,D,VS2,62.1,57,3179,5.69,5.75,3.55
0.72,Ideal,D,VS2,62.8,57,3179,5.68,5.73,3.58
0.81,Good,D,SI1,63.9,58,3179,5.9,5.85,3.75
1.5,Good,G,I1,57.4,62,3179,7.56,7.39,4.29
0.74,Very Good,E,VS2,61.8,58,3180,5.79,5.82,3.59
0.93,Very Good,J,VS2,61.1,59,3180,6.32,6.34,3.87
0.87,Very Good,H,SI1,62.2,57,3180,6.05,6.11,3.78
0.72,Ideal,H,VVS1,60.8,58,3180,5.77,5.8,3.52
0.72,Ideal,H,VVS1,61.8,55,3180,5.74,5.78,3.56
0.72,Ideal,H,VVS1,61.5,57,3180,5.74,5.76,3.54
0.91,Fair,H,SI1,64.4,60,3180,6.1,6.07,3.92
0.91,Fair,H,SI1,64.8,57,3180,6.12,6.07,3.95
0.91,Premium,H,SI1,62.2,56,3180,6.23,6.18,3.86
0.91,Very Good,J,SI2,62,56,3181,6.18,6.23,3.85
0.95,Premium,G,SI2,62.6,58,3181,6.22,6.18,3.88
0.63,Ideal,E,VVS1,61.1,58,3181,5.49,5.54,3.37
0.92,Ideal,J,SI1,61.7,57,3181,6.21,6.26,3.85
0.95,Premium,G,SI2,59.8,60,3181,6.36,6.34,3.8
0.8,Ideal,I,VVS1,61.7,56,3181,5.98,5.92,3.67
0.73,Very Good,D,VS2,63.5,58,3182,5.68,5.72,3.62
0.73,Ideal,D,VS2,62.1,56,3182,5.77,5.8,3.59
0.73,Ideal,G,VVS2,61.9,56,3183,5.74,5.81,3.61
0.73,Ideal,G,VVS2,62.2,55,3183,5.74,5.77,3.58
0.72,Very Good,E,SI1,63.3,56,3183,5.67,5.71,3.6
1.11,Premium,I,I1,61.8,59,3183,6.65,6.58,4.09
0.85,Ideal,H,SI1,60.8,57,3183,6.13,6.18,3.74
0.76,Ideal,G,VS2,61.5,55,3183,5.92,5.88,3.63
0.7,Premium,D,VS1,60.9,60,3183,5.75,5.71,3.49
0.73,Very Good,E,VS2,62.9,58,3184,5.7,5.75,3.6
0.78,Ideal,G,VS2,61.7,55,3184,5.94,5.89,3.65
0.7,Ideal,H,VS1,61.2,55,3185,5.71,5.76,3.51
0.7,Ideal,H,VS1,61,56,3185,5.75,5.79,3.51
0.7,Ideal,H,VS1,61.7,57,3185,5.66,5.7,3.5
0.79,Ideal,D,SI1,61.2,56,3185,6.02,5.95,3.66
0.72,Premium,G,IF,60.1,58,3185,5.89,5.86,3.53
0.9,Fair,E,SI2,57.5,68,3187,6.37,6.33,3.65
0.96,Premium,J,SI1,62.9,59,3187,6.3,6.22,3.94
0.9,Very Good,E,SI2,63.4,56,3187,6.15,5.99,3.85
1.03,Good,J,SI2,56.2,62,3188,6.69,6.73,3.77
0.9,Very Good,J,VS1,62.5,56,3188,6.11,6.21,3.85
0.75,Good,G,VVS1,58.4,56,3188,5.98,6.06,3.52
0.77,Ideal,E,SI1,61.6,57,3189,5.87,5.91,3.63
0.91,Very Good,G,SI2,60.3,59,3189,6.23,6.28,3.77
0.85,Ideal,E,SI2,62.8,57,3189,6.06,6.01,3.79
0.71,Ideal,H,VS2,61.9,55,3189,5.74,5.77,3.56
0.74,Ideal,E,VS2,59.5,57,3189,5.92,5.94,3.53
0.73,Ideal,D,SI1,61.8,56,3189,5.8,5.76,3.57
0.73,Ideal,D,SI1,61.9,56,3189,5.8,5.77,3.58
1.01,Premium,J,VS2,62.4,60,3190,6.45,6.35,3.99
0.71,Ideal,H,IF,62,54,3190,5.71,5.75,3.55
0.89,Premium,G,SI1,61.1,58,3190,6.24,6.17,3.79
0.92,Premium,I,SI1,62.9,60,3190,6.18,6.13,3.87
1.01,Fair,J,VS2,65.8,55,3190,6.29,6.24,4.12
0.7,Ideal,G,VVS2,60.6,56,3191,5.69,5.82,3.49
0.7,Ideal,G,VVS2,60.3,57,3191,5.75,5.83,3.49
0.7,Ideal,F,VVS2,62,55,3191,5.71,5.67,3.53
0.71,Ideal,E,VS2,62.1,57,3191,5.71,5.75,3.56
0.71,Ideal,E,VS2,62,57,3191,5.71,5.74,3.55
0.8,Ideal,E,VS2,61.4,55,3192,5.96,5.99,3.67
0.71,Ideal,D,VS1,62.2,55,3192,5.71,5.74,3.56
0.75,Ideal,E,VS2,60.2,57,3192,5.93,5.9,3.56
0.71,Very Good,E,VS1,62.1,60,3192,5.65,5.71,3.53
0.71,Very Good,E,VS1,61.5,57,3192,5.74,5.77,3.54
0.81,Ideal,G,SI1,62.2,57,3192,5.97,6.02,3.73
0.76,Ideal,E,VS2,61.5,56,3192,5.92,5.89,3.63
0.91,Good,H,VS2,63.8,59,3192,5.99,5.96,3.82
1,Good,H,SI2,62,64,3192,6.43,6.29,3.94
0.76,Premium,E,VS2,60.1,59,3192,6.01,5.97,3.6
1,Fair,H,SI2,64.4,57,3192,6.35,6.29,4.07
0.81,Premium,G,VS2,61.4,60,3193,6.02,5.99,3.69
0.73,Ideal,F,VVS2,62.2,54,3193,5.8,5.75,3.59
0.9,Good,J,VVS2,57.4,61,3193,6.42,6.37,3.67
0.7,Good,D,VS1,60.4,63,3193,5.68,5.74,3.45
0.81,Premium,G,VS2,62.9,58,3193,5.94,5.88,3.72
0.9,Good,H,SI2,63.6,60,3193,6.11,6.06,3.87
0.54,Premium,D,VVS1,61.4,57.5,3194,5.25,5.28,3.23
0.83,Very Good,G,VS2,62.7,58,3195,5.97,6.03,3.76
0.73,Ideal,D,SI1,62.4,53,3195,5.79,5.82,3.62
0.71,Ideal,G,VS1,62.3,54,3195,5.68,5.72,3.55
0.8,Ideal,D,SI1,61.7,56,3195,5.96,6,3.69
0.83,Good,G,VS2,63.7,60.9,3195,5.84,5.92,3.75
0.91,Very Good,F,SI1,63.5,58,3195,6.15,6.1,3.89
0.91,Very Good,F,SI1,63.3,60,3195,6.1,6.06,3.85
0.6,Ideal,F,VVS2,61.5,57,3196,5.42,5.45,3.34
0.9,Good,I,SI1,63,53,3196,6.08,6.15,3.85
0.91,Ideal,F,SI2,61.7,55,3196,6.27,6.2,3.85
0.9,Very Good,J,VS1,62.9,56,3197,6.13,6.18,3.87
0.51,Ideal,E,VVS1,61.3,56,3197,5.13,5.21,3.17
0.77,Very Good,G,VS1,61.1,54,3197,5.91,5.94,3.62
1.01,Fair,F,SI1,66.1,60,3197,6.15,6.13,4.06
0.83,Premium,F,SI1,62,59,3198,6.04,5.99,3.73
0.73,Ideal,E,VS2,62.2,59,3198,5.74,5.77,3.58
0.71,Ideal,E,VS1,61.4,59,3198,5.71,5.75,3.52
0.71,Ideal,E,VS1,62.3,56,3198,5.66,5.7,3.54
0.83,Ideal,F,SI1,62.1,55,3198,6.05,6,3.74
0.7,Premium,E,VS2,61,59,3199,5.74,5.7,3.49
1,Fair,J,SI2,56.3,64,3199,6.58,6.54,3.69
0.71,Ideal,F,VS1,62.6,57,3199,5.7,5.73,3.58
0.71,Ideal,F,VS1,61.1,56,3199,5.71,5.74,3.5
1.02,Very Good,E,I1,60.6,63,3199,6.52,6.46,3.93
0.7,Ideal,F,VS1,62.4,56,3199,5.67,5.65,3.53
0.7,Ideal,D,SI1,61.7,57,3199,5.76,5.73,3.54
1.02,Premium,H,I1,62.5,60,3199,6.41,6.39,4
0.73,Very Good,F,VS1,62,57,3200,5.73,5.75,3.56
0.74,Ideal,F,VS2,62.1,56,3200,5.83,5.79,3.61
0.9,Ideal,E,SI2,62.6,56,3200,6.15,6.06,3.82
0.9,Good,H,SI1,63.8,57,3201,6.07,6.13,3.89
0.7,Ideal,E,VS2,60.5,59,3201,5.72,5.75,3.47
0.7,Ideal,E,VS2,61.1,59,3201,5.67,5.73,3.48
0.73,Ideal,E,VS2,62.4,57,3201,5.75,5.79,3.6
0.84,Ideal,I,VS1,61.4,57,3201,6.03,6.09,3.72
0.76,Ideal,F,VS2,61,55,3201,5.92,5.89,3.6
0.71,Very Good,D,VS2,59.7,55,3203,5.85,5.88,3.5
1.04,Good,H,I1,63.9,58,3203,6.35,6.42,4.08
1.04,Very Good,H,I1,61.6,61,3203,6.45,6.47,3.98
0.7,Very Good,F,VVS1,63.3,62,3204,5.67,5.57,3.56
0.7,Premium,F,VVS1,63,60,3204,5.62,5.59,3.53
1.02,Ideal,G,SI2,62.3,56,3204,6.39,6.35,3.97
1.04,Good,J,SI2,63.8,56,3204,6.36,6.32,4.05
0.7,Very Good,F,VVS2,60.5,60,3205,5.7,5.73,3.46
1.11,Premium,H,I1,61,59,3205,6.61,6.67,4.05
0.7,Ideal,G,VVS2,60.8,56,3205,5.75,5.79,3.51
0.7,Ideal,G,VVS2,61,56,3205,5.74,5.77,3.51
0.71,Fair,F,IF,58.7,62,3205,5.87,5.81,3.43
0.9,Premium,D,SI2,62.7,59,3205,6.2,6.14,3.87
0.9,Fair,D,SI2,65.9,59,3205,6,5.95,3.94
0.9,Fair,D,SI2,66,58,3205,6,5.97,3.95
0.9,Fair,D,SI2,64.7,54,3205,6.1,6.04,3.93
0.9,Fair,D,SI2,65.7,60,3205,5.98,5.93,3.91
0.9,Fair,D,SI2,64.7,59,3205,6.09,5.99,3.91
0.9,Premium,D,SI2,59,61,3205,6.32,6.28,3.72
0.72,Premium,D,VS2,60.6,57,3205,5.82,5.79,3.52
0.75,Premium,E,VS2,61.8,58,3206,5.83,5.85,3.61
0.75,Ideal,E,VS2,61.7,56,3206,5.84,5.86,3.61
0.75,Very Good,E,VS2,62.8,55,3206,5.77,5.79,3.63
0.58,Ideal,D,VVS1,60.6,57,3206,5.38,5.41,3.27
0.7,Ideal,G,VS1,61.2,56,3206,5.71,5.75,3.5
0.7,Ideal,G,VS1,61.4,55,3206,5.71,5.76,3.53
0.7,Good,F,VVS1,59.9,62,3206,5.69,5.74,3.42
0.83,Very Good,F,SI1,63,55,3207,5.95,5.96,3.75
0.83,Ideal,D,SI2,62.1,56,3207,6,6.04,3.74
1.01,Ideal,J,SI1,62.1,54,3207,6.48,6.4,4
0.77,Very Good,H,VVS2,61.1,56,3208,5.89,5.92,3.61
0.7,Very Good,G,VVS1,62.4,59,3208,5.63,5.66,3.52
0.7,Very Good,D,VS1,60.1,60,3208,5.73,5.76,3.45
0.9,Very Good,H,SI2,61.5,59,3208,6.15,6.2,3.8
0.93,Very Good,J,VS2,63.3,61,3208,6.19,6.14,3.9
0.8,Very Good,H,VS1,61.7,62,3209,5.89,5.94,3.65
0.9,Very Good,I,VS2,62.5,57,3209,6.12,6.2,3.85
0.73,Ideal,G,VS1,60.8,56.4,3209,5.81,5.86,3.55
0.79,Ideal,D,SI1,61.1,57,3209,5.94,6,3.65
0.8,Ideal,D,SI2,61.9,54,3210,5.95,6,3.7
0.7,Premium,D,VVS2,61.5,60,3210,5.71,5.64,3.49
0.71,Ideal,G,VVS1,62.6,56,3210,5.65,5.69,3.55
0.79,Ideal,F,SI1,60.8,55,3210,5.98,6.05,3.66
0.9,Premium,F,SI2,62.6,62,3210,6.06,6.01,3.78
0.9,Good,F,SI2,64.3,57,3210,6.16,6.06,3.93
0.9,Premium,F,SI2,61.9,62,3210,6.12,6.07,3.77
0.91,Good,J,VS1,64.2,60,3210,6.01,5.95,3.84
0.91,Fair,F,SI2,64.9,56,3210,6.08,6.05,3.94
0.9,Very Good,I,SI1,63.1,54,3211,6.13,6.16,3.88
0.73,Premium,F,VS1,60.7,61,3211,5.79,5.75,3.5
0.73,Ideal,F,VS1,62.6,56,3211,5.73,5.71,3.58
0.77,Premium,F,VS1,59.5,58,3211,5.96,5.94,3.54
0.82,Premium,E,SI1,61.2,61,3211,5.98,5.95,3.65
0.61,Ideal,E,VVS1,59.9,61,3212,5.5,5.55,3.31
0.71,Ideal,D,VS2,62.7,57,3212,5.7,5.75,3.59
0.71,Ideal,E,VS1,61.9,54,3212,5.74,5.76,3.56
0.71,Ideal,E,VS1,62.3,54,3212,5.69,5.73,3.56
0.76,Ideal,G,SI1,61.2,57,3212,5.85,5.9,3.59
0.81,Premium,E,SI1,60.8,59,3213,5.99,5.95,3.63
0.78,Ideal,D,SI1,61.1,57,3214,5.95,5.97,3.64
0.7,Premium,D,VS1,62.9,59,3214,5.72,5.66,3.58
0.95,Good,D,SI2,56.5,61,3214,6.53,6.5,3.68
0.92,Ideal,J,VS2,61.1,57,3215,6.31,6.22,3.83
0.96,Fair,I,VS2,56.1,60,3215,6.62,6.58,3.7
0.96,Premium,G,SI2,62.7,60,3215,6.29,6.11,3.89
1.1,Premium,J,SI2,60,58,3216,6.77,6.66,4.03
1.1,Ideal,I,SI2,61.7,56,3216,6.65,6.6,4.09
0.71,Very Good,E,VS2,60.7,58,3217,5.73,5.81,3.5
0.71,Premium,D,VS2,59.2,59,3217,5.8,5.86,3.45
0.71,Ideal,D,VS2,62.5,55,3217,5.71,5.74,3.58
0.71,Very Good,D,VS2,62.4,59,3217,5.68,5.73,3.56
1,Very Good,I,SI2,62.4,63,3217,6.35,6.44,3.99
0.9,Very Good,F,SI2,62.8,54,3217,6.05,6.15,3.83
0.64,Ideal,F,VVS2,60.9,56,3217,5.57,5.59,3.4
0.71,Ideal,E,VS2,60.3,56,3217,5.8,5.84,3.51
0.77,Premium,F,VS2,62.1,59,3218,5.85,5.87,3.64
0.52,Ideal,D,VVS1,62,57,3218,5.15,5.17,3.2
0.71,Very Good,F,VS1,60.6,60,3218,5.68,5.73,3.46
0.9,Good,E,SI2,62,63,3218,6.09,6.14,3.79
0.77,Ideal,E,SI1,61.6,57,3218,5.91,5.87,3.63
1.18,Very Good,E,I1,59.9,63,3219,6.8,6.85,4.09
0.72,Very Good,F,VS1,63.3,57,3219,5.68,5.75,3.62
0.72,Very Good,F,VS1,62.8,58,3219,5.7,5.73,3.59
0.72,Very Good,F,VS1,63.3,58,3219,5.66,5.71,3.6
0.72,Ideal,D,VS2,62.7,56,3219,5.71,5.78,3.6
0.72,Ideal,D,VS2,62.7,56,3219,5.65,5.71,3.56
0.9,Very Good,I,SI1,62.6,58,3220,6.08,6.15,3.83
0.9,Very Good,I,SI1,60.5,58,3220,6.22,6.27,3.78
0.75,Very Good,F,VS1,60.9,59,3220,5.83,5.87,3.56
0.73,Ideal,H,VVS1,62.1,56,3220,5.75,5.8,3.59
1.15,Premium,H,SI2,60.4,58,3220,6.8,6.75,4.09
0.71,Very Good,D,VS2,63.1,58,3222,5.67,5.7,3.59
0.71,Ideal,D,VS2,61.4,57,3222,5.73,5.77,3.53
0.51,Ideal,D,VVS2,61.3,56,3223,5.14,5.15,3.16
0.72,Ideal,E,VS2,61.3,57,3223,5.76,5.79,3.54
0.82,Premium,I,IF,61.2,60,3224,6.03,5.99,3.68
1.01,Premium,H,SI1,62.9,58,3224,6.38,6.34,4
0.9,Very Good,J,SI1,63.6,57,3225,6.07,6.1,3.87
0.68,Good,G,VVS1,61.9,55,3225,5.63,5.68,3.5
0.9,Premium,G,SI2,61.3,55,3226,6.18,6.12,3.77
0.74,Very Good,F,VS1,61.7,57,3226,5.79,5.85,3.59
0.74,Ideal,F,VS1,62.3,56,3226,5.76,5.79,3.6
0.73,Very Good,E,VS1,62.3,58,3226,5.72,5.74,3.57
0.8,Premium,D,SI1,59.4,55,3226,6.06,6.02,3.59
0.9,Good,G,SI1,57.7,62,3226,6.29,6.23,3.61
0.9,Fair,H,VS2,65.5,57,3226,6.05,6.01,3.95
0.72,Ideal,F,VS2,61.1,56,3226,5.92,5.8,3.55
0.51,Ideal,E,VVS1,61.3,56,3226,5.21,5.13,3.17
0.86,Very Good,H,SI1,59.7,59,3228,6.14,6.23,3.69
0.65,Ideal,D,VVS2,61.4,60,3228,5.54,5.57,3.41
0.74,Premium,E,VS2,62.7,58,3228,5.77,5.72,3.6
0.72,Very Good,F,VS1,62.2,57,3229,5.7,5.74,3.56
0.7,Premium,D,VS1,61.6,60,3229,5.63,5.6,3.46
0.7,Ideal,D,VS1,62.9,57,3229,5.67,5.61,3.55
0.71,Ideal,H,VS1,61.8,55,3229,5.72,5.77,3.55
0.71,Ideal,H,VS1,61.7,55,3229,5.73,5.75,3.54
0.71,Ideal,H,VS1,60.8,57,3229,5.74,5.79,3.51
0.71,Ideal,H,VS1,61.4,56,3229,5.74,5.78,3.54
0.96,Premium,I,SI2,62.7,58,3229,6.24,6.2,3.9
0.91,Good,H,SI1,63.7,60,3229,6.16,6.09,3.9
0.79,Premium,E,VS2,59.4,60,3230,6.08,6.05,3.6
1.03,Ideal,H,I1,61.5,57,3230,6.52,6.48,4
0.81,Premium,F,SI1,61,59,3230,6.01,5.99,3.66
0.75,Good,E,VS1,63.1,55,3231,5.8,5.83,3.67
0.81,Ideal,E,VS2,60.4,57,3231,6.02,6.06,3.65
0.9,Very Good,J,VS1,62.3,56,3231,6.19,6.23,3.87
0.7,Very Good,D,VS1,62.9,60,3231,5.57,5.62,3.52
0.83,Ideal,E,SI1,62.7,57,3231,5.96,6.01,3.75
0.59,Very Good,D,VVS1,61.8,57,3234,5.37,5.41,3.33
1,Good,J,SI2,62.7,58,3234,6.28,6.32,3.95
0.71,Ideal,H,IF,62.2,57,3234,5.7,5.74,3.56
1.05,Very Good,E,I1,62.2,61,3234,6.48,6.51,4.04
0.7,Ideal,G,VVS2,59.9,58,3234,5.78,5.8,3.47
0.71,Ideal,D,VS2,61.4,56,3234,5.74,5.79,3.54
0.7,Very Good,F,VVS2,58.7,63,3234,5.82,5.79,3.41
1.05,Ideal,H,SI2,60.6,57,3234,6.59,6.55,3.98
0.7,Premium,G,VVS1,62.8,58,3234,5.68,5.62,3.55
0.77,Premium,E,VS2,60.5,59,3234,5.98,5.92,3.6
0.7,Very Good,G,VVS2,60,60,3235,5.78,5.85,3.49
0.8,Very Good,H,VS2,63.1,57,3235,5.87,5.92,3.72
0.73,Ideal,E,VS1,62.5,57,3235,5.73,5.76,3.59
0.7,Very Good,E,VS1,61.9,61,3235,5.59,5.65,3.48
0.7,Ideal,H,VVS2,62.2,55,3235,5.71,5.76,3.57
0.72,Ideal,E,VS2,62.1,57,3235,5.73,5.76,3.57
0.72,Ideal,D,VS2,60.9,55,3236,5.77,5.89,3.55
0.95,Premium,I,SI2,62.5,58,3237,6.3,6.24,3.92
0.85,Premium,G,VS2,61,58,3237,6.11,6.08,3.72
0.89,Very Good,I,VS2,63.1,55,3238,6.09,6.17,3.87
0.72,Very Good,F,VS2,61.6,58,3238,5.75,5.78,3.55
0.76,Very Good,F,VS2,62.5,58,3238,5.79,5.83,3.63
0.91,Very Good,G,SI2,62,59,3238,6.19,6.22,3.85
0.7,Ideal,E,VVS2,62.8,56,3238,5.68,5.6,3.54
0.71,Ideal,E,VS1,60.4,56,3238,5.8,5.85,3.52
0.71,Ideal,E,VS1,62.7,57,3238,5.66,5.69,3.56
0.7,Good,D,VS1,57.8,60,3239,5.85,5.87,3.39
0.7,Premium,D,VS1,60.6,58,3239,5.73,5.75,3.48
0.7,Very Good,D,VS1,61.5,55,3239,5.7,5.74,3.52
0.73,Ideal,I,VVS1,61.8,57,3239,5.75,5.77,3.56
0.9,Very Good,E,SI2,63.2,61,3239,6.06,5.99,3.81
0.77,Very Good,G,VS1,62.3,58,3240,5.82,5.86,3.64
0.77,Very Good,D,SI1,59.9,59,3241,5.9,5.95,3.55
0.79,Ideal,D,SI1,61.2,56,3242,5.95,6.02,3.66
0.72,Ideal,F,SI1,60.2,57,3242,5.83,5.86,3.52
0.9,Very Good,H,SI1,63.2,61,3242,6.12,6.03,3.84
0.77,Very Good,G,VS1,60.9,55,3243,5.9,5.96,3.61
0.81,Very Good,E,SI1,61.9,58,3243,5.92,5.97,3.68
0.68,Ideal,E,VS1,61.3,55,3243,5.67,5.71,3.49
0.71,Ideal,D,VS2,63,56,3245,5.69,5.65,3.58
0.9,Good,G,SI2,64.1,56,3246,6.12,6.08,3.91
0.74,Ideal,F,VS2,60.8,57,3246,5.85,5.87,3.56
0.84,Ideal,D,SI2,61.8,56,3246,6.04,6.06,3.74
0.9,Good,I,VS2,63.7,61,3246,6.1,6.06,3.87
0.9,Premium,G,SI2,62.1,58,3246,6.13,6.08,3.79
0.9,Good,I,VS2,63.8,55,3246,6.16,6.07,3.9
0.9,Good,G,SI2,63.8,59,3246,6.05,6.02,3.85
0.9,Very Good,G,SI2,63.4,59,3246,6.08,6.04,3.84
0.9,Good,G,SI2,63.8,56,3246,6.16,6.13,3.92
0.9,Premium,G,SI2,61.1,58,3246,6.22,6.18,3.79
1.03,Fair,J,SI2,56.2,62,3246,6.73,6.69,3.77
0.9,Fair,I,VS2,65.4,60,3246,6.03,5.96,3.93
0.31,Ideal,G,VS2,62.2,54,562,4.38,4.4,2.73
0.31,Ideal,G,VS2,62.2,54,562,4.34,4.38,2.71
0.31,Ideal,G,VS2,60.8,56,562,4.38,4.4,2.67
0.31,Ideal,G,VS2,61.1,57,562,4.37,4.4,2.68
0.31,Ideal,G,VS2,62.2,53,562,4.37,4.38,2.72
0.31,Ideal,H,VS1,62,53,562,4.34,4.37,2.7
0.31,Ideal,H,VS1,61.3,55,562,4.36,4.38,2.68
0.39,Very Good,H,SI2,62.4,59,562,4.58,4.65,2.88
0.29,Very Good,F,VVS1,61.5,56,563,4.26,4.3,2.63
0.35,Ideal,G,VS2,61.6,54,563,4.55,4.58,2.81
0.31,Ideal,G,SI1,61.6,55,563,4.34,4.37,2.68
0.25,Fair,D,VS1,61.2,55,563,4.09,4.11,2.51
0.32,Very Good,G,VS2,60.9,58,564,4.42,4.45,2.7
0.32,Ideal,G,VS2,61.8,55,564,4.4,4.43,2.73
0.33,Ideal,H,SI1,61.7,55,564,4.43,4.46,2.74
0.33,Ideal,H,SI1,60.6,56,564,4.46,4.49,2.72
0.3,Ideal,E,SI1,61.9,57,564,4.29,4.32,2.66
0.3,Ideal,E,SI1,62.3,57,564,4.28,4.32,2.68
0.32,Good,E,SI1,62.5,61,564,4.32,4.35,2.71
0.26,Good,D,VVS2,63.6,56,564,4.06,4.09,2.59
0.26,Ideal,E,VVS2,62.5,55,564,4.07,4.09,2.55
0.26,Very Good,E,VVS2,58.9,61,564,4.16,4.19,2.46
0.26,Very Good,E,VVS2,60.8,61,564,4.12,4.13,2.51
0.26,Very Good,E,VVS2,61.7,61,564,4.08,4.12,2.53
0.26,Good,F,VVS1,63.3,57,564,4.05,4.07,2.57
0.36,Ideal,G,SI2,61.8,56,565,4.58,4.61,2.84
0.34,Ideal,E,SI1,61.9,55,565,4.51,4.53,2.8
0.34,Ideal,E,SI1,62.6,55,565,4.46,4.49,2.8
0.31,Ideal,D,SI1,61.3,56,565,4.36,4.41,2.69
0.31,Ideal,D,SI1,61.7,55,565,4.37,4.41,2.71
0.9,Good,G,SI2,64.1,63,3246,6.02,5.99,3.85
0.9,Premium,I,VS2,62.8,61,3246,6.12,6.02,3.81
0.91,Ideal,F,SI2,61.1,55,3246,6.24,6.19,3.8
0.7,Very Good,F,VVS2,62.5,58,3247,5.63,5.67,3.53
0.7,Very Good,D,VS1,62.8,59,3247,5.63,5.68,3.55
0.7,Ideal,G,VVS1,62.6,57,3247,5.65,5.7,3.55
0.71,Ideal,E,VS2,62,55,3247,5.7,5.75,3.55
0.71,Ideal,E,VS2,62.5,55,3247,5.67,5.73,3.56
0.52,Ideal,D,VVS1,62,57,3247,5.17,5.15,3.2
0.76,Ideal,D,VS2,63,56,3248,5.83,5.79,3.66
0.61,Ideal,F,VVS2,61.5,55,3248,5.47,5.53,3.38
0.61,Ideal,F,VVS2,61.4,56,3248,5.44,5.49,3.36
0.61,Ideal,F,VVS2,61.1,57,3248,5.47,5.49,3.34
0.65,Ideal,G,VVS1,61.9,56,3248,5.56,5.59,3.45
0.7,Ideal,E,VS1,62.1,55,3248,5.72,5.77,3.57
1,Fair,H,SI2,66.5,62,3248,6.19,6.1,4.09
0.83,Very Good,H,VS2,61.7,59,3249,5.95,6.02,3.69
0.76,Ideal,E,VS2,61.5,56,3249,5.89,5.92,3.63
0.76,Good,E,VS2,63.2,56,3249,5.82,5.86,3.69
0.76,Ideal,H,VVS2,61,56,3249,5.85,5.91,3.59
0.73,Ideal,F,SI1,61.7,55,3249,5.79,5.82,3.58
0.81,Good,G,VS2,62.9,58,3250,5.88,5.94,3.72
0.9,Good,H,SI2,63.6,60,3250,6.06,6.11,3.87
0.9,Very Good,H,SI2,59.6,59,3250,6.38,6.24,3.76
0.9,Very Good,H,SI2,62.4,58,3250,6.11,6.16,3.83
0.72,Premium,F,VVS2,61.1,58,3250,5.78,5.84,3.55
0.83,Good,E,SI1,63.7,59,3250,5.95,5.89,3.77
0.9,Fair,G,SI1,65.2,59,3250,6.05,6.01,3.93
0.9,Good,G,SI1,64.2,58,3250,6.04,6.01,3.87
0.93,Premium,J,VS2,62.3,60,3250,6.3,6.23,3.9
0.73,Premium,D,VS2,59.8,58,3250,5.89,5.85,3.51
0.9,Very Good,I,SI1,63.3,59,3251,6.14,6.05,3.86
0.71,Ideal,G,VS1,61,56,3251,5.77,5.8,3.53
0.8,Ideal,E,SI2,60.9,57,3251,6,6.03,3.66
0.82,Ideal,F,SI1,62.6,56,3251,5.95,5.99,3.74
0.9,Ideal,I,SI1,62.3,56,3251,6.18,6.12,3.83
0.9,Ideal,I,SI1,60.8,57,3251,6.25,6.22,3.79
0.9,Premium,I,SI1,61.8,58,3251,6.21,6.19,3.83
0.77,Ideal,D,SI1,60.8,57,3251,5.94,5.9,3.6
0.71,Ideal,D,SI1,62,55,3252,5.71,5.76,3.56
0.7,Very Good,F,VVS1,63.3,56,3252,5.7,5.64,3.59
0.7,Ideal,G,VS2,61.9,56,3253,5.68,5.7,3.52
0.7,Ideal,G,VS2,61.5,57,3253,5.7,5.74,3.52
0.7,Ideal,G,VS2,61.6,57,3253,5.7,5.73,3.53
0.77,Ideal,G,SI1,61.5,56,3253,5.89,5.92,3.63
0.9,Good,G,SI2,61.8,56,3253,6.11,6.16,3.79
0.78,Good,D,SI1,60.1,61,3253,5.92,5.89,3.55
0.83,Ideal,F,SI1,62.1,55,3254,6,6.05,3.74
0.71,Ideal,G,VVS1,62.8,56,3254,5.71,5.76,3.6
0.74,Ideal,H,VS1,61,55,3254,5.86,5.88,3.58
0.74,Ideal,H,VS1,62.1,55,3254,5.82,5.84,3.62
0.9,Very Good,H,SI2,64.1,59,3255,5.97,6.07,3.86
0.9,Ideal,J,VS2,62.5,57,3255,6.16,6.26,3.88
0.73,Ideal,D,VS2,61.9,56,3255,5.76,5.81,3.58
0.9,Very Good,G,SI2,62.2,60,3256,6.09,6.2,3.82
0.91,Ideal,J,VS2,62.1,56,3256,6.18,6.22,3.85
0.79,Ideal,E,SI1,61.9,55,3256,5.97,5.89,3.67
0.76,Ideal,F,VS2,61,55,3257,5.89,5.92,3.6
0.81,Ideal,H,VS1,61.8,58,3257,5.97,6.04,3.71
0.72,Ideal,H,IF,61.4,56,3257,5.76,5.8,3.55
0.91,Very Good,J,VS2,61,58,3258,6.22,6.3,3.82
0.78,Very Good,D,SI1,62.5,58,3258,5.86,5.89,3.67
0.93,Fair,I,VS2,64.7,58,3258,6.09,6.06,3.93
0.78,Ideal,F,VS2,61.3,57,3259,5.91,5.93,3.63
1,Good,F,SI2,59.4,64,3259,6.52,6.48,3.86
0.75,Very Good,E,SI1,59.2,59,3260,5.93,5.97,3.52
0.77,Premium,E,VS1,60.8,56,3260,5.95,5.9,3.6
0.7,Very Good,F,VVS1,63,60,3261,5.59,5.62,3.53
0.76,Very Good,E,SI1,60.4,58,3261,5.91,5.97,3.59
0.7,Ideal,F,VS1,61.5,55,3261,5.73,5.75,3.53
1.04,Good,H,I1,63.9,58,3261,6.42,6.35,4.08
1.04,Premium,H,I1,61.6,61,3261,6.47,6.45,3.98
0.9,Very Good,D,SI2,59,61,3262,6.28,6.32,3.72
0.71,Ideal,D,SI1,60.9,57,3262,5.75,5.79,3.51
0.91,Premium,G,SI1,62.5,56,3262,6.3,6.18,3.9
0.75,Ideal,E,VS2,62.4,57,3263,5.76,5.81,3.61
1.11,Premium,H,I1,61,59,3263,6.67,6.61,4.05
0.72,Very Good,F,VS1,63.4,57,3264,5.68,5.7,3.61
0.88,Ideal,I,SI1,63.2,56,3264,6.04,6.09,3.83
0.88,Ideal,I,SI1,62.4,55,3264,6.12,6.16,3.83
0.72,Ideal,F,VS1,61.1,56,3265,5.76,5.79,3.53
0.7,Premium,E,VVS1,61.7,59,3265,5.67,5.71,3.51
0.7,Very Good,F,VS1,62.8,56,3265,5.64,5.66,3.55
1,Good,F,SI2,63.6,62,3265,6.25,6.2,3.96
0.7,Ideal,F,VS1,60.7,58,3265,5.72,5.75,3.48
0.84,Ideal,D,SI1,61.5,54,3265,6.07,6.13,3.75
1,Fair,I,VS2,65.7,58,3265,6.25,6.2,4.09
1,Very Good,I,VS2,63.2,58,3265,6.43,6.32,4.03
1,Good,J,VVS2,63.7,57,3265,6.34,6.31,4.03
1,Fair,F,SI2,65.1,55,3265,6.26,6.23,4.07
1,Fair,F,SI2,65.1,55,3265,6.26,6.23,4.07
0.93,Ideal,F,SI2,62,57,3266,6.31,6.28,3.9
0.81,Premium,H,VVS2,62.8,58,3266,5.92,5.89,3.71
0.81,Premium,D,SI1,62.4,59,3266,5.96,5.89,3.7
1.12,Premium,J,SI2,60.7,61,3266,6.71,6.64,4.05
0.81,Premium,G,VS1,62.3,56,3266,5.95,5.89,3.69
0.9,Good,F,SI2,64.3,57,3267,6.06,6.16,3.93
0.9,Good,F,SI2,63.1,57,3267,6.11,6.18,3.88
0.9,Good,F,SI2,63.2,57,3267,6.09,6.15,3.87
0.9,Good,F,SI2,61.9,62,3267,6.07,6.12,3.77
0.91,Ideal,J,VS1,60.7,57,3267,6.23,6.26,3.79
0.7,Good,D,VVS2,63.3,54,3267,5.6,5.64,3.56
0.78,Very Good,F,SI1,62.4,55,3267,5.85,5.89,3.66
0.8,Very Good,F,SI1,61.6,56,3267,5.96,6,3.68
0.78,Ideal,I,VVS2,62.4,56,3267,5.87,5.9,3.67
0.78,Ideal,G,SI1,62.2,55,3267,5.87,5.9,3.66
0.75,Very Good,F,VS1,57.9,62,3268,5.96,6,3.46
0.7,Ideal,E,VS2,62.6,55,3268,5.66,5.68,3.55
0.96,Premium,J,SI1,60.3,59,3269,6.4,6.36,3.85
0.9,Good,G,SI2,58.4,55,3269,6.34,6.39,3.72
0.7,Very Good,F,VVS1,59.3,62,3270,5.74,5.77,3.41
0.72,Very Good,E,VS2,59.8,57,3270,5.84,5.89,3.51
0.75,Very Good,F,VS1,62.3,57,3270,5.83,5.88,3.65
0.81,Premium,E,SI1,60.8,59,3270,5.95,5.99,3.63
0.56,Ideal,D,VVS1,61.8,56,3270,5.28,5.31,3.27
0.73,Ideal,G,VS1,61.5,56,3270,5.8,5.77,3.56
0.73,Ideal,E,VS2,62.2,56,3270,5.78,5.76,3.59
0.79,Ideal,D,SI1,61.3,54,3270,6.01,5.96,3.67
0.9,Very Good,I,SI1,61.4,55,3271,6.19,6.28,3.83
1.1,Premium,I,SI2,59.3,62,3271,6.75,6.7,3.99
0.67,Ideal,G,IF,61.6,55,3271,5.61,5.65,3.47
0.71,Ideal,E,VS1,59.7,57,3272,5.84,5.86,3.49
0.8,Very Good,H,VS1,60.9,57,3273,5.98,6.02,3.65
0.73,Ideal,G,VS1,60.2,56,3273,5.86,5.9,3.54
0.8,Good,E,VS2,63.4,56,3273,5.88,5.92,3.74
0.8,Good,E,VS2,64.5,56,3273,5.8,5.86,3.76
0.9,Very Good,I,SI1,61.7,58,3274,6.17,6.21,3.82
0.9,Good,E,SI1,62.2,65,3274,6.13,6.08,3.8
0.72,Ideal,H,VS1,60.7,55,3274,5.83,5.85,3.54
0.72,Ideal,H,VS1,61.5,55,3274,5.77,5.85,3.56
0.72,Ideal,H,VS1,61.6,56,3274,5.76,5.79,3.55
0.7,Very Good,F,VVS2,61.6,63,3275,5.65,5.69,3.49
0.95,Ideal,J,SI1,63,56,3275,6.32,6.26,3.96
0.73,Ideal,E,VS2,61.9,55,3275,5.76,5.8,3.57
0.72,Ideal,D,VS2,60.5,57,3275,5.81,5.83,3.52
0.72,Ideal,E,VS1,62.6,55,3275,5.7,5.73,3.58
1.01,Very Good,G,SI2,63.2,58,3275,6.42,6.35,4.04
0.9,Premium,I,VS2,58.4,62,3276,6.35,6.29,3.69
0.7,Very Good,G,VVS1,62.8,56,3276,5.63,5.67,3.55
0.83,Very Good,H,VS2,59.4,59,3276,6.08,6.11,3.62
1,Very Good,I,SI2,60.8,63,3276,6.41,6.34,3.88
0.9,Premium,I,SI1,59.6,60,3276,6.37,6.24,3.76
1,Very Good,I,SI2,62.4,63,3276,6.44,6.35,3.99
0.9,Fair,E,VS1,67.6,56,3276,5.94,5.9,4
1,Premium,J,SI1,62,62,3276,6.27,6.22,3.87
0.78,Ideal,E,VS2,62,55,3276,5.95,5.89,3.67
1,Ideal,I,SI2,62.5,56,3276,6.38,6.35,3.98
1.25,Ideal,E,I1,60.9,56,3276,6.95,6.91,4.22
0.7,Good,E,VS1,61.3,62,3277,5.64,5.72,3.48
0.92,Good,D,SI2,57.8,63,3277,6.4,6.36,3.69
0.7,Ideal,D,VS1,61.1,57,3278,5.73,5.75,3.51
1.18,Very Good,E,I1,59.9,63,3278,6.85,6.8,4.09
0.91,Fair,H,SI1,65.3,62,3278,6.11,6.01,3.96
0.84,Ideal,G,SI1,62.4,57,3279,6.06,6.03,3.77
1.01,Fair,I,SI1,65.5,58,3280,6.28,6.24,4.1
0.71,Very Good,G,VVS2,62.8,58,3281,5.69,5.75,3.59
0.71,Ideal,F,VS1,62.3,55,3281,5.74,5.76,3.58
0.93,Ideal,J,VS1,62.3,56,3281,6.26,6.22,3.89
0.82,Very Good,E,SI1,63.1,58,3282,5.95,6,3.77
0.9,Good,H,SI1,66.1,57,3282,5.94,5.99,3.94
0.9,Fair,H,SI1,61.4,61,3282,6.08,6.14,3.75
0.91,Premium,I,VS2,63,58,3282,6.15,6.07,3.85
0.91,Very Good,G,SI2,63.2,61,3282,6.27,6.01,3.88
0.92,Fair,F,SI2,65.3,58,3282,6.08,6.04,3.96
0.92,Good,F,SI2,64.2,58,3282,6.14,6.11,3.93
0.91,Good,G,SI2,63.6,59,3282,6.15,6.11,3.9
0.91,Very Good,G,SI2,63.3,57,3282,6.12,6.08,3.86
0.92,Fair,F,SI2,65.1,58,3282,6.12,6.07,3.97
0.92,Premium,F,SI2,58.1,58,3282,6.46,6.41,3.74
0.92,Premium,F,SI2,58.9,59,3282,6.38,6.35,3.75
0.8,Very Good,F,VS2,63.3,59.8,3283,5.79,5.83,3.68
0.84,Ideal,I,VS1,62.3,59,3283,5.99,6.04,3.75
0.72,Ideal,E,VS1,62.6,57,3283,5.69,5.72,3.57
0.72,Ideal,E,VS1,61.9,55,3283,5.74,5.77,3.56
0.72,Ideal,H,IF,62.1,58,3283,5.72,5.75,3.56
0.8,Good,F,VS2,60.5,62.3,3283,5.97,6.01,3.62
0.8,Good,G,VS1,63.2,60.1,3283,5.77,5.85,3.67
0.52,Ideal,D,VVS2,61.5,55,3284,5.19,5.22,3.2
0.71,Ideal,F,VS1,60.4,57,3284,5.78,5.81,3.5
0.86,Ideal,D,SI2,60.2,56,3284,6.16,6.19,3.72
0.89,Good,E,SI2,61.6,60.9,3284,6.13,6.24,3.82
0.74,Premium,E,VS2,62.7,58,3285,5.72,5.77,3.6
0.8,Premium,F,VS2,62.4,59,3285,5.92,5.85,3.67
0.94,Fair,H,SI1,68.4,53,3285,6.05,5.97,4.11
0.8,Premium,F,VS2,59.7,58,3285,6.02,5.97,3.58
1.04,Good,J,VS2,58.2,64,3285,6.64,6.53,3.85
0.96,Very Good,I,SI2,62.7,58,3286,6.2,6.24,3.9
0.91,Good,G,SI1,64.3,60,3286,6.12,6.04,3.91
0.91,Very Good,G,SI2,62.1,55,3287,6.16,6.21,3.84
0.74,Ideal,H,VVS1,62.5,55,3287,5.76,5.79,3.61
0.7,Ideal,D,VS1,62.5,57,3287,5.64,5.68,3.54
0.7,Ideal,D,VS1,62.6,58,3287,5.64,5.67,3.54
0.91,Good,I,VS2,64.2,55,3287,6.13,6.09,3.92
1.03,Premium,I,SI1,58.4,60,3288,6.6,6.58,3.85
0.73,Very Good,G,VVS2,61.4,58,3288,5.83,5.86,3.59
1.01,Very Good,G,I1,62.4,59,3288,6.35,6.41,3.98
0.9,Fair,I,VVS2,60.9,66,3288,6.1,6.12,3.72
1.03,Very Good,H,SI2,63.1,56,3288,6.43,6.38,4.04
0.91,Very Good,J,VS2,61.6,59,3290,6.13,6.25,3.81
0.9,Good,H,SI1,64.2,59,3290,6.05,6.01,3.87
0.83,Ideal,F,SI1,60.7,57,3290,6.02,6.1,3.68
0.71,Ideal,H,IF,61.1,56,3290,5.74,5.78,3.52
0.71,Ideal,H,IF,61.6,55,3290,5.75,5.78,3.55
0.91,Good,J,VS2,61.3,61,3290,6.18,6.25,3.81
1.02,Fair,I,SI2,66.2,57,3290,6.34,6.26,4.17
0.77,Premium,E,VS2,60.5,59,3291,5.92,5.98,3.6
0.77,Good,E,VS2,63.4,57,3291,5.8,5.84,3.69
0.77,Premium,D,VS2,61.8,58,3291,5.84,5.81,3.6
0.9,Premium,I,VS2,63,59,3292,6.1,6.06,3.83
0.9,Premium,I,VS2,62.6,62,3292,6.13,6.04,3.81
0.86,Very Good,G,SI1,62.9,55,3293,6.04,6.08,3.81
1,Very Good,J,SI2,62.8,63,3293,6.26,6.19,3.19
0.8,Very Good,E,SI1,63.1,57,3293,5.94,5.86,3.72
1,Very Good,J,SI2,63.2,62,3293,6.32,6.27,3.98
0.8,Ideal,F,SI1,60.1,60,3293,5.98,6.03,3.61
1.05,Premium,E,I1,62.2,61,3293,6.51,6.48,4.04
1,Premium,J,SI2,62.7,58,3293,6.32,6.28,3.95
0.76,Ideal,D,VS2,60.2,56,3293,5.95,5.92,3.57
1.01,Fair,E,SI2,64.6,59,3294,6.22,6.18,4.01
0.72,Ideal,F,VS1,61.1,56,3294,5.79,5.76,3.53
0.7,Premium,E,VVS1,61.7,59,3294,5.71,5.67,3.51
0.74,Premium,D,VS2,58,59,3294,6,5.93,3.46
0.9,Very Good,H,SI2,62.1,56,3295,6.13,6.23,3.84
0.7,Very Good,E,VVS2,60.7,56,3295,5.77,5.82,3.52
0.83,Very Good,E,SI1,63.8,54,3295,5.96,6.04,3.83
0.72,Ideal,G,VVS2,61,56,3295,5.8,5.84,3.55
0.82,Premium,E,SI1,62.5,56,3295,6.01,5.96,3.74
1.01,Premium,J,VS2,62.4,60,3296,6.45,6.35,3.99
0.8,Ideal,H,VS1,62.6,55,3296,5.9,5.93,3.7
0.7,Fair,D,VVS2,58.5,62,3296,5.72,5.81,3.37
1.07,Very Good,H,SI2,61.8,63,3296,6.57,6.47,4.03
0.91,Ideal,J,VS1,60.7,57,3296,6.26,6.23,3.79
1.07,Premium,G,SI2,62.5,59,3296,6.5,6.47,4.05
0.8,Ideal,E,SI1,62,57,3297,5.97,5.94,3.69
0.8,Premium,E,SI1,61.5,58,3297,5.97,5.93,3.66
1.01,Premium,F,SI2,60.9,60,3297,6.45,6.42,3.91
1.02,Good,J,SI2,63.1,58,3298,6.34,6.38,4.01
0.91,Very Good,D,SI2,62.7,59,3298,6.16,6.22,3.88
0.78,Good,D,VS2,64,54,3298,5.82,5.86,3.74
0.78,Very Good,D,VS2,58.5,56,3298,6.08,6.12,3.57
0.7,Ideal,I,VS2,61.9,57,3298,5.68,5.73,3.53
0.91,Very Good,J,VS2,62.6,55,3299,6.17,6.19,3.87
1.01,Very Good,I,SI2,61.5,62,3299,6.37,6.41,3.93
0.62,Ideal,F,VVS2,61.4,56,3299,5.46,5.5,3.37
0.91,Ideal,J,VS2,61.9,58,3299,6.18,6.22,3.84
0.71,Ideal,G,VS2,61.8,56,3299,5.68,5.72,3.52
0.71,Ideal,G,VS2,61.8,56,3299,5.73,5.76,3.55
0.71,Ideal,G,VS2,61.8,56,3299,5.72,5.75,3.55
0.71,Ideal,D,VS2,61.5,55,3299,5.75,5.79,3.55
1.05,Ideal,G,SI2,59.6,57,3299,6.58,6.53,3.91
0.77,Premium,G,VVS2,60.8,59,3299,5.96,5.92,3.61
0.96,Fair,G,SI1,69.7,59,3299,6.09,5.9,4.18
1,Very Good,E,I1,63,57,3300,6.32,6.35,3.99
0.7,Premium,F,VVS1,62.4,56,3300,5.69,5.63,3.53
0.77,Ideal,G,VS2,61.8,54,3300,5.91,5.94,3.66
0.7,Ideal,G,VS1,60.8,56,3300,5.73,5.8,3.51
0.9,Very Good,H,SI2,61.7,60,3301,6.17,6.24,3.83
0.72,Ideal,E,VS2,60.9,56,3301,5.81,5.84,3.55
0.71,Ideal,E,VS2,61.8,57,3301,5.69,5.74,3.53
0.73,Ideal,H,IF,62.2,54,3301,5.76,5.82,3.6
0.91,Good,H,VS2,56.9,61,3302,6.41,6.24,3.6
1.08,Fair,J,SI2,64.9,60,3302,6.46,6.32,4.15
0.9,Very Good,G,SI2,62.1,58,3303,6.08,6.13,3.79
0.9,Premium,G,SI2,61.1,58,3303,6.18,6.22,3.79
0.9,Good,I,VS2,63.8,55,3303,6.07,6.16,3.9
0.9,Good,G,SI2,63.8,59,3303,6.02,6.05,3.85
0.9,Good,I,VS2,63.7,61,3303,6.06,6.1,3.87
0.9,Good,G,SI2,63.4,59,3303,6.04,6.08,3.84
0.9,Very Good,G,SI2,59.2,57,3303,6.3,6.36,3.75
0.9,Good,G,SI2,63.8,56,3303,6.13,6.16,3.92
0.7,Ideal,G,VVS1,60.7,57,3303,5.73,5.76,3.49
0.77,Ideal,E,VS2,61,56,3303,5.91,5.96,3.62
0.81,Ideal,F,SI2,62.1,56,3303,5.95,6,3.71
0.71,Ideal,E,VS2,62.1,55,3304,5.72,5.75,3.56
0.71,Ideal,E,VS2,62,56,3304,5.72,5.75,3.55
0.72,Ideal,E,VS2,60.8,56,3304,5.81,5.84,3.54
0.71,Ideal,E,VS2,62.5,56,3304,5.69,5.71,3.56
0.76,Good,G,IF,64.6,61,3304,5.72,5.8,3.72
1,Fair,D,SI2,64.8,60,3304,6.23,6.18,4.02
1,Fair,G,SI1,65.8,55,3304,6.22,6.19,4.08
1,Very Good,D,SI2,63.4,58,3304,6.33,6.3,4.01
1,Good,D,SI2,64,54,3304,6.29,6.24,4.01
0.82,Ideal,E,VS1,60,55,3306,6.18,6.08,3.68
0.76,Ideal,D,VS2,61.8,57,3306,5.85,5.9,3.63
0.76,Ideal,D,SI1,62,57,3306,5.88,5.92,3.66
0.53,Very Good,D,VVS1,61.2,55,3307,5.21,5.26,3.21
0.73,Very Good,E,VS2,61.5,58,3307,5.71,5.8,3.54
0.9,Good,G,SI1,64.2,58,3307,6.01,6.04,3.87
0.71,Ideal,G,VVS2,61.7,57,3307,5.72,5.74,3.53
0.71,Ideal,G,VVS2,61.3,56,3307,5.75,5.77,3.53
0.73,Ideal,G,VS2,60.9,57,3307,5.8,5.86,3.55
0.9,Very Good,I,SI1,62.3,56,3308,6.12,6.18,3.83
0.9,Ideal,I,SI1,60.8,57,3308,6.22,6.25,3.79
0.73,Premium,D,VS2,59.8,58,3308,5.85,5.89,3.51
0.81,Very Good,F,SI1,62.2,56,3308,5.97,5.99,3.72
0.66,Very Good,E,VVS1,61.8,55,3309,5.6,5.66,3.48
0.77,Ideal,D,SI1,60.8,57,3309,5.9,5.94,3.6
0.7,Ideal,E,VS1,62.2,58,3309,5.67,5.71,3.54
0.7,Ideal,H,IF,61.3,59,3309,5.69,5.72,3.5
1.01,Very Good,I,SI2,63.2,58,3309,6.34,6.31,4
0.31,Ideal,D,SI1,62.2,54,565,4.36,4.39,2.72
0.31,Ideal,D,SI1,61.3,55,565,4.36,4.41,2.69
0.26,Very Good,H,VVS2,63.4,55,565,4.06,4.05,2.57
0.26,Premium,H,VVS2,59.8,61,565,4.18,4.15,2.49
0.41,Good,J,VS2,64,59,565,4.64,4.71,2.99
0.31,Ideal,G,VVS2,62.2,55,565,4.32,4.36,2.7
0.3,Good,G,VS1,63.4,55,565,4.26,4.32,2.72
0.3,Good,G,VS1,63.5,58,565,4.21,4.26,2.69
0.3,Good,F,VS2,63.4,59,565,4.23,4.25,2.69
0.3,Very Good,G,VS1,60.2,62,565,4.3,4.31,2.59
0.3,Good,G,VS1,63.3,56,565,4.28,4.31,2.72
0.3,Very Good,G,VS1,62,60,565,4.27,4.31,2.66
0.3,Ideal,F,VS2,62.4,57,565,4.29,4.33,2.69
0.3,Very Good,G,VS1,60.8,61,565,4.31,4.34,2.63
0.27,Very Good,G,VVS1,60.1,58,566,4.21,4.23,2.53
0.27,Very Good,G,VVS1,62.9,55,566,4.12,4.15,2.6
0.27,Very Good,G,VVS1,62.5,56,566,4.14,4.16,2.59
0.27,Very Good,G,VVS1,61,56,566,4.21,4.25,2.57
0.27,Very Good,G,VVS1,62.9,55,566,4.13,4.15,2.6
0.27,Very Good,G,IF,60.8,57,566,4.2,4.22,2.56
0.27,Ideal,G,VVS2,60.8,57,566,4.18,4.2,2.54
0.38,Ideal,G,SI2,62.8,57,566,4.58,4.59,2.88
0.27,Ideal,H,IF,61.6,56,566,4.18,4.21,2.58
0.27,Ideal,G,IF,61.6,57,566,4.18,4.21,2.58
0.35,Premium,H,SI2,61.6,58,566,4.54,4.49,2.78
0.34,Premium,F,SI1,59.3,60,566,4.52,4.58,2.7
0.34,Very Good,F,SI1,59.4,62,566,4.54,4.59,2.71
0.34,Very Good,F,SI1,63,54,566,4.48,4.5,2.83
0.38,Very Good,J,VS2,60.5,60,566,4.64,4.68,2.82
0.34,Premium,F,SI1,59.8,58,566,4.53,4.57,2.72
0.7,Good,F,VVS1,63.3,56,3310,5.64,5.7,3.59
0.73,Ideal,E,VS2,61.5,56,3310,5.79,5.82,3.57
0.62,Ideal,G,IF,61.8,56,3310,5.45,5.48,3.38
0.76,Premium,H,VVS1,60.7,58,3311,5.9,5.93,3.59
0.73,Ideal,E,VS1,62.3,56,3311,5.8,5.75,3.6
0.73,Premium,E,VS1,61.2,58,3311,5.83,5.77,3.55
0.81,Premium,G,VS1,62.1,58,3311,5.96,5.92,3.69
0.81,Premium,F,SI1,61.6,58,3311,5.96,5.92,3.66
0.73,Premium,E,VS1,60.9,61,3311,5.81,5.79,3.53
0.8,Premium,D,SI1,62.7,59,3312,5.89,5.85,3.68
0.7,Good,D,VVS2,63.6,57,3312,5.61,5.58,3.56
0.8,Premium,D,SI1,61.7,58,3312,5.96,5.93,3.67
0.84,Good,G,VS2,63.6,59,3312,5.94,5.89,3.76
0.9,Premium,D,SI2,58.1,60,3312,6.26,6.24,3.63
0.96,Good,J,VS2,63.9,58,3312,6.27,6.21,3.99
1.24,Ideal,I,SI2,62.5,57,3312,6.89,6.84,4.29
0.9,Premium,D,SI2,62.5,59,3312,6.18,6.13,3.85
0.74,Premium,E,VS1,61.2,58,3312,5.88,5.82,3.58
0.7,Good,D,VVS2,63.7,55,3312,5.66,5.61,3.59
0.9,Premium,D,SI2,61,61,3312,6.17,6.15,3.76
1.24,Ideal,J,SI1,62.3,57,3312,6.86,6.81,4.26
0.57,Ideal,F,VVS1,61.3,56,3313,5.37,5.4,3.3
1.02,Premium,H,SI2,58.3,59,3313,6.61,6.57,3.84
0.95,Very Good,J,VS2,63.5,56,3314,6.24,6.27,3.97
0.81,Very Good,H,VS1,62.2,57,3314,5.91,5.94,3.69
0.75,Very Good,E,VS1,61.5,54,3314,5.88,5.82,3.6
0.83,Ideal,I,SI1,61.9,57,3314,5.96,6.02,3.71
0.74,Ideal,E,VS2,61.7,56,3315,5.86,5.81,3.6
0.84,Good,G,VS1,63.6,57,3316,5.98,5.93,3.79
0.71,Ideal,D,SI1,62.3,56,3316,5.72,5.7,3.56
0.93,Premium,F,SI2,61.3,62,3317,6.26,6.17,3.81
0.77,Very Good,E,VS1,62,56,3318,5.88,5.92,3.66
0.9,Good,F,SI2,63.2,56,3318,6.15,6.2,3.9
0.9,Good,F,SI2,63.2,58,3318,6.09,6.12,3.86
0.79,Ideal,E,VS2,59.3,57,3318,6.06,6.02,3.58
0.92,Premium,G,SI2,62.3,59,3318,6.2,6.15,3.85
0.73,Ideal,D,VS2,61.8,54,3319,5.89,5.92,3.65
0.7,Ideal,F,VS1,61.5,55,3319,5.73,5.75,3.53
1.02,Ideal,G,I1,61.5,56,3321,6.46,6.49,3.98
0.52,Ideal,D,VVS1,60.9,56,3321,5.2,5.24,3.18
0.71,Ideal,D,VS2,62.1,56,3321,5.71,5.75,3.56
0.71,Ideal,D,VS2,61.2,57,3321,5.73,5.77,3.52
0.77,Ideal,F,SI1,61.5,55,3321,5.88,5.92,3.63
1.06,Ideal,G,SI2,61,56,3321,6.62,6.56,4.02
0.83,Very Good,F,SI1,61.9,58,3322,5.97,6.01,3.71
0.72,Ideal,D,SI1,62.2,56,3322,5.77,5.74,3.58
0.86,Premium,E,SI1,61.9,61,3323,6.07,5.99,3.73
0.69,Very Good,G,VVS1,60.8,55,3323,5.74,5.77,3.5
0.71,Very Good,F,VS2,63,54,3323,5.7,5.72,3.6
0.74,Very Good,E,VS2,62.8,58,3323,5.73,5.76,3.61
0.53,Ideal,E,VVS1,61.5,54,3323,5.23,5.25,3.22
0.81,Fair,G,VVS2,64.8,56.2,3323,5.82,5.98,3.82
0.92,Very Good,I,SI1,63.3,58,3323,6.18,6.14,3.9
0.92,Ideal,I,SI1,61.8,57,3323,6.27,6.25,3.87
0.91,Good,H,SI1,63.8,56,3323,6.09,6.04,3.87
0.92,Fair,F,SI1,66,57,3323,6.04,5.99,3.97
0.81,Good,D,SI1,64.1,54,3324,5.92,5.96,3.81
0.9,Very Good,H,SI2,62,58,3324,6.11,6.12,3.79
0.79,Ideal,H,VVS2,62,55.9,3324,5.88,5.95,3.67
0.7,Ideal,H,VVS2,61.8,55,3325,5.69,5.74,3.53
0.7,Ideal,H,VVS2,61,56,3325,5.75,5.78,3.52
0.7,Ideal,H,VVS2,60.9,56,3325,5.76,5.79,3.52
0.78,Ideal,G,VS2,62.6,57,3325,5.87,5.91,3.69
0.96,Ideal,J,VS2,61.5,57,3326,6.32,6.36,3.9
0.9,Premium,H,SI2,62.1,59,3326,6.13,6.04,3.78
0.78,Ideal,D,SI1,61.2,58,3326,5.92,5.95,3.63
0.9,Fair,F,SI1,65.3,61,3326,6,5.95,3.9
0.9,Premium,H,SI2,59.2,60,3326,6.3,6.24,3.71
0.72,Ideal,G,VVS1,61.7,55,3326,5.8,5.77,3.57
0.9,Premium,G,SI1,60.1,59,3326,6.25,6.2,3.74
0.9,Premium,G,SI2,59.5,61,3326,6.33,6.28,3.75
0.73,Ideal,E,VS1,62.8,57,3327,5.75,5.78,3.62
0.79,Ideal,D,SI1,61.3,54,3328,5.96,6.01,3.67
0.73,Ideal,E,VS2,62.2,56,3328,5.76,5.78,3.59
0.74,Very Good,G,VVS1,63.2,56,3328,5.74,5.72,3.62
0.82,Ideal,E,SI2,60.9,56,3328,6.06,6.12,3.71
0.88,Ideal,I,SI1,61.7,56,3328,6.14,6.18,3.8
1.27,Ideal,I,I1,62.3,56,3328,6.91,6.86,4.29
0.88,Ideal,E,SI2,62.2,57,3329,6.08,6.2,3.82
0.72,Ideal,F,VS1,62.5,54,3330,5.73,5.76,3.59
0.7,Ideal,E,SI1,61.9,56,3330,5.7,5.73,3.54
0.7,Ideal,E,SI1,61.1,56,3330,5.75,5.78,3.52
0.7,Ideal,E,SI1,61.6,56,3330,5.7,5.72,3.52
0.71,Very Good,F,VVS2,63.6,56,3332,5.65,5.7,3.61
0.71,Very Good,D,VS1,64.1,57,3332,5.64,5.66,3.62
0.71,Ideal,G,VVS1,61.4,59,3332,5.7,5.76,3.52
0.77,Ideal,H,VS2,60.9,56,3332,5.89,5.94,3.61
0.71,Ideal,E,VS1,61.8,55,3332,5.72,5.77,3.55
0.9,Fair,E,SI1,65,61,3332,6.05,6.02,3.92
0.9,Good,E,SI1,63.8,61,3332,6.08,6.05,3.87
0.92,Ideal,J,VS1,62.4,56,3332,6.23,6.19,3.88
0.98,Fair,G,SI2,66.6,56,3332,6.12,6.02,4.04
0.6,Very Good,F,VVS1,61.2,58,3333,5.42,5.46,3.33
0.71,Very Good,D,VS1,62.5,58,3333,5.68,5.71,3.56
0.93,Premium,F,SI2,60,60,3333,6.36,6.31,3.8
0.9,Very Good,I,VS2,58.4,62,3334,6.29,6.35,3.69
0.9,Very Good,I,VS2,58.4,62,3334,6.29,6.35,3.69
0.78,Very Good,E,VS2,61.7,58,3334,5.9,5.93,3.65
0.78,Ideal,E,VS2,62,55,3334,5.89,5.95,3.67
0.72,Ideal,H,VVS2,61.6,56,3334,5.75,5.77,3.55
0.95,Very Good,H,SI2,59,59,3335,6.38,6.51,3.77
0.92,Good,D,SI2,57.8,63,3335,6.36,6.4,3.69
0.7,Ideal,D,VS1,62,57,3335,5.69,5.76,3.55
0.94,Premium,H,SI2,61.9,57,3335,6.29,6.21,3.87
0.64,Ideal,F,VVS2,61,56,3336,5.55,5.59,3.4
0.61,Ideal,D,VVS2,60.1,57,3336,5.53,5.58,3.34
0.75,Ideal,F,SI1,61.5,55,3336,5.88,5.9,3.62
0.75,Ideal,F,SI1,61.8,56,3336,5.84,5.87,3.62
1.01,Premium,I,SI1,62.7,58,3337,6.4,6.33,3.99
0.61,Very Good,E,IF,61.7,58,3337,5.39,5.47,3.35
0.99,Fair,I,SI1,60.7,66,3337,6.42,6.34,3.87
1.01,Premium,D,SI2,58.9,59,3337,6.54,6.49,3.84
0.72,Very Good,F,VVS2,63.4,56,3338,5.68,5.71,3.61
0.9,Very Good,I,VS2,62,63,3338,6.13,6.03,3.77
0.9,Premium,I,VS2,61.2,62,3338,6.19,6.13,3.77
0.81,Ideal,E,SI1,61.3,57,3338,6.08,6.03,3.71
0.9,Ideal,G,SI2,62.5,55,3338,6.21,6.15,3.86
0.71,Very Good,E,VVS2,63.4,58,3340,5.64,5.69,3.59
0.91,Good,G,SI2,63.6,59,3340,6.11,6.15,3.9
0.91,Very Good,I,VS2,63,58,3340,6.07,6.15,3.85
0.91,Good,G,SI2,63.2,61,3340,6.01,6.27,3.88
0.92,Good,F,SI2,64.2,58,3340,6.11,6.14,3.93
0.91,Good,G,SI2,63.3,57,3340,6.08,6.12,3.86
0.74,Ideal,F,VS1,62,54.8,3340,5.81,5.83,3.61
1.02,Good,I,SI2,57.1,62,3342,6.66,6.58,3.78
0.73,Ideal,F,VVS1,61.9,56,3342,5.83,5.76,3.59
0.71,Ideal,E,VS2,61.1,56,3342,5.77,5.79,3.53
0.73,Ideal,G,VS1,62,55,3342,5.74,5.79,3.58
0.73,Ideal,G,VS1,60.8,58,3342,5.81,5.87,3.55
0.9,Very Good,E,SI2,63.4,60,3342,6.07,6.02,3.83
0.9,Fair,E,SI2,64.5,57,3342,6.13,6.09,3.94
0.78,Premium,F,VS1,60.6,57,3342,6,5.95,3.62
0.78,Ideal,G,VS2,61.1,56,3343,5.89,5.96,3.62
0.77,Premium,F,VS1,62.1,60,3343,5.82,5.77,3.6
0.57,Ideal,F,VVS1,61.3,56,3343,5.4,5.37,3.3
0.71,Very Good,E,VS2,62.5,58,3344,5.69,5.73,3.57
1,Premium,F,I1,62.4,59,3344,6.34,6.38,3.97
0.91,Good,G,SI1,64.3,60,3344,6.04,6.12,3.91
0.72,Ideal,G,VS2,61.7,55,3344,5.72,5.79,3.55
0.92,Very Good,I,SI1,63.7,58,3345,6.12,6.18,3.92
0.7,Ideal,E,VS1,62.3,54,3345,5.67,5.71,3.54
0.78,Ideal,E,SI1,61.6,56,3345,5.94,6,3.68
0.77,Ideal,D,SI1,62.5,56,3345,5.86,5.91,3.68
0.97,Premium,H,SI2,58.8,58,3346,6.44,6.41,3.78
0.53,Ideal,D,VVS2,61.6,56,3346,5.21,5.24,3.22
0.73,Ideal,D,VS2,61.5,57,3346,5.81,5.83,3.58
0.71,Ideal,E,VS1,62.3,56,3346,5.69,5.74,3.56
0.91,Premium,F,SI2,63,59,3346,6.17,6.12,3.87
0.91,Premium,F,SI2,62.9,57,3346,6.16,6.11,3.86
0.71,Premium,F,VVS1,58.1,58,3347,5.92,5.88,3.43
0.83,Premium,D,SI1,62.2,60,3347,6.01,5.98,3.73
0.7,Premium,F,VVS1,61.8,60,3348,5.67,5.63,3.49
0.7,Ideal,F,VVS1,62.2,55,3348,5.69,5.66,3.53
0.9,Good,H,SI2,61.3,61,3348,6.11,6.16,3.76
1,Fair,I,SI2,65.8,58,3348,6.23,6.27,4.11
1.01,Premium,G,I1,59.4,61,3348,6.51,6.45,3.85
1.01,Good,I,SI2,64.1,58,3349,6.26,6.31,4.03
0.91,Good,D,SI2,64.1,62,3349,6.06,6.01,3.87
0.71,Premium,H,IF,62.9,60,3349,5.74,5.67,3.59
0.77,Very Good,F,VS1,62.8,58,3350,5.79,5.86,3.66
0.9,Very Good,G,SI2,63.5,57,3350,6.09,6.13,3.88
0.9,Good,G,SI2,58.5,61,3350,6.28,6.33,3.69
0.77,Very Good,D,VS2,63,58,3351,5.81,5.85,3.67
0.94,Very Good,G,SI2,62.3,59,3351,6.2,6.26,3.88
0.63,Ideal,F,VVS2,61.2,56,3351,5.53,5.55,3.39
0.76,Ideal,D,VS2,60.2,56,3352,5.92,5.95,3.57
0.72,Ideal,G,VVS2,61.3,56,3352,5.76,5.8,3.54
0.72,Ideal,G,VVS2,62,55,3352,5.72,5.76,3.56
0.72,Ideal,G,VVS2,61.2,57,3352,5.76,5.77,3.53
0.53,Ideal,E,VVS1,61.5,54,3352,5.25,5.23,3.22
1.05,Premium,H,SI2,62.8,56,3352,6.54,6.47,4.08
1.05,Premium,H,SI2,61.7,59,3352,6.59,6.53,4.05
0.74,Premium,D,VS2,59.3,60,3353,5.89,5.91,3.5
0.73,Very Good,E,VS1,62.1,60,3353,5.71,5.79,3.57
0.9,Very Good,G,SI2,63.1,59,3353,6.11,6.16,3.87
0.76,Ideal,D,VS1,61.1,54,3353,5.86,5.89,3.59
0.9,Good,I,VS2,58.5,66,3353,6.23,6.25,3.65
0.9,Good,G,SI2,61.3,60,3353,6.13,6.2,3.78
0.94,Fair,H,SI2,66,50.1,3353,6.13,6.17,4.06
0.81,Ideal,D,SI1,61.9,57,3353,6.01,5.97,3.71
0.71,Very Good,F,VVS2,62.1,60,3354,5.69,5.72,3.54
1.07,Good,F,I1,64.3,59,3354,6.37,6.42,4.11
0.7,Ideal,G,VVS1,61.9,58,3354,5.67,5.74,3.53
0.71,Ideal,E,VS1,62.4,57,3354,5.67,5.71,3.55
0.71,Ideal,H,IF,63,57,3354,5.68,5.72,3.59
0.81,Ideal,I,VS2,61.4,55,3355,6.03,6.06,3.71
0.96,Premium,G,SI1,62,57,3355,6.34,6.31,3.92
1.28,Ideal,H,I1,61.9,56,3355,6.95,6.91,4.29
0.8,Premium,E,SI1,61.5,58,3356,5.93,5.97,3.66
0.89,Very Good,F,SI2,60.2,60,3356,6.18,6.21,3.73
0.77,Premium,F,VS1,62.7,58,3357,5.82,5.88,3.67
0.77,Ideal,F,VS1,62.5,57,3357,5.88,5.9,3.68
0.8,Ideal,I,IF,62.4,58,3357,5.9,5.96,3.7
0.9,Good,H,SI1,63.8,58,3357,6.05,6.12,3.88
0.82,Ideal,D,SI2,62.1,57,3357,6.04,6,3.74
0.91,Good,D,SI1,64,59,3357,6.13,6.02,3.89
0.74,Premium,E,VS1,62.8,59,3357,5.76,5.68,3.59
0.74,Very Good,E,VS1,63.4,55,3357,5.78,5.76,3.66
0.9,Very Good,J,VS1,60.4,58,3358,6.22,6.27,3.77
0.7,Very Good,E,VS1,60.7,57,3358,5.72,5.75,3.48
0.93,Fair,G,SI1,64.4,57,3358,6.14,6.09,3.94
0.7,Ideal,F,VS1,60.3,57,3359,5.74,5.79,3.47
1.02,Very Good,J,SI2,63.1,58,3359,6.38,6.34,4.01
0.93,Ideal,I,SI1,61.9,57,3359,6.23,6.21,3.85
0.78,Premium,E,VS1,60.9,57,3360,5.94,5.88,3.59
0.7,Ideal,D,VS2,61.4,55,3360,5.71,5.75,3.52
0.71,Ideal,E,SI1,61.9,55,3360,5.74,5.77,3.56
0.71,Ideal,E,SI1,60.8,57,3360,5.8,5.84,3.54
1.01,Premium,I,SI2,61.5,62,3360,6.41,6.37,3.93
1,Premium,H,SI2,59.4,60,3360,6.55,6.49,3.87
1,Good,I,SI1,64.3,57,3360,6.29,6.25,4.03
1,Very Good,I,SI2,58.3,63,3360,6.53,6.5,3.8
1,Ideal,E,I1,63,57,3360,6.35,6.32,3.99
1,Premium,H,SI2,59.8,61,3360,6.24,6.17,3.71
1,Premium,I,SI1,62.2,62,3360,6.39,6.33,3.96
0.51,Premium,F,SI1,62.7,62,3360,5.09,4.96,3.15
1,Very Good,I,SI1,59.3,63,3360,6.52,6.47,3.85
0.7,Ideal,D,VS1,62.5,57,3361,5.65,5.68,3.54
0.82,Ideal,F,SI1,62.1,56,3361,6.04,6,3.74
0.78,Ideal,F,SI1,61.3,56,3362,5.92,6,3.64
0.8,Ideal,E,SI1,61.5,58,3362,5.96,6,3.68
0.91,Premium,G,SI2,61.3,60,3363,6.2,6.17,3.79
0.76,Ideal,H,VVS1,62.1,56,3363,5.81,5.89,3.63
0.63,Ideal,G,IF,61.9,56,3363,5.5,5.52,3.41
0.82,Good,F,VS2,60.9,62.2,3363,5.97,6.04,3.66
0.91,Ideal,H,SI2,60.3,57,3363,6.31,6.27,3.79
0.91,Premium,H,SI2,62.7,58,3363,6.17,6.14,3.86
0.91,Good,F,SI1,64,57,3363,6.17,6.08,3.92
0.91,Premium,H,SI2,62.9,59,3363,6.15,6.12,3.86
0.82,Ideal,H,VS1,61.5,56,3364,6,6.04,3.7
0.7,Premium,D,VS1,62.5,59,3365,5.69,5.64,3.54
0.75,Very Good,E,VS2,62.3,56,3365,5.79,5.84,3.62
0.95,Very Good,J,VS1,62.4,57,3365,6.25,6.29,3.91
0.83,Very Good,E,SI1,63.5,58,3365,5.93,5.98,3.78
0.8,Good,E,VS2,63.3,59,3365,5.82,5.87,3.7
0.74,Premium,D,VS1,62.7,56,3365,5.8,5.77,3.63
0.71,Very Good,D,VS2,61.9,59,3366,5.68,5.72,3.53
1.13,Ideal,F,I1,61.2,56,3366,6.76,6.71,4.12
0.76,Very Good,H,IF,62.6,57,3367,5.8,5.83,3.64
0.9,Very Good,F,SI2,62.4,57,3368,6.11,6.16,3.83
0.9,Very Good,F,SI2,63,56,3368,6.09,6.16,3.86
0.9,Very Good,F,SI2,62.6,56,3368,6.13,6.17,3.85
0.8,Premium,F,VS2,62,61,3369,5.99,5.91,3.69
0.69,Good,D,VVS2,61.5,61,3369,5.61,5.65,3.46
0.8,Very Good,F,VS2,63.2,55,3369,5.9,5.88,3.72
0.8,Ideal,F,VS2,62.7,54,3369,5.95,5.91,3.72
0.73,Premium,E,VS1,61.2,58,3370,5.77,5.83,3.55
0.73,Ideal,E,VS1,62.3,56,3370,5.75,5.8,3.6
0.73,Very Good,E,VS1,60.9,61,3370,5.79,5.81,3.53
0.84,Good,G,VS2,63.6,59,3370,5.89,5.94,3.76
0.7,Ideal,E,VS2,61.1,56,3370,5.76,5.81,3.53
0.9,Very Good,D,SI2,58.1,60,3371,6.24,6.26,3.63
0.9,Very Good,D,SI2,61,61,3371,6.15,6.17,3.76
0.71,Ideal,H,VVS2,61.7,57,3371,5.68,5.73,3.53
0.71,Ideal,H,VVS2,61.9,56,3371,5.72,5.76,3.55
0.9,Premium,H,SI2,58.3,60,3371,6.34,6.31,3.69
0.86,Premium,F,SI1,62.6,58,3372,6.01,6.06,3.78
0.87,Ideal,H,VS2,62.3,57,3372,6.08,6.12,3.8
0.76,Ideal,G,VS1,61.6,56,3372,5.82,5.87,3.6
0.71,Ideal,D,VS2,62.4,56,3372,5.74,5.7,3.57
0.82,Very Good,E,SI1,62,60,3373,5.96,6,3.71
0.52,Ideal,D,VVS1,62.1,54,3373,5.15,5.18,3.21
0.81,Ideal,E,SI1,61.5,56,3373,6.01,6.03,3.7
0.72,Very Good,E,VVS2,59.3,60,3374,5.87,5.83,3.47
0.74,Ideal,E,VS2,61.7,56,3374,5.81,5.86,3.6
0.7,Very Good,D,VS1,62.8,58,3375,5.65,5.68,3.56
0.72,Very Good,D,VS1,64.1,57,3375,5.68,5.71,3.65
0.9,Fair,H,VS2,65.6,55,3375,6.01,5.97,3.93
1.23,Premium,F,I1,60.8,59,3375,6.96,6.91,4.22
0.71,Very Good,E,VVS2,61.7,60,3376,5.7,5.74,3.53
0.93,Good,F,SI2,61.3,62,3376,6.17,6.26,3.81
0.91,Premium,I,VS2,62.4,61,3376,6.18,6.16,3.85
0.7,Ideal,E,VS2,61,56,3376,5.76,5.79,3.52
0.71,Ideal,E,SI1,61.7,55,3376,5.73,5.77,3.55
0.91,Premium,G,SI2,60.4,61,3376,6.28,6.21,3.77
1.01,Ideal,F,I1,62.2,54,3377,6.42,6.44,4
0.79,Ideal,E,VS2,59.3,57,3377,6.02,6.06,3.58
0.92,Premium,G,SI2,62.3,59,3377,6.15,6.2,3.85
0.9,Premium,G,SI2,58.3,60,3377,6.39,6.33,3.71
0.7,Premium,E,VVS2,60.6,60,3377,5.74,5.72,3.47
0.9,Premium,H,SI1,62,55,3377,6.21,6.17,3.84
0.9,Premium,I,SI1,63,60,3377,6.08,5.99,3.8
0.5,Good,D,IF,63.2,59,3378,4.99,5.04,3.17
0.5,Very Good,D,IF,62.9,59,3378,4.99,5.09,3.17
1.03,Premium,J,SI2,62,58,3378,6.47,6.52,4.03
0.73,Ideal,H,IF,61.6,55,3378,5.8,5.82,3.58
0.62,Ideal,G,IF,60.3,57,3378,5.54,5.61,3.35
0.95,Very Good,I,SI1,63.5,58,3378,6.19,6.16,3.92
0.91,Very Good,E,SI2,63.4,58,3379,6.15,6.09,3.88
0.91,Premium,E,SI2,58.5,60,3379,6.34,6.31,3.7
0.91,Premium,E,SI2,60,60,3379,6.28,6.23,3.75
0.82,Ideal,E,SI1,62.1,54,3380,5.98,6.03,3.73
0.7,Good,G,VVS1,58.5,62,3380,5.8,5.82,3.4
0.71,Ideal,E,VS1,62,57,3380,5.72,5.66,3.53
0.71,Premium,E,VVS2,59,59,3380,5.88,5.82,3.45
0.8,Very Good,G,VS1,63.5,57,3381,5.87,5.91,3.74
0.71,Ideal,E,VS2,61.6,56,3381,5.71,5.75,3.53
0.92,Good,I,SI1,63.3,58,3382,6.14,6.18,3.9
0.91,Very Good,H,SI2,63.4,57,3382,6.1,6.18,3.89
0.6,Ideal,D,VVS2,61.9,55,3382,5.41,5.45,3.36
0.3,Very Good,I,SI1,61.2,58,405,4.28,4.31,2.63
0.3,Ideal,G,SI2,60.6,56,405,4.35,4.4,2.65
0.31,Very Good,I,VS2,59.3,59,406,4.38,4.42,2.61
0.3,Very Good,I,VS2,62.7,56,407,4.27,4.28,2.68
0.3,Very Good,I,VS2,60.7,56,407,4.32,4.34,2.63
0.25,Very Good,G,VS2,61.9,57,407,4.05,4.08,2.51
0.25,Very Good,G,VS2,63,54,407,4.04,4.06,2.55
0.27,Very Good,E,VS1,63.8,60,407,4.03,4.09,2.59
0.27,Very Good,E,SI1,61.2,57,407,4.2,4.23,2.58
0.3,Ideal,I,VS2,62.3,56,407,4.28,4.29,2.67
0.3,Ideal,I,VS2,62.4,55,407,4.32,4.34,2.7
0.32,Ideal,G,SI2,61.3,56,407,4.44,4.47,2.73
0.3,Ideal,H,SI1,62,58,407,4.25,4.33,2.66
0.3,Ideal,H,SI1,62.9,53,407,4.28,4.31,2.7
0.25,Ideal,G,SI1,62.3,57,407,4.03,4.09,2.53
0.24,Ideal,F,VS2,61.8,57,408,3.97,3.99,2.46
0.3,Ideal,H,SI2,60,56,408,4.41,4.43,2.65
0.31,Very Good,G,SI2,62.3,57,408,4.33,4.37,2.71
0.31,Good,G,SI2,63.2,55,408,4.31,4.33,2.73
0.31,Premium,I,SI1,61.3,58,408,4.34,4.37,2.67
0.31,Ideal,I,SI1,62.7,56,408,4.3,4.34,2.71
0.31,Premium,J,VS1,60.7,60,408,4.34,4.39,2.65
0.31,Very Good,I,SI1,61.4,61,408,4.34,4.39,2.68
0.31,Very Good,G,SI2,63,57,408,4.32,4.35,2.73
0.31,Good,I,SI1,63.5,56,408,4.28,4.32,2.73
0.31,Very Good,G,SI2,61.8,59,408,4.3,4.34,2.67
0.31,Premium,J,VS1,61.8,59,408,4.31,4.33,2.67
0.31,Premium,I,SI1,61.5,59,408,4.35,4.37,2.68
0.31,Very Good,F,SI2,63,58,408,4.34,4.36,2.74
0.31,Very Good,I,SI1,63,57,408,4.32,4.34,2.73
0.34,Very Good,F,SI1,62.8,56,566,4.42,4.46,2.79
0.27,Very Good,E,VVS2,59.7,61,567,4.24,4.27,2.54
0.27,Very Good,E,VVS2,59.4,64,567,4.16,4.19,2.48
0.35,Very Good,H,VS2,60.1,56,567,4.61,4.64,2.78
0.27,Very Good,F,IF,59.4,61,567,4.23,4.26,2.52
0.32,Ideal,I,VVS2,62.2,54.5,567,4.38,4.42,2.74
0.32,Ideal,I,VVS2,62,54.9,567,4.36,4.39,2.71
0.3,Ideal,H,VVS2,62.5,54,567,4.3,4.3,2.7
0.3,Ideal,F,VS2,62.6,54,567,4.3,4.33,2.7
0.3,Very Good,I,VS1,61.8,63,567,4.29,4.26,2.64
0.3,Premium,I,VS1,61.6,61,567,4.28,4.23,2.62
0.28,Premium,F,VS2,59.6,61,567,4.28,4.25,2.54
0.27,Premium,D,VS2,59.6,61,567,4.26,4.23,2.53
0.4,Good,J,VS1,64,56,567,4.66,4.69,2.99
0.31,Good,D,VS2,63.6,56,567,4.26,4.32,2.73
0.33,Good,D,SI1,63.1,55,567,4.38,4.4,2.77
0.33,Good,D,SI1,63.1,55,567,4.42,4.46,2.8
0.33,Ideal,D,SI1,62,56,567,4.44,4.47,2.76
0.3,Ideal,F,VS2,60.3,57,568,4.34,4.39,2.63
0.3,Ideal,F,VS2,62.1,57,568,4.27,4.3,2.66
0.38,Ideal,F,SI2,61.3,55,568,4.67,4.69,2.87
0.38,Ideal,F,SI2,62,55,568,4.67,4.69,2.9
0.38,Ideal,F,SI2,60.9,56,568,4.69,4.74,2.87
0.39,Ideal,J,SI1,61,56,568,4.71,4.73,2.88
0.31,Ideal,F,SI1,61.2,55,568,4.37,4.4,2.68
0.36,Premium,I,VS1,62,59,568,4.53,4.6,2.83
0.3,Very Good,D,VS2,61,57,568,4.32,4.34,2.64
0.36,Good,H,VS2,63.7,55,568,4.49,4.52,2.87
0.36,Very Good,H,VS2,61,60,568,4.55,4.6,2.79
0.36,Premium,H,VS2,60.9,59,568,4.58,4.62,2.8
0.9,Fair,D,SI1,66.4,59,3382,5.97,5.92,3.95
0.9,Very Good,I,VS2,63.2,54,3382,6.1,6.08,3.85
1.02,Ideal,G,I1,61.5,56,3382,6.49,6.46,3.98
0.7,Ideal,G,VS1,60.5,56,3384,5.77,5.79,3.5
0.7,Ideal,G,VS1,61.9,55,3384,5.67,5.71,3.52
0.7,Ideal,G,VS1,60.6,57,3384,5.73,5.79,3.5
0.79,Ideal,E,SI1,62,57,3384,5.92,5.96,3.68
0.95,Fair,D,SI2,64.4,60,3384,6.06,6.02,3.89
0.71,Premium,H,IF,60.2,61,3384,5.8,5.76,3.48
0.76,Ideal,D,VS2,61.2,57,3384,5.91,5.89,3.61
0.78,Very Good,E,SI1,59.8,57,3385,5.98,6.02,3.59
0.9,Premium,I,VS2,59.1,59,3385,6.28,6.24,3.7
0.9,Premium,G,SI2,62.8,61,3385,6.14,6.09,3.84
0.72,Ideal,E,VS2,61.5,56,3385,5.71,5.77,3.53
0.91,Very Good,G,SI2,64,61,3387,6.05,6.08,3.88
0.91,Very Good,G,SI2,62,58,3387,6.13,6.2,3.82
0.9,Premium,H,SI1,62.6,58,3387,6.12,6.08,3.82
0.9,Premium,H,SI1,61,59,3387,6.16,6.11,3.74
0.9,Premium,H,SI1,62.1,61,3387,6.11,6.07,3.78
0.9,Very Good,H,SI1,62.3,63,3387,6.13,6.06,3.8
0.9,Premium,H,SI1,62.8,62,3387,6.09,6.05,3.81
0.9,Fair,H,SI1,65.4,56,3387,6.11,6.04,3.97
0.9,Fair,I,VS1,65.2,60,3387,6,5.96,3.9
0.77,Ideal,F,VS1,62.1,57,3387,5.88,5.84,3.64
0.9,Very Good,H,SI1,63.4,58,3387,6.16,6.11,3.89
0.9,Premium,H,SI1,61.4,60,3387,6.13,6.08,3.75
1,Fair,F,SI1,68.7,55,3387,6.06,5.88,4.11
1.01,Ideal,E,I1,62,57,3388,6.37,6.41,3.96
0.91,Very Good,G,SI2,61.8,59,3388,6.17,6.23,3.83
0.9,Very Good,H,SI1,63,55,3388,6.12,6.16,3.87
0.9,Very Good,H,SI1,63.2,59,3388,6.08,6.14,3.86
1.1,Premium,H,SI2,59.2,59,3388,6.8,6.74,4.01
0.74,Ideal,G,VVS1,62.1,56,3388,5.78,5.82,3.6
0.7,Premium,E,VVS2,61,59,3389,5.64,5.71,3.5
0.74,Very Good,G,VS1,60.9,59,3389,5.9,5.86,3.58
0.73,Ideal,G,VS2,60.2,55,3389,5.85,5.9,3.54
0.78,Ideal,D,SI1,62.2,55,3389,5.92,5.95,3.69
0.88,Premium,D,SI2,60.9,61,3390,6.16,6.13,3.74
0.79,Ideal,E,SI2,61,57,3390,6,5.95,3.65
0.9,Good,E,SI1,63.8,61,3391,6.05,6.08,3.87
0.9,Very Good,G,SI2,61.2,57,3391,6.19,6.23,3.8
0.72,Ideal,I,VS2,60.3,57,3391,5.82,5.86,3.52
0.72,Ideal,I,VS2,61.4,56,3391,5.77,5.83,3.56
1.06,Premium,J,SI2,62.9,59,3391,6.43,6.39,4.03
0.84,Very Good,I,VVS2,61.7,56,3392,6.03,6.07,3.74
0.91,Premium,G,SI1,58,59,3392,6.45,6.38,3.72
0.85,Ideal,I,SI1,61.4,56,3392,6.06,6.12,3.74
1.04,Premium,E,SI2,60.1,58,3392,6.65,6.56,3.97
1.04,Premium,E,SI2,61.6,59,3392,6.51,6.47,4
0.77,Good,F,VS1,59.3,56,3393,5.98,6.03,3.56
0.71,Good,F,IF,62.1,62,3393,5.68,5.79,3.56
0.83,Premium,F,VS2,62,59,3393,6,5.96,3.71
0.76,Very Good,G,VVS2,61.5,59,3394,5.83,5.91,3.61
0.94,Very Good,H,SI2,61.9,57,3394,6.21,6.29,3.87
1.01,Premium,E,I1,59.8,58,3394,6.57,6.53,3.92
1.01,Good,I,SI1,58.4,64,3394,6.51,6.48,3.79
1.01,Premium,H,SI2,61.9,61,3394,6.34,6.29,3.91
1.01,Premium,H,SI2,60.9,59,3394,6.42,6.35,3.89
1.05,Very Good,J,SI2,60.9,60,3395,6.51,6.59,3.99
0.73,Ideal,G,VVS2,62.1,56,3396,5.78,5.81,3.59
0.61,Ideal,D,VVS2,62.2,54,3397,5.41,5.45,3.38
0.81,Ideal,G,VS2,61.5,55,3397,6,6.06,3.71
0.79,Very Good,F,VS1,58.6,57,3398,6.08,6.14,3.58
0.9,Good,H,SI1,63.2,61,3398,6.12,6.03,3.84
0.9,Premium,I,VS2,61.9,58,3398,6.18,6.23,3.84
0.9,Very Good,G,SI2,62.3,58,3398,6.15,6.2,3.85
0.9,Premium,I,VS2,61.8,59,3398,6.15,6.21,3.82
0.9,Very Good,I,VS2,62.4,58,3398,6.12,6.16,3.83
0.9,Good,I,VS2,62.5,59,3398,6.06,6.13,3.81
0.9,Good,I,VS1,62.8,57,3398,6.07,6.16,3.84
0.85,Premium,D,SI2,58.5,60,3398,6.23,6.21,3.64
0.81,Ideal,G,VS2,60.8,60,3398,5.98,6,3.64
1.01,Good,J,SI1,62.8,58,3399,6.28,6.33,3.96
1.01,Good,I,SI2,62.6,59,3399,6.24,6.35,3.94
1.01,Good,I,SI2,61.8,62,3399,6.28,6.35,3.9
0.7,Ideal,F,VS1,61.6,55,3399,5.68,5.71,3.51
0.7,Ideal,F,VS1,61.6,56,3399,5.65,5.72,3.5
0.92,Premium,F,SI1,58.5,57,3400,6.39,6.37,3.73
0.9,Good,E,SI1,64.3,62,3400,6,6.07,3.88
0.88,Premium,G,VS2,61.1,58,3400,6.19,6.15,3.77
0.92,Ideal,F,SI1,62.2,55,3400,6.25,6.19,3.87
0.74,Premium,E,VS1,61.1,58,3401,5.84,5.81,3.56
0.9,Good,E,SI2,63.2,57,3401,6.06,6.15,3.86
0.9,Good,E,SI2,63.4,60,3401,6.02,6.07,3.83
0.78,Very Good,F,VS1,60.6,57,3401,5.95,6,3.62
0.76,Ideal,D,VS2,61.8,55,3401,5.85,5.89,3.63
0.76,Ideal,E,SI1,61.2,56,3401,5.88,5.91,3.61
0.74,Ideal,G,VVS1,61.9,54,3402,5.8,5.84,3.6
0.81,Premium,G,VS1,61.7,59,3402,6.07,5.96,3.71
0.75,Ideal,E,VS1,62,55,3402,5.88,5.83,3.66
1.14,Fair,J,SI2,64.4,55,3403,6.56,6.54,4.22
0.7,Premium,E,IF,62.9,59,3403,5.66,5.59,3.4
0.85,Ideal,G,SI1,62.2,56,3403,6.06,6.09,3.78
0.91,Premium,D,SI2,62,62,3403,6.25,6.16,3.85
0.81,Very Good,H,VS1,62.5,57,3404,5.94,5.96,3.72
0.71,Ideal,F,VS1,61.5,57,3404,5.7,5.74,3.52
0.71,Ideal,F,VS1,61.1,56,3404,5.75,5.78,3.52
0.71,Ideal,F,VS1,61.5,57,3404,5.73,5.76,3.53
0.81,Ideal,E,SI1,62.3,57,3404,5.95,5.99,3.72
0.91,Very Good,F,SI2,63,59,3405,6.12,6.17,3.87
0.72,Very Good,G,IF,63.3,54,3405,5.64,5.73,3.6
0.71,Ideal,F,VS2,62.2,55,3405,5.72,5.76,3.57
1,Premium,F,I1,62.4,59,3405,6.38,6.34,3.97
0.71,Very Good,D,VS1,63.2,57,3406,5.63,5.67,3.57
0.71,Ideal,D,VS1,61.3,56,3406,5.75,5.77,3.53
0.9,Very Good,I,SI1,61,58,3407,6.19,6.23,3.79
0.9,Very Good,I,SI1,61.8,56,3407,6.19,6.24,3.84
0.9,Premium,G,SI1,60.6,60,3407,6.22,6.15,3.75
0.92,Fair,E,SI1,65.6,57,3407,6.1,6.07,3.99
1.04,Good,J,SI1,64.2,58,3407,6.42,6.34,4.1
0.9,Premium,G,SI1,60.6,61,3407,6.16,6.12,3.72
0.91,Good,D,SI2,64.1,62,3408,6.01,6.06,3.87
0.91,Very Good,H,SI2,58.4,63,3408,6.29,6.24,3.66
0.83,Premium,F,VS2,61.9,58,3408,6.05,6.01,3.73
0.72,Ideal,E,VS1,61.2,56,3409,5.78,5.83,3.55
0.72,Ideal,E,SI1,60.5,55,3409,5.8,5.86,3.53
0.72,Ideal,E,SI1,60.8,57,3409,5.77,5.8,3.52
0.7,Premium,D,VS1,62.5,60,3410,5.67,5.62,3.53
0.73,Very Good,D,VS2,60.5,59,3411,5.76,5.84,3.51
0.73,Ideal,G,VS1,60.7,57,3411,5.85,5.81,3.54
1.01,Good,I,SI2,64.1,58,3411,6.31,6.26,4.03
1.01,Premium,I,SI2,61.6,59,3411,6.4,6.35,3.93
1.07,Ideal,H,I1,62.1,55,3412,6.55,6.59,4.08
0.73,Ideal,D,VS2,62.7,53,3412,5.76,5.79,3.62
0.74,Very Good,G,VVS2,61.3,56,3413,5.85,5.9,3.6
0.79,Ideal,G,VS1,62,56,3413,5.91,5.93,3.67
0.81,Ideal,E,SI1,60.3,56,3413,6.05,6.13,3.67
0.91,Premium,H,SI1,60.9,58,3414,6.26,6.22,3.8
0.76,Very Good,E,VS1,62.1,58,3415,5.84,5.89,3.64
1.07,Ideal,H,SI1,61.5,54,3415,6.64,6.6,4.07
0.77,Very Good,F,VVS2,63.5,59,3415,5.77,5.72,3.65
1.07,Good,F,I1,64.3,59,3415,6.42,6.37,4.11
1.21,Good,G,I1,64,59,3415,6.78,6.73,4.32
1,Premium,J,SI1,62.7,57,3416,6.4,6.33,3.99
0.74,Good,E,VS1,63.4,55,3416,5.76,5.78,3.66
0.74,Very Good,E,VS1,62.8,59,3416,5.68,5.76,3.59
0.92,Very Good,H,SI2,62.8,59,3417,6.14,6.16,3.86
0.79,Ideal,H,VVS2,62.4,56,3417,5.91,5.94,3.7
0.72,Ideal,H,VVS2,61.7,55,3417,5.77,5.8,3.57
0.72,Ideal,H,VVS2,61.8,55,3417,5.75,5.77,3.56
1.01,Premium,H,SI1,59.2,58,3417,6.58,6.56,3.89
0.9,Very Good,J,VS1,62.4,58,3418,6.15,6.19,3.85
0.9,Ideal,J,VS1,62.1,57,3418,6.16,6.18,3.83
0.93,Good,F,SI2,59.4,61,3418,6.24,6.25,3.71
0.86,Fair,G,VS2,66.5,54.1,3418,5.89,5.97,3.94
1.09,Very Good,E,SI2,63.1,58,3418,6.51,6.46,4.09
0.8,Very Good,D,VS2,60.6,63,3419,5.94,5.9,3.59
0.7,Ideal,E,VS1,60.5,56,3419,5.78,5.83,3.51
0.7,Ideal,D,VS1,61.7,57,3419,5.71,5.74,3.53
0.75,Ideal,E,SI1,61.4,56,3419,5.83,5.89,3.6
0.7,Good,E,VS1,58.4,61,3419,5.85,5.89,3.43
0.7,Good,E,VS1,58.4,60,3419,5.84,5.87,3.42
0.96,Very Good,D,SI2,60.2,63,3419,6.36,6.3,3.81
0.96,Good,D,SI2,64,62,3419,6.16,6.13,3.93
0.72,Very Good,F,VVS2,63.6,59,3420,5.65,5.7,3.61
0.78,Very Good,E,VS1,60.9,57,3420,5.94,5.88,3.59
0.71,Very Good,D,VS1,62,61,3420,5.71,5.74,3.55
0.82,Ideal,H,VVS1,62.9,56,3420,5.99,5.91,3.74
0.8,Ideal,F,SI1,60.5,57,3420,6.02,6.07,3.66
0.93,Very Good,F,SI2,63.5,58,3420,6.14,6.05,3.87
1.01,Premium,J,SI2,63,60,3421,6.38,6.31,4
0.71,Ideal,E,VS2,62,55,3421,5.72,5.77,3.56
0.71,Ideal,F,SI1,61.2,55,3421,5.76,5.8,3.54
0.59,Ideal,E,VVS1,60.7,57,3422,5.41,5.45,3.29
0.81,Ideal,I,VS1,61.8,56,3422,5.97,6,3.7
0.81,Ideal,F,SI1,61.5,57,3422,6.01,6.06,3.71
0.9,Good,E,SI2,61.9,62,3422,6.14,6.18,3.81
1,Good,J,VS2,57.6,58,3422,6.59,6.56,3.79
1,Fair,J,VS2,65.3,61,3422,6.33,6.13,4.03
0.91,Good,F,SI1,64,57,3423,6.08,6.17,3.92
0.91,Premium,G,SI2,61.3,60,3423,6.17,6.2,3.79
0.91,Premium,H,SI2,62.7,58,3423,6.14,6.17,3.86
0.91,Ideal,H,SI2,60.3,57,3423,6.27,6.31,3.79
0.76,Ideal,H,VVS1,61.8,57,3423,5.82,5.86,3.61
0.9,Good,J,VS2,57.9,63,3423,6.32,6.35,3.67
0.9,Good,J,VS2,62.3,64,3423,6.09,6.17,3.82
1.09,Good,G,SI2,57.4,61,3424,6.82,6.75,3.89
0.76,Ideal,H,VS1,61.6,56,3424,5.85,5.9,3.62
0.9,Good,D,SI2,63.5,62,3425,6.09,6.13,3.88
0.7,Premium,D,VS1,61.2,60,3425,5.69,5.71,3.49
0.71,Very Good,G,VS1,62,53,3425,5.72,5.76,3.56
0.91,Ideal,G,SI2,62.2,57,3425,6.18,6.24,3.86
0.93,Good,G,SI2,64.5,56.3,3425,6.08,6.14,3.94
0.91,Good,H,SI1,63.9,60,3425,6.13,6.08,3.9
1.04,Good,J,SI2,64.2,59,3425,6.47,6.38,4.13
1,Fair,J,SI1,64.9,58,3427,6.29,6.23,4.06
1,Very Good,G,SI2,58.2,63,3427,6.53,6.49,3.79
0.72,Ideal,E,VS2,61.7,55,3427,5.8,5.77,3.57
1.02,Good,H,SI2,58.6,64,3427,6.32,6.26,3.68
1,Premium,G,SI2,60.7,59,3427,6.45,6.41,3.9
0.9,Good,F,SI1,64.3,57,3427,6.08,6.01,3.89
0.9,Ideal,G,SI2,62.7,55,3428,6.11,6.17,3.85
0.82,Ideal,F,SI1,61.1,56,3428,6.06,6.08,3.71
0.77,Good,D,VS2,64.3,56,3428,5.84,5.77,3.73
1.05,Ideal,I,VS2,62.2,56,3428,6.52,6.5,4.05
0.77,Very Good,D,VS2,63.1,57,3428,5.86,5.83,3.69
0.77,Premium,D,VS2,61.2,59,3428,5.91,5.86,3.6
0.77,Premium,D,VS2,61.3,60,3428,5.92,5.89,3.62
0.7,Very Good,E,VVS2,61.5,58,3429,5.67,5.71,3.5
0.78,Very Good,F,VS2,62.2,58,3429,5.86,5.9,3.66
0.8,Premium,F,VS2,61.6,58,3429,5.98,6.03,3.7
0.8,Ideal,F,VS2,62.7,54,3429,5.91,5.95,3.72
0.8,Good,F,VS2,63.2,55,3429,5.88,5.9,3.72
0.73,Ideal,E,VS2,61.6,56,3429,5.8,5.82,3.58
0.89,Ideal,E,SI2,62.4,56,3429,6.04,6.08,3.78
0.73,Ideal,H,IF,61.4,59,3429,5.77,5.83,3.56
0.9,Premium,I,VS2,59.8,61,3431,6.22,6.13,3.69
0.9,Premium,I,VS2,62.4,60,3431,6.16,6.06,3.81
0.76,Ideal,E,VS2,62.1,56,3431,5.83,5.87,3.63
0.71,Ideal,G,VS1,61.7,56,3431,5.72,5.75,3.53
0.71,Ideal,G,VS1,61.8,57,3431,5.69,5.73,3.53
0.71,Ideal,G,VS1,61.7,57,3431,5.7,5.75,3.53
0.71,Ideal,G,VS1,61.6,55,3431,5.71,5.75,3.53
0.71,Ideal,G,VS1,61.5,55,3431,5.72,5.77,3.54
0.71,Ideal,G,VS1,60.7,57,3431,5.76,5.8,3.51
0.71,Ideal,G,VS1,61.8,55,3431,5.71,5.76,3.55
0.79,Very Good,D,SI1,59.7,57,3432,5.96,5.99,3.57
0.74,Ideal,G,VS2,61.2,56,3434,5.82,5.85,3.57
0.91,Very Good,G,SI2,60.4,61,3435,6.21,6.28,3.77
0.75,Ideal,E,VS2,61.9,57,3435,5.81,5.83,3.6
0.71,Ideal,E,VS1,61.4,57,3435,5.81,5.78,3.56
0.79,Good,F,VS1,57.7,58,3436,6.06,6.14,3.52
0.9,Very Good,G,SI2,64.2,60,3437,6.02,6.09,3.89
0.9,Very Good,H,SI1,62.8,58,3437,6.13,6.16,3.86
0.9,Very Good,H,SI1,62.8,57,3437,6.14,6.18,3.87
0.9,Premium,F,SI1,62.6,62,3437,6.13,6.11,3.83
0.9,Fair,F,SI1,65.1,56,3437,6.08,6.05,3.95
0.93,Premium,H,SI2,63,59,3437,6.16,6.11,3.86
0.93,Premium,H,SI1,60.9,61,3437,6.24,6.2,3.79
0.91,Very Good,E,SI2,58.5,60,3438,6.31,6.34,3.7
0.91,Very Good,E,SI2,60,60,3438,6.23,6.28,3.75
0.73,Ideal,I,VS2,60.8,56,3438,5.82,5.85,3.55
0.82,Ideal,F,SI1,61.3,55,3439,6.06,6.08,3.72
1.01,Ideal,F,I1,62.2,54,3439,6.44,6.42,4
0.73,Ideal,D,VS2,62,56,3440,5.74,5.78,3.57
0.85,Ideal,E,SI2,60.7,55,3441,6.14,6.19,3.74
0.8,Premium,D,SI1,62.9,60,3441,5.94,5.89,3.72
0.73,Very Good,F,VVS2,61.9,59,3442,5.72,5.84,3.58
0.53,Ideal,D,VVS1,62.1,57,3442,5.15,5.18,3.21
0.77,Ideal,D,VS2,61.3,56,3442,5.87,5.9,3.61
0.86,Ideal,G,SI2,61.9,55,3442,6.11,6.14,3.79
0.82,Very Good,I,VVS1,62.8,58,3443,5.95,5.99,3.75
0.76,Good,D,VS2,63.5,55,3443,5.81,5.85,3.7
0.76,Ideal,D,VS2,61.2,57,3443,5.89,5.91,3.61
1,Fair,F,SI2,65.7,61,3443,6.13,6.11,4.02
1.09,Fair,J,VS2,64.6,58,3443,6.48,6.41,4.16
1.22,Very Good,J,SI2,63.5,58,3443,6.8,6.75,4.3
1.03,Ideal,F,I1,61.1,55,3444,6.51,6.54,3.99
0.71,Very Good,H,IF,60.2,61,3444,5.76,5.8,3.48
1.03,Premium,F,I1,62.3,59,3444,6.42,6.46,4.01
1.02,Premium,J,SI1,58.9,62,3444,6.51,6.43,3.81
0.78,Premium,E,VS1,62.5,57,3444,5.94,5.9,3.7
0.9,Very Good,I,VS2,61.4,58,3445,6.16,6.26,3.81
0.9,Very Good,G,SI2,62,59,3445,6.14,6.19,3.82
0.9,Premium,G,SI2,60.4,58,3445,6.25,6.3,3.79
0.9,Very Good,G,SI2,61.1,55,3445,6.21,6.26,3.81
0.9,Ideal,J,SI1,62.7,56,3445,6.21,6.16,3.88
0.7,Good,F,VVS2,62.5,58,3445,5.68,5.75,3.57
0.91,Very Good,G,SI1,63.1,63,3445,6.16,6.11,3.87
0.78,Premium,F,VS1,61.5,58,3446,5.93,5.98,3.66
0.51,Ideal,D,IF,62,56,3446,5.14,5.18,3.2
0.76,Ideal,F,VS1,61.6,56,3446,5.87,5.91,3.63
0.51,Ideal,D,IF,62.1,55,3446,5.12,5.13,3.19
0.7,Ideal,E,VS1,61,56,3446,5.7,5.77,3.5
0.81,Ideal,H,SI1,61.4,56,3446,6,6.05,3.7
0.9,Very Good,H,SI1,62.6,58,3447,6.08,6.12,3.82
0.9,Very Good,I,VS1,62.6,58,3447,6.14,6.17,3.85
0.9,Good,I,VS1,62.8,59,3447,6.11,6.18,3.86
0.9,Good,H,SI1,62.8,62,3447,6.05,6.09,3.81
0.9,Very Good,H,SI1,61,59,3447,6.11,6.16,3.74
0.9,Very Good,H,SI1,62.3,63,3447,6.06,6.13,3.8
0.9,Very Good,H,SI1,58.7,59,3447,6.3,6.35,3.71
0.7,Premium,G,IF,60,59,3447,5.75,5.79,3.46
0.9,Good,H,SI1,62.1,61,3447,6.07,6.11,3.78
0.76,Premium,E,VS2,60.5,56,3447,5.98,5.95,3.61
0.7,Ideal,D,VS2,62.7,57,3448,5.65,5.67,3.55
0.72,Very Good,G,VVS2,60.1,60,3449,5.79,5.82,3.49
1.04,Very Good,I,SI2,61.6,58,3449,6.47,6.58,4.02
0.9,Very Good,E,SI2,64.2,54,3449,6.08,6.11,3.91
0.9,Good,E,SI1,63.8,56,3449,6.17,6.09,3.91
1,Premium,E,SI2,62.9,61,3450,6.3,6.23,3.94
1,Good,E,SI2,64.3,58,3450,6.18,6.11,3.95
0.72,Ideal,D,VS2,62.1,54,3450,5.76,5.81,3.59
1,Ideal,E,SI2,62.9,56,3450,6.32,6.3,3.97
1,Ideal,E,SI2,62.9,56,3450,6.32,6.3,3.97
1,Premium,E,SI2,61,59,3450,6.4,6.33,3.88
1.01,Ideal,E,I1,62,57,3450,6.41,6.37,3.96
0.7,Premium,G,VVS2,59.3,54,3450,5.89,5.78,3.46
0.77,Premium,F,VVS2,60.5,56,3450,5.94,5.9,3.58
1,Premium,E,SI2,58.5,59,3450,6.62,6.51,3.84
0.7,Ideal,G,VS2,61.6,56,3451,5.7,5.73,3.52
1.02,Ideal,J,VVS2,62.7,57,3451,6.45,6.37,4.02
0.93,Very Good,H,SI2,61.9,57,3452,6.25,6.31,3.89
0.9,Very Good,G,SI2,63.1,55,3452,6.16,6.13,3.88
0.84,Very Good,E,SI1,58.8,58,3453,6.16,6.28,3.66
0.73,Ideal,E,SI1,61.5,56,3453,5.79,5.82,3.57
0.82,Ideal,F,VS2,61.9,57,3453,5.99,5.96,3.7
0.91,Premium,H,SI2,60.9,61,3453,6.24,6.18,3.78
0.9,Good,F,SI2,63.9,55,3453,6.15,6.12,3.92
0.74,Ideal,F,VS2,61.9,57,3454,5.79,5.81,3.59
0.3,Very Good,E,VS1,63,57,568,4.25,4.29,2.69
0.36,Good,H,VS2,63.5,54,568,4.55,4.59,2.9
0.36,Ideal,I,VS1,60.5,57,568,4.56,4.59,2.77
0.36,Good,I,VS1,63.3,56,568,4.51,4.56,2.87
0.36,Ideal,H,VS2,62.1,55,568,4.57,4.58,2.84
0.36,Ideal,I,VS1,62.1,56,568,4.55,4.59,2.84
0.3,Good,D,VS2,63.1,58,568,4.26,4.3,2.7
0.36,Ideal,H,VS2,62.1,55,568,4.57,4.61,2.85
0.3,Good,E,VS1,63.2,57,568,4.26,4.29,2.7
0.36,Very Good,H,VS2,60,62,568,4.58,4.62,2.76
0.36,Very Good,I,VS1,60.9,61,568,4.58,4.61,2.8
0.36,Very Good,I,VS1,60.3,60,568,4.58,4.64,2.78
0.36,Ideal,I,VS1,62.1,57,568,4.54,4.58,2.83
0.26,Very Good,E,VVS2,60.5,55,569,4.1,4.16,2.5
0.35,Ideal,J,IF,61.8,55,569,4.54,4.56,2.81
0.35,Ideal,J,IF,61.8,53,569,4.58,4.61,2.84
0.3,Ideal,F,VS2,61.1,55,569,4.37,4.32,2.66
0.3,Ideal,F,VS2,62.3,58,569,4.26,4.23,2.64
0.33,Ideal,I,VVS1,61.7,55.7,570,4.43,4.45,2.74
0.41,Good,G,SI2,63.7,55,570,4.7,4.75,3.01
0.3,Good,F,VS1,63.7,56,570,4.26,4.28,2.72
0.3,Premium,E,VS2,61.7,60,570,4.28,4.31,2.65
0.3,Ideal,F,VS1,61.7,56,570,4.32,4.34,2.67
0.3,Ideal,F,VS1,61,56,570,4.35,4.37,2.66
0.3,Premium,F,VS1,61,58,570,4.33,4.36,2.65
0.3,Very Good,F,VS1,61,60,570,4.3,4.22,2.6
0.3,Ideal,F,VS1,61.3,55,570,4.32,4.36,2.66
0.3,Ideal,F,VS1,62.6,57,570,4.29,4.34,2.7
0.23,Premium,F,VVS2,61.3,59,571,3.99,3.94,2.43
0.36,Very Good,I,VVS2,59.7,55,571,4.65,4.69,2.79
0.74,Ideal,D,VS2,62.2,56,3454,5.79,5.81,3.61
0.78,Ideal,D,SI2,61.4,57,3454,5.91,5.94,3.64
0.7,Ideal,D,SI1,61.8,56,3454,5.7,5.72,3.53
0.96,Good,H,SI2,56.7,62,3454,6.51,6.39,3.66
1.02,Very Good,E,I1,60.4,62,3455,6.47,6.52,3.92
1.02,Premium,J,SI2,61.4,60,3455,6.5,6.44,3.97
0.9,Ideal,I,SI1,62.3,57,3455,6.12,6.15,3.82
1.02,Ideal,E,SI2,62.3,56,3455,6.42,6.37,3.98
0.75,Ideal,D,VS2,62.4,55,3456,5.83,5.8,3.63
0.86,Ideal,E,SI1,62.3,54,3456,6.13,6.07,3.8
0.94,Premium,F,SI2,62.4,58,3456,6.23,6.17,3.87
0.71,Ideal,F,VS1,62.1,56,3457,5.69,5.75,3.55
0.9,Premium,F,SI2,61.1,54,3457,6.29,6.27,3.84
1.05,Premium,J,SI2,60.9,60,3457,6.59,6.51,3.99
0.9,Very Good,F,SI2,63.1,58,3457,6.13,6.11,3.86
0.9,Very Good,F,SI2,63.1,56,3457,6.18,6.12,3.88
0.9,Premium,F,SI2,61.6,58,3457,6.23,6.15,3.81
1.5,Premium,H,I1,60.1,57,3457,7.4,7.28,4.42
1.04,Very Good,J,SI2,62.8,57,3459,6.44,6.5,4.06
1.02,Ideal,G,I1,61.2,56,3459,6.47,6.5,3.97
0.9,Premium,J,VVS2,62.5,61,3459,6.15,6.08,3.82
0.73,Ideal,G,VS1,60.9,59,3459,5.79,5.83,3.54
0.72,Premium,D,VVS2,60,57,3459,5.92,5.84,3.53
0.82,Very Good,G,VS1,63.3,56,3460,5.96,5.98,3.78
0.8,Very Good,F,VS1,63.7,56,3460,5.87,5.9,3.75
1.03,Ideal,F,SI2,62.6,57,3461,6.44,6.4,4.02
0.71,Very Good,F,VVS1,61.8,55,3461,5.71,5.77,3.55
1.01,Fair,G,SI2,65.1,58,3461,6.29,6.21,4.07
1.01,Premium,G,SI2,61.5,58,3461,6.51,6.44,3.98
1.06,Ideal,F,SI2,62.7,56,3461,6.52,6.47,4.07
1.01,Premium,I,SI2,62.9,58,3461,6.34,6.31,3.98
0.74,Premium,D,VS1,62.3,58,3461,5.79,5.77,3.6
1.01,Good,G,SI2,64,59,3461,6.34,6.31,4.05
0.96,Ideal,I,VS2,59.8,57,3462,6.42,6.39,3.83
0.74,Premium,E,VS1,61.1,58,3462,5.81,5.84,3.56
0.75,Ideal,E,VS1,62,55,3462,5.83,5.88,3.66
1.01,Very Good,J,SI2,63.5,59,3462,6.3,6.36,4.02
0.81,Very Good,D,SI1,63.1,57,3462,5.91,5.94,3.74
0.74,Ideal,G,VVS2,62.2,57,3462,5.75,5.79,3.59
0.73,Ideal,F,VVS2,61.7,54,3463,5.82,5.76,3.57
0.91,Very Good,D,SI2,62,62,3463,6.16,6.25,3.85
0.73,Ideal,H,VVS2,61.6,56,3463,5.8,5.82,3.57
0.7,Good,D,VS1,60.4,62,3463,5.73,5.76,3.47
0.71,Very Good,E,VS1,62.6,59,3464,5.68,5.76,3.58
0.71,Very Good,E,VS1,61.6,59,3464,5.65,5.72,3.5
0.9,Very Good,I,SI2,60.5,56,3464,6.22,6.24,3.77
0.73,Ideal,D,VS2,61.6,56,3464,5.78,5.82,3.57
0.71,Ideal,E,VS1,60.4,57,3464,5.75,5.81,3.49
0.71,Good,E,VS1,59.4,61,3464,5.8,5.89,3.47
1,Good,I,SI2,63.9,60,3465,6.26,6.3,4.01
1,Ideal,J,SI2,62.1,56,3465,6.34,6.41,3.96
1,Very Good,J,SI1,61.9,62,3465,6.33,6.36,3.93
0.56,Ideal,D,VVS1,61.9,56,3465,5.28,5.32,3.28
0.71,Very Good,D,VS1,62.9,56,3465,5.65,5.7,3.57
0.9,Very Good,F,SI2,63.4,60,3465,6.06,6.09,3.85
0.72,Ideal,E,VS1,62.5,57,3465,5.73,5.76,3.59
0.9,Good,F,SI2,65.9,60,3465,5.98,6.01,3.95
0.9,Good,H,SI1,64.4,58,3465,6.04,6.08,3.9
1.25,Good,I,SI2,60.5,64,3465,6.91,6.82,4.15
1.03,Good,G,SI2,63.9,60,3466,6.33,6.37,4.06
0.73,Good,E,VS1,59,61,3466,5.88,5.92,3.48
0.73,Ideal,D,VS2,61.4,56,3467,5.81,5.78,3.56
0.9,Very Good,F,SI2,61.3,60,3468,6.18,6.22,3.8
0.55,Ideal,D,VVS2,60.8,56,3468,5.29,5.32,3.23
0.55,Ideal,D,VVS2,61.5,56,3468,5.26,5.28,3.24
0.55,Ideal,D,VVS2,60.8,56,3468,5.31,5.34,3.24
0.7,Ideal,F,VS2,61,55,3468,5.74,5.79,3.52
0.77,Ideal,H,VS1,61.3,56,3468,5.91,5.97,3.64
0.9,Premium,I,SI1,62.1,59,3468,6.2,6.17,3.84
1.11,Premium,I,SI2,62.5,56,3469,6.63,6.55,4.12
0.73,Ideal,E,VS2,61.7,57,3470,5.75,5.78,3.55
0.9,Good,F,SI2,57.9,62,3470,6.23,6.35,3.64
0.7,Premium,D,VS1,62.5,60,3471,5.62,5.67,3.53
0.8,Very Good,F,VS2,62.1,60,3471,5.86,5.92,3.66
0.8,Very Good,F,VS1,63.6,56,3471,5.83,5.94,3.74
0.73,Ideal,E,VS1,61.4,55,3471,5.8,5.82,3.57
0.7,Ideal,D,SI1,61.6,57,3471,5.69,5.74,3.52
0.7,Ideal,D,SI1,61.8,55,3471,5.72,5.74,3.54
0.73,Good,E,VS1,60.8,61,3471,5.77,5.8,3.52
0.7,Ideal,E,VS1,62.1,56,3472,5.7,5.66,3.53
1,Premium,H,SI2,61,60,3472,6.42,6.36,3.9
1,Ideal,I,SI1,58.5,55,3472,6.47,6.42,3.77
0.88,Very Good,H,VS2,63.2,57,3472,6.08,6.15,3.87
0.78,Very Good,G,VS1,61.5,55,3472,5.92,5.97,3.66
1,Good,H,SI2,63.7,58,3472,6.28,6.15,3.96
1,Premium,H,SI2,59,58,3472,6.62,6.5,3.87
1,Fair,H,SI2,66.1,59,3472,6.18,6.13,4.07
0.9,Very Good,D,SI2,60.3,63,3473,6.22,6.12,3.72
0.9,Good,D,SI2,60.3,64,3473,6.14,6.1,3.69
0.9,Fair,D,SI2,64.9,57,3473,6.03,5.98,3.9
0.9,Premium,D,SI2,63,58,3473,6.16,6.12,3.87
0.9,Fair,D,SI2,64.5,61,3473,6.1,6,3.9
0.9,Very Good,I,VS2,63.1,57,3473,6.12,6.09,3.85
0.78,Premium,D,VS2,63,58,3473,5.86,5.8,3.67
0.91,Premium,H,SI1,60.9,58,3475,6.22,6.26,3.8
0.72,Ideal,H,VVS2,60.9,56,3475,5.78,5.84,3.54
0.84,Ideal,I,VS2,61.7,55,3475,6.07,6.11,3.76
0.74,Very Good,D,VS2,59.8,58,3476,5.9,5.94,3.54
0.7,Very Good,D,VS1,61.6,58,3477,5.67,5.73,3.51
0.8,Good,F,VS1,59,60.9,3477,6.03,6.04,3.56
1.01,Fair,F,SI2,64.8,55,3477,6.37,6.26,4.1
0.91,Very Good,J,VS2,61.9,59,3478,6.11,6.16,3.8
0.7,Ideal,F,VVS2,61,57,3478,5.73,5.75,3.5
0.72,Ideal,G,VS1,61.6,56,3478,5.75,5.78,3.55
0.72,Ideal,G,VS1,61.3,56,3478,5.75,5.8,3.54
0.72,Ideal,G,VS1,61.2,57,3478,5.76,5.79,3.53
0.72,Ideal,G,VS1,61.7,56,3478,5.75,5.78,3.56
0.72,Ideal,G,VS1,61.4,56,3478,5.75,5.79,3.55
0.72,Ideal,G,VS1,61.8,56,3478,5.74,5.76,3.55
0.72,Ideal,G,VS1,60.3,57,3478,5.82,5.86,3.52
0.72,Ideal,G,VS1,61.5,57,3478,5.74,5.79,3.54
0.72,Ideal,G,VS1,61,55,3478,5.81,5.83,3.55
0.72,Ideal,G,VS1,60.4,57,3478,5.81,5.84,3.52
0.86,Ideal,E,SI2,60,56,3478,6.22,6.24,3.74
0.9,Premium,G,SI2,62.4,55,3478,6.17,6.13,3.84
0.9,Very Good,G,SI2,60.3,63,3478,6.33,6.25,3.79
0.9,Premium,I,VS2,61.6,58,3478,6.15,6.09,3.77
0.71,Premium,D,VS1,61.6,58,3479,5.78,5.72,3.54
0.96,Very Good,D,SI2,60.2,63,3480,6.3,6.36,3.81
1.13,Premium,H,I1,62.7,59,3480,6.58,6.63,4.14
0.71,Ideal,F,VS1,61.3,56,3480,5.76,5.78,3.53
0.9,Very Good,H,SI2,61.2,57,3481,6.21,6.27,3.82
0.9,Very Good,H,SI2,62.3,61,3481,6.15,6.17,3.84
0.81,Ideal,F,SI1,62.3,55,3481,5.96,6,3.72
0.83,Premium,E,SI1,60.7,58,3482,6.06,6.09,3.69
0.9,Very Good,E,SI2,63.7,56,3482,6.08,6.13,3.89
0.83,Ideal,F,SI1,62.8,56,3482,5.97,6.01,3.76
1.01,Fair,H,SI1,64.4,59,3482,6.22,6.17,3.99
1.02,Very Good,J,SI1,61.9,60,3483,6.37,6.42,3.96
0.9,Very Good,I,VS1,63.2,57,3484,6.1,6.05,3.84
0.9,Premium,I,VS1,62.9,60,3484,6.09,6.05,3.82
0.9,Very Good,I,VS1,63.5,57,3484,6.06,6.03,3.84
0.9,Good,H,SI1,63.1,63,3484,6.04,6.1,3.83
1.01,Good,I,VS1,64.2,60,3484,6.35,6.27,4.05
0.9,Premium,I,VS1,61.2,61,3484,6.2,6.15,3.78
1.01,Good,E,I1,61.5,65,3484,6.28,6.21,3.84
0.91,Good,H,SI1,63.9,60,3485,6.08,6.13,3.9
0.98,Premium,F,SI2,62.3,56,3485,6.44,6.35,3.98
0.75,Premium,G,VVS2,62.5,56,3486,5.84,5.78,3.63
0.74,Ideal,D,VS2,62,57,3487,5.79,5.83,3.6
0.73,Ideal,G,VVS1,61.6,56,3487,5.77,5.82,3.57
0.77,Very Good,E,VS1,59.4,61,3488,5.98,5.94,3.54
0.9,Very Good,I,VS2,63.4,57,3489,6.07,6.1,3.86
0.9,Very Good,I,VS2,63.4,56,3489,6.09,6.12,3.87
0.77,Very Good,D,VS2,61.2,59,3489,5.86,5.91,3.6
0.77,Good,D,VS2,63.1,57,3489,5.83,5.86,3.69
0.9,Very Good,G,SI2,61.4,58,3489,6.16,6.21,3.8
0.91,Very Good,F,SI2,63.1,56,3489,6.13,6.17,3.88
0.89,Premium,H,VS1,60.5,59,3489,6.22,6.17,3.75
0.92,Ideal,J,VS1,62,55,3489,6.24,6.27,3.88
0.72,Ideal,F,VS1,61.8,56,3489,5.72,5.77,3.55
0.9,Good,G,SI2,62.7,59,3489,6.04,6.12,3.81
0.9,Premium,G,SI2,59.9,58,3492,6.22,6.27,3.74
0.73,Very Good,E,VS1,61.5,57,3492,5.78,5.83,3.57
0.9,Very Good,H,SI2,62.1,58,3492,6.1,6.18,3.81
0.72,Ideal,G,VVS1,62.2,54.4,3492,5.73,5.76,3.57
0.72,Very Good,D,VS2,62.9,58,3493,5.67,5.71,3.58
0.73,Ideal,F,VS1,61.4,55,3493,5.81,5.84,3.57
0.71,Very Good,F,VVS2,60.6,58,3494,5.76,5.79,3.5
0.8,Premium,E,VS2,63,56,3494,5.91,5.84,3.7
0.54,Ideal,D,VVS1,61.2,57,3494,5.25,5.27,3.22
0.8,Ideal,G,VS2,62.1,57,3494,5.95,6,3.71
0.78,Premium,E,VS2,62.8,60,3494,5.86,5.79,3.66
0.72,Very Good,E,VVS2,61.3,60,3495,5.73,5.76,3.52
0.74,Ideal,G,VVS2,60.9,58,3495,5.85,5.88,3.57
0.72,Ideal,F,VS2,61.3,55,3495,5.78,5.83,3.56
0.72,Ideal,D,VS2,62.6,58,3495,5.7,5.73,3.58
0.83,Premium,F,VS2,60.2,60,3495,6.09,6.04,3.65
1.02,Premium,J,SI1,61.2,57,3496,6.58,6.43,3.98
1.02,Premium,G,SI2,61.8,58,3496,6.47,6.4,3.98
0.56,Ideal,D,VVS1,61.9,56,3496,5.32,5.28,3.28
0.91,Very Good,F,SI2,63.5,56,3496,6.16,6.12,3.89
0.74,Very Good,E,SI1,59.9,56,3497,5.89,5.93,3.54
0.81,Ideal,H,VVS2,62,57,3497,5.93,5.97,3.69
0.76,Ideal,E,VS2,61.5,59,3497,5.84,5.86,3.6
0.74,Ideal,E,SI1,60.8,56,3497,5.85,5.89,3.57
1.51,Good,G,I1,64,59,3497,7.29,7.17,4.63
0.74,Very Good,D,VS2,62.2,59,3498,5.8,5.84,3.62
0.9,Ideal,J,VS1,62.4,56,3498,6.15,6.18,3.85
0.91,Premium,H,SI2,62.1,56,3498,6.24,6.15,3.85
1.01,Premium,J,SI2,61.7,58,3499,6.4,6.44,3.96
1.01,Premium,J,SI2,61.8,60,3499,6.37,6.41,3.95
1.01,Very Good,J,SI1,62.9,57,3499,6.35,6.37,4
0.62,Ideal,F,VVS1,61.9,56,3499,5.46,5.48,3.38
0.71,Ideal,F,VVS2,62,57,3499,5.7,5.65,3.52
0.9,Very Good,H,SI1,63.3,58,3500,6.04,6.13,3.85
0.93,Good,H,VS1,59.1,64,3500,6.36,6.27,3.73
0.9,Ideal,G,SI2,62.4,56,3500,6.14,6.19,3.85
0.83,Ideal,F,SI1,61.7,57,3500,6.04,6.08,3.74
0.9,Fair,H,VS1,65.9,60,3500,5.99,5.96,3.94
1.01,Ideal,H,SI2,61.6,56,3501,6.48,6.44,3.98
0.7,Premium,D,VS1,61,59,3501,5.79,5.72,3.51
0.8,Very Good,D,SI1,62.9,60,3502,5.89,5.94,3.72
0.72,Ideal,G,VVS1,62.2,57,3502,5.72,5.75,3.57
0.71,Ideal,D,SI1,60.8,57,3502,5.75,5.78,3.5
0.71,Ideal,D,SI1,61.8,56,3502,5.72,5.76,3.54
0.71,Ideal,D,SI1,61.4,55,3502,5.78,5.82,3.56
0.8,Premium,F,VS2,62.1,60,3502,5.92,5.86,3.66
0.9,Very Good,I,SI2,61.5,57,3503,6.16,6.19,3.8
0.85,Ideal,E,SI1,62.8,56,3503,6.05,6.02,3.79
0.7,Premium,F,VVS1,61.6,59,3504,5.71,5.76,3.53
0.71,Ideal,G,VVS2,61.5,56,3504,5.74,5.69,3.52
0.7,Ideal,E,VS2,61,56,3504,5.74,5.78,3.52
0.7,Ideal,E,VS2,61.3,57,3504,5.73,5.75,3.52
0.7,Ideal,E,VS2,60.8,56,3504,5.74,5.78,3.5
1.52,Fair,H,I1,64.9,58,3504,7.18,7.13,4.65
1.2,Ideal,I,I1,61.9,56,3505,6.82,6.85,4.23
0.9,Good,D,SI1,61.9,64,3505,6.09,6,3.74
0.91,Good,G,SI1,63.1,63,3506,6.11,6.16,3.87
0.83,Premium,E,SI1,58.4,59,3506,6.22,6.18,3.62
1.01,Very Good,G,SI2,63.1,55,3507,6.36,6.31,4
1.01,Premium,H,SI2,62,60,3507,6.39,6.25,3.92
0.81,Very Good,G,VS1,63.1,58,3507,5.92,5.96,3.75
1.01,Premium,F,SI2,61.8,54,3507,6.47,6.42,3.98
0.9,Premium,F,SI2,62.2,61,3507,6.08,6.04,3.77
0.9,Premium,F,SI2,61.5,61,3507,6.1,6.06,3.74
1.03,Ideal,F,I1,61.1,55,3507,6.54,6.51,3.99
1.19,Very Good,E,I1,60.2,61,3508,6.87,6.91,4.15
0.9,Premium,E,SI1,59,59,3508,6.34,6.3,3.73
0.9,Very Good,E,SI1,63.5,55,3508,6.22,6.12,3.92
0.9,Fair,E,SI1,65.5,59,3508,6.06,6.03,3.96
0.55,Good,D,IF,58,62,3509,5.31,5.41,3.12
0.73,Ideal,D,VS1,61.1,57,3509,5.85,5.81,3.56
0.9,Good,E,SI1,63.8,56,3510,6.09,6.17,3.91
1.15,Very Good,G,I1,61.2,58,3510,6.74,6.8,4.14
0.9,Very Good,E,SI1,62.9,57,3510,6.11,6.17,3.86
0.73,Ideal,E,VS1,61.9,56,3510,5.78,5.81,3.59
0.73,Very Good,E,VVS2,63.4,58,3511,5.68,5.7,3.61
0.91,Premium,D,SI2,58.3,60,3511,6.4,6.33,3.71
1,Premium,H,SI1,62.2,51,3511,6.47,6.4,4
1,Fair,H,SI1,65.5,57,3511,6.26,6.21,4.08
1,Fair,H,SI1,65.5,57,3511,6.26,6.21,4.08
1.01,Good,G,SI2,60.8,63,3512,6.36,6.4,3.88
1.04,Premium,I,SI2,61.6,58,3512,6.58,6.47,4.02
0.9,Good,G,SI1,63.9,60,3512,6.1,6.07,3.89
0.9,Very Good,G,SI1,63.2,62,3512,6.19,6.09,3.88
1.02,Premium,J,VS2,61.6,58,3513,6.4,6.35,3.93
0.82,Premium,F,VS1,62.1,56,3513,6.02,5.97,3.72
0.82,Ideal,F,VS2,61.9,57,3514,5.96,5.99,3.7
0.8,Premium,G,VS1,62.5,58,3514,5.9,5.94,3.7
0.81,Ideal,H,SI1,61.9,56,3514,5.92,5.97,3.68
1.06,Very Good,I,SI2,58.4,62,3515,6.65,6.7,3.9
0.71,Ideal,F,VS2,61.5,55,3516,5.74,5.77,3.54
0.71,Ideal,F,VS2,61.8,55,3516,5.74,5.76,3.55
0.71,Ideal,F,VS2,61.6,56,3516,5.74,5.77,3.54
0.71,Ideal,E,VS1,62,56,3516,5.72,5.74,3.55
0.9,Ideal,H,SI2,62,57,3516,6.19,6.17,3.83
0.76,Very Good,E,VS2,63.4,58,3517,5.76,5.82,3.67
0.7,Ideal,H,VVS1,61.5,57,3517,5.69,5.73,3.51
0.74,Ideal,D,SI1,61.8,56,3517,5.84,5.88,3.62
0.53,Ideal,D,IF,61.5,54,3517,5.27,5.21,3.22
0.94,Very Good,F,SI2,62.4,58,3518,6.17,6.23,3.87
0.74,Ideal,E,VS2,60.2,55,3518,5.87,5.92,3.55
0.71,Ideal,D,VS1,60.9,57,3518,5.74,5.76,3.5
0.9,Very Good,I,VS2,63.3,58,3519,6.07,6.13,3.86
0.9,Very Good,F,SI2,60.3,57,3519,6.27,6.34,3.8
0.9,Very Good,F,SI2,61.1,54,3519,6.27,6.29,3.84
0.9,Very Good,F,SI2,61.4,57,3519,6.21,6.24,3.82
0.9,Very Good,F,SI2,61.6,58,3519,6.15,6.23,3.81
0.9,Good,F,SI2,63.1,58,3519,6.11,6.13,3.86
0.9,Very Good,F,SI2,62.4,59,3519,6.12,6.16,3.83
0.9,Very Good,F,SI2,62.3,58,3519,6.16,6.19,3.85
0.9,Good,F,SI2,63.1,56,3519,6.12,6.18,3.88
0.79,Very Good,F,SI1,62.9,57,3519,5.86,5.94,3.71
1.02,Premium,E,I1,60.4,62,3519,6.52,6.47,3.92
1,Ideal,E,I1,61.8,56,3520,6.38,6.43,3.96
0.91,Good,E,SI2,63.1,61,3520,6.04,6.14,3.84
0.91,Good,H,SI1,63.8,60,3520,6,6.16,3.88
1.02,Ideal,I,SI2,62.9,56,3521,6.45,6.37,4.03
0.9,Ideal,G,SI2,62.5,56,3521,6.15,6.2,3.86
0.9,Ideal,G,SI2,61.2,57,3521,6.24,6.28,3.83
0.93,Ideal,G,SI1,60.9,57,3521,6.29,6.25,3.82
0.72,Ideal,D,VS1,61.6,56,3522,5.73,5.8,3.55
0.96,Good,G,SI1,56.6,63,3522,6.52,6.39,3.67
0.73,Ideal,F,VVS2,61.7,54,3524,5.76,5.82,3.57
0.7,Ideal,H,VVS1,60.3,56,3524,5.77,5.82,3.49
0.71,Good,D,VS1,59.2,56,3524,5.84,5.85,3.46
1.11,Premium,J,SI1,59.5,58,3524,6.89,6.77,4.07
0.75,Ideal,G,VVS2,61.3,55,3525,5.85,5.89,3.59
0.73,Ideal,G,VS1,61.7,56,3525,5.76,5.79,3.56
0.9,Very Good,E,SI2,63.2,59,3526,6.1,6.15,3.87
0.71,Ideal,E,SI1,60.5,56,3527,5.81,5.84,3.53
0.95,Very Good,E,SI2,58.7,63,3527,6.43,6.37,3.76
1,Premium,F,SI1,62.4,58,3528,6.39,6.27,3.95
1,Ideal,G,SI2,60.3,57,3528,6.51,6.45,3.91
0.82,Very Good,G,VS2,62.1,56,3528,5.94,5.98,3.7
0.73,Ideal,D,VS2,61.4,56,3528,5.78,5.81,3.56
1,Good,H,SI2,63.9,58,3528,6.36,6.28,4.03
1,Premium,J,SI1,61.9,62,3528,6.36,6.33,3.93
1,Good,I,SI2,63.9,60,3528,6.3,6.26,4.01
1.24,Premium,E,I1,61.1,62,3528,6.91,6.86,4.21
1,Ideal,J,SI2,62.1,56,3528,6.41,6.34,3.96
0.84,Premium,E,VS2,62.4,60,3528,6.04,5.98,3.75
1.05,Ideal,J,VS1,60.6,56,3528,6.59,6.55,3.98
1.05,Ideal,H,SI2,62,57,3528,6.54,6.5,4.04
0.92,Premium,I,SI1,60.7,58,3529,6.3,6.25,3.81
0.7,Ideal,D,VS1,62.8,54,3529,5.65,5.69,3.56
1.03,Fair,G,SI2,65.7,58,3530,6.32,6.26,4.13
1.03,Ideal,I,SI2,59.8,56,3530,6.64,6.58,3.95
1.03,Fair,I,SI2,65.2,56,3530,6.42,6.35,4.16
0.24,Very Good,E,SI1,59.9,58,571,4.06,4.1,2.44
0.35,Ideal,H,VS2,61.2,56,571,4.54,4.55,2.78
0.35,Ideal,H,VS2,61.7,56,571,4.55,4.59,2.82
0.35,Ideal,H,VS2,61.2,56,571,4.53,4.56,2.78
0.35,Ideal,I,VS1,61.7,54,571,4.54,4.57,2.81
0.35,Ideal,I,VS1,62.1,54,571,4.54,4.57,2.83
0.36,Ideal,G,SI1,61.5,54,571,4.6,4.63,2.84
0.36,Ideal,G,SI1,61.1,55,571,4.58,4.62,2.81
0.36,Ideal,G,SI1,61.4,55,571,4.61,4.64,2.84
0.32,Ideal,G,SI1,62.6,55,571,4.41,4.38,2.75
0.32,Good,D,SI2,64.1,54,571,4.37,4.34,2.79
0.34,Very Good,E,SI2,63.1,56,571,4.51,4.46,2.83
0.31,Premium,D,SI1,62,58,571,4.3,4.35,2.68
0.31,Good,D,SI1,63.5,57,571,4.28,4.32,2.73
0.31,Ideal,D,SI1,62.3,54,571,4.33,4.37,2.71
0.31,Premium,D,SI1,61.4,58,571,4.33,4.36,2.67
0.31,Good,D,SI1,63.4,55,571,4.28,4.3,2.72
0.31,Ideal,D,SI1,61.9,57,571,4.33,4.36,2.69
0.31,Ideal,D,SI1,62.7,56,571,4.32,4.36,2.72
0.31,Very Good,D,SI1,63,55,571,4.32,4.34,2.73
0.31,Ideal,D,SI1,62,55,571,4.36,4.38,2.71
0.31,Ideal,I,VVS1,61.4,54,571,4.38,4.41,2.7
0.31,Good,D,SI1,63.5,56,571,4.29,4.31,2.73
0.31,Ideal,D,SI1,61.8,57,571,4.32,4.36,2.68
0.31,Ideal,D,SI1,62.4,56,571,4.33,4.35,2.71
0.31,Very Good,D,SI1,61.7,59,571,4.31,4.35,2.67
0.31,Ideal,D,SI1,61.7,57,571,4.34,4.38,2.69
0.31,Good,D,SI1,63.1,57,571,4.3,4.32,2.72
0.31,Ideal,D,SI1,61.4,55,571,4.35,4.38,2.68
0.31,Good,D,SI1,63.4,58,571,4.32,4.35,2.75
0.91,Very Good,G,SI2,60,57,3531,6.27,6.32,3.78
0.78,Ideal,F,VS2,60.4,58,3531,6,5.95,3.61
0.78,Ideal,F,VS2,61.5,56,3531,5.94,5.9,3.64
0.78,Ideal,F,VS2,62.3,56,3531,5.91,5.88,3.67
1.01,Good,F,SI2,63.8,57,3532,6.31,6.36,4.04
0.77,Ideal,F,VS2,61.8,56,3533,5.9,5.92,3.65
0.96,Fair,E,SI2,65.6,58,3533,6.11,6.15,4.02
0.9,Very Good,D,SI2,60.3,63,3534,6.12,6.22,3.72
0.9,Very Good,D,SI2,60.6,61,3534,6.14,6.2,3.74
0.9,Very Good,D,SI2,63,58,3534,6.12,6.16,3.87
0.9,Good,D,SI2,60.3,64,3534,6.1,6.14,3.69
0.78,Very Good,D,VS2,63,58,3534,5.8,5.86,3.67
1.02,Good,J,SI2,63.4,56,3534,6.36,6.42,4.05
1.02,Very Good,J,SI2,62.6,60,3534,6.39,6.42,4.01
0.92,Very Good,F,SI2,60.6,63,3534,6.34,6.25,3.81
0.9,Very Good,I,VS2,62.1,61,3535,6.08,6.12,3.79
0.82,Very Good,G,VS2,59.8,56,3535,6.13,6.18,3.68
0.84,Very Good,G,VS2,62,56,3535,6.07,6.09,3.77
0.73,Ideal,E,VVS2,61.6,55,3535,5.8,5.83,3.58
0.7,Ideal,D,VS1,62.2,56,3535,5.69,5.72,3.55
1.01,Premium,J,VS2,59.8,61,3535,6.47,6.43,3.86
0.7,Very Good,F,VVS1,60.6,60,3536,5.67,5.7,3.45
0.65,Ideal,G,IF,60.1,57,3536,5.61,5.65,3.38
0.7,Good,F,VVS1,61.2,61,3536,5.71,5.79,3.52
1,Good,J,SI2,57.8,61,3536,6.54,6.58,3.79
0.92,Fair,H,SI2,64.5,60,3536,6.06,6.01,3.89
0.78,Ideal,F,VS1,61.6,56,3537,5.9,5.92,3.64
0.74,Ideal,G,VVS1,62.1,54,3537,5.8,5.83,3.61
1.08,Ideal,J,SI2,61.8,57,3537,6.56,6.58,4.06
0.9,Ideal,I,SI1,62,56,3537,6.16,6.23,3.84
0.91,Good,E,SI2,63.9,61,3538,6.03,6.09,3.87
0.9,Fair,H,VS2,64.8,58,3538,6.07,6.03,3.92
0.9,Good,H,VS2,64,57,3538,6.14,6.11,3.92
0.9,Fair,H,VS2,64.6,55,3538,6.07,6,3.9
0.78,Premium,E,VS1,62.2,58,3538,5.9,5.86,3.66
0.81,Ideal,E,VS2,62,55,3538,5.99,5.97,3.71
0.79,Premium,G,SI1,61.2,56,3539,6,5.96,3.66
0.79,Very Good,E,VS2,62.7,56,3539,5.85,5.88,3.68
0.9,Premium,I,VS2,62.4,58,3539,6.16,6.22,3.86
0.9,Very Good,G,SI2,62.4,55,3539,6.13,6.17,3.84
0.91,Good,F,SI2,63.8,59,3539,6.04,6.09,3.87
0.93,Good,D,SI2,63.4,59,3540,6.15,6.18,3.91
0.71,Ideal,D,VS2,59.9,57,3540,5.8,5.83,3.48
0.72,Ideal,G,VS1,62,56,3540,5.74,5.78,3.57
1.01,Fair,F,SI2,64.6,59,3540,6.19,6.25,4.2
0.64,Very Good,E,VVS2,61.8,59,3541,5.51,5.53,3.41
1,Fair,G,SI2,64.7,58,3541,6.24,6.19,4.02
1,Good,G,SI2,58.1,65,3541,6.48,6.46,3.76
1.52,Premium,I,I1,61.2,58,3541,7.43,7.35,4.52
1.13,Ideal,F,I1,62.2,55,3542,6.63,6.68,4.14
0.7,Very Good,G,IF,58.5,60,3543,5.83,5.87,3.42
0.75,Very Good,E,VS1,61.9,58,3543,5.83,5.86,3.62
0.72,Ideal,D,VS2,62,54.8,3543,5.73,5.76,3.56
1.06,Ideal,F,I1,62.1,55,3544,6.54,6.57,4.07
1.06,Ideal,F,I1,61.8,55,3544,6.55,6.58,4.06
0.81,Very Good,G,VS1,62.6,55,3544,5.92,5.97,3.72
0.95,Very Good,I,SI1,61,61,3544,6.29,6.37,3.86
0.86,Ideal,I,VVS2,61.4,58,3544,6.07,6.1,3.74
0.77,Ideal,G,VS2,62.1,56,3544,5.84,5.88,3.64
0.81,Ideal,G,VS1,62.3,57,3544,5.99,5.95,3.72
1.13,Premium,H,I1,62.7,59,3544,6.63,6.58,4.14
0.71,Premium,G,IF,61.9,58,3545,5.74,5.77,3.56
0.9,Premium,H,SI1,62.7,58,3545,6.14,6.2,3.87
0.9,Ideal,I,VS1,62.4,57,3545,6.17,6.21,3.86
1.07,Fair,G,SI2,66.8,57,3545,6.34,6.26,4.21
0.92,Premium,I,SI1,58.8,59,3545,6.36,6.33,3.73
1.07,Premium,G,SI2,62.2,58,3545,6.56,6.49,4.06
1.01,Good,E,SI2,63.9,58,3546,6.31,6.37,4.05
1.04,Very Good,H,SI2,62.4,58,3546,6.4,6.49,4.02
0.91,Premium,F,SI2,58.9,61,3546,6.36,6.33,3.74
0.91,Premium,F,SI2,61,51,3546,6.24,6.21,3.8
1.01,Fair,H,SI1,66.4,57,3546,6.12,6.08,4.05
0.72,Ideal,G,VS2,61,55,3547,5.81,5.83,3.55
1.07,Premium,G,I1,62.3,60,3547,6.55,6.51,4.07
0.9,Ideal,H,SI2,62.6,57,3548,6.16,6.07,3.83
0.72,Ideal,G,VVS1,61.7,54.8,3548,5.73,5.77,3.55
0.85,Ideal,I,VS1,61.9,56,3548,6.08,6.1,3.77
0.96,Good,H,SI2,60.1,64,3548,6.43,6.35,3.84
0.76,Very Good,G,VVS2,62.3,57,3549,5.79,5.84,3.62
1.09,Ideal,G,I1,61,56,3549,6.62,6.66,4.05
0.72,Very Good,E,VS2,60,57,3550,5.81,5.86,3.5
0.72,Ideal,D,SI1,60.5,56,3550,5.79,5.84,3.52
0.92,Premium,D,SI2,62.5,59,3550,6.24,6.2,3.89
0.75,Very Good,F,VVS2,61.1,55,3551,5.85,5.9,3.59
0.9,Very Good,F,SI2,60.8,55,3552,6.25,6.28,3.81
0.71,Ideal,E,VS2,61.6,56,3553,5.73,5.77,3.54
0.71,Ideal,E,VS2,61.3,56,3553,5.76,5.79,3.54
0.9,Premium,F,SI2,60.7,59,3553,6.25,6.21,3.78
1.04,Ideal,I,SI2,61.9,56,3553,6.51,6.45,4.02
1.03,Premium,I,VS1,61.6,58,3553,6.5,6.42,3.98
0.72,Ideal,D,VS1,61.6,56,3554,5.8,5.73,3.55
0.92,Premium,G,SI2,62.4,57,3555,6.22,6.18,3.87
0.92,Premium,H,SI1,62,60,3555,6.27,6.21,3.87
0.75,Ideal,E,VS1,62.5,57,3555,5.8,5.85,3.64
1.01,Good,J,VS2,63.3,54,3555,6.34,6.42,4.04
0.92,Premium,G,SI2,59.4,62,3555,6.36,6.34,3.77
0.9,Premium,F,SI2,61.4,58,3556,6.19,6.13,3.78
0.9,Premium,F,SI2,61.3,59,3556,6.16,6.11,3.76
0.83,Premium,D,SI1,62.5,54,3556,6.08,6.02,3.78
0.9,Very Good,F,SI2,63.4,58,3556,6.08,6.01,3.83
0.83,Premium,D,SI1,59.7,59,3556,6.14,6.12,3.66
0.73,Premium,D,VS1,60,58,3557,5.9,5.86,3.53
0.83,Premium,F,VS2,60.2,60,3557,6.04,6.09,3.65
0.91,Ideal,G,SI2,62.7,57,3557,6.15,6.19,3.87
0.91,Ideal,G,SI2,61.8,56,3557,6.21,6.24,3.85
0.88,Ideal,H,SI1,61.6,56,3557,6.13,6.17,3.79
0.95,Ideal,J,VVS2,60.6,57,3558,6.4,6.34,3.86
0.8,Very Good,F,VS1,63.6,57,3559,5.82,5.91,3.73
0.83,Ideal,F,SI1,62.2,55,3560,6.01,6.03,3.74
0.79,Ideal,G,VS1,62,56,3561,5.91,5.94,3.67
0.7,Good,D,VS2,59.9,59,3561,5.69,5.73,3.42
0.93,Very Good,I,VS1,62.5,58,3562,6.2,6.25,3.89
1,Premium,F,SI2,59.2,61,3562,6.59,6.51,3.87
1,Ideal,F,SI2,61,55,3562,6.45,6.41,3.92
0.75,Ideal,D,VS2,61.7,55,3562,5.85,5.82,3.6
0.93,Very Good,I,VS2,63.5,57,3563,6.13,6.21,3.92
0.78,Very Good,F,VS1,63.3,56,3563,5.84,5.89,3.71
1.01,Very Good,I,SI1,63.1,58,3563,6.38,6.33,4.01
1.01,Premium,J,SI2,62.5,62,3563,6.41,6.36,3.99
1.01,Very Good,F,SI2,63.4,60,3563,6.33,6.26,3.99
1.01,Premium,J,SI2,61.7,58,3563,6.44,6.4,3.96
1.01,Premium,J,SI2,61.8,60,3563,6.41,6.37,3.95
1.01,Premium,F,SI2,60.2,61,3563,6.49,6.43,3.89
0.78,Very Good,E,VS1,61,55,3564,5.94,5.96,3.63
1.04,Premium,G,SI2,62.8,59,3564,6.47,6.42,4.05
0.72,Ideal,F,VS2,61.8,56,3564,5.72,5.74,3.54
0.8,Ideal,D,SI1,62.7,57,3564,5.88,5.92,3.7
1.04,Fair,G,SI2,66.1,60,3564,6.32,6.23,4.15
0.73,Very Good,E,VVS2,60.2,60,3565,5.81,5.85,3.51
0.72,Premium,E,VVS1,62.9,59,3566,5.75,5.67,3.59
0.87,Ideal,E,SI2,60.4,58,3566,6.19,6.23,3.75
0.73,Very Good,G,VVS1,60.2,61,3567,5.83,5.89,3.53
0.9,Good,D,SI1,61.9,64,3567,6,6.09,3.74
0.7,Very Good,D,VS1,61.2,56,3567,5.68,5.75,3.5
0.91,Very Good,H,VS2,63.1,56,3567,6.2,6.13,3.89
0.9,Premium,D,SI1,61.7,56,3568,6.16,6.09,3.78
1,Premium,G,SI1,60,60,3568,6.47,6.42,3.87
0.72,Ideal,D,SI1,61.7,55,3568,5.77,5.8,3.57
0.9,Very Good,F,SI2,62.7,59,3569,6.1,6.18,3.85
0.9,Very Good,F,SI2,62.4,58,3569,6.15,6.19,3.85
1,Good,D,SI2,64,59,3569,6.24,6.29,4.01
0.97,Ideal,F,SI2,62.4,55,3569,6.38,6.34,3.97
0.72,Good,D,VS1,63.3,55,3570,5.69,5.75,3.62
0.9,Good,E,SI1,63.5,55,3570,6.12,6.22,3.92
0.83,Ideal,H,VVS1,61.7,57,3570,6.02,6.07,3.73
0.6,Ideal,D,VVS1,61.6,56,3570,5.41,5.43,3.34
0.9,Very Good,I,VS2,63.2,56,3570,6.15,6.09,3.87
1.2,Ideal,I,I1,61.9,56,3570,6.85,6.82,4.23
0.74,Ideal,G,VS1,61.5,56,3572,5.79,5.82,3.57
1.19,Premium,E,I1,60.2,61,3572,6.91,6.87,4.15
0.91,Very Good,D,SI2,58.3,60,3573,6.33,6.4,3.71
1.16,Premium,H,SI2,62.1,58,3573,6.72,6.65,4.15
1.1,Very Good,I,SI1,63.5,57,3573,6.55,6.53,4.15
0.9,Good,G,SI1,63.2,62,3574,6.09,6.19,3.88
0.9,Good,G,SI1,63.9,60,3574,6.07,6.1,3.89
0.91,Ideal,I,SI1,62.4,56,3574,6.2,6.24,3.88
1.15,Premium,G,I1,61.2,58,3574,6.8,6.74,4.14
1,Very Good,H,SI2,59.1,62,3575,6.47,6.5,3.83
1,Fair,E,SI2,65.1,59,3575,6.3,6.23,4.08
0.93,Very Good,J,VS2,62.8,56,3576,6.14,6.22,3.88
0.71,Ideal,D,VS1,60.4,60,3576,5.77,5.82,3.5
0.76,Ideal,I,VS2,61.8,56,3577,5.85,5.89,3.63
0.82,Ideal,E,SI1,62.1,55,3577,5.98,6,3.72
0.9,Good,H,SI1,59,62,3577,6.23,6.27,3.69
0.84,Good,E,SI1,61.9,61,3577,6.03,6.05,3.74
1.01,Very Good,G,SI2,60.8,63,3577,6.4,6.36,3.88
0.82,Premium,E,VS2,62.6,60,3577,5.97,5.91,3.72
0.9,Ideal,H,SI2,62,57,3578,6.17,6.19,3.83
0.9,Premium,D,SI2,58.7,58,3578,6.3,6.28,3.69
0.8,Ideal,G,VS1,61.1,58,3578,5.96,6.03,3.66
0.78,Good,E,SI1,59.4,62,3578,6.02,6.07,3.59
0.71,Premium,F,IF,61.1,58,3578,5.8,5.72,3.52
0.91,Very Good,I,VS2,62.5,58,3579,6.13,6.19,3.85
0.91,Premium,I,VS2,62.7,58,3579,6.14,6.18,3.86
1.06,Premium,I,SI2,58.4,62,3579,6.7,6.65,3.9
0.9,Premium,D,SI2,58.8,59,3579,6.28,6.24,3.68
0.71,Very Good,E,VVS2,61.5,61,3580,5.7,5.75,3.52
0.9,Very Good,I,SI1,62.3,58,3580,6.12,6.17,3.83
0.9,Very Good,I,VS1,63.3,59,3580,6.1,6.06,3.85
0.9,Premium,I,VS1,62.2,58,3580,6.18,6.13,3.83
1,Good,J,VS2,64.3,59,3580,6.27,6.21,4.01
0.9,Very Good,I,VS2,61.6,57,3581,6.13,6.17,3.79
0.76,Premium,D,VS2,61.7,59,3581,5.87,5.9,3.63
0.9,Very Good,G,SI2,59.9,60,3581,6.19,6.23,3.72
0.9,Very Good,G,SI2,60.9,56,3581,6.18,6.24,3.78
0.78,Ideal,H,VVS2,62.1,56,3581,5.88,5.9,3.66
1.04,Good,F,SI2,64,60,3581,6.38,6.33,4.07
0.8,Ideal,H,VS1,62.2,56,3581,5.92,5.95,3.69
1.02,Premium,H,SI1,62.2,52,3581,6.47,6.43,4.01
0.78,Ideal,E,VS2,61.4,56,3582,5.91,5.95,3.64
0.71,Ideal,D,VS1,61.5,58,3582,5.75,5.77,3.54
0.71,Good,G,IF,57.8,62,3583,5.82,5.95,3.4
0.79,Premium,E,VS1,62.6,56,3583,5.92,5.87,3.69
0.98,Fair,H,SI1,68.6,58,3583,6.18,6.04,4.19
0.9,Very Good,E,SI2,61,59,3584,6.14,6.18,3.76
1,Premium,G,SI2,60.2,58,3584,6.55,6.48,3.92
0.76,Ideal,E,SI1,61.3,55,3584,5.87,5.91,3.61
0.9,Good,E,SI2,63.6,59,3584,6.05,6.09,3.86
0.8,Ideal,E,VS2,62.2,57,3584,5.98,5.95,3.71
1,Good,H,SI2,63.9,55,3584,6.41,6.34,4.07
1,Premium,H,SI2,61.3,57,3584,6.45,6.4,3.94
1,Fair,I,SI1,64.8,59,3584,6.23,6.14,4.01
1,Premium,H,SI2,60,62,3584,6.53,6.51,3.91
1,Premium,E,I1,60.9,61,3584,6.41,6.37,3.89
1,Ideal,E,I1,61.8,56,3584,6.43,6.38,3.96
1,Premium,F,SI2,60.2,58,3584,6.47,6.42,3.88
0.7,Ideal,E,VVS2,62.2,54,3585,5.68,5.74,3.55
0.7,Ideal,E,VVS2,62.4,54,3585,5.66,5.71,3.55
0.97,Premium,D,SI2,60.4,61,3585,6.4,6.37,3.86
0.92,Very Good,E,SI1,63.3,57,3586,6.22,6.17,3.92
0.9,Ideal,J,VS1,61.6,55,3587,6.24,6.27,3.85
0.7,Premium,F,VVS1,61.9,60,3587,5.68,5.63,3.5
1.04,Ideal,E,SI2,59,57,3588,6.65,6.6,3.91
0.91,Ideal,F,SI2,60.9,57,3588,6.27,6.3,3.83
0.82,Ideal,E,SI1,61.8,55,3588,5.97,6.01,3.7
1.11,Premium,D,I1,61.9,58,3589,6.63,6.66,4.11
0.73,Ideal,G,VS1,61.2,56,3589,5.82,5.85,3.57
0.95,Very Good,E,SI2,58.7,63,3590,6.37,6.43,3.76
0.78,Ideal,G,VS2,62,57,3590,5.9,5.86,3.65
0.74,Ideal,F,VS1,61.9,54,3590,5.78,5.82,3.59
1.08,Very Good,F,SI2,63.1,59,3590,6.51,6.46,4.09
0.7,Premium,G,IF,62.2,58,3591,5.63,5.69,3.52
0.84,Premium,E,VS2,62.4,60,3591,5.98,6.04,3.75
1.01,Very Good,J,SI2,61.9,59,3592,6.34,6.38,3.94
1.01,Very Good,H,SI2,63.4,57,3592,6.39,6.32,4.03
0.9,Very Good,G,SI2,62.6,60,3593,6.1,6.16,3.84
0.82,Very Good,D,SI1,61.3,56,3593,6.02,6.06,3.7
0.99,Fair,H,VS2,71.6,57,3593,5.94,5.8,4.2
1.05,Premium,J,VS2,59.4,62,3593,6.66,6.58,3.93
0.74,Ideal,F,VS1,62,57,3593,5.81,5.78,3.6
0.93,Premium,G,SI2,60.8,59,3594,6.35,6.28,3.84
0.9,Very Good,H,SI1,61.9,59,3595,6.17,6.21,3.83
0.9,Very Good,H,SI1,62.3,58,3595,6.16,6.19,3.85
1.07,Ideal,G,SI2,60.8,57,3595,6.62,6.6,4.02
0.73,Ideal,G,VS2,61.6,56,3595,5.8,5.83,3.58
0.78,Ideal,D,VS2,61.7,57,3595,5.87,5.93,3.64
0.9,Good,E,SI2,63.7,63,3595,6.05,6.1,3.87
0.9,Good,E,SI2,61.6,61,3595,6.12,6.16,3.78
0.9,Good,E,SI2,64.1,58,3595,6.04,6.09,3.89
0.9,Good,E,SI2,65.8,60,3595,5.94,5.97,3.92
0.84,Very Good,G,VS2,61.8,57,3596,6.04,6.07,3.74
0.9,Very Good,G,SI1,61.6,59,3597,6.13,6.19,3.8
1.01,Fair,F,SI2,60.1,66,3597,6.44,6.41,3.86
0.8,Ideal,D,SI1,62.6,55,3597,5.91,5.94,3.71
1.01,Good,F,SI2,63.8,57,3597,6.36,6.31,4.04
1.01,Fair,I,VS2,68.7,58,3597,6.14,6,4.19
1.01,Fair,F,SI2,67.3,62,3597,6.09,6.03,4.08
1.01,Fair,F,SI2,66.7,64,3597,6.14,6.05,4.06
1.01,Premium,F,SI2,61.3,58,3597,6.42,6.33,3.91
1.01,Premium,F,SI2,62.2,58,3597,6.4,6.37,3.97
1.01,Ideal,J,SI1,60.5,56,3599,6.49,6.53,3.94
1.02,Premium,J,SI2,62.6,60,3599,6.42,6.39,4.01
0.9,Premium,E,SI2,62.6,60,3599,6.18,6.09,3.84
0.9,Premium,E,SI2,62.2,60,3599,6.19,6.15,3.84
1.05,Premium,G,SI2,60.7,61,3599,6.56,6.52,3.97
1.02,Ideal,F,I1,61,56,3599,6.53,6.51,3.98
0.9,Ideal,E,SI2,62,55,3599,6.23,6.15,3.84
1.02,Very Good,J,SI2,63.4,56,3599,6.42,6.36,4.05
1.5,Premium,H,I1,61.1,59,3599,7.37,7.26,4.47
0.9,Good,H,VS2,64,57,3601,6.11,6.14,3.92
0.81,Ideal,E,VS2,62,55,3601,5.97,5.99,3.71
0.78,Very Good,E,VS1,60,56,3601,6,6.03,3.61
1.02,Very Good,J,SI2,61.1,61,3601,6.44,6.5,3.95
0.9,Very Good,F,SI2,61.6,56,3601,6.22,6.29,3.85
0.72,Ideal,E,VS2,61.1,56,3601,5.78,5.81,3.54
0.78,Ideal,E,VS2,61.7,55,3601,5.92,6,3.68
0.72,Ideal,E,VS2,60.8,56,3601,5.78,5.82,3.53
0.72,Ideal,E,VS2,61.4,56,3601,5.78,5.8,3.55
0.72,Ideal,E,VS2,61.5,56,3601,5.77,5.81,3.56
0.72,Premium,D,VS1,62.7,56,3601,5.76,5.69,3.59
1.09,Premium,G,SI2,61.3,60,3601,6.66,6.59,4.06
0.7,Ideal,F,VVS1,61,57,3602,5.71,5.76,3.5
0.83,Premium,G,VS1,58.8,58,3602,6.2,6.15,3.63
1.13,Ideal,H,I1,61.1,56,3603,6.71,6.77,4.12
1.04,Very Good,I,SI2,59.6,57,3603,6.6,6.62,3.94
1.04,Premium,J,SI2,62,59,3603,6.47,6.49,4.02
0.8,Very Good,F,VS1,63.8,55,3603,5.84,5.89,3.74
0.83,Very Good,F,VS1,63.3,56,3603,5.99,5.92,3.77
1.1,Premium,I,SI2,62.9,59,3604,6.6,6.53,4.13
0.71,Premium,F,VVS1,60.9,58,3604,5.76,5.8,3.52
1.01,Premium,D,SI2,58,60,3604,6.58,6.53,3.8
0.9,Good,D,VS2,57.9,62,3604,6.33,6.24,3.64
1.1,Premium,I,SI2,59.7,62,3604,6.8,6.64,4.01
0.9,Good,F,SI1,63.9,58,3604,6.12,6.08,3.9
0.9,Very Good,I,VS2,62.3,64,3605,6.1,6.13,3.81
1.01,Very Good,D,SI2,59.1,63,3605,6.54,6.59,3.88
0.9,Very Good,F,SI2,63.4,59,3605,6.07,6.11,3.86
0.79,Ideal,E,VS2,61.8,56,3605,5.91,5.94,3.66
0.79,Ideal,D,SI1,61.2,57,3605,5.94,5.98,3.65
1.16,Ideal,I,SI2,62.8,57,3605,6.8,6.64,4.22
1.11,Premium,H,SI2,60.4,59,3605,6.7,6.64,4.03
0.73,Very Good,G,VVS1,62.9,59,3606,5.7,5.78,3.61
1.15,Ideal,H,I1,62,55,3606,6.76,6.69,4.17
0.73,Very Good,E,VS1,63,60,3607,5.68,5.72,3.59
1.13,Premium,F,I1,62.3,56,3607,6.69,6.61,4.14
1.03,Good,D,SI2,63.8,54,3607,6.36,6.3,4.04
1.13,Ideal,F,I1,62.2,55,3607,6.68,6.63,4.14
0.91,Premium,F,SI2,61.7,58,3609,6.22,6.29,3.86
1.06,Ideal,F,I1,62.1,55,3609,6.57,6.54,4.07
0.9,Premium,E,SI1,62.4,57,3609,6.19,6.14,3.85
0.31,Very Good,D,SI1,61.1,57,571,4.35,4.36,2.66
0.31,Very Good,D,SI1,62.1,58,571,4.3,4.33,2.68
0.31,Ideal,D,SI1,62.3,55,571,4.33,4.37,2.71
0.31,Very Good,D,SI1,62.9,57,571,4.27,4.32,2.7
0.31,Ideal,I,VVS1,62,54,571,4.34,4.37,2.7
0.31,Premium,D,SI1,61.2,60,571,4.35,4.41,2.68
0.31,Good,D,SI1,63.5,56,571,4.29,4.31,2.73
0.31,Very Good,D,SI1,60,61,571,4.41,4.43,2.65
0.31,Ideal,D,SI1,61,57,571,4.38,4.41,2.68
0.31,Ideal,D,SI1,62.6,57,571,4.3,4.33,2.7
0.31,Very Good,D,SI1,62.9,56,571,4.31,4.34,2.72
0.31,Very Good,I,VVS1,62.8,55,571,4.33,4.36,2.73
0.31,Ideal,D,SI1,62.6,56,571,4.33,4.36,2.72
0.31,Premium,D,SI1,61.4,58,571,4.34,4.39,2.68
0.31,Good,D,SI1,63.5,58,571,4.27,4.3,2.72
0.31,Very Good,D,SI1,63,54,571,4.32,4.35,2.73
0.31,Good,D,SI1,63.7,54,571,4.31,4.35,2.76
0.31,Ideal,D,SI1,61.8,56,571,4.34,4.37,2.69
0.31,Ideal,D,SI1,62.1,56,571,4.33,4.37,2.7
0.31,Very Good,D,SI1,60.2,56,571,4.37,4.4,2.64
0.31,Ideal,D,SI1,61.1,56,571,4.36,4.38,2.67
0.31,Ideal,D,SI1,61.2,55,571,4.37,4.49,2.71
0.31,Ideal,D,SI1,60.8,56,571,4.32,4.37,2.64
0.31,Premium,I,VVS1,61,58,571,4.33,4.39,2.66
0.31,Ideal,D,SI1,62.4,56,571,4.31,4.35,2.7
0.31,Good,I,VVS1,63.1,59,571,4.25,4.31,2.7
0.31,Good,D,SI1,63.9,54,571,4.27,4.3,2.74
0.31,Ideal,D,SI1,62.6,57,571,4.3,4.32,2.7
0.31,Ideal,I,VVS1,62.1,56,571,4.35,4.38,2.71
0.31,Ideal,D,SI1,61.5,56,571,4.33,4.35,2.67
0.91,Good,G,SI2,63.6,56,3610,6.14,6.09,3.89
0.72,Very Good,H,VVS1,59.9,57,3610,5.83,5.86,3.5
1.01,Very Good,I,SI1,58.8,58,3610,6.52,6.57,3.85
0.92,Ideal,I,SI1,62.1,55,3610,6.24,6.29,3.89
0.75,Ideal,F,SI1,60.8,57,3610,5.87,5.9,3.58
0.96,Good,H,SI2,56.7,62,3611,6.51,6.39,3.66
0.7,Ideal,H,VVS1,60.9,57,3611,5.7,5.78,3.5
1.01,Good,E,SI2,63.9,58,3611,6.37,6.31,4.05
1.04,Premium,H,SI2,62.4,58,3611,6.49,6.4,4.02
0.71,Very Good,F,VVS2,62,56,3612,5.71,5.74,3.55
0.7,Ideal,E,VS2,61.7,55,3612,5.7,5.74,3.53
1,Premium,E,SI2,59.9,55,3612,6.48,6.4,3.86
0.92,Very Good,D,SI2,62.5,59,3613,6.2,6.24,3.89
0.78,Ideal,G,VS2,61.7,56,3613,5.89,5.94,3.65
0.9,Fair,F,SI2,64.6,56,3613,6.01,6.07,3.9
1.15,Ideal,G,SI2,62.8,57,3613,6.7,6.65,4.19
0.72,Very Good,G,IF,60.7,56,3614,5.78,5.81,3.52
1,Good,J,SI1,58.7,62,3614,6.47,6.51,3.81
1.09,Ideal,G,I1,61,56,3614,6.66,6.62,4.05
0.91,Very Good,G,SI2,62.9,54,3615,6.14,6.22,3.89
0.9,Very Good,G,SI1,63.8,53,3615,6.1,6.16,3.91
0.9,Very Good,G,SI1,63.4,54,3615,6.11,6.16,3.89
1.05,Fair,F,SI2,66,60,3615,6.3,6.22,4.13
0.73,Ideal,D,SI1,61.3,57,3615,5.81,5.83,3.57
0.9,Good,G,SI1,64.5,57,3615,6.04,6.09,3.91
0.9,Good,G,SI1,65,57,3615,5.96,6.01,3.89
1.09,Ideal,J,VS2,62.5,55,3615,6.64,6.58,4.13
1.05,Ideal,J,SI2,61.6,57,3616,6.55,6.51,4.02
0.74,Very Good,E,VVS2,61.9,59,3616,5.74,5.77,3.56
0.73,Good,F,VVS2,59.5,61,3616,5.8,5.83,3.46
1,Good,J,SI1,59.5,61,3616,6.46,6.52,3.86
0.9,Premium,J,VVS1,62,58,3617,6.19,6.11,3.81
1.03,Fair,H,SI1,65.1,57,3617,6.43,6.36,4.16
0.91,Premium,F,SI1,62.6,56,3618,6.18,6.13,3.85
0.92,Premium,H,SI1,62,60,3618,6.21,6.27,3.87
0.92,Very Good,G,SI2,59.4,62,3618,6.34,6.36,3.77
0.91,Very Good,I,VVS2,63.5,59,3618,6.1,6.06,3.86
0.7,Ideal,D,VS1,62.8,53.4,3618,5.64,5.68,3.55
0.7,Ideal,D,VS1,63.1,54,3618,5.62,5.65,3.56
0.71,Premium,D,VVS2,60,58,3618,5.92,5.84,3.53
0.91,Premium,F,SI2,61.4,60,3618,6.23,6.21,3.82
0.9,Ideal,F,SI2,61.9,56,3619,6.18,6.23,3.84
0.9,Premium,F,SI2,61.4,58,3619,6.13,6.19,3.78
0.72,Very Good,D,VS1,59.4,56,3619,5.85,5.9,3.49
0.88,Ideal,F,SI2,62.2,56,3619,6.11,6.17,3.82
1.01,Very Good,J,VS2,63.3,54,3620,6.42,6.34,4.04
1.01,Good,I,VS2,63.6,57,3620,6.3,6.21,3.98
1.01,Good,G,SI2,63.8,56,3620,6.32,6.22,4
0.73,Premium,D,VS1,60,58,3620,5.86,5.9,3.53
0.91,Premium,I,VS1,59.5,62,3620,6.3,6.24,3.73
1.01,Premium,H,SI2,60.1,58,3620,6.55,6.52,3.93
0.93,Premium,F,SI2,59.5,60,3620,6.39,6.36,3.79
0.73,Ideal,E,VS1,61.2,57,3620,5.85,5.8,3.57
0.82,Very Good,F,VS2,58.7,58,3621,6.1,6.2,3.61
0.9,Good,F,SI2,61.3,59,3621,6.12,6.15,3.76
0.7,Very Good,D,VVS2,62.3,56,3622,5.66,5.7,3.54
0.7,Very Good,D,VVS2,61.1,57,3622,5.7,5.75,3.5
0.7,Very Good,F,VVS1,63.1,58,3622,5.6,5.66,3.55
0.72,Ideal,D,VS1,61.4,56,3622,5.8,5.82,3.57
0.72,Ideal,D,VS1,62.3,54,3622,5.74,5.79,3.59
0.8,Ideal,E,SI1,62.3,54,3622,5.95,5.97,3.71
0.82,Ideal,E,SI1,61.8,58,3622,5.99,6.05,3.72
0.98,Fair,F,SI1,61.8,66,3622,6.38,6.27,3.91
0.7,Very Good,E,IF,63.4,58,3622,5.64,5.59,3.56
1.1,Ideal,F,I1,61.3,56.9,3623,6.62,6.68,4.08
0.92,Premium,H,SI1,62.4,58,3624,6.19,6.22,3.87
0.94,Very Good,H,SI2,62.7,61,3624,6.21,6.24,3.9
0.9,Very Good,F,SI1,63.1,58,3624,6.09,6.15,3.86
0.81,Ideal,F,VS2,61.9,55,3624,6,5.95,3.7
0.81,Ideal,F,VS2,61.8,55,3624,5.96,5.92,3.67
0.75,Ideal,D,VS2,61.7,55,3625,5.82,5.85,3.6
0.92,Very Good,F,SI2,59.9,60,3625,6.26,6.29,3.76
0.61,Ideal,D,VVS1,62.3,54,3625,5.4,5.45,3.38
0.9,Premium,E,SI1,60.7,61,3625,6.19,6.17,3.75
0.83,Premium,E,VS2,61.3,59,3625,6.08,6.02,3.71
0.83,Ideal,E,VS2,61.8,57,3625,6.04,6.03,3.73
0.9,Good,E,SI1,60.8,65,3625,6.31,6.18,3.8
0.71,Very Good,F,VVS1,62.7,58,3626,5.67,5.72,3.57
1.01,Good,G,SI2,63.6,58,3626,6.31,6.37,4.03
1.01,Good,G,SI2,63.7,58,3626,6.31,6.35,4.03
0.9,Good,H,SI2,64.5,58,3627,6,5.96,3.86
0.79,Premium,E,VS2,62.1,59,3628,5.9,5.86,3.65
1,Ideal,I,SI2,58.8,55,3629,6.53,6.46,3.82
1,Ideal,I,SI2,58.8,55,3629,6.53,6.46,3.82
0.9,Ideal,I,VS2,61.5,58,3629,6.19,6.23,3.82
0.72,Ideal,D,VS1,62.5,55,3629,5.71,5.74,3.58
0.9,Fair,G,SI1,64.5,57,3629,6.07,6.03,3.9
0.9,Ideal,H,SI1,62.8,57,3629,6.16,6.14,3.86
0.9,Premium,H,SI1,60,56,3629,6.33,6.27,3.78
0.9,Premium,H,SI1,61.9,58,3629,6.2,6.15,3.82
0.9,Premium,H,VS2,60,59,3629,6.23,6.16,3.72
1.08,Ideal,H,SI2,62,57,3629,6.65,6.55,4.06
0.9,Premium,F,SI2,58.4,62,3629,6.37,6.34,3.71
0.9,Very Good,F,SI2,60.3,63,3630,6.28,6.21,3.77
0.8,Ideal,E,SI1,61.7,56,3630,5.99,6.04,3.71
1,Fair,G,SI1,67.7,57,3631,6,6.15,4.11
0.91,Very Good,E,SI2,62.5,59,3632,6.16,6.23,3.87
0.9,Very Good,D,SI2,59.8,53,3632,6.2,6.25,3.72
0.91,Good,E,SI2,64.3,57,3632,6,6.04,3.87
0.74,Ideal,E,VVS2,61.9,57,3633,5.79,5.81,3.59
1.02,Good,F,SI2,59.6,64,3633,6.58,6.55,3.91
1.06,Fair,G,SI2,65.3,62,3633,6.33,6.25,4.11
1.02,Fair,F,SI2,66.6,58,3633,6.21,6.14,4.11
1.02,Good,F,SI2,64.2,61,3633,6.3,6.21,4.02
0.94,Very Good,D,SI2,62,57,3634,6.28,6.34,3.91
1,Premium,D,SI2,62,60,3634,6.38,6.3,3.93
1,Fair,D,SI2,65.2,56,3634,6.27,6.21,4.07
1,Good,D,SI2,64,59,3634,6.29,6.24,4.01
1,Fair,G,SI1,43,59,3634,6.32,6.27,3.97
1,Premium,G,SI1,60.1,61,3634,6.44,6.4,3.86
1,Premium,G,SI1,60.1,61,3634,6.44,6.4,3.86
1.03,Premium,J,SI2,62.8,58,3634,6.48,6.41,4.05
1,Good,D,SI2,63.9,56,3634,6.32,6.27,4.02
1.03,Ideal,F,I1,61,56,3634,6.58,6.52,3.99
1.03,Ideal,H,SI2,60.8,56,3634,6.56,6.47,3.96
0.91,Ideal,H,SI1,62.4,57,3635,6.18,6.23,3.87
0.74,Ideal,G,VS1,61.2,56,3635,5.83,5.86,3.58
0.74,Ideal,G,VS1,60.9,55,3635,5.84,5.91,3.58
1.12,Ideal,J,VS2,62.9,57,3638,6.55,6.52,4.11
0.91,Very Good,E,SI2,60.3,59,3638,6.28,6.25,3.78
1.02,Good,J,SI2,62.2,61,3639,6.41,6.48,4.01
0.91,Premium,E,SI2,61.1,59,3639,6.24,6.2,3.8
0.91,Premium,E,SI2,62.8,61,3639,6.09,6.07,3.82
1.14,Good,I,SI1,63.9,58,3639,6.64,6.6,4.23
1,Premium,F,SI2,59.8,58,3640,6.53,6.48,3.89
0.76,Very Good,F,VVS2,62.9,58,3640,5.76,5.85,3.65
1.03,Very Good,J,SI2,63.1,57,3640,6.41,6.43,4.05
1,Fair,H,SI2,65.1,58,3640,6.27,6.15,4.05
1,Premium,H,SI2,59.1,62,3640,6.5,6.47,3.83
1,Good,H,SI2,64.1,61,3640,6.36,6.27,4.05
1,Premium,H,SI2,59.6,62,3640,6.52,6.41,3.85
1,Good,I,SI1,57.6,61,3640,6.56,6.52,3.77
1,Good,H,SI2,63.8,55,3640,6.28,6.24,4
1,Very Good,I,SI1,63.3,54,3640,6.39,6.34,4.03
1,Premium,J,VS1,59.7,62,3640,6.52,6.46,3.87
1,Premium,G,SI2,63,56,3640,6.37,6.33,4
1,Good,H,SI2,63.8,57,3640,6.32,6.28,4.02
0.82,Very Good,E,VS2,62.6,60,3641,5.91,5.97,3.72
0.85,Ideal,F,VS2,62.4,57,3641,6.13,6.01,3.79
0.71,Premium,G,IF,62,58,3642,5.67,5.72,3.53
0.91,Ideal,F,SI2,62.7,57,3642,6.16,6.21,3.88
0.9,Very Good,J,VS1,62.4,57,3643,6.13,6.18,3.84
0.9,Very Good,D,SI2,58.8,59,3643,6.24,6.28,3.68
0.77,Very Good,D,VS1,62.4,58,3643,5.82,5.87,3.65
0.81,Very Good,E,SI1,61.9,60,3643,5.87,5.95,3.66
0.9,Very Good,H,SI1,63,58,3643,6.13,6.18,3.88
1.16,Premium,D,I1,61.8,59,3644,6.74,6.78,4.18
0.9,Good,I,VS1,63.3,59,3644,6.06,6.1,3.85
0.9,Ideal,H,SI1,61.5,57,3644,6.17,6.23,3.81
0.9,Very Good,I,VS1,62.2,58,3644,6.13,6.18,3.83
0.93,Very Good,G,SI2,60.8,62,3644,6.29,6.34,3.84
0.7,Ideal,F,VVS2,61.7,58,3644,5.66,5.71,3.51
0.91,Premium,E,SI2,61,58,3644,6.31,6.27,3.84
0.91,Premium,F,SI1,62.7,59,3644,6.23,6.18,3.89
0.77,Premium,D,VS1,62.1,57,3644,5.85,5.8,3.62
1.16,Good,G,SI2,63.7,57,3644,6.59,6.56,4.19
1,Good,G,SI2,61.4,61,3646,6.32,6.35,3.89
0.93,Premium,H,SI1,62.8,58,3646,6.24,6.21,3.91
0.77,Ideal,F,VS1,61.2,56,3647,5.9,5.93,3.62
0.8,Ideal,E,VS2,62.2,57,3648,5.95,5.98,3.71
0.76,Ideal,H,VVS1,61.9,54,3648,5.87,5.9,3.64
0.76,Ideal,F,VS2,61.9,57,3648,5.83,5.86,3.62
0.76,Ideal,G,VS1,61.3,54,3648,5.88,5.94,3.62
0.92,Premium,G,SI2,58.4,58,3648,6.4,6.34,3.73
0.76,Ideal,E,VS1,60.5,56,3649,5.94,5.99,3.61
0.92,Good,E,SI1,63.3,57,3649,6.17,6.22,3.92
0.9,Very Good,G,SI1,63.6,57,3649,6.09,6.12,3.88
0.9,Very Good,G,SI1,63.5,59,3649,6.07,6.11,3.87
0.73,Ideal,E,VS2,61.7,57,3649,5.77,5.8,3.57
0.92,Premium,G,SI2,62.9,58,3650,6.21,6.15,3.89
0.93,Very Good,J,VS1,63,53,3651,6.22,6.26,3.93
1.02,Premium,J,VS2,58.9,60,3651,6.57,6.53,3.86
1,Good,G,SI2,57.8,64,3651,6.55,6.5,3.77
0.82,Ideal,G,VS1,61.5,56,3652,6.01,6.05,3.71
0.95,Premium,H,SI2,58.8,60,3652,6.45,6.38,3.77
0.8,Very Good,F,VS2,62.3,57,3653,5.91,5.94,3.69
0.91,Very Good,F,SI2,61.6,59,3653,6.14,6.24,3.81
0.8,Ideal,F,VS2,62,55,3653,5.93,6,3.7
0.76,Very Good,G,VVS2,62.1,56,3655,5.81,5.85,3.63
1.01,Good,J,VS2,62.8,58,3655,6.3,6.35,3.97
0.77,Ideal,F,VS1,60.9,58,3655,5.91,5.95,3.61
1.11,Premium,D,I1,61.9,58,3655,6.66,6.63,4.11
1.07,Very Good,G,SI2,63.5,59,3655,6.52,6.46,4.12
1.02,Premium,G,SI2,62.5,58,3656,6.42,6.34,3.99
0.9,Very Good,I,VS1,63.3,58,3656,6.07,6.1,3.85
0.7,Ideal,H,VS2,61.9,56,3656,5.68,5.73,3.53
0.7,Ideal,H,VS2,60.8,56,3656,5.74,5.77,3.5
0.9,Ideal,J,VS1,62.6,54,3656,6.15,6.18,3.86
1.02,Good,H,SI2,64,57,3656,6.41,6.37,4.09
1.02,Ideal,I,SI1,62.9,57,3656,6.41,6.37,4.02
1.01,Premium,J,SI2,61.9,59,3658,6.38,6.34,3.94
0.96,Fair,H,VS2,68.8,56,3658,6.11,5.98,4.16
0.91,Very Good,F,SI2,62.4,58,3659,6.17,6.21,3.86
0.9,Good,F,SI1,62.8,64,3659,6.18,5.99,3.82
0.73,Ideal,E,VS1,60.9,55.8,3660,5.8,5.85,3.55
0.9,Good,E,SI2,59.9,61,3660,6.16,6.2,3.7
0.91,Good,D,SI2,63.3,62,3660,6.01,6.09,3.83
1.09,Premium,I,SI1,62.7,60,3662,6.57,6.51,4.1
0.9,Premium,E,SI2,62.2,60,3662,6.15,6.19,3.84
0.9,Very Good,E,SI2,62.4,57,3662,6.13,6.17,3.84
0.9,Premium,E,SI2,61.3,60,3662,6.17,6.23,3.8
0.9,Premium,E,SI2,60.8,60,3662,6.21,6.25,3.79
0.9,Very Good,E,SI2,62.6,60,3662,6.09,6.18,3.84
0.9,Ideal,E,SI2,62,55,3662,6.15,6.23,3.84
0.7,Ideal,F,VS1,61.2,56,3662,5.73,5.76,3.52
1.22,Very Good,H,I1,61.6,56,3663,6.8,6.87,4.21
0.89,Good,F,SI1,64.3,55,3663,6.12,6.01,3.9
0.9,Premium,I,VS2,60.1,59,3663,6.37,6.25,3.79
0.91,Very Good,I,VS2,61,57,3664,6.2,6.26,3.8
0.87,Very Good,D,SI1,60.2,60,3664,6.12,6.17,3.7
0.91,Ideal,G,SI2,62.3,56,3664,6.18,6.22,3.86
1.01,Premium,I,SI2,59.6,62,3665,6.56,6.5,3.89
0.91,Ideal,E,SI1,60.7,56,3665,6.26,6.22,3.79
1.01,Premium,H,SI2,59.6,60,3665,6.5,6.55,3.89
1.19,Ideal,H,I1,61.5,57,3665,6.79,6.83,4.19
1.27,Very Good,I,I1,60.2,62,3665,7,7.05,4.23
0.91,Premium,E,SI1,62.2,58,3665,6.29,6.18,3.86
1.01,Good,J,SI1,63.6,54,3665,6.44,6.36,4.07
0.91,Very Good,J,VS1,62.1,55,3666,6.16,6.24,3.85
0.9,Good,I,VS1,63.5,61,3666,5.96,6.01,3.8
0.73,Ideal,G,VVS1,61.3,56,3667,5.79,5.82,3.56
0.7,Very Good,D,VS2,60.6,60,3668,5.71,5.75,3.47
0.78,Very Good,D,VS2,62.2,56,3668,5.85,5.91,3.66
1.03,Premium,F,SI2,62.2,60,3668,6.47,6.45,4.02
0.74,Ideal,D,VS2,61.4,58,3668,5.8,5.83,3.57
1.03,Very Good,F,SI2,63.1,57,3668,6.42,6.38,4.04
0.73,Very Good,F,VVS2,63.8,59,3669,5.69,5.72,3.64
0.95,Premium,J,VVS2,62.6,59,3669,6.23,6.26,3.91
0.85,Very Good,D,SI1,60.3,57,3669,6.09,6.22,3.71
0.73,Ideal,G,VVS1,61.9,57,3669,5.76,5.8,3.58
0.9,Good,G,SI1,57.7,65,3669,6.25,6.29,3.62
0.9,Good,G,SI1,65.2,58,3669,6,6.06,3.93
1.04,Premium,J,SI2,62,59,3669,6.49,6.47,4.02
0.91,Premium,H,SI1,62.8,58,3669,6.16,6.13,3.86
0.9,Good,G,SI1,63.7,60,3669,6.11,6.07,3.88
0.91,Premium,I,VS1,61.9,57,3669,6.24,6.19,3.85
0.9,Very Good,G,SI1,63.1,59,3669,6.15,6.11,3.87
0.9,Good,I,IF,63.7,64,3669,6.07,6.02,3.85
0.9,Good,G,SI1,63.7,58,3669,6.12,6.09,3.89
0.9,Good,H,VS1,64,59,3669,6.05,6.01,3.86
0.9,Good,G,SI1,63.8,59,3669,6.08,6.05,3.87
0.9,Very Good,G,SI1,63.2,59,3669,6.1,6.05,3.84
0.9,Premium,G,SI1,62,61,3669,6.13,6.07,3.78
1.12,Premium,I,SI2,61.2,58,3669,6.72,6.68,4.1
1,Fair,F,SI1,66.7,57,3669,6.07,5.99,4.02
1.04,Ideal,H,SI2,62,57,3669,6.53,6.43,4.02
0.91,Ideal,I,VS1,62.5,55,3669,6.25,6.2,3.89
0.9,Premium,G,SI1,61.9,59,3669,6.18,6.13,3.81
1.12,Fair,I,SI2,64.6,57,3669,6.5,6.47,4.19
1.17,Premium,H,I1,62.8,58,3669,6.71,6.69,4.21
1.13,Ideal,H,I1,61.1,56,3669,6.77,6.71,4.12
0.91,Premium,H,SI1,62.2,60,3669,6.22,6.16,3.85
1.04,Ideal,I,SI1,59.7,56,3669,6.6,6.54,3.92
0.9,Premium,G,SI1,62.6,62,3669,6.08,6.06,3.8
0.71,Very Good,D,VVS2,62.7,59,3670,5.64,5.69,3.55
0.85,Ideal,G,SI1,62.2,56,3670,6.04,6.09,3.77
1.13,Ideal,H,SI2,60.6,57,3670,6.79,6.77,4.11
1.01,Premium,H,SI2,63,59,3671,6.33,6.27,3.97
1.01,Fair,G,SI1,66.1,56,3671,6.26,6.2,4.12
1.01,Good,D,SI2,63.8,61,3671,6.13,6.06,3.89
0.76,Ideal,G,VVS1,62,54.7,3671,5.83,5.87,3.62
0.78,Ideal,E,SI1,60.4,57,3671,5.95,6,3.61
1.01,Very Good,D,SI2,59.1,63,3671,6.59,6.54,3.88
0.95,Premium,G,SI2,60.5,62,3671,6.44,6.36,3.88
0.78,Very Good,D,VS2,59.8,60,3672,5.97,6.03,3.59
1,Good,F,SI2,60.6,62,3672,6.36,6.45,3.88
1.06,Premium,J,SI2,61.3,60,3672,6.52,6.59,4.02
1.05,Premium,F,SI2,61.1,59,3672,6.54,6.61,4.02
0.7,Ideal,G,IF,60.2,57,3672,5.78,5.84,3.5
0.8,Very Good,G,VS1,62.7,56,3673,5.9,5.94,3.71
0.73,Ideal,D,VS2,62.3,54,3673,5.77,5.8,3.6
0.82,Premium,G,SI1,61.8,58,3674,6.02,5.98,3.71
0.71,Ideal,D,SI1,61.4,56,3674,5.7,5.74,3.51
0.71,Ideal,D,SI1,60.6,56,3674,5.78,5.81,3.51
0.96,Fair,E,SI2,57.7,67,3674,6.49,6.46,3.73
1.01,Premium,E,SI2,62.3,55,3674,6.35,6.29,3.94
1,Ideal,F,SI2,61.1,54,3674,6.51,6.47,3.97
0.81,Premium,E,VS2,61.5,58,3674,5.99,5.94,3.97
1.01,Very Good,E,SI2,63.3,58,3674,6.4,6.31,4.02
0.92,Premium,H,SI1,62.2,58,3675,6.19,6.23,3.86
1.03,Premium,D,SI2,62.3,58,3675,6.5,6.4,4.03
0.79,Ideal,H,VVS1,62,56,3675,5.92,5.96,3.68
0.63,Premium,E,VS1,60.5,57,3675,5.58,5.53,3.36
1,Good,G,SI2,63.4,60,3676,6.22,6.34,3.98
1.01,Premium,H,SI2,60.3,59,3676,6.51,6.45,3.91
1.01,Fair,H,VS1,67.1,59,3676,6.16,6.09,4.11
1.01,Premium,H,SI2,61.6,60,3676,6.22,6.18,3.82
1.01,Very Good,I,SI1,63.2,55,3676,6.4,6.32,4.02
1.01,Good,I,SI1,64.1,59,3676,6.24,6.21,3.99
0.9,Ideal,J,IF,62.2,57,3677,6.17,6.14,3.83
0.9,Ideal,I,VS1,61.6,56,3677,6.22,6.16,3.81
1.13,Ideal,H,I1,62.2,55,3678,6.65,6.69,4.15
1.1,Ideal,F,I1,61.8,56,3678,6.61,6.65,4.1
1.1,Very Good,F,I1,59.8,61,3678,6.65,6.7,3.99
0.9,Very Good,F,SI1,63.6,58,3679,6.1,6.13,3.89
0.75,Ideal,D,VS2,61.1,55,3679,5.87,5.89,3.6
0.92,Very Good,E,SI2,63.2,54,3679,6.29,6.25,3.96
1,Good,J,SI1,63.9,60,3679,6.26,6.19,3.98
0.9,Ideal,F,SI2,62.3,57,3679,6.19,6.17,3.85
0.9,Premium,H,SI1,62,62,3679,6.13,6.03,3.77
0.31,Very Good,I,VVS1,62.2,60,571,4.3,4.32,2.68
0.31,Premium,D,SI1,60.9,60,571,4.38,4.39,2.67
0.31,Good,D,SI1,63.5,55,571,4.27,4.3,2.72
0.31,Ideal,D,SI1,62.4,53,571,4.33,4.35,2.71
0.28,Very Good,E,VVS2,64,54,572,4.11,4.17,2.65
0.28,Very Good,E,VVS2,60.1,62,572,4.25,4.27,2.56
0.28,Very Good,F,VVS1,58.9,62,572,4.27,4.32,2.53
0.38,Ideal,J,VS2,62.3,55,572,4.63,4.65,2.89
0.24,Ideal,F,VS1,62.7,54,572,3.99,4.02,2.51
0.24,Ideal,F,VS1,61.8,54,572,3.99,4.03,2.48
0.37,Ideal,F,SI2,60.9,56,572,4.65,4.68,2.84
0.3,Ideal,H,SI1,61.6,57,572,4.28,4.32,2.65
0.33,Premium,I,SI1,62.8,58,572,4.43,4.39,2.77
0.33,Ideal,I,SI1,62.7,56,572,4.44,4.4,2.77
0.33,Ideal,I,SI1,61.5,57,572,4.49,4.46,2.75
0.33,Premium,I,SI1,61.4,58,572,4.5,4.46,2.75
0.33,Premium,I,SI1,61.3,59,572,4.51,4.46,2.75
0.33,Very Good,I,SI1,63.2,58,572,4.38,4.36,2.76
0.33,Good,I,SI1,63.6,57,572,4.42,4.39,2.8
0.42,Very Good,G,SI2,59.5,61,573,4.85,4.9,2.9
0.34,Ideal,G,VS2,61.6,56,573,4.48,4.51,2.77
0.3,Ideal,F,VS2,61.6,56,573,4.3,4.33,2.66
0.3,Ideal,F,VS2,61.9,56,573,4.32,4.34,2.68
0.3,Ideal,F,VS2,62.2,55,573,4.3,4.32,2.68
0.3,Ideal,F,VS2,62.5,54,573,4.29,4.32,2.69
0.3,Ideal,F,VS2,62.3,55,573,4.3,4.34,2.69
0.3,Ideal,F,VS2,61.1,56,573,4.36,4.38,2.67
0.3,Ideal,F,VS2,60.9,56,573,4.35,4.39,2.66
0.3,Ideal,F,VS2,61.9,54,573,4.29,4.33,2.67
0.3,Ideal,F,VS2,61.7,58,573,4.28,4.31,2.65
0.92,Premium,E,SI2,61.8,59,3679,6.19,6.11,3.8
0.76,Ideal,F,VS1,62.2,56,3680,5.83,5.87,3.64
0.9,Very Good,G,SI1,63,57,3681,6.13,6.19,3.88
1.01,Very Good,G,SI2,62,58,3682,6.41,6.46,3.99
0.91,Premium,F,SI2,61.4,60,3682,6.21,6.23,3.82
0.8,Ideal,D,SI2,61.9,54,3682,5.98,5.96,3.7
0.7,Ideal,F,VVS1,62.5,57,3683,5.62,5.67,3.53
0.92,Premium,F,SI1,62.6,59,3684,6.23,6.19,3.89
0.93,Very Good,I,SI1,58.9,60,3685,6.43,6.48,3.8
0.84,Ideal,D,SI1,62.4,57,3685,6.03,6.08,3.78
1,Premium,J,VS2,62,62,3685,6.42,6.35,3.96
1,Premium,J,VS2,60.7,61,3685,6.5,6.41,3.92
1.02,Premium,F,SI2,62.5,58,3686,6.4,6.47,4.02
1.21,Ideal,I,I1,61.3,57,3686,6.94,6.89,4.24
0.91,Very Good,F,SI2,61.2,59,3688,6.2,6.22,3.8
1.12,Ideal,I,SI2,62.4,57,3688,6.69,6.62,4.15
0.96,Fair,F,SI2,65.2,58,3688,6.14,6.12,3.99
0.9,Premium,D,SI1,59.5,57,3689,6.29,6.21,3.72
0.9,Very Good,E,SI1,60.7,61,3689,6.17,6.19,3.75
0.81,Very Good,F,VS1,62.7,56,3689,5.92,5.98,3.73
0.9,Good,D,SI1,63.6,63,3689,6.07,6.03,3.85
0.9,Fair,D,SI1,64.8,59,3689,6.1,6.03,3.93
0.9,Fair,D,SI1,64.5,61,3689,6.05,6.01,3.89
0.9,Good,D,SI1,64.1,56,3689,6.07,6.04,3.88
0.9,Good,D,SI1,63.9,57,3689,6.1,6.04,3.88
0.72,Premium,F,VVS1,62.8,58,3689,5.75,5.68,3.59
0.93,Premium,G,SI2,62.2,55,3689,6.27,6.24,3.89
0.71,Good,D,VS1,64.2,58,3690,5.65,5.6,3.61
0.72,Ideal,E,VS1,62.1,54,3690,5.74,5.76,3.57
1,Good,J,SI1,61.7,62,3690,6.37,6.4,3.94
0.96,Premium,H,SI2,59.4,56,3690,6.47,6.42,3.83
1.1,Ideal,F,I1,61.3,57,3690,6.68,6.62,4.08
0.94,Very Good,D,SI2,60.9,62,3691,6.22,6.3,3.81
0.71,Very Good,F,VVS1,61.8,58,3692,5.63,5.73,3.51
0.77,Very Good,F,VS2,62.6,55,3692,5.85,5.88,3.67
1.03,Ideal,G,SI2,60.4,56,3692,6.56,6.53,3.95
1.11,Premium,I,SI2,61.3,59,3692,6.69,6.63,4.09
1.03,Very Good,F,SI2,63.3,59,3692,6.35,6.32,4.01
1.03,Ideal,H,SI2,60.5,57,3692,6.58,6.52,3.96
1.23,Fair,E,I1,67.4,56,3692,6.76,6.56,4.49
0.97,Ideal,H,SI2,61.6,55,3694,6.37,6.32,3.91
0.74,Ideal,F,VS1,62,54,3694,5.85,5.81,3.62
1.21,Premium,J,VS2,59,60,3694,6.93,6.88,4.07
1,Ideal,F,SI2,62.3,56,3696,6.34,6.27,3.93
1.1,Good,H,SI2,57.6,61,3696,6.82,6.73,3.9
1,Good,E,SI2,57.7,65,3696,6.55,6.59,3.79
1.2,Very Good,H,I1,58.6,57,3696,6.96,7.01,4.09
0.9,Good,F,SI1,64,59,3696,5.97,5.99,3.83
1,Fair,E,SI1,66.5,55,3696,6.21,6.19,4.12
1,Premium,G,SI2,59.1,59,3696,6.54,6.5,3.85
1,Good,E,SI1,57.6,65,3696,6.47,6.44,3.72
1.1,Premium,G,SI2,63,59,3696,6.5,6.47,0
1.1,Premium,I,SI2,62.4,59,3696,6.55,6.51,4.08
1.1,Premium,J,VS2,61.2,57,3696,6.66,6.61,4.06
1.5,Good,I,I1,63.7,61,3696,7.22,7.1,4.57
1.2,Fair,H,SI2,65.6,57,3696,6.73,6.57,4.36
0.75,Ideal,D,VS1,62.4,54,3696,5.86,5.84,3.65
0.77,Ideal,E,VS1,62,56,3697,5.87,5.9,3.65
0.9,Very Good,E,SI2,63.5,58,3697,6.08,6.14,3.88
0.92,Ideal,G,SI2,63,57,3697,6.16,6.13,3.87
0.9,Fair,H,VS2,64.7,58,3697,5.98,6.01,3.88
0.82,Premium,E,VS2,59.7,61,3697,6.08,6.04,3.62
1.31,Premium,J,SI2,59.7,59,3697,7.06,7.01,4.2
1.01,Good,J,SI1,63.6,54,3699,6.44,6.36,4.07
0.9,Very Good,F,SI1,63.8,54,3699,6.09,6.13,3.9
0.9,Very Good,F,SI1,63.4,57,3699,6.06,6.11,3.86
0.9,Good,F,SI1,58,58,3699,6.24,6.28,3.63
1,Fair,G,SI1,66.1,62,3700,6.1,6.03,4.01
1.12,Very Good,G,SI2,63.4,57,3700,6.51,6.47,4.12
1.08,Premium,G,SI2,59.3,61,3701,6.66,6.61,3.94
1.02,Premium,H,SI2,59.2,59,3701,6.57,6.54,3.88
0.9,Good,H,VS2,63.6,61,3701,6.03,5.97,3.8
0.9,Premium,E,SI2,59.2,60,3701,6.31,6.23,3.71
0.71,Ideal,F,VS1,61.1,56,3701,5.76,5.8,3.53
0.71,Ideal,F,VS1,61,56,3701,5.77,5.8,3.53
0.71,Good,F,VS1,61.8,57,3701,5.73,5.76,3.55
0.77,Ideal,F,SI1,61.7,56,3702,5.85,5.91,3.63
0.91,Premium,E,SI2,61.1,59,3703,6.2,6.24,3.8
0.91,Very Good,E,SI2,62.8,61,3703,6.07,6.09,3.82
0.91,Very Good,I,SI1,62.8,57,3703,6.09,6.18,3.85
0.9,Premium,F,SI2,60.5,57,3704,6.23,6.2,3.76
0.9,Ideal,F,SI2,62.6,57,3704,6.2,6.13,3.86
0.9,Premium,F,SI2,60.1,59,3704,6.31,6.24,3.77
0.9,Premium,F,SI2,62.3,57,3704,6.18,6.15,3.84
0.9,Premium,F,SI2,58,57,3704,6.41,6.34,3.7
0.9,Premium,F,SI2,61.5,59,3704,6.23,6.2,3.82
0.9,Premium,F,SI2,62,61,3704,6.16,6.14,3.81
0.9,Premium,F,SI2,61.4,62,3704,6.2,6.11,3.78
0.9,Premium,F,SI2,60.3,55,3704,6.35,6.28,3.81
0.73,Very Good,F,VVS2,62.1,57,3705,5.74,5.76,3.57
0.85,Very Good,F,VS2,62.2,56,3705,6.01,6.08,3.76
0.71,Ideal,F,VVS2,61.2,55,3705,5.73,5.84,3.54
0.9,Very Good,D,SI2,62.9,59,3706,6.06,6.15,3.84
0.92,Very Good,D,SI2,63.7,57,3707,6.12,6.21,3.93
0.77,Ideal,H,VVS2,61.3,56,3707,5.91,5.94,3.63
0.72,Ideal,H,VVS1,61.8,56,3708,5.75,5.78,3.56
0.9,Very Good,I,VS2,58.7,60,3709,6.28,6.35,3.71
0.9,Very Good,I,VS2,60.7,59,3709,6.23,6.26,3.79
0.9,Very Good,I,VS2,63,60,3709,6.15,6.17,3.88
0.9,Very Good,I,VS2,59.9,58,3709,6.17,6.22,3.71
1.01,Very Good,F,SI2,59.5,57,3709,6.61,6.66,3.95
0.92,Premium,H,SI1,59,59,3709,6.36,6.31,3.74
0.86,Ideal,D,SI1,62.8,56,3709,6.05,6.08,3.81
0.91,Very Good,H,SI1,63.4,59,3710,6.12,6.09,3.87
0.75,Ideal,F,VVS2,61.9,54,3710,5.83,5.84,3.61
0.79,Ideal,I,VS2,60.9,56,3710,5.97,5.99,3.64
0.71,Ideal,F,VS1,60.9,57,3710,5.76,5.78,3.51
0.71,Ideal,F,VS1,60.8,56,3710,5.81,5.82,3.54
0.71,Ideal,F,VS1,61.5,56,3710,5.72,5.76,3.53
0.71,Ideal,F,VS1,61.9,56,3710,5.7,5.74,3.54
0.71,Ideal,F,VS1,61.4,56,3710,5.75,5.78,3.54
0.71,Ideal,F,VS1,61.5,57,3710,5.71,5.77,3.53
0.71,Ideal,F,VS1,61.3,56,3710,5.69,5.75,3.51
0.71,Ideal,F,VS1,60.9,56,3710,5.76,5.79,3.52
0.71,Ideal,F,VS1,61.9,56,3710,5.69,5.72,3.53
0.71,Ideal,F,VS1,61.8,55,3710,5.71,5.73,3.54
0.71,Ideal,F,VS1,61.5,56,3710,5.72,5.75,3.52
0.71,Ideal,F,VS1,61.4,57,3710,5.72,5.73,3.52
0.91,Very Good,G,SI1,63.5,61,3710,6.1,6.05,3.86
1.16,Premium,D,I1,61.8,59,3711,6.78,6.74,4.18
1,Premium,I,SI2,61.6,59,3712,6.34,6.41,3.93
1,Premium,J,SI1,60.8,58,3712,6.39,6.44,3.9
0.75,Ideal,D,SI1,61.1,56,3712,5.85,5.9,3.59
1.02,Premium,I,VS2,61.1,59,3713,6.4,6.37,3.9
0.78,Ideal,E,VS2,61.1,55,3713,5.99,5.96,3.65
0.92,Very Good,G,SI2,62.4,60,3713,6.18,6.22,3.87
0.8,Ideal,F,VS2,61.2,58,3713,5.99,6.03,3.68
1,Premium,G,SI2,61.4,61,3713,6.35,6.32,3.89
1.02,Premium,I,SI1,60.2,60,3713,6.45,6.39,3.87
1.02,Good,H,SI2,64.3,60,3713,6.36,6.25,4.06
1.02,Premium,H,SI2,61.3,57,3713,6.51,6.45,3.97
1,Very Good,G,SI2,63.1,63,3713,6.33,6.23,3.96
1.02,Very Good,H,SI2,63.4,63,3713,6.36,6.32,4.02
1.02,Premium,H,SI2,60.8,58,3713,6.48,6.45,3.93
1.02,Ideal,H,SI2,62,56,3713,6.4,6.34,3.95
1.02,Ideal,I,SI1,62.1,56,3713,6.44,6.39,3.98
0.9,Premium,F,SI1,61.3,58,3714,6.13,6.08,3.74
0.73,Ideal,E,VVS2,62,57,3714,5.79,5.73,3.57
0.9,Very Good,E,SI2,61.6,58,3715,6.18,6.23,3.82
0.9,Very Good,E,SI2,62.2,54,3715,6.13,6.21,3.84
0.79,Ideal,E,SI1,61.6,55,3715,5.94,6.04,3.69
0.76,Ideal,F,VVS2,60.9,57,3716,5.89,5.96,3.61
0.71,Ideal,D,VS1,60.9,58,3716,5.72,5.78,3.5
0.97,Good,J,VS2,60,56,3717,6.4,6.46,3.86
1.01,Premium,F,SI2,60,60,3717,6.46,6.4,3.86
1.01,Good,I,VS2,57.1,63,3717,6.6,6.56,3.76
0.75,Very Good,E,VS2,63,57,3718,5.81,5.78,3.65
0.9,Very Good,G,SI1,63.6,57,3718,6.07,6.13,3.88
0.9,Ideal,G,SI2,62.3,56,3718,6.14,6.21,3.85
0.9,Good,I,VVS2,64.8,55,3718,6.04,6.15,3.95
0.71,Premium,D,VS1,59.2,59,3718,5.9,5.85,3.48
1.04,Ideal,F,I1,61.6,57,3718,6.51,6.46,4
0.72,Very Good,E,VVS2,62,58,3719,5.71,5.74,3.55
0.73,Very Good,F,VVS1,60.6,56,3720,5.79,5.83,3.52
0.9,Very Good,I,VS2,61.2,57,3720,6.15,6.2,3.78
0.8,Very Good,F,VS1,62.6,57,3720,5.9,5.98,3.72
0.8,Very Good,F,VS1,62.3,57,3720,5.92,5.95,3.7
0.9,Premium,I,VS1,61,55,3720,6.29,6.27,3.83
0.77,Ideal,D,VS2,61.8,56,3721,5.84,5.9,3.63
1.01,Premium,J,VS2,61,61,3722,6.28,6.22,3.81
0.9,Ideal,G,SI2,61.5,57,3722,6.07,6.19,3.77
0.72,Ideal,D,SI1,61.2,56,3722,5.77,5.79,3.54
0.96,Very Good,G,SI2,62.6,59,3723,6.18,6.29,3.9
0.91,Ideal,E,SI2,61.1,58,3723,6.25,6.29,3.83
0.91,Ideal,E,SI2,61.8,53,3723,6.22,6.3,3.87
0.92,Good,I,VS1,60.9,63,3723,6.27,6.34,3.84
1.12,Premium,F,SI2,62.4,59,3723,6.6,6.54,4.1
0.95,Premium,G,SI2,59.5,56,3724,6.41,6.36,3.8
0.7,Very Good,E,VVS1,62.5,56,3724,5.63,5.7,3.54
0.7,Very Good,E,VVS1,60.9,59,3724,5.67,5.81,3.5
0.9,Very Good,F,SI1,61.6,56,3724,6.14,6.2,3.8
0.9,Good,F,SI1,63.1,57,3724,6.12,6.15,3.87
0.92,Very Good,G,SI1,63.8,57,3724,6.13,6.16,3.92
1.25,Premium,F,I1,58,59,3724,7.12,7.05,4.11
0.9,Ideal,I,VS1,61.8,56,3724,6.2,6.23,3.84
0.9,Good,E,SI2,62.1,63,3724,6.09,6.12,3.79
0.92,Premium,I,VS1,61.4,58,3725,6.23,6.27,3.84
0.7,Very Good,G,IF,63,59,3725,5.58,5.62,3.53
0.7,Ideal,G,VVS2,61.6,57,3725,5.74,5.71,3.53
0.9,Fair,H,VS2,64.6,54,3725,6.09,6.14,3.95
1.21,Good,E,I1,63.3,63,3726,6.67,6.72,4.24
0.91,Very Good,F,SI2,61.4,60,3726,6.13,6.16,3.77
1.1,Premium,J,SI2,59.6,59,3726,6.74,6.72,4.01
0.91,Ideal,I,VS2,62.2,59,3726,6.13,6.18,3.83
0.9,Good,H,SI1,57.1,56,3726,6.33,6.28,3.6
1.08,Very Good,E,SI2,63.5,56,3726,6.53,6.48,4.13
1.13,Ideal,E,I1,62,55,3729,6.66,6.7,4.14
1.03,Very Good,J,SI2,58,60,3729,6.64,6.67,3.86
0.97,Ideal,H,SI2,60.7,55,3729,6.47,6.41,3.91
1.11,Very Good,J,VS2,63.2,59,3730,6.55,6.46,4.11
0.9,Very Good,I,SI1,60.6,56,3730,6.23,6.28,3.79
0.9,Good,H,SI1,61.4,60,3730,6.06,6.12,3.74
0.91,Fair,D,SI1,64.7,61,3730,6.06,5.99,3.9
0.91,Fair,D,SI1,65.2,57,3730,6.08,6.04,3.95
0.91,Good,D,SI1,64,58,3730,6.09,6.06,3.89
0.9,Premium,I,VVS2,60.9,59,3730,6.25,6.22,3.8
1.11,Fair,H,SI2,64.4,58,3730,6.55,6.5,4.2
0.9,Premium,H,SI1,60.7,59,3730,6.26,6.19,3.78
0.98,Very Good,H,SI2,62.1,59,3731,6.33,6.39,3.95
1.01,Ideal,J,SI2,61.6,55,3732,6.45,6.5,3.99
1.01,Premium,H,SI2,59.6,60,3732,6.55,6.5,3.89
0.58,Ideal,D,VVS1,62.1,55,3732,5.33,5.37,3.32
0.76,Ideal,D,SI1,62.3,55,3732,5.81,5.84,3.63
0.8,Ideal,H,VVS1,61.8,57,3732,5.93,5.89,3.65
1.19,Ideal,H,I1,61.5,57,3732,6.83,6.79,4.19
1.27,Premium,I,I1,60.2,62,3732,7.05,7,4.23
1.01,Ideal,F,SI2,62.4,56,3733,6.44,6.38,4
1.01,Premium,F,SI2,62.7,58,3733,6.38,6.32,3.98
1.15,Good,J,SI2,63.8,60,3733,6.63,6.56,4.21
1.01,Good,G,SI1,64.3,55,3733,6.34,6.31,4.07
0.9,Good,F,SI1,61,62,3733,6.17,6.26,3.79
1.01,Premium,H,SI2,60.8,59,3733,6.51,6.46,3.94
1.01,Ideal,I,SI2,61.9,55,3733,6.45,6.38,3.97
1.01,Fair,H,VS2,65.2,56,3733,6.23,6.19,4.05
1.01,Premium,J,SI2,61.2,59,3733,6.43,6.37,3.92
0.9,Good,G,SI1,62.8,59,3734,6.08,6.12,3.83
0.9,Good,G,SI1,63.8,59,3734,6.05,6.08,3.87
0.9,Premium,G,SI1,62.2,60,3734,6.1,6.16,3.81
0.9,Good,G,SI1,63.2,59,3734,6.05,6.1,3.84
0.91,Very Good,H,SI1,62.2,60,3734,6.16,6.22,3.85
0.9,Good,I,IF,63.7,64,3734,6.02,6.07,3.85
0.9,Good,H,VS1,64,59,3734,6.01,6.05,3.86
0.9,Very Good,G,SI1,62,61,3734,6.07,6.13,3.78
0.9,Good,G,SI1,63.1,59,3734,6.11,6.15,3.87
0.9,Good,G,SI1,63.7,58,3734,6.09,6.12,3.89
0.9,Good,G,SI1,63.7,60,3734,6.07,6.11,3.88
0.91,Very Good,H,SI1,62.8,58,3734,6.13,6.16,3.86
0.91,Very Good,I,VS1,61.9,57,3734,6.19,6.24,3.85
0.9,Good,H,SI1,58.9,61,3734,6.27,6.36,3.72
1.13,Premium,I,SI2,62.1,60,3734,6.74,6.66,4.16
1.51,Fair,F,I1,67.8,59,3734,7.09,7,4.78
1.51,Fair,F,I1,67.5,56,3734,7.17,7.05,4.8
0.73,Ideal,D,VS2,62.6,55,3735,5.71,5.76,3.59
1.14,Good,I,SI2,60,65,3735,6.8,6.75,4.06
1.15,Premium,H,SI2,59.6,59,3735,6.82,6.78,4.05
0.78,Ideal,D,VS2,62.9,56,3736,5.85,5.88,3.69
0.78,Ideal,G,VS1,61.6,55,3736,5.91,5.94,3.65
0.9,Good,E,SI2,63,58,3736,6.08,6.11,3.84
0.8,Very Good,H,VVS1,61.9,56,3737,5.93,5.96,3.69
1.01,Good,E,SI2,63.9,58,3737,6.37,6.31,4.05
0.7,Ideal,D,VVS2,60.9,59,3737,5.69,5.73,3.48
0.93,Very Good,G,SI2,62.7,57,3738,6.21,6.26,3.91
1.03,Ideal,J,SI1,62.3,57,3738,6.48,6.43,4.02
0.71,Ideal,G,IF,60.9,57,3739,5.74,5.79,3.51
1.01,Ideal,G,SI2,61.5,57,3739,6.42,6.46,3.96
1.19,Very Good,G,SI2,63.4,56,3739,6.69,6.56,4.2
1,Good,H,SI2,63.2,60,3740,6.27,6.3,3.97
0.75,Ideal,G,VVS2,62,56,3740,5.79,5.85,3.61
1,Fair,F,SI2,65.1,60,3740,6.19,6.1,4
0.72,Ideal,F,VVS2,62.3,57,3740,5.72,5.74,3.57
1.06,Premium,J,SI2,61.3,60,3740,6.59,6.52,4.02
0.9,Premium,D,SI2,61,59,3740,6.18,6.14,3.76
0.9,Good,D,SI2,63.8,58,3740,6.13,6.09,3.9
0.9,Premium,D,SI2,62.3,58,3740,6.27,6.05,3.84
0.9,Good,D,SI2,63.6,57,3740,6.07,6.03,3.85
0.7,Ideal,F,VVS2,61.9,54.8,3741,5.68,5.72,3.53
0.58,Ideal,D,VVS1,62.2,56,3741,5.34,5.36,3.33
0.9,Good,I,VVS1,63.9,63,3741,6.04,6.07,3.87
1.08,Good,J,SI2,63.2,59,3742,6.4,6.57,4.1
1.05,Very Good,I,SI2,62.3,59,3742,6.42,6.46,4.01
0.87,Premium,D,SI1,58.8,56,3742,6.3,6.26,3.69
1.09,Very Good,D,SI2,63.4,59,3742,6.59,6.54,4.16
0.91,Premium,E,SI2,61.6,60,3743,6.14,6.1,3.77
0.91,Ideal,H,VS2,63,56,3743,6.15,6.05,3.84
1.03,Good,D,SI2,57.2,59,3743,6.66,6.63,3.8
0.9,Fair,E,SI1,64.9,56,3743,6.12,6.18,3.99
1.03,Fair,D,SI2,66.4,56,3743,6.31,6.19,4.15
0.92,Good,E,SI2,61.8,59,3744,6.11,6.19,3.8
0.78,Very Good,F,VS1,61.7,55,3744,5.89,5.94,3.65
0.93,Good,D,SI2,59.2,62,3744,6.36,6.38,3.77
1.02,Very Good,J,SI2,63.3,56,3745,6.38,6.42,4.05
1.13,Ideal,H,I1,62.2,55,3745,6.69,6.65,4.15
1.1,Premium,F,I1,59.8,61,3745,6.7,6.65,3.99
1.1,Ideal,F,I1,61.8,56,3745,6.65,6.61,4.1
1.52,Fair,I,I1,67.7,58,3745,7.07,7,4.76
0.91,Premium,F,SI2,62.6,58,3746,6.14,6.09,3.83
0.9,Very Good,J,VVS1,60.4,60,3746,6.23,6.28,3.78
0.72,Ideal,F,VVS2,60.9,56,3746,5.77,5.83,3.53
0.93,Very Good,E,SI2,63,58,3746,6.16,6.18,3.89
1.13,Premium,G,I1,61.2,58,3746,6.77,6.66,4.11
0.91,Premium,F,SI2,58.2,61,3746,6.58,6.41,3.77
0.91,Very Good,F,SI2,63.3,54,3746,6.22,6.14,3.91
0.74,Ideal,D,VS1,61.7,55,3746,5.85,5.79,3.59
0.91,Ideal,F,SI2,62.2,56,3746,6.17,6.14,3.83
0.91,Ideal,F,SI2,62.4,57,3746,6.22,6.18,3.87
0.91,Good,I,VS2,58,62,3747,6.32,6.38,3.68
0.9,Very Good,E,SI1,62.5,60,3748,6.09,6.13,3.82
0.71,Ideal,E,VS1,61.5,55,3748,5.78,5.75,3.55
0.92,Premium,F,SI1,62.6,59,3749,6.19,6.23,3.89
1.01,Very Good,J,SI1,62.9,56,3749,6.35,6.4,4.01
1.01,Premium,I,SI2,61.7,60,3749,6.34,6.4,3.93
1.03,Ideal,F,SI2,61.9,56,3749,6.53,6.49,4.03
0.63,Ideal,F,IF,60.9,57,3749,5.53,5.57,3.38
1.03,Fair,H,SI2,66.3,57,3749,6.35,6.25,4.18
1.03,Premium,H,SI2,62.7,62,3749,6.43,6.38,4.02
1.03,Premium,J,SI1,61.1,61,3749,6.49,6.44,3.95
1.03,Premium,H,SI2,62,60,3749,6.47,6.41,4
1.03,Premium,I,SI1,62,58,3749,6.46,6.41,3.99
0.9,Good,F,VS1,63.8,56,3750,5.99,5.92,3.8
1.08,Premium,I,SI2,60.1,59,3750,6.75,6.69,4.04
0.3,Ideal,F,VS2,60.5,58,573,4.3,4.36,2.62
0.33,Ideal,I,VS1,61.7,55,573,4.44,4.47,2.75
0.4,Ideal,G,SI2,62.6,54,573,4.73,4.76,2.97
0.4,Ideal,G,SI2,62.4,56,573,4.71,4.75,2.95
0.4,Ideal,G,SI2,62.1,53,573,4.75,4.78,2.96
0.4,Ideal,I,SI1,61.8,55,573,4.74,4.78,2.94
0.31,Ideal,H,SI1,61.4,55,573,4.44,4.36,2.7
0.31,Premium,H,SI1,59,57,573,4.44,4.4,2.61
0.31,Premium,H,SI1,62.3,55,573,4.36,4.34,2.71
0.31,Premium,H,SI1,61.1,55,573,4.39,4.35,2.67
0.31,Good,H,SI1,63.6,57,573,4.33,4.32,2.75
0.31,Premium,H,SI1,62.4,60,573,4.34,4.32,2.7
0.31,Premium,H,SI1,61.1,57,573,4.35,4.32,2.65
0.31,Ideal,H,SI1,62.7,56,573,4.38,4.33,2.73
0.31,Premium,H,SI1,60.5,60,573,4.4,4.33,2.64
0.31,Very Good,H,SI1,63.1,57,573,4.34,4.31,2.73
0.3,Ideal,D,SI2,60.2,56,574,4.4,4.37,2.64
0.31,Ideal,G,VS2,61.4,57,574,4.35,4.38,2.68
0.31,Ideal,G,VS2,61.4,56,574,4.34,4.37,2.67
0.34,Premium,G,SI2,62.8,58,574,4.46,4.43,2.79
0.34,Very Good,F,SI2,63.3,54,574,4.48,4.46,2.83
0.34,Premium,F,SI2,60,58,574,4.58,4.55,2.74
0.34,Premium,F,SI2,61.7,61,574,4.48,4.44,2.75
0.34,Premium,F,SI2,63,58,574,4.47,4.45,2.81
0.3,Premium,G,SI1,62.6,57,574,4.34,4.25,2.69
0.3,Premium,G,SI1,61.6,59,574,4.28,4.26,2.63
0.3,Good,G,SI1,63.8,56,574,4.3,4.26,2.73
0.3,Premium,G,SI1,61.4,57,574,4.35,4.31,2.66
0.3,Premium,G,SI1,59.8,57,574,4.37,4.32,2.6
0.3,Premium,G,SI1,59.7,60,574,4.39,4.35,2.61
0.77,Ideal,F,VS1,61.9,54,3750,5.91,5.94,3.66
0.95,Good,F,SI2,59.7,57,3750,6.41,6.45,3.84
0.9,Fair,F,VS1,65.7,59,3750,5.96,5.92,3.9
0.93,Premium,H,SI1,61.8,59,3750,6.27,6.23,3.86
0.9,Fair,F,VS2,65.7,57,3750,6.03,5.99,3.95
1.01,Premium,G,SI2,62.9,57,3750,6.39,6.33,4
0.93,Fair,H,SI1,64.6,58,3750,6.13,6.07,3.94
0.91,Very Good,E,SI2,63.8,60,3751,6.05,6.09,3.87
1.25,Premium,J,VS2,59.8,58,3751,7.02,6.96,4.18
0.92,Premium,G,SI1,61.5,60,3751,6.26,6.19,3.83
0.91,Ideal,I,VS2,62.2,56,3751,6.22,6.18,3.86
0.9,Fair,D,SI1,65.7,65,3751,6.06,5.94,3.94
0.9,Very Good,G,SI1,63.3,56,3752,6.08,6.11,3.86
0.9,Very Good,G,SI1,63.8,57,3752,6.04,6.13,3.88
0.7,Ideal,D,VS1,61.4,54.2,3752,5.72,5.76,3.52
0.9,Good,G,SI1,60,61,3752,6.19,6.22,3.72
1,Good,E,SI2,57.9,59,3752,6.65,6.51,3.8
1,Premium,E,SI2,61,59,3752,6.4,6.33,3.89
1.06,Very Good,J,SI2,62,58,3754,6.45,6.53,4.04
1.02,Fair,F,SI2,65.5,59,3754,6.27,6.24,4.1
1.02,Premium,F,SI2,62.5,58,3754,6.47,6.4,4.02
0.9,Good,D,SI1,64.1,56,3755,6.04,6.07,3.88
0.9,Good,D,SI1,63.6,63,3755,6.03,6.07,3.85
1.14,Ideal,F,I1,61.7,57,3755,6.67,6.7,4.13
1.03,Very Good,G,SI2,63,60,3755,6.35,6.39,4.01
1.02,Very Good,J,SI2,62.9,59,3755,6.34,6.41,4.01
0.77,Ideal,D,VS2,61.8,56,3755,5.9,5.84,3.63
0.91,Ideal,E,SI2,62.7,57,3756,6.19,6.26,3.9
0.91,Very Good,H,SI2,63.3,58,3756,6.11,6.06,3.85
0.81,Ideal,F,VS2,61.7,57,3756,5.97,6.02,3.7
1.01,Good,J,SI2,59.5,62,3756,6.42,6.46,3.83
0.86,Fair,G,VS1,64.6,58.8,3756,5.95,6.04,3.87
0.73,Ideal,E,VS1,61.7,57,3758,5.77,5.8,3.57
0.94,Premium,E,SI2,60.4,59,3758,6.37,6.34,3.84
0.61,Ideal,D,VVS2,61.7,56,3758,5.47,5.42,3.36
0.72,Ideal,F,VS1,61.6,56,3759,5.76,5.79,3.56
0.72,Ideal,F,VS1,61.5,56,3759,5.77,5.8,3.56
0.72,Ideal,F,VS1,60.7,57,3759,5.79,5.87,3.54
0.72,Ideal,F,VS1,61.7,56,3759,5.75,5.78,3.56
0.72,Ideal,F,VS1,61.4,56,3759,5.75,5.79,3.54
0.72,Ideal,F,VS1,61,55,3759,5.77,5.81,3.53
0.72,Ideal,F,VS1,61.3,56,3759,5.74,5.78,3.54
0.72,Ideal,F,VS1,61.5,56,3759,5.74,5.77,3.53
0.72,Ideal,F,VS1,60.5,56,3759,5.82,5.85,3.53
0.71,Very Good,E,VVS2,60.3,52,3760,5.8,5.87,3.52
0.79,Ideal,G,VVS2,62.1,56,3760,5.89,5.93,3.67
1.09,Ideal,E,SI2,59.4,57,3760,6.74,6.65,3.98
0.74,Ideal,H,IF,60.9,57,3760,5.83,5.85,3.56
1.01,Premium,I,SI2,60.5,61,3761,6.47,6.42,3.9
0.72,Very Good,F,VVS1,62.1,55,3762,5.72,5.78,3.57
0.91,Very Good,H,SI1,62.7,56,3762,6.14,6.18,3.86
1.04,Ideal,J,SI2,60.4,57,3762,6.55,6.6,3.97
0.92,Very Good,F,SI2,62.9,58,3763,6.18,6.22,3.9
0.91,Very Good,E,SI2,62.9,56,3763,6.14,6.17,3.87
0.91,Very Good,G,SI1,63.4,59,3763,6.2,6.14,3.91
0.7,Ideal,G,VVS1,61.6,57,3763,5.69,5.73,3.52
0.78,Ideal,D,VS2,61.9,56,3763,5.88,5.94,3.66
0.92,Ideal,F,SI2,61.5,56,3763,6.27,6.32,3.87
0.91,Ideal,F,SI2,60.3,57,3763,6.26,6.34,3.8
0.91,Good,D,SI2,64.7,57,3763,6.02,6.04,3.9
1,Fair,E,SI2,64.6,54,3763,6.33,6.27,4.07
1,Good,E,SI2,57.7,65,3763,6.59,6.55,3.79
1,Fair,I,VS1,65.3,55,3763,6.34,6.25,4.11
1,Premium,I,VS1,60.3,62,3763,6.46,6.41,3.88
1,Premium,E,SI2,60.7,58,3763,6.45,6.38,3.9
1,Good,I,VS1,64,53,3763,6.34,6.28,4.04
1.2,Ideal,H,I1,58.6,57,3763,7.01,6.96,4.09
1.12,Ideal,H,SI2,61.4,56,3763,6.69,6.66,4.1
1,Premium,I,VS1,60.1,62,3763,6.5,6.47,3.9
1,Fair,E,SI2,69,56,3763,6.01,5.94,4.12
1,Very Good,E,SI2,63.2,56,3763,6.4,6.32,4.02
0.91,Premium,G,SI1,62.6,56,3763,6.21,6.16,3.87
1.22,Fair,G,SI2,64.7,61,3763,6.75,6.68,4.34
1,Very Good,E,SI2,63.5,56,3763,6.37,6.3,4.02
0.9,Very Good,I,VS2,62.8,52,3764,6.19,6.23,3.9
1.51,Fair,H,I1,65.6,61,3765,7.16,7,4.66
1.03,Fair,G,SI2,65.6,58,3765,6.3,6.26,4.12
0.93,Very Good,I,VS2,63.1,58,3766,6.19,6.21,3.91
0.85,Ideal,G,SI1,62.1,56,3766,6.05,6.1,3.77
1.01,Premium,I,SI2,59.6,62,3767,6.56,6.5,3.89
0.76,Premium,E,VVS2,60.6,59,3767,5.94,5.85,3.57
1,Fair,D,SI2,65.6,66,3767,6.1,6.01,3.97
1.01,Good,F,SI2,64,56,3768,6.25,6.32,4.02
1.01,Good,F,SI2,63.1,58,3768,6.34,6.38,4.01
0.96,Premium,H,SI1,62.7,58,3768,6.27,6.24,3.92
1.02,Premium,D,I1,61.4,60,3769,6.42,6.47,3.96
1.02,Very Good,I,SI2,63.4,57,3769,6.37,6.4,4.05
1.02,Premium,H,SI2,59.2,59,3769,6.57,6.54,3.88
1,Good,J,VS2,58.7,61,3769,6.5,6.52,3.82
0.9,Good,F,SI2,58,57,3770,6.34,6.41,3.7
0.9,Very Good,F,SI2,62,61,3770,6.14,6.16,3.81
0.9,Very Good,F,SI2,61.4,62,3770,6.11,6.2,3.78
0.9,Premium,F,SI2,61.5,59,3770,6.2,6.23,3.82
1.01,Very Good,I,SI2,62.1,56,3770,6.41,6.45,3.99
0.9,Very Good,H,SI1,60.8,57,3770,6.22,6.25,3.79
0.9,Ideal,H,SI2,61.5,56,3770,6.24,6.18,3.82
1.02,Good,H,SI2,57.9,61,3770,6.75,6.68,3.89
0.91,Very Good,H,SI1,63.4,56,3771,6.18,6.1,3.89
0.91,Very Good,E,SI2,63,56,3772,6.12,6.16,3.87
0.9,Very Good,H,SI1,61.7,57,3772,6.21,6.26,3.85
0.91,Ideal,E,SI2,62.6,57,3772,6.13,6.18,3.85
0.71,Ideal,G,IF,61.8,57,3772,5.7,5.75,3.54
1.02,Good,D,SI2,58.9,65,3773,6.54,6.59,3.87
0.71,Ideal,E,VS2,61.9,55,3773,5.68,5.72,3.53
1.04,Premium,I,SI2,62,57,3774,6.53,6.47,4.03
1.04,Premium,I,SI2,62,57,3774,6.53,6.47,4.03
0.83,Very Good,I,VVS1,61.8,56,3774,6,6.03,3.72
1.29,Very Good,F,I1,58.2,61,3774,7.11,7.15,4.15
0.9,Premium,G,SI1,62.9,58,3774,6.11,6.02,3.82
0.9,Premium,G,SI1,60.6,61,3774,6.21,6.16,3.75
0.91,Ideal,E,SI2,62.5,56,3774,6.16,6.19,3.86
0.83,Ideal,D,SI2,62,55,3774,6.02,6.05,3.74
0.83,Ideal,F,SI1,62,55,3774,6.03,6.07,3.75
0.9,Premium,G,SI1,61.3,60,3774,6.17,6.14,3.77
0.9,Premium,G,SI1,62.7,59,3774,6.14,6.1,3.84
0.9,Good,G,SI1,63.8,61,3774,6.09,6.05,3.87
0.8,Ideal,H,IF,61.1,56,3774,6.02,5.96,3.66
0.9,Premium,G,SI1,62.7,58,3774,6.13,6.08,3.83
0.83,Ideal,E,SI1,61.6,56,3775,6.03,6.05,3.72
0.9,Good,H,VS2,63.6,55,3775,6.14,6.09,3.89
1.07,Ideal,J,SI1,60.8,56,3775,6.61,6.57,4.01
1.07,Premium,H,SI2,60,59,3775,6.6,6.56,3.95
0.91,Very Good,G,VS2,62.7,63,3776,6.05,6,3.78
0.91,Good,G,SI1,63.5,61,3776,6.05,6.1,3.86
1.06,Ideal,I,SI2,61.4,57,3777,6.57,6.63,4.05
0.73,Ideal,G,VVS2,62.4,57,3777,5.71,5.79,3.59
1.01,Ideal,F,SI2,61.3,57,3777,6.4,6.35,3.91
0.71,Premium,E,VVS1,62.7,60,3779,5.73,5.62,3.56
0.9,Good,F,SI1,62.7,58,3780,6.11,6.13,3.84
0.9,Good,F,SI1,62.9,57,3780,6.08,6.13,3.84
0.9,Very Good,F,SI1,61.3,58,3780,6.08,6.13,3.74
0.73,Ideal,E,VVS2,62,57,3780,5.73,5.79,3.57
1.04,Very Good,D,SI2,63.1,58,3780,6.39,6.33,4.01
1.04,Premium,D,SI2,58.3,58,3780,6.67,6.63,3.88
1,Good,J,SI1,63.8,59,3780,6.34,6.27,4.02
1.04,Premium,G,SI1,60.3,58,3780,6.6,6.55,3.96
1,Premium,J,SI1,62.8,59,3780,6.37,6.27,3.97
1,Fair,J,SI1,64.7,52,3780,6.35,6.3,4.09
1,Premium,I,SI2,62.5,56,3780,6.38,6.3,3.96
0.9,Ideal,G,SI1,60.3,56,3780,6.27,6.23,3.77
0.9,Premium,D,SI2,59.8,61,3780,6.21,6.17,3.7
0.72,Ideal,F,VVS2,60.9,56,3780,5.83,5.77,3.53
1,Premium,J,SI1,60.8,58,3780,6.44,6.39,3.9
1,Premium,I,SI2,61.6,59,3780,6.41,6.34,3.93
0.9,Premium,F,SI2,62.7,58,3780,6.16,6.09,3.84
1.04,Fair,D,SI2,65.8,58,3780,6.32,6.25,4.13
1.5,Premium,D,I1,62.4,60,3780,7.37,7.19,4.54
0.82,Ideal,H,VVS2,61.4,56,3781,6.01,6.05,3.71
0.91,Premium,D,SI2,62.3,57,3781,6.22,6.14,3.85
0.91,Good,D,SI2,63.8,58,3781,6.09,6.04,3.87
1.2,Premium,J,SI2,61.7,57,3782,6.85,6.79,4.21
1.01,Premium,H,SI2,62.3,60,3782,6.39,6.32,3.96
1.01,Premium,I,SI1,62.8,58,3782,6.4,6.34,4
1.07,Very Good,J,SI2,61.6,54,3783,6.57,6.59,4.05
0.73,Ideal,G,VVS2,61,56,3783,5.82,5.86,3.56
0.69,Ideal,F,VVS1,61.6,56,3784,5.69,5.71,3.51
0.73,Ideal,H,IF,62.3,55,3785,5.77,5.79,3.6
0.92,Good,I,VS2,59.6,61,3785,6.28,6.34,3.76
1.02,Ideal,I,SI2,60.7,57,3786,6.54,6.57,3.98
1.02,Good,I,SI2,63.6,56,3786,6.37,6.4,4.06
0.77,Ideal,G,VS2,61.7,55,3786,5.89,5.91,3.64
1.04,Ideal,H,SI2,60.5,57,3786,6.55,6.51,3.95
0.77,Very Good,D,VS2,59.6,57,3787,6.01,6.03,3.59
0.9,Very Good,G,SI2,63.2,58,3787,6.05,6.1,3.84
0.9,Very Good,F,SI2,62.4,59,3787,6.1,6.17,3.83
1.16,Premium,F,SI2,62.1,59,3787,6.74,6.63,4.15
0.85,Ideal,E,SI2,60.1,56,3787,6.17,6.18,3.71
0.9,Fair,F,SI2,62.6,58,3787,6.01,6.06,3.78
1.02,Fair,G,SI2,65.3,58,3787,6.33,6.22,4.1
0.92,Good,F,SI2,63.7,64,3787,6.13,6.08,3.89
0.92,Premium,F,SI2,62.1,59,3787,6.26,6.21,3.87
0.92,Premium,F,SI2,61.8,58,3787,6.23,6.19,3.84
0.7,Ideal,D,VS2,61.2,57,3788,5.69,5.75,3.5
1,Ideal,J,SI1,62.7,58,3788,6.35,6.41,4
1.23,Ideal,G,SI2,61.6,55,3788,6.91,6.88,4.25
1,Very Good,F,SI2,62.7,58,3789,6.3,6.36,3.97
1,Very Good,F,SI2,61.7,58,3789,6.32,6.36,3.91
0.9,Very Good,D,SI2,64,58,3789,6.06,6.11,3.9
1.01,Premium,J,VS1,63,55,3790,6.39,6.34,4.01
1.01,Premium,H,SI2,60.7,58,3790,6.52,6.49,3.95
1,Premium,J,VS2,60.3,58,3790,6.49,6.44,3.9
1.01,Premium,H,SI2,61.9,59,3790,6.42,6.37,3.96
1.24,Very Good,J,SI2,63.1,60,3791,6.79,6.74,4.27
0.59,Ideal,D,VVS1,62.3,54,3791,5.36,5.39,3.35
1.01,Very Good,I,SI2,59.2,59,3792,6.52,6.62,3.89
1.01,Very Good,I,SI2,61.4,63,3792,6.33,6.38,3.9
0.9,Good,G,VS2,63.9,61,3792,6.01,5.97,3.83
1.14,Premium,J,SI1,62.4,59,3792,6.7,6.62,4.16
1.01,Very Good,J,SI2,62.7,55,3793,6.42,6.44,4.03
0.8,Ideal,F,VS1,61.2,56,3793,6.01,5.98,3.67
1.19,Ideal,H,I1,60.3,57,3794,6.83,6.93,4.15
1.12,Very Good,E,SI2,60.9,63,3794,6.59,6.65,4.03
0.9,Ideal,H,SI2,62.3,57,3794,6.16,6.19,3.85
0.82,Very Good,E,VS2,60.4,61,3795,6.06,6.09,3.67
0.72,Ideal,F,VVS1,61.7,56,3795,5.73,5.77,3.55
1.21,Very Good,E,I1,63.3,63,3795,6.72,6.67,4.24
1.03,Good,J,VS2,63.7,56,3795,6.42,6.35,4.07
0.9,Good,E,SI1,63.9,57,3795,6.12,6.08,3.9
1.01,Very Good,G,SI2,62.7,58,3796,6.32,6.43,4
1.02,Very Good,J,VS2,59.3,58,3796,6.56,6.62,3.91
0.91,Good,D,SI1,64,58,3796,6.06,6.09,3.89
0.79,Very Good,E,VVS1,63.1,60,3796,5.88,5.84,3.7
0.9,Ideal,F,SI2,61.9,56,3796,6.19,6.24,3.85
0.73,Ideal,F,VS1,61.2,57,3797,5.79,5.84,3.56
0.73,Ideal,F,VS1,61.4,55,3797,5.8,5.83,3.57
1.13,Ideal,H,SI2,60.4,56,3797,6.78,6.7,4.07
1.13,Ideal,E,I1,62,55,3797,6.7,6.66,4.14
0.72,Very Good,E,VVS2,60.5,55,3798,5.82,5.85,3.53
0.79,Very Good,D,VS1,58.8,60,3798,6.03,6.08,3.56
0.9,Very Good,D,SI2,62.5,58,3798,6.12,6.16,3.84
0.82,Ideal,F,VS2,61.5,57,3798,6.01,6.05,3.71
0.9,Ideal,D,SI2,60.9,57,3798,6.2,6.24,3.79
0.9,Good,D,SI2,59.5,62,3798,6.2,6.23,3.7
0.71,Very Good,D,VVS2,62.3,60,3799,5.65,5.71,3.54
1,Good,F,SI2,64.1,58,3799,6.35,6.26,4.04
0.71,Ideal,F,VS1,61.9,56,3799,5.66,5.72,3.53
1,Very Good,F,SI2,63.2,59,3799,6.31,6.25,3.97
1.06,Ideal,H,SI2,60.4,57,3799,6.64,6.58,3.99
0.92,Very Good,H,SI1,60.6,60,3800,6.28,6.33,3.82
1.16,Ideal,I,SI2,62.4,55,3800,6.76,6.69,4.2
0.91,Ideal,E,SI2,62.2,57,3800,6.2,6.24,3.87
0.9,Premium,E,SI1,62.3,61,3800,6.17,6.12,3.83
0.78,Very Good,D,VS1,63.2,58,3800,5.87,5.81,3.69
0.9,Good,E,SI1,63.8,56,3800,6.12,6.05,3.88
1.01,Premium,E,SI2,60.4,57,3801,6.53,6.49,3.93
0.9,Good,G,VS2,64,59,3801,6.04,6.08,3.88
1.01,Premium,E,SI2,59.5,60,3801,6.59,6.53,3.9
0.71,Ideal,D,VS1,62.1,57,3801,5.7,5.73,3.55
1,Good,F,SI2,63.4,60,3801,6.28,6.33,4
1.01,Fair,E,SI2,60,60,3801,6.48,6.38,3.86
1.01,Ideal,J,SI2,61.6,55,3801,6.5,6.45,3.99
1.01,Fair,I,VS1,64.9,56,3801,6.29,6.2,4.07
1.01,Premium,E,SI2,61.8,61,3801,6.35,6.29,3.9
1.01,Very Good,E,SI2,63.4,58,3801,6.43,6.34,4.05
1.02,Fair,I,SI2,65.5,57,3802,6.19,6.24,4.07
0.93,Premium,G,SI2,61.7,60,3802,6.25,6.2,3.84
0.97,Ideal,H,SI2,61.6,56,3802,6.39,6.36,3.93
0.9,Very Good,F,SI2,61.8,60,3803,6.13,6.14,3.79
0.9,Premium,F,SI2,59.9,59,3803,6.32,6.27,3.77
0.9,Premium,F,SI2,58.9,59,3803,6.31,6.26,3.7
0.85,Premium,E,VS2,60.2,60,3803,6.14,6.09,3.68
0.9,Premium,E,SI2,60.1,62,3804,6.28,6.24,3.76
0.9,Ideal,E,SI2,62.1,56,3804,6.25,6.19,3.86
0.74,Ideal,H,VVS1,61.1,56,3804,5.84,5.91,3.59
0.74,Ideal,E,VS1,62.1,53,3804,5.82,5.8,3.61
1.11,Premium,G,SI2,62.5,57,3804,6.54,6.49,4.07
0.9,Ideal,I,VS2,61.3,56,3805,6.24,6.2,3.81
0.9,Ideal,G,SI2,62.7,53,3805,6.18,6.22,3.89
1.08,Premium,I,SI2,62.7,57,3805,6.57,6.53,4.11
0.9,Good,D,SI2,62.3,58,3806,6.05,6.27,3.84
0.9,Very Good,D,SI2,61,59,3806,6.14,6.18,3.76
0.9,Good,D,SI2,63.8,58,3806,6.09,6.13,3.9
0.79,Very Good,F,VS1,61,55,3806,6.01,6.03,3.67
0.9,Fair,G,VS1,65.7,58,3806,6.02,5.97,3.94
1.03,Ideal,F,SI2,62.4,57,3807,6.43,6.38,4
0.61,Good,F,SI2,62.5,65,3807,5.36,5.29,3.33
0.71,Very Good,E,VVS1,63,57,3808,5.66,5.7,3.58
1,Premium,G,SI2,61.8,58,3808,6.44,6.4,3.97
0.9,Ideal,E,SI2,62.6,57,3808,6.13,6.2,3.86
1,Premium,I,SI1,58.5,59,3808,6.56,6.54,3.83
0.96,Premium,I,VS2,60.6,60,3808,6.47,6.4,3.9
0.84,Very Good,D,SI1,59.2,59,3809,6.18,6.21,3.67
1.04,Very Good,J,SI2,63.5,59,3810,6.37,6.42,4.06
0.82,Ideal,F,SI1,61.7,56,3810,6.01,6.06,3.72
0.9,Very Good,H,VS2,61.6,63,3810,6.14,6.1,3.77
1.08,Very Good,J,SI2,63.2,59,3810,6.57,6.4,4.1
0.9,Premium,H,VS2,62.8,58,3810,6.17,6.13,3.86
0.9,Premium,H,VS2,61.2,61,3810,6.21,6.14,3.78
0.9,Premium,H,VS2,63,61,3810,6.14,6.05,3.84
1,Ideal,I,SI2,60.9,57,3811,6.43,6.47,3.93
0.78,Ideal,D,VS2,61.9,56,3811,5.89,5.91,3.65
1.02,Good,F,SI2,63.3,61,3811,6.28,6.32,3.99
0.91,Ideal,F,SI2,62.2,56,3812,6.14,6.17,3.83
0.91,Ideal,F,SI2,62.4,57,3812,6.18,6.22,3.87
0.74,Ideal,D,VS1,61.3,57,3812,5.8,5.84,3.57
0.53,Ideal,D,IF,62.2,55,3812,5.17,5.19,3.22
0.93,Premium,D,SI1,60.8,60,3812,6.3,6.24,3.81
0.9,Premium,D,SI1,62.1,60,3812,6.2,6.14,3.83
0.9,Very Good,D,SI1,62.4,63,3812,6.13,6.04,3.8
0.9,Fair,D,SI1,60.4,61,3812,6.24,6.22,3.76
0.93,Good,D,SI1,63.8,59,3812,6.21,6.15,3.94
0.8,Premium,F,VS1,60.5,59,3813,6,6.03,3.64
0.74,Ideal,D,VS1,61.7,55,3813,5.79,5.85,3.59
0.73,Fair,E,VVS2,57.4,59,3813,5.99,5.95,3.43
1.05,Very Good,E,SI2,62.2,59,3816,6.44,6.51,4.03
1.18,Very Good,D,I1,61.5,62,3816,6.73,6.88,4.19
0.93,Premium,H,SI1,61.8,59,3816,6.23,6.27,3.86
0.84,Very Good,D,SI1,62.9,58,3816,5.93,6.02,3.76
1.05,Fair,D,SI2,65.4,59,3816,6.3,6.24,4.1
0.72,Ideal,F,VVS2,61.2,56,3816,5.78,5.81,3.55
0.9,Good,G,SI1,64.1,59.4,3816,6.04,6.08,3.88
0.9,Good,G,SI1,62.2,62.5,3816,6.08,6.1,3.78
1.01,Fair,G,SI2,58.7,67,3816,6.52,6.56,3.84
1.01,Fair,G,SI2,59.8,66,3816,6.42,6.48,3.86
0.91,Premium,G,SI1,62.2,57,3816,6.17,6.12,3.82
0.91,Fair,H,SI1,64.7,56,3816,6.1,6.07,3.94
0.75,Very Good,E,VS2,60.4,56,3817,5.9,5.96,3.58
0.92,Very Good,G,SI1,61.5,60,3817,6.19,6.26,3.83
0.79,Ideal,D,VS2,61.3,57,3818,5.95,6,3.66
0.9,Very Good,D,SI2,63.2,57,3818,6.08,6.1,3.85
0.3,Very Good,D,SI2,63.2,57,574,4.24,4.21,2.67
0.3,Ideal,D,SI2,63,55,574,4.26,4.25,2.68
0.3,Premium,D,SI2,61.8,58,574,4.32,4.29,2.66
0.3,Premium,D,SI2,61.2,60,574,4.31,4.28,2.63
0.3,Premium,G,SI1,62.7,58,574,4.27,4.22,2.66
0.34,Premium,J,VS1,61.7,58,574,4.47,4.41,2.74
0.34,Good,I,SI1,63.7,54,574,4.48,4.43,2.84
0.34,Premium,I,SI1,61.3,61,574,4.49,4.45,2.74
0.34,Premium,I,SI1,61.8,57,574,4.51,4.46,2.77
0.34,Premium,I,SI1,60.2,59,574,4.55,4.52,2.73
0.34,Premium,I,SI1,59.2,61,574,4.58,4.57,2.71
0.34,Premium,I,SI1,62.7,58,574,4.43,4.4,2.77
0.34,Premium,G,SI2,62.8,59,574,4.47,4.45,2.8
0.34,Very Good,F,SI2,63.5,56,574,4.48,4.44,2.83
0.34,Premium,F,SI2,60,62,574,4.55,4.51,2.72
0.34,Ideal,F,SI2,60.1,56,574,4.55,4.54,2.73
0.3,Premium,G,SI1,58.8,60,574,4.39,4.35,2.57
0.3,Premium,G,SI1,60.1,62,574,4.37,4.35,2.62
0.3,Ideal,G,SI1,62.8,56,574,4.32,4.28,2.7
0.3,Very Good,G,SI1,59.5,63,574,4.32,4.29,2.56
0.3,Premium,G,SI1,61,57,574,4.34,4.31,2.64
0.3,Premium,G,SI1,62.9,59,574,4.28,4.24,2.68
0.3,Premium,D,SI2,60.9,58,574,4.32,4.29,2.62
0.3,Premium,D,SI2,62.3,58,574,4.32,4.29,2.68
0.3,Ideal,D,SI2,61.1,55,574,4.35,4.32,2.65
0.3,Premium,D,SI2,60.2,60,574,4.35,4.32,2.61
0.3,Ideal,D,SI2,62.1,57,574,4.33,4.3,2.68
0.3,Premium,D,SI2,62.4,58,574,4.31,4.28,2.68
0.3,Premium,D,SI2,61.4,59,574,4.31,4.26,2.63
0.3,Very Good,D,SI2,63.3,57,574,4.3,4.26,2.71
1.01,Ideal,J,SI1,62.9,56,3818,6.4,6.35,4.01
1.01,Premium,I,SI2,62.6,58,3818,6.43,6.38,4.01
1.01,Premium,I,SI2,62.6,55,3818,6.43,6.38,4.01
1.01,Very Good,I,SI2,63.1,54,3818,6.39,6.35,4.02
0.95,Premium,I,VS2,62.9,57,3818,6.24,6.19,3.91
1.01,Premium,I,SI2,61.7,60,3818,6.4,6.34,3.93
1,Good,E,SI2,63.7,61,3819,6.27,6.32,4.01
1,Fair,H,VS2,64.8,55,3819,6.35,6.28,4.09
1,Premium,H,VS2,59.8,56,3819,6.5,6.48,3.88
1,Good,H,VS2,63.9,57,3819,6.32,6.26,4.02
0.9,Ideal,I,VS2,62.6,54.3,3820,6.14,6.17,3.86
0.9,Ideal,G,SI2,62.8,54,3820,6.11,6.15,3.85
1.52,Premium,G,I1,61.7,58,3820,7.43,7.34,4.56
0.76,Ideal,F,VS1,61.9,55,3820,5.88,5.84,3.63
0.85,Ideal,D,VS2,61.9,55,3821,6.07,6.14,3.78
1.02,Premium,G,SI2,62.3,58.1,3822,6.41,6.38,4
0.75,Premium,F,VVS2,62.4,57,3822,5.88,5.75,3.63
1.05,Premium,J,VS1,62.7,61,3822,6.58,6.49,4.09
1.05,Premium,H,SI2,63,57,3822,6.47,6.42,4.06
1.05,Good,H,SI2,63.9,56,3822,6.44,6.37,4.09
0.91,Premium,F,SI2,62.5,56,3822,6.21,6.15,3.86
1.05,Ideal,I,SI1,60.4,57,3822,6.6,6.58,3.98
1.01,Good,J,VS1,63.2,62,3823,6.29,6.33,3.99
1.01,Good,I,SI2,62.6,59,3823,6.34,6.43,4
0.92,Very Good,D,SI2,63.3,59,3823,6.18,6.12,3.89
1.06,Premium,J,SI2,62,58,3823,6.53,6.45,4.04
1.03,Premium,G,SI2,63,60,3824,6.39,6.35,4.01
1.14,Ideal,F,I1,61.7,57,3824,6.7,6.67,4.13
0.94,Premium,E,SI2,60.4,59,3825,6.34,6.37,3.84
1.08,Ideal,G,SI2,62.7,54,3825,6.63,6.57,4.14
0.91,Ideal,J,VVS2,60.2,57,3826,6.31,6.34,3.81
1.01,Good,F,SI2,63,60,3827,6.28,6.35,3.98
0.79,Ideal,E,VS2,62.2,55,3827,5.9,5.97,3.69
0.79,Very Good,E,VS1,62.2,55,3827,5.95,6.01,3.72
0.53,Very Good,D,IF,59.8,60,3827,5.22,5.28,3.14
0.77,Ideal,E,SI1,61,56,3827,5.92,5.94,3.62
1.05,Premium,G,SI2,60.1,60,3828,6.58,6.66,3.98
0.91,Very Good,D,SI2,59.3,60,3828,6.28,6.33,3.74
0.86,Ideal,E,SI2,61.8,57,3828,6.1,6.13,3.78
0.93,Ideal,F,SI2,59.5,57,3828,6.37,6.33,3.78
0.77,Very Good,G,VVS2,62.8,58,3829,5.84,5.78,3.65
0.91,Very Good,G,SI1,63,57,3830,6.14,6.2,3.89
1.14,Premium,H,SI2,62.2,61,3830,6.72,6.64,4.16
0.9,Very Good,E,SI1,63.2,57,3830,6.15,6.12,3.88
0.7,Ideal,F,VVS1,62.4,55,3830,5.63,5.71,3.54
0.9,Very Good,J,SI1,63.4,59,3830,6.14,6.1,3.88
1,Fair,H,SI1,55.2,64,3830,6.69,6.64,3.68
1.2,Premium,H,SI2,60.9,60,3830,6.91,6.81,4.18
0.9,Premium,E,SI2,61.7,58,3830,6.18,6.11,3.79
1,Premium,I,SI2,62.6,56,3830,6.4,6.34,3.99
0.95,Premium,G,SI2,59.7,61,3830,6.35,6.27,3.77
1.06,Premium,F,SI2,62.6,59,3831,6.47,6.51,4.06
0.8,Very Good,E,VS1,63.2,54,3831,5.88,5.93,3.73
0.74,Ideal,G,VVS2,60.7,56,3831,5.9,5.88,3.58
0.71,Premium,E,VVS1,62.5,57,3831,5.67,5.62,3.53
1.04,Premium,H,SI2,62.1,58,3832,6.5,6.52,4.04
1.01,Very Good,I,SI1,62,58,3832,6.43,6.47,4
0.63,Ideal,D,IF,61.2,53,3832,5.55,5.6,3.41
0.76,Very Good,E,VVS2,60.6,59,3833,5.85,5.94,3.57
1.01,Very Good,I,SI2,61.4,59,3833,6.42,6.45,3.95
1,Fair,G,SI1,68.2,60,3833,6.02,5.94,4.08
1.17,Fair,I,SI2,59.2,68,3833,6.91,6.84,4.07
1,Fair,G,SI1,68.9,56,3833,6.16,6.11,4.23
1.23,Very Good,H,I1,61.9,60.6,3835,6.79,6.85,4.22
1,Good,J,VS2,62,61,3835,6.36,6.45,3.97
1,Good,I,SI1,65.2,56,3836,6.21,6.27,4.07
0.91,Very Good,D,SI2,63.9,56,3837,6.06,6.09,3.88
0.77,Ideal,D,VS2,61.1,57,3837,5.93,5.96,3.63
0.83,Ideal,E,SI1,62.3,55,3837,5.98,6.02,3.74
0.91,Fair,F,VS2,66.8,58,3837,5.95,5.97,3.98
1.01,Fair,F,SI2,65.2,57,3837,6.33,6.24,4.1
1.01,Premium,F,SI2,59.2,58,3837,6.5,6.47,0
0.93,Very Good,H,SI1,59.3,61,3838,6.33,6.39,3.77
1.02,Good,E,SI2,62.8,64,3838,6.36,6.32,3.98
0.71,Ideal,D,VS2,61,56,3838,5.76,5.81,3.53
1.02,Fair,E,SI2,65.3,59,3838,6.28,6.22,4.08
1.12,Good,I,SI2,64.3,60,3838,6.59,6.56,4.23
1.12,Premium,G,SI2,61,60,3838,6.7,6.64,4.07
1.02,Premium,D,I1,61.4,60,3838,6.47,6.42,3.96
0.9,Premium,H,VS1,63,62,3838,6.09,6,3.81
0.81,Very Good,E,VS2,62.8,57,3839,5.9,5.95,3.72
1.02,Good,D,SI2,57.5,62,3839,6.6,6.62,3.8
0.93,Good,D,SI2,64.5,58,3839,6.11,6.14,3.95
0.7,Ideal,D,VS1,62.3,55,3840,5.64,5.68,3.53
0.9,Very Good,G,SI1,61.3,60,3841,6.14,6.17,3.77
0.9,Very Good,G,SI1,62,58,3841,6.14,6.18,3.82
0.9,Premium,G,SI1,62.7,59,3841,6.1,6.14,3.84
0.9,Ideal,G,SI1,62.6,56,3841,6.16,6.23,3.88
0.9,Premium,G,VS2,59,58,3841,6.29,6.25,3.7
0.83,Ideal,F,VS2,61.6,58,3841,6.04,6.07,3.73
0.9,Very Good,G,SI2,59.8,61,3842,6.32,6.28,3.77
0.9,Very Good,F,SI1,62.8,56,3842,6.11,6.15,3.85
0.74,Ideal,F,VVS2,61.4,56,3842,5.83,5.86,3.59
1.06,Good,I,SI2,58.7,60,3842,6.65,6.71,3.92
1.02,Good,D,SI2,58.9,65,3842,6.59,6.54,3.87
0.91,Premium,E,SI1,61.5,60,3842,6.24,6.19,3.82
0.92,Good,D,SI2,60.3,61,3843,6.29,6.38,3.82
0.9,Very Good,I,VS1,62.6,58,3844,6.09,6.15,3.83
1.04,Good,J,VS2,57.4,60,3844,6.76,6.72,3.87
0.91,Ideal,G,SI2,60.8,57,3844,6.28,6.22,3.81
0.93,Ideal,H,SI1,62,55,3844,6.32,6.29,3.91
0.74,Ideal,F,VS1,61.7,56,3845,5.79,5.87,3.6
0.91,Premium,F,SI2,59.1,60,3845,6.36,6.3,3.74
0.91,Premium,F,SI2,60.8,59,3845,6.28,6.25,3.81
1.11,Good,J,SI1,63.6,58,3846,6.48,6.57,4.15
0.83,Ideal,H,VVS1,63.4,56,3846,5.96,5.99,3.79
0.91,Premium,E,SI2,61.6,60,3846,6.14,6.1,3.77
1.01,Premium,F,SI2,61.7,58,3846,6.46,6.41,3.97
1.08,Very Good,F,SI2,63.4,55,3847,6.53,6.5,4.13
0.9,Fair,D,SI2,64.6,59,3847,6.04,6.01,3.89
1.06,Premium,I,SI2,61.5,58,3847,6.59,6.55,4.04
0.91,Premium,D,SI2,62.7,59,3848,6.17,6.21,3.88
0.91,Very Good,D,SI2,62.3,57,3848,6.14,6.22,3.85
0.91,Good,D,SI2,63.8,58,3848,6.04,6.09,3.87
0.9,Very Good,F,SI1,63.6,58,3848,6.08,6.12,3.88
1.08,Ideal,I,SI2,61.9,55,3849,6.58,6.61,4.08
0.72,Ideal,G,VVS2,61.9,57,3849,5.72,5.75,3.55
1,Good,I,SI1,63.8,58,3850,6.28,6.32,4.02
1,Good,H,SI2,63.4,61,3850,6.29,6.33,4
1,Very Good,H,SI2,60.2,61,3850,6.44,6.48,3.89
1,Premium,H,SI2,61.2,59,3850,6.38,6.42,3.92
0.6,Ideal,D,VVS1,62.3,55,3850,5.38,5.4,3.36
0.9,Premium,G,VS2,62.9,62,3850,6.06,6.02,3.8
1.01,Very Good,G,SI2,61.9,55,3852,6.43,6.46,3.99
1.01,Good,G,SI2,63.7,58,3852,6.31,6.35,4.03
1.01,Good,G,SI2,62.8,57,3852,6.3,6.34,3.97
1.01,Good,G,SI2,63.4,57,3852,6.32,6.37,4.02
0.81,Ideal,D,SI1,62,56,3852,5.97,6,3.71
1.01,Good,J,SI1,58.8,57,3853,6.57,6.63,3.88
0.91,Very Good,H,VS2,63.1,59,3853,6.16,6.13,3.88
0.91,Premium,H,VS2,59.6,60,3853,6.29,6.25,3.74
1,Premium,F,SI2,61.7,57,3853,6.42,6.35,3.94
0.92,Very Good,F,SI2,62.1,59,3854,6.21,6.26,3.87
0.92,Premium,F,SI2,61.8,58,3854,6.19,6.23,3.84
0.9,Very Good,F,SI1,61.7,60,3854,6.19,6.22,3.83
1.11,Premium,H,SI2,59.3,59,3854,6.8,6.76,4.02
0.91,Ideal,H,SI2,60.6,57,3854,6.3,6.26,3.81
0.92,Ideal,H,SI2,60.5,57,3854,6.3,6.29,3.81
0.91,Good,H,SI1,58.2,59,3855,6.36,6.4,3.71
0.91,Fair,D,SI1,64.4,60,3855,6.08,6.04,3.9
0.73,Very Good,D,VS1,62.2,56,3856,5.72,5.75,3.57
0.71,Ideal,D,VVS2,61.3,57,3856,5.7,5.81,3.53
0.93,Ideal,I,SI1,62.5,55,3856,6.23,6.29,3.91
1.01,Fair,G,SI2,64.7,58,3856,6.14,6.23,4
1.02,Premium,I,SI2,61.2,59,3856,6.51,6.46,3.97
1.02,Premium,J,SI1,63,58,3856,6.44,6.39,4.04
1.02,Ideal,J,SI1,62.8,54,3856,6.46,6.43,4.05
1.02,Premium,J,SI1,61.8,58,3856,6.5,6.44,4
1.02,Premium,I,SI2,62,59,3856,6.45,6.42,3.99
1.02,Good,I,SI2,63.6,56,3856,6.4,6.37,4.06
1.02,Ideal,I,SI2,60.7,57,3856,6.57,6.54,3.98
0.9,Premium,E,SI2,60.4,59,3856,6.24,6.21,3.76
0.9,Premium,E,SI2,61.6,59,3856,6.26,6.18,3.83
1.01,Very Good,E,SI2,59.4,59,3857,6.49,6.51,3.86
1.02,Very Good,J,SI1,62.5,58,3857,6.37,6.43,4
1,Very Good,F,SI2,63.5,55,3858,6.37,6.32,4.03
1,Premium,F,SI2,60.2,62,3858,6.53,6.45,3.91
1,Good,F,SI2,56.7,60,3858,6.62,6.58,3.74
0.74,Ideal,D,VS2,61.8,56,3858,5.79,5.82,3.59
1,Ideal,I,VS2,62.6,54,3858,6.39,6.35,3.99
1,Premium,F,SI2,61.7,58,3858,6.36,6.32,3.91
0.96,Ideal,G,SI2,61.7,57,3858,6.35,6.3,3.9
1,Good,F,SI2,59.8,65,3858,6.58,6.43,3.9
1,Premium,F,SI2,59.3,62,3858,6.49,6.43,3.83
1,Premium,F,SI2,60.4,58,3858,6.47,6.44,3.9
1,Good,F,SI2,59.4,64,3858,6.36,6.29,3.76
0.9,Good,G,VS2,63.9,61,3859,5.97,6.01,3.83
0.8,Ideal,F,VS1,61.2,56,3860,5.98,6.01,3.67
1,Good,G,SI2,59.7,63,3860,6.43,6.5,3.86
1.04,Premium,I,SI2,62.1,59,3861,6.46,6.52,4.03
1.08,Fair,E,SI2,64.9,60,3861,6.43,6.39,4.16
1.04,Premium,G,SI2,62.2,59,3861,6.57,6.49,4.06
1.14,Premium,J,SI2,60.4,59,3861,6.8,6.74,4.09
0.79,Ideal,E,VS2,62.2,55,3861,5.97,5.9,3.69
0.94,Very Good,D,SI2,59,59,3862,6.34,6.41,3.76
1.21,Fair,H,SI1,69.6,55,3862,6.49,6.42,4.49
1.21,Fair,H,SI2,65.6,56,3862,6.69,6.59,4.36
0.9,Very Good,E,SI1,62.9,55,3863,6.18,6.22,3.9
0.9,Very Good,E,SI1,63.6,57,3863,6.08,6.12,3.88
0.91,Ideal,J,VS1,61.9,56,3863,6.19,6.22,3.85
1,Premium,H,SI2,61,61,3864,6.31,6.27,3.84
0.78,Ideal,D,VS2,62.2,55,3864,5.87,5.97,3.68
1.12,Ideal,E,SI2,60.9,57,3864,6.66,6.6,4.04
0.76,Ideal,E,VS2,61.6,56,3864,5.85,5.9,3.62
1.12,Very Good,E,SI2,60.9,63,3864,6.65,6.59,4.03
1,Fair,F,SI2,65.5,54,3864,6.2,6.16,4.05
1,Premium,J,VVS2,59.6,61,3864,6.4,6.36,3.8
1.19,Ideal,H,I1,60.3,57,3864,6.93,6.83,4.15
0.92,Premium,F,SI2,59.3,61,3864,6.36,6.29,3.75
1.5,Good,F,I1,63.7,59,3864,7.29,7.18,4.62
1.17,Good,D,SI2,57.4,59,3866,7.02,6.95,4.01
0.9,Ideal,I,VS1,62.9,58,3867,6.13,6.18,3.87
0.9,Ideal,I,VS1,62.4,56,3867,6.14,6.19,3.85
0.9,Very Good,E,SI1,62.3,61,3868,6.12,6.17,3.83
1.01,Fair,H,SI1,64.5,59,3869,6.27,6.23,4.03
1.01,Fair,H,SI1,65.3,61,3869,6.23,6.18,4.05
1.01,Premium,H,SI1,62.1,57,3869,6.47,6.37,3.99
1.01,Premium,H,SI1,62.8,58,3869,6.43,6.34,4.01
0.94,Premium,F,SI2,62.6,57,3869,6.27,6.25,3.92
0.85,Very Good,E,VS2,60.2,60,3871,6.09,6.14,3.68
1.2,Premium,E,I1,62.3,60,3871,6.78,6.71,4.2
1.01,Good,G,SI1,62.2,65,3871,6.34,6.3,3.93
0.96,Ideal,G,SI2,62.1,57,3871,6.32,6.27,3.91
0.9,Ideal,D,SI2,62.3,57,3871,6.17,6.23,3.86
0.96,Good,F,VS2,63.7,54,3871,6.24,6.19,3.96
1.01,Fair,D,SI2,64.7,57,3871,6.31,6.27,4.07
0.96,Premium,H,SI2,59.2,61,3871,6.42,6.36,3.78
0.9,Very Good,I,VVS1,63.4,57,3872,6.09,6.12,3.87
1.1,Ideal,E,I1,61.9,56,3872,6.59,6.63,4.09
0.74,Very Good,E,VS1,62.1,53.4,3872,5.8,5.82,3.61
0.9,Very Good,E,SI2,59.4,58,3872,6.31,6.35,3.76
0.89,Ideal,E,SI2,61.8,56,3872,6.15,6.19,3.81
0.92,Very Good,F,SI2,62.8,56,3873,6.19,6.23,3.9
0.98,Ideal,I,SI2,62.6,54,3873,6.35,6.39,3.99
0.87,Premium,D,VS2,59.9,59,3873,6.2,6.16,3.7
0.72,Ideal,E,VVS2,62,56,3874,5.74,5.77,3.57
1.12,Ideal,G,I1,60.3,57,3874,6.73,6.8,4.08
1.01,Premium,I,SI2,61.1,58,3874,6.5,6.46,3.96
1,Good,H,SI2,63.2,59,3874,6.24,6.29,3.96
1.02,Very Good,F,SI2,58.7,63,3875,6.49,6.46,3.8
0.9,Fair,E,VS2,65.2,61,3875,6.01,5.98,3.91
0.96,Premium,I,VS2,60.6,60,3876,6.4,6.47,3.9
0.91,Very Good,E,SI2,62.8,59,3876,6.1,6.16,3.85
1.03,Fair,E,SI2,65.3,59,3876,6.3,6.25,4.1
1.03,Premium,E,SI2,61.7,61,3876,6.49,6.45,3.99
1,Premium,J,VS2,60.7,58,3877,6.49,6.52,3.95
0.92,Premium,D,SI2,59.4,59,3877,6.39,6.28,3.76
0.71,Premium,D,VVS2,60.4,59,3877,5.73,5.69,3.45
0.9,Very Good,H,VS2,61.2,61,3878,6.14,6.21,3.78
0.9,Very Good,H,VS2,61.6,63,3878,6.1,6.14,3.77
0.9,Very Good,H,VS2,63,61,3878,6.05,6.14,3.84
0.9,Very Good,H,VS2,62.8,58,3878,6.13,6.17,3.86
1,Good,H,SI2,63.9,55,3878,6.25,6.33,4.02
1,Good,I,SI1,60.5,57,3878,6.4,6.46,3.89
0.95,Premium,I,SI1,60,60,3878,6.39,6.37,3.83
0.91,Very Good,F,SI1,60.1,58,3879,6.3,6.35,3.8
1.02,Very Good,J,SI1,63.1,60,3879,6.35,6.4,4.02
0.75,Ideal,G,VVS2,62.2,56,3879,5.78,5.82,3.61
0.9,Premium,G,SI1,61,60,3879,6.17,6.12,3.75
0.9,Premium,G,SI1,60.2,59,3879,6.27,6.23,3.76
0.74,Ideal,F,VVS2,61.5,55,3879,5.85,5.82,3.59
0.9,Very Good,I,VS1,62,61,3880,6.12,6.18,3.81
0.9,Good,D,SI1,62.4,63,3880,6.04,6.13,3.8
0.9,Very Good,D,SI1,62.1,60,3880,6.14,6.2,3.83
0.9,Very Good,D,SI1,61.6,54,3880,6.18,6.25,3.83
0.93,Very Good,D,SI1,60.8,60,3880,6.24,6.3,3.81
1.2,Very Good,J,SI2,59.6,62,3880,6.9,6.95,4.13
1.12,Good,J,SI1,63.7,61,3880,6.5,6.54,4.15
1,Good,E,SI2,63.3,56,3880,6.3,6.36,4.01
0.71,Ideal,F,VVS1,61.8,56,3880,5.72,5.74,3.54
0.82,Ideal,G,VS1,61.9,54,3880,5.99,6.03,3.72
0.73,Ideal,F,IF,61.2,55,3880,5.86,5.8,3.57
1.26,Fair,H,SI2,64.9,60,3881,6.7,6.62,4.32
0.9,Good,F,SI1,63.6,59,3881,6.12,6.07,3.88
0.9,Premium,F,SI1,62.5,62,3881,6.11,6.08,3.81
0.9,Premium,F,SI1,62.6,60,3881,6.14,6.1,3.83
0.9,Very Good,F,SI1,63.2,61,3881,6.13,6.09,3.86
0.9,Very Good,F,SI1,63.1,58,3881,6.18,6.12,3.88
1,Premium,F,SI1,59.4,62,3881,6.55,6.52,3.88
1.05,Good,J,VS1,57.8,64,3881,6.74,6.67,3.88
1,Ideal,I,SI2,60.9,57,3881,6.47,6.43,3.93
0.9,Good,H,VS2,63.6,58,3881,6.11,6.09,3.88
0.9,Ideal,F,SI2,62.4,57,3881,6.23,6.15,3.86
0.91,Very Good,H,VS1,62.7,63,3881,6.1,6.03,3.8
0.91,Premium,H,VS1,59.2,62,3881,6.2,6.14,3.65
1,Premium,F,SI1,59.4,62,3881,6.55,6.52,3.88
1.11,Very Good,I,SI2,63.7,58,3882,6.57,6.53,4.17
1.09,Ideal,F,SI2,61.6,54,3882,6.69,6.62,4.1
1.13,Premium,D,SI2,58.3,60,3883,6.83,6.78,3.97
1.29,Very Good,J,SI2,63.5,57,3884,6.89,6.87,4.37
0.91,Ideal,G,SI1,62.6,57,3884,6.16,6.21,3.87
0.91,Very Good,G,SI1,62.2,57,3884,6.12,6.17,3.82
0.9,Good,E,SI1,58.1,64,3884,6.26,6.28,3.64
1.02,Good,H,SI2,63.7,58,3884,6.28,6.24,3.99
0.8,Ideal,F,VS1,62.4,55,3884,5.92,5.88,3.68
0.8,Ideal,F,VS1,61.6,54,3884,5.99,5.95,3.68
0.95,Ideal,I,VS2,62.2,57,3884,6.29,6.22,3.89
0.97,Ideal,F,SI1,61.7,56,3884,6.37,6.32,3.92
1.01,Very Good,I,SI2,61.8,60,3885,6.34,6.37,3.93
0.91,Very Good,F,SI1,62.2,55,3885,6.18,6.23,3.86
1.01,Good,F,SI2,62.5,59,3886,6.31,6.37,3.96
1.01,Good,F,SI2,62.7,61,3886,6.28,6.38,3.97
0.94,Very Good,E,SI2,62,58,3886,6.23,6.29,3.88
1.05,Premium,E,SI2,62.2,59,3886,6.51,6.44,4.03
1.18,Ideal,D,I1,61.5,62,3886,6.88,6.73,4.19
1.01,Fair,J,VS2,59.6,62,3886,6.54,6.49,3.88
0.91,Very Good,H,VS2,61.6,60,3887,6.19,6.21,3.82
0.7,Very Good,F,IF,61.5,58,3887,5.65,5.7,3.49
1.01,Very Good,H,SI2,60.6,61,3888,6.38,6.45,3.89
1.01,Very Good,I,SI1,62.8,58,3888,6.37,6.4,4.01
1.01,Very Good,I,SI1,62.1,58,3888,6.38,6.44,3.98
1.01,Good,H,SI2,63.9,58,3888,6.32,6.35,4.05
1.01,Very Good,I,SI1,60.3,57,3888,6.51,6.53,3.93
1.01,Very Good,I,SI1,62,54,3888,6.36,6.51,3.99
0.73,Ideal,F,VVS2,61.9,55.2,3888,5.74,5.79,3.58
0.74,Ideal,E,VS1,62.2,55,3888,5.79,5.82,3.61
0.91,Premium,D,SI2,61.2,58,3889,6.25,6.21,3.81
1,Good,E,SI2,63.7,61,3889,6.32,6.27,4.01
1,Fair,E,SI2,56.9,63,3889,6.54,6.49,3.71
1.12,Premium,H,SI2,61.4,59,3889,6.69,6.66,4.1
0.3,Very Good,D,SI2,63.4,56,574,4.29,4.26,2.71
0.3,Premium,D,SI2,62.9,58,574,4.29,4.26,2.69
0.3,Premium,D,SI2,62.4,59,574,4.28,4.25,2.66
0.3,Premium,D,SI2,62.2,59,574,4.3,4.25,2.66
0.3,Premium,D,SI2,61,61,574,4.31,4.25,2.61
0.3,Premium,D,SI2,61.2,57,574,4.33,4.3,2.64
0.33,Good,E,VS2,57.3,59,574,4.6,4.62,2.64
0.25,Very Good,F,VVS2,59,58,575,4.1,4.14,2.43
0.25,Very Good,F,VVS2,59.4,57,575,4.1,4.12,2.44
0.25,Very Good,F,VVS2,61.8,58,575,4.05,4.07,2.51
0.25,Very Good,F,VVS2,61,58,575,4.02,4.05,2.46
0.25,Very Good,F,VVS2,60.4,59,575,4.09,4.12,2.48
0.25,Very Good,F,VVS2,63.2,57,575,3.99,4.01,2.53
0.27,Very Good,E,VVS2,58.6,61,575,4.27,4.3,2.51
0.25,Very Good,E,VVS2,60.2,59,575,4.07,4.14,2.47
0.25,Very Good,E,VVS2,62.7,59,575,4.01,4.03,2.52
0.27,Very Good,E,VVS2,61.9,58,575,4.1,4.14,2.55
0.25,Very Good,E,VVS2,59.8,59,575,4.07,4.09,2.44
0.25,Very Good,E,VVS2,62.1,58,575,4.03,4.06,2.51
0.25,Very Good,E,VVS2,63,57,575,4,4.06,2.54
0.25,Very Good,E,VVS2,60.9,59,575,4.03,4.11,2.48
0.25,Very Good,E,VVS2,61.9,59,575,3.99,4.02,2.48
0.25,Very Good,E,VVS2,63.4,58,575,3.97,4.01,2.53
0.25,Very Good,E,VVS2,63,55,575,4,4.03,2.53
0.25,Very Good,E,VVS2,60.5,59,575,4.06,4.1,2.47
0.25,Very Good,D,VVS2,58.8,59,575,4.11,4.16,2.43
0.27,Very Good,D,VVS2,64.6,53,575,4.04,4.1,2.63
0.25,Very Good,D,VVS2,61.3,59,575,4.07,4.12,2.51
0.25,Very Good,E,VVS1,59.7,58,575,4.13,4.14,2.47
0.25,Very Good,E,VVS1,60.7,58,575,4.07,4.1,2.48
0.9,Very Good,H,VS2,60.8,58,3890,6.18,6.22,3.77
1.09,Very Good,D,SI2,61.9,61,3890,6.54,6.58,4.06
0.8,Ideal,E,SI1,61,57,3890,6,6.03,3.67
0.9,Good,H,VS2,64.3,60,3890,6.02,6.04,3.88
0.92,Good,D,SI2,63.3,59,3891,6.12,6.18,3.89
0.91,Very Good,G,SI2,63.4,60,3891,6.11,6.06,3.86
1.1,Fair,E,SI1,65.5,57,3891,6.45,6.37,4.2
1.02,Premium,G,SI2,62.3,58,3892,6.41,6.38,4
1.03,Good,H,SI2,65,57,3892,6.3,6.32,4.1
1.03,Fair,I,SI1,57.4,61,3892,6.67,6.71,3.84
0.9,Very Good,F,SI1,61.1,56,3893,6.23,6.3,3.83
0.9,Good,F,SI1,61.3,60,3893,6.13,6.18,3.77
1.03,Ideal,J,SI1,62.3,56,3893,6.51,6.45,4.04
0.91,Good,F,SI1,66.1,57,3893,5.99,6.03,3.97
0.9,Ideal,G,SI1,60.2,56,3894,6.24,6.29,3.77
1.18,Very Good,E,I1,62.5,58,3894,6.62,6.75,4.18
1,Good,D,SI2,64.3,53,3894,6.29,6.34,4.06
0.9,Very Good,E,VS2,63.4,59,3894,6.19,6.11,3.9
0.76,Premium,D,VS1,60.6,58,3894,5.95,5.89,3.59
0.98,Very Good,E,SI2,61.1,60,3895,6.31,6.36,3.87
1.01,Good,G,SI2,64.5,61,3895,6.24,6.31,4.05
1.01,Good,F,SI2,61.5,61,3895,6.33,6.38,3.91
0.9,Good,E,SI2,61.3,61,3895,6.13,6.17,3.77
0.92,Premium,I,VS2,60.9,58,3895,6.28,6.27,3.82
0.93,Good,F,SI2,63.4,54,3896,6.19,6.24,3.94
0.72,Ideal,D,VS1,60.9,56,3896,5.79,5.86,3.55
1.24,Premium,G,SI2,60,60,3896,6.94,6.88,4.15
1.04,Premium,G,SI2,60.6,59,3896,6.6,6.56,3.99
1.01,Premium,F,SI2,63,60,3897,6.35,6.28,3.98
1.01,Premium,F,SI2,58.3,58,3897,6.56,6.55,3.82
1.01,Premium,F,SI2,60,59,3897,6.47,6.41,3.86
1.01,Good,F,SI2,63.7,60,3897,6.37,6.29,4.02
1.01,Very Good,F,SI2,63.5,56,3897,6.38,6.35,4.04
1.01,Premium,J,VVS2,62.7,59,3897,6.46,6.39,4.03
1.01,Good,F,SI2,64.3,57,3897,6.32,6.25,4.04
0.78,Very Good,E,VS1,61.5,60,3898,5.86,5.92,3.62
0.9,Very Good,F,SI1,63.4,56,3898,6.06,6.12,3.86
0.9,Good,F,SI1,62.4,55,3898,6.17,6.21,3.86
0.91,Premium,E,SI2,62.8,59,3898,6.16,6.13,3.86
1.05,Premium,G,SI2,60.1,60,3898,6.66,6.58,3.98
1.13,Premium,E,SI2,62.5,57,3898,6.68,6.63,4.16
0.91,Ideal,E,SI2,60.8,56,3898,6.29,6.25,3.81
0.91,Ideal,E,SI2,61.5,56,3898,6.23,6.2,3.82
1.05,Good,G,SI2,63.7,59,3898,6.41,6.37,4.07
1.01,Premium,I,SI2,62.1,59,3899,6.39,6.42,3.98
1.18,Fair,D,SI2,57,66,3899,6.96,6.91,3.98
0.73,Ideal,F,VVS1,62.7,56,3900,5.76,5.72,3.6
1.11,Very Good,J,SI1,62,58,3901,6.57,6.62,4.09
0.7,Ideal,E,VVS2,62.6,54,3901,5.65,5.7,3.55
1.06,Premium,F,SI2,62.6,59,3901,6.51,6.47,4.06
1.29,Premium,E,I1,58.6,60,3901,7.18,7.12,4.19
0.9,Very Good,E,SI2,62.6,58,3902,6.1,6.16,3.84
0.9,Very Good,E,SI2,61.1,58,3902,6.12,6.26,3.78
1.04,Premium,H,SI1,60,58,3902,6.59,6.52,3.93
0.9,Good,H,VS2,64.1,56,3902,6,6.05,3.86
0.72,Very Good,E,VVS1,61.2,58,3903,5.75,5.79,3.53
1.03,Very Good,F,SI2,60.2,55,3903,6.53,6.59,3.95
1.01,Good,H,SI2,57.9,59,3903,6.64,6.59,3.83
1.01,Premium,F,SI2,61.1,57,3903,6.48,6.44,3.95
0.82,Ideal,E,VS2,61.9,57,3903,6.01,5.98,3.71
1.02,Premium,G,SI2,60.7,56,3904,6.56,6.51,3.97
1.01,Very Good,J,SI2,62.2,58,3905,6.37,6.4,3.97
1.23,Ideal,H,I1,61.9,61,3905,6.85,6.79,4.22
1,Good,F,SI2,63.7,57,3906,6.32,6.36,4.04
1,Very Good,F,SI2,62.4,56,3906,6.31,6.35,3.95
1,Very Good,F,SI2,61.9,59,3906,6.39,6.44,3.97
1.01,Very Good,J,SI2,62.8,59,3906,6.34,6.37,3.99
0.91,Ideal,I,VS1,62.1,57,3906,6.2,6.23,3.86
1,Good,G,SI2,64.2,57,3906,6.25,6.27,4.02
0.71,Very Good,E,VVS1,57.9,61,3907,5.88,5.96,3.43
0.95,Premium,E,SI2,58.9,61,3907,6.45,6.41,3.79
0.9,Ideal,I,SI1,61.6,55,3908,6.2,6.22,3.82
1.24,Very Good,J,SI2,63.3,60,3908,6.83,6.75,4.29
0.9,Very Good,G,SI2,60.8,57,3909,6.2,6.24,3.78
0.71,Ideal,G,VVS2,61.5,57,3909,5.74,5.78,3.54
1.02,Good,D,SI2,63.8,59,3909,6.43,6.33,4.07
1.02,Good,D,SI2,57.5,62,3909,6.62,6.6,3.8
0.9,Very Good,G,VS2,59,58,3910,6.25,6.29,3.7
0.91,Very Good,D,SI2,60.8,58,3910,6.26,6.31,3.82
0.92,Premium,F,SI1,62,60,3910,6.26,6.19,3.86
0.77,Very Good,E,VS2,60.4,58,3911,5.94,6.01,3.61
0.91,Premium,E,SI1,61.5,60,3911,6.19,6.24,3.82
0.91,Very Good,D,SI2,63.4,59,3911,6.12,6.15,3.89
0.97,Premium,H,SI1,58,62,3911,6.56,6.48,3.79
1.02,Ideal,I,SI2,62.7,57,3913,6.43,6.4,4.02
0.73,Ideal,G,VVS1,61.6,56,3913,5.76,5.79,3.56
0.8,Ideal,F,VS2,61.3,55,3913,5.98,6,3.67
0.81,Ideal,E,SI1,61.9,55,3913,5.98,6.01,3.71
1.18,Premium,J,VS2,62.8,59,3913,6.78,6.69,4.23
1.39,Very Good,I,I1,62.6,57,3914,7.1,7.15,4.46
1.04,Premium,E,SI2,61.6,58,3914,6.52,6.45,3.99
1.02,Ideal,H,I1,62.1,56,3915,6.4,6.45,3.99
0.66,Ideal,D,VVS2,61.3,57,3915,5.59,5.63,3.44
0.94,Ideal,E,SI2,61.1,55,3915,6.29,6.34,3.86
1,Premium,H,SI1,62.9,60,3915,6.36,6.32,3.99
0.92,Premium,H,VS2,59.6,59,3916,6.32,6.29,3.76
1.01,Fair,E,SI2,57.9,57,3916,6.51,6.55,3.78
1.11,Good,J,SI1,63.6,58,3916,6.57,6.48,4.15
0.92,Good,D,SI2,63.9,55,3916,6.14,6.09,3.91
0.92,Premium,G,SI2,59.4,60,3916,6.34,6.31,3.76
0.77,Very Good,F,VVS2,60.6,60,3917,5.89,5.92,3.58
0.9,Premium,E,SI1,60.3,60,3917,6.27,6.2,3.76
1.1,Good,F,SI2,63.7,58,3918,6.48,6.45,4.12
0.9,Good,G,VS2,62.9,62,3918,6.02,6.06,3.8
0.9,Very Good,D,SI2,63.5,58,3918,6.08,6.17,3.89
0.95,Ideal,I,SI2,61.2,56,3918,6.33,6.37,3.89
1.1,Premium,F,SI2,62.1,56,3918,6.68,6.56,4.12
1,Premium,I,VS2,62.7,62,3918,6.32,6.27,3.95
0.9,Very Good,G,SI1,62.6,60,3919,6.09,6.14,3.83
0.9,Very Good,H,VS2,63.1,60,3919,6.12,6.08,3.85
0.9,Good,H,VS2,64,58,3919,6.11,6.07,3.9
0.9,Premium,H,VS2,62.3,58,3919,6.18,6.09,3.82
1,Premium,H,SI2,60.2,61,3920,6.48,6.44,3.89
1.01,Premium,F,SI1,62.8,59,3920,6.4,6.36,4.01
0.92,Very Good,F,SI1,63.8,56,3920,6.12,6.17,3.92
1,Fair,I,SI1,56.4,61,3920,6.58,6.55,3.7
1,Good,I,SI1,62.9,64,3920,6.27,6.23,3.93
1,Very Good,G,SI2,63.3,56,3920,6.38,6.29,4.01
1,Premium,H,SI2,61.3,58,3920,6.45,6.41,3.94
1,Premium,H,SI2,61.2,59,3920,6.42,6.38,3.92
1,Very Good,H,SI2,63.4,61,3920,6.33,6.29,4
1,Good,I,SI1,63.8,58,3920,6.32,6.28,4.02
1,Good,J,VS1,58.1,64,3920,6.63,6.51,3.82
1,Good,I,SI1,63.7,64,3920,6.33,6.27,4.01
1,Premium,F,SI2,61.5,58,3920,6.41,6.38,3.93
0.7,Very Good,D,VVS1,61.5,63,3920,5.78,5.64,3.51
1,Premium,J,SI1,58.7,58,3920,6.55,6.51,3.83
0.51,Fair,F,VVS2,65.4,60,3920,4.98,4.9,3.23
0.91,Premium,H,VS2,59.6,60,3921,6.25,6.29,3.74
0.91,Good,H,VS2,63.1,59,3921,6.13,6.16,3.88
1.03,Ideal,J,SI1,61.9,56,3921,6.45,6.5,4.01
0.9,Good,G,SI1,60.2,63,3921,6.16,6.2,3.72
0.88,Premium,F,VS1,60.7,55,3921,6.28,6.22,3.79
0.74,Ideal,G,VVS2,61.7,55,3922,5.8,5.83,3.59
1.03,Ideal,J,SI1,62.6,57,3922,6.45,6.43,4.03
0.78,Very Good,D,VS1,61.5,57,3923,5.92,5.95,3.65
1.01,Premium,G,SI2,63,59,3923,6.38,6.32,4
0.81,Ideal,G,VS1,61.6,56,3923,5.99,6.02,3.7
1.01,Good,G,SI2,63.7,58,3923,6.35,6.31,4.03
0.92,Fair,H,VS1,56,60,3924,6.53,6.51,3.65
0.91,Very Good,H,VS2,63.7,57,3924,6.1,6.12,3.89
0.9,Premium,E,SI2,60.4,59,3924,6.21,6.24,3.76
0.85,Ideal,E,VS2,59.3,57,3924,6.19,6.22,3.68
0.9,Very Good,E,SI2,61.6,59,3924,6.18,6.26,3.83
1.04,Very Good,J,SI2,63.2,58.6,3924,6.35,6.39,4.03
0.91,Good,F,SI1,63.7,58,3924,6.17,6.1,3.91
0.91,Good,F,SI1,63.7,58,3924,6.09,6.02,3.86
1.03,Ideal,I,SI2,62.2,57,3925,6.46,6.5,4.03
1.18,Premium,I,SI2,62.9,58,3925,6.77,6.7,4.24
1.01,Ideal,J,SI1,62.8,57,3926,6.4,6.44,4.03
1.01,Good,H,SI2,65.7,60,3926,6.17,6.19,4.06
1.02,Very Good,I,SI1,60.4,58,3927,6.52,6.56,3.95
1.02,Ideal,H,SI2,61.6,56,3927,6.47,6.51,4
1.02,Very Good,H,SI2,62.4,59,3927,6.37,6.42,3.99
1.02,Very Good,I,SI1,62.9,58,3927,6.36,6.42,4.02
0.76,Ideal,G,VVS2,62,56,3927,5.86,5.88,3.64
1.01,Premium,E,SI2,59.4,59,3928,6.51,6.49,3.86
1.03,Good,G,SI2,63.7,60,3929,6.28,6.35,4.02
1,Ideal,J,SI1,59.2,62,3929,6.47,6.5,3.84
0.8,Ideal,E,VS2,60.9,57,3930,6.01,6.05,3.67
0.9,Fair,F,VS2,64.7,54,3931,6.09,6.03,3.92
0.9,Premium,I,VVS2,58.3,60,3931,6.32,6.28,3.67
0.9,Good,G,SI1,57.8,58,3931,6.42,6.38,3.7
0.9,Ideal,G,SI1,61.6,57,3931,6.24,6.17,3.82
0.9,Fair,D,VS2,57.5,66,3931,6.3,6.25,3.61
1.04,Ideal,J,SI1,61.1,57,3931,6.57,6.52,4
0.9,Premium,G,SI1,61,59,3931,6.29,6.17,3.8
0.9,Ideal,G,SI1,62.2,56,3931,6.2,6.14,3.84
1.08,Premium,F,SI2,59.9,58,3931,6.75,6.66,4.01
1.2,Ideal,I,SI2,62.5,56,3931,6.8,6.7,4.22
1.01,Good,D,SI2,64,59,3932,6.28,6.34,4.04
0.92,Premium,I,VVS1,62.4,59,3932,6.17,6.14,3.84
1.06,Ideal,J,SI2,61.3,57,3932,6.55,6.6,4.03
0.9,Premium,H,VS2,62.6,58,3933,6.14,6.19,3.86
0.93,Very Good,G,SI1,62.5,57.8,3933,6.15,6.28,3.87
0.83,Ideal,D,SI1,61.5,53,3933,6.09,6.07,3.74
0.9,Good,E,SI1,60.8,65,3933,6.14,6.17,3.74
0.81,Ideal,F,VS1,61.5,55,3933,6.01,5.96,3.68
0.81,Ideal,E,SI1,61.9,56,3935,5.97,6.02,3.71
1.06,Ideal,G,SI2,62.3,55,3936,6.54,6.49,4.06
0.91,Very Good,F,SI1,61.4,58,3936,6.19,6.23,3.81
0.91,Very Good,E,SI2,62.4,58,3936,6.11,6.14,3.82
0.9,Premium,F,SI1,61.7,62,3936,6.19,6.13,3.8
0.84,Ideal,G,VS2,62,55,3936,6.07,6.09,3.77
0.92,Good,D,SI2,59,58,3936,6.31,6.36,3.74
1.02,Ideal,J,VVS2,62.1,57,3936,6.46,6.43,4
0.71,Premium,E,VVS1,61.8,56,3936,5.71,5.68,3.52
0.73,Ideal,D,VS1,60.9,55,3937,5.83,5.86,3.56
0.93,Premium,H,VS2,60.3,61,3937,6.39,6.25,3.81
0.94,Very Good,F,SI2,62.6,57,3938,6.25,6.27,3.92
1.02,Good,H,SI2,58.2,60,3940,6.49,6.57,3.8
1,Good,G,SI2,57.4,60,3941,6.63,6.53,3.78
1,Good,G,SI2,64,55,3941,6.3,6.26,4.02
0.93,Ideal,F,SI2,61.9,57,3941,6.21,6.25,3.86
0.92,Ideal,E,SI2,62.1,57,3941,6.26,6.2,3.87
0.92,Premium,E,SI2,62.1,58,3941,6.22,6.18,3.85
0.92,Premium,E,SI2,61.7,59,3941,6.27,6.18,3.84
0.92,Ideal,E,SI2,62.1,53,3941,6.25,6.22,3.87
0.92,Ideal,E,SI2,62.2,56,3941,6.24,6.2,3.87
1.12,Premium,E,I1,61,59,3942,6.7,6.74,4.1
1.28,Premium,I,SI1,59.4,61,3942,7.11,7.04,4.2
1.1,Ideal,E,I1,61.9,56,3942,6.63,6.59,4.09
0.91,Premium,D,SI2,61,61,3943,6.24,6.16,3.78
1.01,Premium,I,SI1,61.6,58,3944,6.45,6.51,3.99
0.9,Fair,D,SI1,66.1,55,3945,5.98,5.92,3.93
1.01,Ideal,F,SI2,62.7,57,3945,6.37,6.43,4.01
1.01,Very Good,F,SI2,60.8,63,3945,6.32,6.38,3.86
1.01,Very Good,F,SI2,62.5,61,3945,6.33,6.37,3.97
0.9,Very Good,G,SI1,62.9,56,3945,6.11,6.17,3.86
0.96,Ideal,G,SI2,62,58,3945,6.3,6.34,3.92
0.9,Good,E,SI1,62.6,62,3945,6.15,6.18,3.86
1.03,Premium,H,SI1,61.8,58,3945,6.47,6.41,3.98
1.12,Ideal,G,I1,60.3,57,3945,6.8,6.73,4.08
0.9,Good,I,VVS2,62.9,61,3946,6.1,6.14,3.85
0.93,Good,I,VS2,58.2,60,3946,6.41,6.48,3.75
1.02,Very Good,E,SI2,63.6,59,3947,6.23,6.28,3.98
0.72,Ideal,E,VS1,61.1,57,3947,5.78,5.81,3.54
0.74,Very Good,F,VVS2,61.5,55.1,3948,5.82,5.85,3.59
0.97,Premium,I,VS2,62.2,56,3948,6.34,6.29,3.94
0.76,Ideal,H,VS2,62,56,3948,5.86,5.88,3.64
0.9,Good,E,VS2,63.7,58,3948,6.06,6.09,3.87
1.01,Good,G,SI2,61.1,62,3948,6.38,6.48,3.93
0.91,Premium,D,SI2,62.4,56,3949,6.2,6.17,3.86
0.7,Ideal,G,IF,61.3,56,3949,5.72,5.73,3.51
1,Good,G,SI2,63.8,56,3949,6.23,6.31,4
0.9,Good,F,SI1,63.1,58,3950,6.12,6.18,3.88
0.9,Very Good,F,SI1,62.5,62,3950,6.08,6.11,3.81
0.9,Very Good,F,SI1,62.6,60,3950,6.1,6.14,3.83
0.9,Good,F,SI1,63.3,60,3950,6.09,6.11,3.86
0.9,Very Good,F,SI1,62,59,3950,6.13,6.17,3.81
0.9,Very Good,F,SI1,62.6,57,3950,6.16,6.2,3.87
0.9,Good,F,SI1,57.5,60,3950,6.33,6.37,3.65
0.9,Good,F,SI1,63.6,59,3950,6.07,6.12,3.88
0.9,Very Good,F,SI1,61.7,60,3950,6.16,6.22,3.82
0.9,Good,F,SI1,63.2,61,3950,6.09,6.13,3.86
0.9,Ideal,F,SI1,61.8,57,3950,6.19,6.21,3.83
0.9,Very Good,F,SI1,60.4,60,3950,6.23,6.29,3.78
0.9,Good,F,SI1,57.6,60,3950,6.34,6.37,3.66
1.14,Premium,D,I1,61.8,59,3950,6.62,6.74,4.13
0.9,Very Good,F,SI1,63.7,58,3950,6.05,6.1,3.87
0.9,Very Good,F,SI1,63.4,58,3950,6.09,6.12,3.87
0.9,Very Good,F,SI1,62.5,60,3950,6.05,6.11,3.8
0.9,Very Good,F,SI1,62.3,55,3950,6.14,6.18,3.84
0.76,Good,D,VS1,63.7,56,3950,5.81,5.77,3.69
0.9,Premium,F,SI2,59.7,60,3951,6.25,6.22,3.72
0.72,Premium,E,IF,61.3,60,3951,5.74,5.71,3.51
1.2,Premium,J,SI2,59.6,62,3951,6.95,6.9,4.13
1.12,Good,J,SI1,63.7,61,3951,6.54,6.5,4.15
0.9,Premium,F,SI2,60.6,59,3951,6.27,6.21,3.78
1,Fair,I,VS1,64,49,3951,6.43,6.39,4.1
1.05,Premium,E,SI2,60.9,61,3951,6.61,6.55,4.01
0.96,Very Good,G,SI2,63.1,56,3951,6.29,6.22,3.95
0.72,Very Good,F,VVS2,59.2,63,3952,5.77,5.86,3.44
1.13,Good,F,SI2,64,58,3952,6.52,6.58,4.19
1.01,Very Good,J,SI1,58.9,59,3952,6.56,6.62,3.88
0.71,Premium,D,VVS1,58.8,58,3952,5.89,5.81,3.44
0.8,Ideal,F,VS1,61.6,54,3953,5.95,5.99,3.68
1.04,Ideal,I,SI2,62.4,57,3953,6.48,6.46,4.04
0.8,Very Good,F,VS2,61.3,55,3954,5.93,6.01,3.66
0.9,Very Good,F,SI1,62.5,59,3954,6.06,6.13,3.81
0.91,Ideal,I,VS1,62.4,57,3954,6.17,6.21,3.86
0.9,Good,F,SI1,64.7,54,3954,6.04,6.08,3.92
1.16,Ideal,J,SI1,60.7,57,3955,6.77,6.83,4.13
0.71,Ideal,G,VVS1,61.1,57,3955,5.76,5.8,3.53
1.11,Very Good,I,SI2,61.2,61,3956,6.65,6.69,4.08
1.03,Premium,J,VS1,61.8,58,3957,6.51,6.41,3.99
0.91,Premium,D,SI2,61.2,58,3958,6.21,6.25,3.81
1.06,Very Good,H,SI2,62.6,58,3958,6.46,6.52,4.06
0.9,Ideal,E,SI2,61.9,54,3958,6.23,6.18,3.84
1.01,Premium,H,SI2,62.8,61,3959,6.33,6.25,3.95
1.01,Premium,H,SI2,60.6,61,3959,6.45,6.38,3.89
1.01,Good,H,SI2,63.9,58,3959,6.35,6.32,4.05
1.01,Premium,H,SI2,62.5,58,3959,6.39,6.35,3.98
1.01,Premium,I,SI1,62.7,59,3959,6.43,6.36,4.01
1.01,Good,D,SI2,63.6,61,3959,6.35,6.33,4.03
1.01,Very Good,H,SI2,63.4,55,3959,6.35,6.29,4.01
1.01,Good,I,SI1,63.6,55,3959,6.39,6.31,4.04
0.97,Very Good,G,SI2,59.8,58,3960,6.38,6.42,3.83
1.04,Premium,I,SI2,61.6,56,3960,6.56,6.49,4.02
0.91,Very Good,G,SI1,63.6,57,3961,6.09,6.12,3.88
0.75,Ideal,D,VS1,62.4,56,3961,5.79,5.84,3.63
0.91,Premium,E,SI1,61.9,61,3961,6.14,6.11,3.79
1.09,Premium,D,SI2,61.9,61,3961,6.58,6.54,4.06
0.88,Ideal,D,SI2,62.2,56,3962,6.12,6.16,3.82
0.91,Very Good,F,SI1,62.7,56,3963,6.11,6.17,3.85
0.94,Very Good,E,SI2,62,60,3963,6.19,6.22,3.85
0.91,Premium,H,VS2,62.3,57,3963,6.22,6.13,3.85
0.9,Very Good,H,VS1,62.6,55,3964,6.14,6.19,3.86
0.9,Very Good,H,VS1,62.7,56,3964,6.15,6.2,3.87
1.21,Very Good,I,SI2,63.4,62,3964,6.84,6.69,4.31
1,Fair,G,SI1,68.3,61,3965,6.02,5.93,4.08
1.18,Very Good,E,I1,63.3,57,3965,6.7,6.64,4.22
1.18,Premium,E,I1,62.5,58,3965,6.75,6.62,4.18
1,Good,D,SI2,64.3,60,3965,6.22,6.19,3.99
1,Good,D,SI2,64.3,53,3965,6.34,6.29,4.06
1,Fair,G,SI1,65.2,62,3965,6.19,6.08,4.01
1,Very Good,D,SI2,63.2,56,3965,6.38,6.33,4.02
1,Very Good,D,SI2,60.8,63,3965,6.41,6.36,3.88
1,Good,G,SI1,62.2,65,3965,6.28,6.22,3.89
1,Fair,D,SI2,65,56,3965,6.27,6.23,4.06
0.25,Very Good,E,VVS1,60,56,575,4.1,4.14,2.47
0.25,Very Good,E,VVS1,60.2,59,575,4.11,4.13,2.48
0.33,Very Good,I,VS1,59.9,62,575,4.48,4.57,2.71
0.3,Very Good,E,VS2,62.1,62,575,4.21,4.26,2.63
0.32,Ideal,I,VVS1,62.2,53,575,4.42,4.45,2.76
0.32,Ideal,I,VVS1,61.4,56,575,4.42,4.44,2.72
0.25,Ideal,F,VVS1,60.9,57,575,4.06,4.09,2.48
0.33,Ideal,D,SI1,62.2,54,575,4.45,4.46,2.77
0.25,Good,E,VVS1,61.3,61,575,4.04,4.08,2.49
0.37,Good,F,SI1,63.7,55,575,4.55,4.59,2.91
0.32,Very Good,G,VS2,61.9,56,576,4.36,4.39,2.71
0.32,Ideal,H,SI1,60.6,57,576,4.44,4.4,2.68
0.32,Premium,E,SI2,62.4,58,576,4.4,4.35,2.73
0.32,Ideal,E,SI2,62,55,576,4.41,4.36,2.72
0.32,Premium,E,SI2,59.7,60,576,4.45,4.43,2.65
0.32,Ideal,E,SI2,62.7,57,576,4.37,4.34,2.73
0.32,Ideal,I,VS2,60.3,56,576,4.45,4.44,2.68
0.32,Ideal,I,VS2,61.5,56,576,4.41,4.4,2.71
0.32,Ideal,I,VS2,62.2,57,576,4.42,4.39,2.74
0.32,Premium,I,VS2,62.6,58,576,4.42,4.37,2.75
0.32,Ideal,I,VS2,62.5,55,576,4.39,4.38,2.74
0.32,Ideal,I,VS2,63,56,576,4.42,4.38,2.77
0.32,Ideal,I,VS2,61.3,56,576,4.43,4.38,2.7
0.32,Premium,I,VS2,61.1,57,576,4.42,4.39,2.69
0.32,Ideal,I,VS2,62.5,57,576,4.39,4.35,2.73
0.32,Ideal,I,VS2,62,57,576,4.41,4.36,2.72
0.32,Ideal,I,VS2,61.6,56,576,4.39,4.37,2.7
0.32,Ideal,I,VS2,62.5,55,576,4.4,4.37,2.74
0.32,Ideal,I,VS2,62.9,57,576,4.4,4.37,2.76
0.32,Premium,I,VS2,62.2,59,576,4.37,4.35,2.71
1,Fair,D,SI2,66.5,59,3965,6.24,6.21,4.14
1.2,Premium,H,SI2,62.1,57,3965,6.84,6.69,4.21
0.77,Very Good,G,VVS1,62.7,54,3966,5.84,5.89,3.67
1.01,Very Good,G,SI2,61.8,58,3966,6.36,6.39,3.94
1.01,Very Good,G,SI2,62.1,61,3966,6.27,6.38,3.93
1.01,Very Good,G,SI2,63,58,3966,6.29,6.34,3.98
0.82,Ideal,E,SI1,61.9,56,3966,6,6.02,3.72
0.77,Premium,D,VS1,59.4,59,3966,6,5.96,3.55
0.8,Premium,E,VS1,61.7,58,3967,5.98,5.95,3.68
1.13,Very Good,E,SI2,59.4,62,3967,6.78,6.83,4.04
0.92,Very Good,F,SI1,63.5,58,3967,6.16,6.12,3.9
0.92,Premium,F,SI1,61.8,59,3967,6.25,6.21,3.85
0.9,Ideal,H,SI1,61.1,58,3967,6.24,6.19,3.79
1.09,Premium,I,SI1,61.6,61,3968,6.64,6.57,4.07
0.91,Ideal,E,SI2,61.5,56,3968,6.2,6.23,3.82
0.91,Ideal,E,SI2,60.8,56,3968,6.25,6.29,3.81
0.91,Very Good,E,SI2,62.8,59,3968,6.13,6.16,3.86
0.62,Ideal,D,VVS1,62.2,54,3968,5.45,5.48,3.4
1.09,Premium,I,SI1,61.9,58,3968,6.65,6.58,4.1
1.02,Very Good,D,SI2,61.3,62,3971,6.42,6.46,3.95
1.01,Good,H,SI2,63.5,60,3971,6.23,6.31,3.98
1.01,Premium,I,SI2,62.1,59,3971,6.42,6.39,3.98
1.01,Premium,I,SI2,59.4,57,3971,6.59,6.57,3.91
0.8,Ideal,E,VS2,61.4,56,3972,5.97,6.02,3.68
0.8,Ideal,H,IF,62.4,54,3972,5.93,5.99,3.72
0.9,Good,I,VVS1,62.4,61,3972,6.05,6.09,3.79
1.02,Fair,H,SI1,64.6,55,3972,6.33,6.28,4.07
0.91,Good,E,SI1,64,61,3973,6.01,6.06,3.86
0.7,Very Good,F,VVS2,61.3,59,3974,5.69,5.73,3.5
1.02,Very Good,F,SI2,59.6,59,3974,6.51,6.54,3.89
1.03,Premium,F,SI2,60.2,55,3974,6.59,6.53,3.95
1,Very Good,H,SI2,63.1,58,3975,6.29,6.36,3.99
0.9,Very Good,D,SI2,62.2,57,3975,6.11,6.15,3.81
0.9,Very Good,D,SI2,61.2,54,3975,6.25,6.29,3.84
0.81,Ideal,E,VS2,61.5,57,3975,6,6.06,3.71
1.06,Ideal,I,SI2,62.4,57,3975,6.48,6.54,4.06
0.96,Good,H,SI2,61.6,59,3975,6.24,6.29,3.86
1,Fair,F,SI2,59.3,66,3975,6.44,6.51,3.84
0.91,Premium,G,SI1,62.2,59,3975,6.19,6.15,3.84
0.91,Premium,G,SI1,62.6,58,3975,6.17,6.14,3.85
0.91,Premium,G,SI1,62.8,58,3975,6.18,6.15,3.87
0.91,Premium,G,SI1,61.8,60,3975,6.21,6.18,3.83
0.9,Good,G,VS2,63.2,58,3976,6.09,6.16,3.87
1.23,Good,D,I1,63.7,58,3977,6.72,6.79,4.3
0.97,Very Good,F,SI2,59.6,59,3977,6.41,6.47,3.84
0.9,Very Good,F,SI2,62,59,3977,6.2,6.1,3.81
0.9,Good,G,VS1,64.5,57,3977,6.01,6.08,3.9
1,Good,F,SI2,63.7,57,3977,6.36,6.32,4.04
1,Premium,F,SI2,62.4,56,3977,6.35,6.31,3.95
1.06,Ideal,E,SI2,60.7,57,3977,6.61,6.59,4
1.11,Premium,I,SI1,61.9,58,3978,6.63,6.61,4.1
0.82,Ideal,E,SI1,61.8,53,3979,6.02,6.05,3.73
0.91,Good,H,VS2,62.7,62,3979,6.11,6.21,3.86
1.02,Very Good,I,SI2,62.8,56,3980,6.42,6.38,4.02
0.77,Ideal,D,VS2,61.6,55,3980,5.88,5.91,3.63
0.73,Ideal,D,VS2,61.5,55,3980,5.79,5.82,3.57
1.08,Good,J,VS2,64.3,58,3980,6.46,6.44,4.15
1.08,Fair,J,VS2,65.1,54,3980,6.47,6.44,4.2
0.81,Very Good,G,VVS2,63.5,55,3981,5.9,5.94,3.76
1.01,Premium,G,SI2,60.6,59,3981,6.49,6.41,3.91
1.01,Ideal,J,SI2,59,59,3982,6.57,6.61,3.89
1.02,Ideal,I,SI1,61.9,55,3983,6.43,6.46,3.99
1.02,Very Good,F,SI2,61.1,62,3984,6.49,6.54,3.98
0.83,Very Good,D,VS1,61.3,57.2,3984,6.02,6.11,3.72
0.9,Premium,G,SI1,62.2,60,3984,6.14,6.07,3.8
1.21,Fair,J,SI2,64.6,59,3984,6.74,6.64,4.32
0.95,Premium,H,SI1,62.9,58,3984,6.26,6.21,3.92
0.93,Premium,E,SI2,62.9,57,3984,6.25,6.19,3.91
1.04,Ideal,H,SI1,61.3,55,3984,6.49,6.44,3.96
1.17,Premium,F,I1,62.2,58,3984,6.76,6.72,4.19
1.21,Premium,J,SI2,60.8,58,3984,6.93,6.88,4.19
0.93,Ideal,H,SI1,61.6,54,3985,6.29,6.33,3.89
1.39,Premium,I,I1,62.6,57,3985,7.15,7.1,4.46
0.91,Ideal,G,SI2,61.6,56,3985,6.24,6.22,3.84
0.92,Very Good,G,SI1,62.5,60,3986,6.19,6.26,3.89
0.91,Very Good,E,SI2,60.5,59,3986,6.26,6.34,3.81
1.13,Very Good,I,SI2,59.1,63,3987,6.85,6.82,4.04
1.13,Premium,J,SI2,62.4,59,3987,6.68,6.62,4.15
1.13,Premium,I,SI2,62.2,59,3987,6.67,6.61,4.13
1.02,Ideal,H,I1,62.1,56,3987,6.45,6.4,3.99
0.93,Ideal,H,SI1,62.8,56,3988,6.19,6.27,3.91
0.9,Premium,H,VS2,62.1,58,3989,6.16,6.2,3.84
0.9,Good,H,VS2,63.1,60,3989,6.08,6.12,3.85
0.9,Very Good,H,VS2,62.6,58,3989,6.14,6.22,3.87
0.9,Very Good,H,VS2,62.1,57,3989,6.16,6.23,3.85
0.9,Good,H,VS2,61.9,58,3989,6.14,6.18,3.81
0.9,Very Good,D,SI2,59.5,58,3989,6.28,6.33,3.75
0.96,Premium,D,SI2,60,60,3989,6.47,6.43,3.87
1.06,Premium,E,SI2,60,59,3989,6.64,6.59,3.97
1.05,Good,F,SI2,63.6,59,3989,6.4,6.36,4.06
0.7,Ideal,E,VVS2,62.3,53.7,3990,5.67,5.72,3.55
0.93,Ideal,E,SI2,62.1,55,3990,6.27,6.29,3.9
0.9,Ideal,D,SI2,62.7,57,3990,6.1,6.15,3.84
0.93,Ideal,D,SI2,62.5,55,3990,6.2,6.24,3.89
0.83,Ideal,D,SI1,61.3,56,3990,6.04,6.06,3.71
0.9,Good,G,VS2,62,63,3990,6.06,6.13,3.78
1.25,Fair,H,SI2,64.4,58,3990,6.82,6.71,4.36
0.73,Ideal,F,VVS1,61.8,54,3990,5.8,5.78,3.58
0.91,Ideal,G,SI1,62.6,56,3991,6.27,6.3,3.81
1,Very Good,J,SI2,62.8,54,3991,6.35,6.43,4.01
1,Very Good,H,SI2,64.1,54,3991,6.3,6.33,4.05
0.91,Very Good,F,SI1,63.7,58,3991,6.08,6.11,3.88
1.01,Fair,E,SI2,56.8,66,3991,6.63,6.58,3.75
1,Good,H,SI2,63.2,60,3991,6.27,6.33,3.98
1,Good,H,SI2,59,61,3991,6.42,6.46,3.8
1.01,Fair,F,SI1,66.8,60,3991,6.21,6.13,4.12
1.01,Ideal,I,VS1,62.8,57,3991,6.42,6.38,4.02
1,Premium,H,SI1,61.8,60,3991,6.37,6.31,3.92
1.08,Premium,F,SI2,62.7,58,3992,6.53,6.49,4.08
0.9,Very Good,I,VS2,59.3,59,3992,6.27,6.3,3.73
0.9,Fair,F,VS2,58.9,67,3992,6.18,6.17,3.64
0.9,Premium,F,SI1,62.8,59,3992,6.16,6.13,3.86
0.9,Very Good,F,SI1,59.6,63,3992,6.24,6.17,3.7
0.9,Good,F,SI1,63.9,59,3992,6.09,6.06,3.88
0.9,Very Good,F,SI1,63.4,62,3992,6.05,6,3.82
0.9,Ideal,F,SI1,62.4,56,3992,6.22,6.18,3.87
0.9,Premium,F,SI1,61.6,60,3992,6.19,6.14,3.8
0.81,Very Good,F,VVS2,63.1,56,3992,5.99,5.9,3.75
0.9,Good,F,SI1,63.9,58,3992,6.08,6.03,3.87
0.91,Good,F,SI1,63.7,58,3993,6.1,6.17,3.91
0.74,Very Good,E,VVS1,63.5,58,3993,5.78,5.72,3.65
0.97,Premium,F,SI2,61.9,58,3993,6.35,6.31,3.92
0.97,Premium,F,SI2,59.9,59,3993,6.45,6.38,3.84
0.91,Very Good,I,VS2,61.5,58,3994,6.2,6.23,3.82
0.95,Ideal,H,SI2,59.3,59,3994,6.42,6.46,3.82
0.91,Good,F,SI1,64.4,60,3994,6.05,6.1,3.91
1.06,Very Good,H,SI2,62.6,60,3996,6.43,6.47,4.04
0.77,Ideal,H,VS2,61.3,56,3996,5.91,5.94,3.63
1.02,Premium,F,SI2,58,60,3996,6.7,6.64,3.87
0.85,Very Good,E,VS2,63.6,56,3997,5.97,6.01,3.81
1.01,Ideal,J,SI2,61.4,56,3997,6.44,6.47,3.97
0.92,Ideal,D,SI2,60.3,56,3997,6.32,6.35,3.82
0.9,Very Good,D,SI1,61.1,63,3997,6.21,6.17,3.78
0.9,Very Good,D,SI1,62.4,63,3997,6.18,6.15,3.85
0.9,Very Good,D,SI1,62.5,63,3997,6.14,6.11,3.83
0.9,Premium,D,SI1,62.8,59,3997,6.1,6.06,3.82
0.9,Very Good,D,SI1,63.2,62,3997,6.13,6.06,3.85
1.03,Ideal,I,SI2,62.2,57,3997,6.5,6.46,4.03
1.01,Very Good,I,SI2,63.7,57,3998,6.32,6.36,4.04
1.01,Very Good,J,SI1,62.8,57,3998,6.37,6.41,4.01
0.91,Very Good,H,SI1,59.2,60,3998,6.3,6.41,3.76
1.02,Premium,H,SI2,62.4,59,3998,6.42,6.37,3.99
1.02,Good,I,SI1,64.2,53,3998,6.3,6.26,4.03
1,Premium,G,SI2,59,62,3998,6.52,6.47,3.83
1.19,Premium,H,SI2,61.5,58,3998,6.88,6.78,4.2
1.02,Very Good,H,SI2,63.5,60,3998,6.33,6.24,3.99
1,Premium,G,SI2,62.2,57,3998,6.29,6.25,3.9
1.01,Good,H,SI2,63.7,55,3999,6.32,6.37,4.04
1.01,Premium,H,SI2,59.4,59,3999,6.53,6.56,3.89
1.01,Ideal,I,SI1,60.6,57,3999,6.51,6.56,3.96
0.7,Ideal,E,VS1,61.2,56,4000,5.72,5.75,3.51
1.07,Very Good,I,SI1,58.4,60,4001,6.68,6.78,3.93
0.9,Ideal,G,SI1,61.6,57,4001,6.17,6.24,3.82
0.9,Ideal,H,SI2,62.1,55,4001,6.17,6.2,3.84
1.03,Good,G,SI2,63.7,60,4001,6.35,6.28,4.02
0.8,Very Good,G,VVS2,62.5,56,4002,5.95,5.98,3.73
0.99,Very Good,J,SI1,60.3,57,4002,6.44,6.49,3.9
0.7,Very Good,D,VS1,59.3,55,4003,5.86,5.83,3.47
0.89,Very Good,E,SI1,62.7,57,4003,6.08,6.13,3.83
1.01,Ideal,G,SI1,62.9,57,4004,6.37,6.3,3.98
1.01,Very Good,F,SI2,60.7,57,4004,6.42,6.46,3.91
1.01,Good,F,SI2,63.1,58,4004,6.34,6.38,4.01
1,Good,E,SI2,60.5,61,4004,6.31,6.38,3.84
1,Very Good,E,SI2,58.8,62,4004,6.5,6.53,3.83
1,Very Good,E,SI2,59.5,63,4004,6.41,6.47,3.83
1,Very Good,E,SI2,59.1,61,4004,6.39,6.44,3.79
1.02,Very Good,H,SI2,58.3,61,4004,6.57,6.63,3.85
1.02,Very Good,H,SI2,63.5,58,4004,6.34,6.38,4.04
0.9,Very Good,F,SI1,63.3,55,4004,6.05,6.08,3.84
0.9,Good,F,SI1,58.8,60,4004,6.22,6.26,3.67
1.01,Fair,G,SI1,64.2,59,4004,6.31,6.28,4.04
1.01,Good,D,SI2,64,59,4004,6.34,6.28,4.04
1.1,Premium,H,SI2,59.5,57,4004,6.81,6.74,4.03
1.1,Premium,H,SI2,62.8,55,4004,6.68,6.57,4.16
0.75,Very Good,E,VVS2,62.8,57,4005,5.74,5.78,3.62
0.9,Good,F,SI1,62.6,58,4006,6.1,6.14,3.83
0.9,Ideal,H,VS2,62.6,57,4007,6.19,6.15,3.86
0.75,Ideal,D,VS1,62,58,4007,5.77,5.84,3.6
0.71,Ideal,H,IF,61.2,56,4007,5.76,5.86,3.54
1.06,Premium,I,SI2,58.4,58,4007,6.7,6.65,3.9
0.9,Premium,D,SI2,62.9,56,4007,6.19,6.09,3.86
0.9,Ideal,D,SI2,62.4,56,4007,6.24,6.16,3.87
1.01,Premium,F,SI2,61.8,59,4008,6.41,6.31,3.93
0.91,Very Good,I,VS2,59.9,58,4008,6.35,6.27,3.78
1.03,Ideal,J,SI2,62.1,54,4008,6.47,6.51,4.03
0.9,Ideal,G,SI1,60.8,58,4008,6.2,6.29,3.8
0.9,Ideal,G,SI1,61.9,59,4008,6.16,6.19,3.82
0.9,Ideal,G,SI1,61.6,58,4008,6.16,6.21,3.81
0.9,Good,G,SI1,62.5,62,4008,6.04,6.09,3.79
0.9,Very Good,F,SI1,63,61,4009,6.09,6.14,3.85
0.83,Ideal,F,SI1,61.8,55,4009,6.01,6.06,3.73
1.05,Very Good,E,SI2,61.7,59,4010,6.52,6.58,4.04
1.17,Good,G,SI2,63.6,62,4010,6.65,6.55,4.2
0.93,Premium,F,SI1,58.8,60,4010,6.49,6.37,3.78
0.93,Premium,F,SI1,62.5,58,4010,6.22,6.19,3.88
0.92,Very Good,E,SI2,62.1,58,4011,6.18,6.22,3.85
0.92,Premium,E,SI2,61.7,59,4011,6.18,6.27,3.84
0.92,Ideal,E,SI2,62.2,56,4011,6.2,6.24,3.87
0.92,Ideal,E,SI2,62.1,57,4011,6.2,6.26,3.87
0.92,Ideal,E,SI2,62.1,53,4011,6.22,6.25,3.87
0.9,Ideal,I,VVS2,61.9,55,4011,6.21,6.23,3.85
1.01,Good,F,SI2,58.3,60,4011,6.64,6.66,3.88
1.01,Good,F,SI2,59.4,60,4011,6.44,6.49,3.84
1.27,Premium,J,VS2,62.8,58,4011,6.96,6.92,4.36
0.91,Very Good,H,VS2,63.5,57,4012,6.12,6.16,3.9
0.87,Ideal,D,SI2,61.4,54,4012,6.15,6.2,3.79
0.74,Ideal,F,VVS1,60.9,57,4013,5.83,5.86,3.56
0.9,Good,F,SI2,61.9,59,4013,6.09,6.12,3.78
1.04,Very Good,F,SI2,63.2,58,4013,6.39,6.34,4.02
1.04,Ideal,I,VS2,62.9,56,4013,6.5,6.41,4.06
1.04,Premium,F,SI2,62.8,60,4013,6.41,6.38,4.01
0.71,Very Good,D,VVS2,61.7,58,4014,5.71,5.74,3.53
1.12,Premium,H,SI2,62.1,56,4014,6.7,6.65,4.14
1.12,Premium,E,I1,61,59,4014,6.74,6.7,4.1
1,Premium,E,SI2,60.4,62,4014,6.52,6.42,3.91
1,Very Good,H,SI2,63,61,4015,6.31,6.35,3.99
1,Good,I,SI1,63.2,56,4015,6.31,6.37,4.01
0.71,Ideal,G,VVS1,61.2,56,4015,5.75,5.81,3.54
0.9,Ideal,H,SI2,61,56,4016,6.23,6.29,3.82
0.9,Good,F,SI1,59.3,56,4016,6.27,6.32,3.73
1.01,Good,I,VS1,63.8,57,4016,6.31,6.23,4
1.01,Very Good,F,SI2,60.8,63,4017,6.38,6.32,3.86
1.01,Premium,F,SI2,62.5,61,4017,6.37,6.33,3.97
1.01,Ideal,F,SI2,62.7,57,4017,6.43,6.37,4.01
1.25,Premium,J,SI2,61.3,58,4018,6.98,6.95,4.27
0.97,Very Good,I,VS2,62.2,55.9,4018,6.34,6.29,3.94
1.05,Premium,G,SI2,62.7,54,4018,6.51,6.48,4.07
0.91,Premium,H,VS2,62.5,59,4018,6.19,6.09,3.84
0.97,Premium,F,SI2,58.9,58,4020,6.51,6.47,3.82
0.97,Good,H,SI1,62.1,60,4020,6.24,6.29,3.89
1.07,Ideal,G,SI2,61.1,57,4021,6.61,6.65,4.05
0.9,Very Good,H,VS1,62.5,56,4021,6.13,6.19,3.85
0.9,Very Good,H,VS1,63,62,4021,6.09,6,3.81
1.15,Very Good,J,SI2,63.6,57,4021,6.6,6.64,4.21
0.7,Ideal,F,VVS1,62.7,54,4021,5.66,5.7,3.56
0.7,Very Good,D,VVS2,62.8,60,4022,5.65,5.69,3.56
1.01,Premium,G,SI2,59.4,60,4022,6.55,6.58,3.9
0.65,Ideal,D,VVS1,61.8,57,4022,5.54,5.56,3.43
0.91,Ideal,I,VS1,61.9,56,4022,6.2,6.23,3.85
0.9,Good,G,VS2,63.6,59,4022,6.1,6.04,3.86
1.14,Premium,J,SI2,62.3,56,4022,6.73,6.66,4.17
0.9,Premium,G,VS2,61,58,4022,6.2,6.13,3.76
0.9,Premium,G,VS2,59.6,61,4022,6.25,6.2,3.71
1.14,Premium,D,I1,61.8,59,4022,6.74,6.62,4.13
1.5,Premium,H,I1,62.9,60,4022,7.31,7.22,4.57
1.5,Good,H,I1,64,56,4022,7.18,7.05,4.56
1,Premium,F,SI1,62.8,61,4022,6.37,6.25,3.96
1.01,Very Good,H,SI2,63.9,56,4023,6.29,6.38,4.05
0.83,Ideal,E,SI1,61.5,55,4024,6.05,6.08,3.73
1.23,Ideal,H,I1,61.8,56,4025,6.85,6.91,4.25
0.56,Very Good,D,IF,62.5,59,4025,5.26,5.3,3.3
1.13,Good,F,SI2,64,58,4025,6.58,6.52,4.19
1.13,Premium,F,SI2,58.3,61,4025,6.88,6.78,3.98
0.91,Premium,F,SI1,61,59,4026,6.23,6.19,3.79
0.96,Premium,H,SI1,63,58,4026,6.27,6.23,3.94
1,Good,E,SI2,64,54,4026,6.31,6.26,4.01
0.71,Ideal,E,VVS1,61.9,55,4027,5.73,5.77,3.56
0.94,Premium,E,SI2,62.4,58,4027,6.33,6.26,3.93
1.16,Ideal,J,SI1,60.7,57,4028,6.83,6.77,4.13
1.01,Good,F,SI2,61.3,62,4028,6.44,6.48,3.96
1.11,Premium,I,SI2,61.2,61,4028,6.69,6.65,4.08
1.11,Very Good,H,SI2,63.4,55,4028,6.54,6.51,4.14
1,Good,H,VS2,63.8,59,4028,6.28,6.26,4
1.11,Very Good,H,SI2,61.5,59,4029,6.56,6.61,4.05
0.71,Ideal,D,VS2,60.1,56,4029,5.77,5.83,3.48
0.71,Ideal,D,VS2,61.2,57,4029,5.72,5.76,3.51
0.71,Ideal,D,VS2,61.2,55,4029,5.74,5.78,3.53
0.71,Ideal,D,VS2,60.9,56,4029,5.76,5.79,3.52
0.71,Ideal,D,VS2,61.7,56,4029,5.71,5.74,3.53
0.91,Ideal,G,VS1,61.3,56,4029,6.28,6.21,3.83
0.71,Ideal,E,VVS2,61.2,57,4030,5.73,5.8,3.53
0.83,Ideal,F,VS1,62,57,4030,6.02,5.97,3.72
0.91,Very Good,E,SI1,61.9,61,4031,6.11,6.14,3.79
1.06,Premium,H,SI2,62.6,58,4031,6.52,6.46,4.06
1,Premium,H,SI2,61,57,4032,6.51,6.4,3.94
1,Premium,J,VS1,62.8,57,4032,6.39,6.35,4
1,Ideal,J,VS1,62.3,56,4032,6.43,6.38,3.99
1,Premium,H,SI2,61,57,4032,6.51,6.4,3.94
0.57,Very Good,D,IF,61.3,57,4032,5.33,5.41,3.29
0.9,Ideal,G,SI2,61.5,57,4032,6.19,6.23,3.82
1,Fair,E,SI2,57.3,62,4032,6.54,6.59,3.76
1,Fair,G,VS2,44,53,4032,6.31,6.24,4.12
1,Very Good,I,SI1,60.4,63,4032,6.44,6.37,3.87
1.2,Premium,H,SI2,59.8,58,4032,6.92,6.83,4.11
0.9,Premium,H,VS2,61.6,58,4032,6.26,6.18,3.83
1.01,Good,E,SI1,64.2,56,4032,6.31,6.27,4.04
1,Premium,H,SI2,62.7,59,4032,6.35,6.31,3.97
1,Good,I,VVS2,57.4,59,4032,6.61,6.53,3.77
1.5,Premium,E,I1,61.5,58,4032,7.38,7.2,4.5
0.93,Very Good,I,VS1,62.6,59,4033,6.17,6.2,3.87
0.91,Ideal,H,VS2,62.6,57,4033,6.2,6.23,3.89
1,Very Good,F,SI2,63.4,55,4033,6.3,6.38,4.02
0.9,Very Good,E,SI1,60.1,58,4034,6.25,6.29,3.77
0.9,Ideal,E,SI2,61.7,56,4034,6.21,6.26,3.85
0.9,Ideal,E,SI1,60.1,56,4034,6.3,6.35,3.8
1.03,Ideal,E,SI1,58.9,56,4035,6.61,6.57,3.88
1,Very Good,F,SI2,63.4,58,4036,6.31,6.25,3.98
0.9,Ideal,G,SI1,62.4,55,4036,6.19,6.15,3.85
1,Fair,F,SI2,59,67,4036,6.48,6.41,3.8
0.91,Premium,F,SI1,61.7,59,4036,6.21,6.17,3.82
0.32,Very Good,I,VS2,63.2,56,576,4.38,4.32,2.75
0.32,Premium,I,VS2,62.8,58,576,4.37,4.33,2.73
0.32,Ideal,I,VS2,63,57,576,4.37,4.33,2.74
0.32,Ideal,I,VS2,63,55,576,4.39,4.34,2.75
0.32,Very Good,I,VS2,63.4,55,576,4.37,4.33,2.76
0.32,Premium,H,SI1,61.9,59,576,4.41,4.38,2.72
0.32,Very Good,H,SI1,63.1,54,576,4.42,4.36,2.77
0.32,Premium,H,SI1,61.3,60,576,4.42,4.36,2.69
0.32,Premium,H,SI1,62.2,56,576,4.39,4.36,2.72
0.32,Premium,H,SI1,61.9,58,576,4.38,4.34,2.7
0.32,Very Good,H,SI1,63.1,55,576,4.37,4.34,2.75
0.32,Premium,E,SI2,61.2,58,576,4.44,4.39,2.7
0.32,Ideal,E,SI2,62.7,55,576,4.42,4.39,2.76
0.32,Premium,E,SI2,61.7,60,576,4.41,4.38,2.71
0.3,Premium,H,VS1,60,60,576,4.4,4.3,2.61
0.25,Very Good,F,VVS2,62,59,576,3.99,4.04,2.49
0.25,Very Good,F,VVS1,60.7,59,576,4.07,4.1,2.48
0.25,Premium,E,VVS1,60.7,60,576,4.09,4.11,2.49
0.25,Ideal,E,VVS1,61.2,57,576,4.08,4.12,2.51
0.25,Premium,E,VVS2,61.5,59,576,4.02,4.04,2.48
0.25,Premium,E,VVS2,62.5,59,576,4.02,4.05,2.52
0.25,Ideal,E,VVS2,62.1,57,576,4.04,4.07,2.52
0.25,Premium,E,VVS2,62,59,576,4.05,4.08,2.52
0.25,Premium,F,IF,61.1,58,576,4.08,4.1,2.5
0.25,Very Good,E,VVS1,62.9,59,576,3.99,4.02,2.52
0.25,Premium,E,VVS2,62.5,59,576,4.02,4.04,2.52
0.25,Good,E,VVS2,63.1,56,576,4,4.05,2.54
0.25,Ideal,E,VVS2,61.6,57,576,4.08,4.1,2.52
0.25,Very Good,E,VVS1,62.9,58,576,4.01,4.03,2.53
0.36,Premium,F,SI1,60.2,58,576,4.6,4.63,2.78
1.04,Premium,J,SI1,60.2,56,4036,6.61,6.54,3.96
0.77,Premium,D,VS1,59.4,59,4037,5.96,6,3.55
0.92,Premium,F,SI1,61.8,59,4037,6.21,6.25,3.85
0.92,Very Good,F,SI1,62.9,56,4037,6.2,6.24,3.91
0.92,Very Good,F,SI1,62.7,57,4037,6.14,6.2,3.87
1,Very Good,F,SI2,62.9,59,4037,6.27,6.38,3.98
1.02,Premium,H,SI1,59.1,60,4037,6.59,6.54,3.88
1.01,Premium,G,SI2,61.8,58,4038,6.39,6.36,3.94
1.01,Premium,G,SI2,62.1,61,4038,6.38,6.27,3.93
1.01,Premium,G,SI2,63,58,4038,6.34,6.29,3.98
1.03,Premium,I,SI1,61,58,4038,6.52,6.47,3.96
1.03,Fair,H,SI2,67,61,4038,6.25,6.17,4.16
1.01,Ideal,G,SI2,61.2,57,4038,6.45,6.4,3.92
1.01,Premium,G,SI2,61.1,58,4038,6.39,6.37,3.9
1.01,Ideal,G,SI2,63.2,57,4038,6.33,6.28,3.99
1.03,Premium,H,SI2,62.1,59,4038,6.47,6.42,4
1.02,Very Good,H,SI2,60.9,58,4039,6.41,6.53,3.94
1.02,Very Good,H,SI2,61.1,61,4039,6.48,6.51,3.97
0.76,Ideal,E,VS2,62.1,55,4039,5.84,5.88,3.64
0.77,Ideal,D,VS1,62.2,55,4039,5.85,5.88,3.65
0.92,Premium,H,VS1,61.7,62,4039,6.2,6.12,3.8
1.13,Premium,E,SI2,59.4,62,4040,6.83,6.78,4.04
0.74,Fair,D,VVS2,65.4,53,4040,5.73,5.71,3.74
0.91,Very Good,D,SI1,63.1,61,4041,6.16,6.1,3.87
1.05,Very Good,H,SI2,61.4,58,4042,6.54,6.58,4.03
1,Very Good,H,SI2,62.5,58,4042,6.27,6.36,3.95
0.71,Ideal,E,VVS2,62,53.9,4042,5.73,5.77,3.57
0.54,Ideal,D,VVS1,61.3,56,4042,5.24,5.26,3.22
1,Good,I,SI1,65.6,56,4042,6.23,6.3,4.11
1.02,Premium,F,SI2,61,58,4043,6.49,6.52,3.97
0.8,Ideal,F,VS2,60.9,57,4043,5.98,6.04,3.66
0.8,Ideal,F,VS2,62.1,56,4043,5.93,5.98,3.7
1.04,Premium,J,VS2,58.7,58,4043,6.68,6.61,3.9
0.9,Ideal,H,VS2,62.4,56,4044,6.15,6.18,3.85
0.9,Premium,H,VS2,60.6,60,4044,6.24,6.3,3.8
1.01,Premium,E,SI2,60.6,58,4044,6.47,6.53,3.94
1.01,Ideal,E,SI2,61.7,57,4044,6.5,6.47,4
0.9,Ideal,G,SI2,61.4,56,4044,6.19,6.23,3.81
1.02,Premium,D,SI2,61.3,62,4044,6.46,6.42,3.95
1.01,Fair,H,VS1,66.1,55,4044,6.28,6.24,4.14
1.02,Premium,D,SI2,62.3,58,4044,6.42,6.37,3.99
1.02,Ideal,G,SI1,62.4,56,4044,6.42,6.37,3.99
1.02,Ideal,D,SI2,62.5,57,4044,6.43,6.38,4
1.02,Fair,G,SI1,64.5,56,4044,6.3,6.23,4.04
1.2,Fair,G,SI2,65.5,59,4044,6.73,6.53,4.34
0.91,Premium,G,SI1,62.6,58,4045,6.14,6.17,3.85
0.91,Very Good,G,SI1,62.8,58,4045,6.15,6.18,3.87
0.91,Premium,G,SI1,62.2,59,4045,6.15,6.19,3.84
0.91,Premium,G,SI1,61.8,60,4045,6.18,6.21,3.83
1.29,Very Good,G,SI2,63.2,54,4045,6.96,6.94,4.39
1.09,Premium,J,SI1,62.3,59,4046,6.55,6.59,4.09
0.79,Ideal,H,IF,61.3,56,4046,5.96,5.98,3.66
1.01,Very Good,I,SI2,63.7,56,4047,6.33,6.38,4.05
0.9,Premium,F,SI1,62.3,58,4047,6.18,6.12,3.83
0.72,Ideal,D,VS1,61.7,56,4047,5.77,5.81,3.57
1.01,Good,G,SI2,59.2,65,4047,6.35,6.41,3.78
1.01,Fair,G,SI2,58.3,62,4047,6.46,6.5,3.78
1.09,Premium,G,SI2,60.7,57,4047,6.72,6.62,4.06
1.1,Ideal,H,VS2,62.6,57,4048,6.61,6.56,4.12
0.91,Very Good,F,SI1,62.3,60,4049,6.08,6.15,3.81
0.91,Ideal,G,SI1,61.8,57,4049,6.16,6.2,3.82
1.01,Good,F,SI2,65.7,58,4049,6.12,6.2,4.05
1.14,Very Good,F,I1,61.3,55.8,4050,6.74,6.76,4.13
0.93,Premium,H,VS2,61,60,4050,6.29,6.26,3.82
1.23,Good,D,I1,63.7,58,4050,6.79,6.72,4.3
0.91,Premium,D,SI2,61.5,56,4051,6.27,6.22,3.84
0.91,Premium,D,SI2,62.2,59,4051,6.23,6.19,3.86
0.91,Premium,D,SI2,61.1,60,4051,6.29,6.24,3.83
1.01,Very Good,H,SI1,62.5,58,4052,6.37,6.42,4
0.99,Good,F,SI2,63.3,54,4052,6.36,6.43,4.05
0.9,Premium,G,VS2,62.8,60,4052,6.14,6.08,3.84
0.71,Ideal,E,VS1,61.1,57,4053,5.74,5.78,3.52
0.71,Ideal,E,VS1,61.9,56,4053,5.7,5.73,3.54
0.8,Ideal,E,SI1,61.1,56,4053,5.98,6.01,3.66
1,Good,F,SI2,61.8,58,4053,6.43,6.48,3.99
0.94,Fair,F,SI1,56.8,67,4053,6.56,6.44,3.69
1.17,Good,J,SI1,63.9,55,4054,6.66,6.73,4.28
0.9,Very Good,E,SI1,61.8,60,4054,6.14,6.2,3.81
0.9,Very Good,E,SI1,62.2,60,4054,6.14,6.17,3.83
0.9,Very Good,F,SI1,59.8,54,4054,6.25,6.32,3.76
0.9,Very Good,F,SI1,63.3,57,4054,6.1,6.16,3.88
0.91,Very Good,F,SI2,60.9,58,4054,6.28,6.2,3.8
1.03,Ideal,J,SI2,62.4,56,4054,6.44,6.48,4.03
0.9,Ideal,F,SI1,62.5,56,4054,6.13,6.16,3.84
0.88,Ideal,F,SI1,62.3,53,4054,6.12,6.15,3.82
0.9,Good,G,VS2,62.1,59,4054,6.02,6.16,3.78
0.9,Good,E,SI1,62.4,62,4054,6.13,6.17,3.84
1.01,Premium,E,SI2,62.8,57,4054,6.41,6.36,4.01
1.11,Fair,J,SI2,64.8,55.1,4056,6.44,6.55,4.21
1.02,Premium,F,SI2,61.1,62,4057,6.54,6.49,3.98
1.06,Very Good,G,SI2,63.4,61,4057,6.46,6.37,4.07
0.9,Fair,E,VS2,65,55,4057,6.11,6.04,3.95
1.22,Very Good,J,SI2,62.2,60,4058,6.77,6.89,4.25
1.24,Fair,G,SI2,65.7,57,4058,6.72,6.68,4.4
0.9,Very Good,G,SI1,62.7,59,4059,6.12,6.17,3.85
1.04,Ideal,J,SI1,60.8,57,4059,6.54,6.59,3.99
0.9,Ideal,G,SI1,62.4,57,4059,6.15,6.19,3.85
0.96,Premium,G,SI2,61.1,59,4059,6.32,6.28,3.85
1.03,Very Good,G,SI2,63.1,58,4060,6.41,6.37,4.03
1.01,Good,G,SI2,63.7,59,4060,6.31,6.38,4.04
0.96,Very Good,D,SI2,60,60,4060,6.43,6.47,3.87
1.25,Very Good,H,SI2,63.5,57,4060,6.73,6.65,4.25
1.06,Good,H,SI1,57.2,60,4060,6.84,6.74,3.88
1.02,Premium,I,SI2,62.2,58,4061,6.41,6.36,3.97
0.9,Good,F,SI1,63.9,59,4062,6.06,6.09,3.88
0.9,Premium,F,SI1,60.4,59,4062,6.29,6.32,3.81
0.9,Very Good,E,VS2,61.1,63,4062,6.2,6.17,3.78
0.89,Ideal,G,VVS2,61.7,55,4062,6.22,6.19,3.83
0.93,Premium,G,SI1,61,59,4062,6.34,6.28,3.85
0.9,Premium,E,VS2,62.3,55,4062,6.18,6.14,3.84
0.97,Premium,F,SI2,61.9,58,4063,6.31,6.35,3.92
0.97,Very Good,F,SI2,59.9,59,4063,6.38,6.45,3.84
0.97,Fair,F,SI1,56.4,66,4063,6.59,6.54,3.7
0.9,Premium,H,VS1,61.8,56,4064,6.18,6.16,3.81
0.9,Very Good,H,VS2,62.1,60,4064,6.11,6.2,3.82
1.01,Very Good,D,SI2,62.9,59,4064,6.29,6.37,3.98
1.01,Good,G,SI1,63.1,55,4064,6.31,6.33,3.99
1.01,Very Good,G,SI1,62.3,59,4064,6.34,6.37,3.96
0.96,Very Good,H,SI1,63.1,58,4064,6.2,6.25,3.93
0.9,Premium,H,VS1,63,59,4064,6.13,6.1,3.85
1.12,Premium,J,SI1,62.3,57,4064,6.72,6.61,4.15
1.12,Premium,J,SI1,62.7,55,4064,6.65,6.61,4.16
1.44,Premium,J,SI2,58.2,58,4064,7.39,7.35,4.29
0.9,Ideal,H,VS1,61.2,57,4064,6.28,6.24,3.83
0.9,Premium,H,VS1,61.5,59,4064,6.19,6.13,3.79
1.12,Premium,H,SI2,62.4,58,4065,6.58,6.63,4.12
1.1,Good,E,SI2,63.3,56,4065,6.53,6.58,4.15
0.92,Ideal,F,SI2,62,54,4065,6.26,6.32,3.9
1,Good,D,SI2,64.3,59,4065,6.21,6.3,4.02
0.91,Very Good,H,VS1,61.7,56,4066,6.22,6.25,3.85
0.91,Very Good,H,VS1,62.7,63,4066,6.1,6.03,3.8
1.12,Very Good,J,SI2,58.5,60,4066,6.83,6.89,4.01
1.1,Very Good,G,SI2,63.4,56,4066,6.56,6.54,4.15
0.91,Ideal,D,SI2,62.6,54,4067,6.22,6.25,3.9
0.91,Good,F,SI1,58,57,4067,6.36,6.47,3.72
0.9,Very Good,D,SI1,62.4,63,4068,6.15,6.18,3.85
0.9,Very Good,D,SI1,61.8,61,4068,6.16,6.2,3.82
0.9,Very Good,D,SI1,62.5,63,4068,6.11,6.14,3.83
0.9,Very Good,D,SI1,61.1,63,4068,6.17,6.21,3.78
0.9,Good,D,SI1,63.2,62,4068,6.06,6.13,3.85
0.9,Very Good,D,SI1,62.8,59,4068,6.06,6.1,3.82
0.92,Ideal,G,SI2,62.4,56,4068,6.21,6.23,3.88
0.95,Ideal,E,SI2,62.2,56,4068,6.26,6.35,3.92
0.84,Ideal,E,SI1,61.7,53,4068,6.08,6.11,3.76
0.8,Ideal,F,VS1,62.8,56,4070,5.91,5.96,3.73
0.95,Premium,E,SI2,60.7,59,4070,6.36,6.3,3.84
1.03,Premium,E,SI2,58.8,62,4070,6.58,6.51,3.85
1.1,Ideal,E,SI2,59.4,54,4071,6.79,6.74,4.02
1.18,Good,E,SI2,63.6,57,4071,6.74,6.72,4.28
1.12,Premium,D,SI2,61.2,59,4071,6.7,6.66,4.09
1.01,Premium,I,SI1,61.8,58,4072,6.45,6.37,3.96
1.01,Premium,G,SI1,60.2,58,4072,6.48,6.44,3.89
1.01,Very Good,F,SI2,63.1,57,4072,6.37,6.3,4
1.01,Premium,D,SI2,61.7,59,4072,6.41,6.37,3.94
0.9,Ideal,H,VS2,62.7,57,4072,6.13,6.15,3.85
0.9,Good,H,VS1,60.6,61,4072,6.13,6.19,3.73
1.01,Premium,H,SI2,59.4,59,4072,6.56,6.53,3.89
1.01,Good,H,SI2,63.7,55,4072,6.37,6.32,4.04
1.01,Fair,G,VS2,65.7,54,4072,6.32,6.28,4.14
1.01,Very Good,I,SI1,63.4,62,4072,6.25,6.18,3.94
1.01,Premium,F,SI2,62,59,4072,6.49,6.43,4.01
1.01,Good,F,SI2,63.6,59,4072,6.38,6.34,4.04
1.01,Premium,I,SI2,60.5,60,4072,6.52,6.5,3.94
1.01,Premium,I,SI1,58.6,62,4072,6.51,6.45,3.8
0.93,Premium,I,VS2,62.7,61,4073,6.24,6.14,3.88
1.11,Ideal,J,SI2,62.5,57,4073,6.64,6.6,4.14
0.9,Very Good,F,SI1,61.6,58,4074,6.12,6.26,3.81
0.99,Premium,F,SI2,60.6,61,4075,6.45,6.38,3.89
1.07,Premium,I,SI1,58.4,60,4075,6.78,6.68,3.93
1.11,Very Good,I,SI2,63.1,57,4075,6.59,6.54,4.14
1,Ideal,E,SI2,62.3,57,4077,6.33,6.28,3.93
0.91,Ideal,E,VS2,62.1,55,4077,6.17,6.14,3.82
0.92,Premium,H,VS2,61.3,58,4077,6.21,6.26,3.82
1.01,Good,F,SI2,56.9,60,4077,6.68,6.64,3.79
1,Good,E,SI2,61.5,64,4077,6.29,6.22,3.85
0.9,Ideal,G,SI2,60.6,55,4077,6.27,6.33,3.82
1,Premium,E,SI2,60.5,61,4077,6.38,6.31,3.84
1.12,Premium,H,SI2,61,59,4077,6.72,6.66,4.08
1,Premium,E,SI2,59.1,61,4077,6.44,6.39,3.79
1,Very Good,E,SI2,59.5,63,4077,6.47,6.41,3.83
1,Ideal,E,SI2,60.7,55,4077,6.39,6.33,3.86
1.12,Premium,H,SI2,61,56,4077,6.68,6.65,4.07
1,Premium,E,SI2,62.6,56,4077,6.43,6.39,4.01
1.04,Ideal,H,SI2,59.6,56,4077,6.64,6.59,3.94
1.04,Ideal,H,SI2,62.2,56,4077,6.51,6.48,4.04
1.12,Premium,I,SI1,61.3,58,4077,6.69,6.68,4.1
1,Premium,E,SI2,62,59,4077,6.43,6.3,3.95
1,Premium,I,VS1,60.6,58,4077,6.47,6.4,3.9
1,Fair,E,SI2,64.6,60,4077,6.23,6.18,4.01
0.9,Good,D,SI2,64,59,4078,6.04,6.09,3.88
0.9,Very Good,D,SI2,62.9,56,4078,6.09,6.19,3.86
0.9,Ideal,D,SI2,62.4,56,4078,6.16,6.24,3.87
1.03,Premium,H,SI2,60.7,59,4078,6.48,6.54,3.95
1.03,Ideal,I,SI1,61.3,56,4078,6.49,6.53,3.99
1.03,Premium,H,SI2,62.3,59,4078,6.42,6.46,4.01
1.09,Very Good,I,SI2,63.8,57,4078,6.5,6.55,4.16
1.01,Ideal,H,SI2,60.7,59,4078,6.47,6.45,3.92
1.01,Ideal,H,SI2,61.3,59,4078,6.5,6.46,3.97
0.97,Ideal,E,SI2,62.3,56,4078,6.28,6.33,3.93
1.06,Premium,E,SI1,59.2,60,4078,6.64,6.6,3.92
1.02,Premium,G,SI2,58.1,58,4078,6.67,6.58,3.85
1.19,Premium,G,SI2,62.4,59,4078,6.74,6.71,4.2
1.01,Good,G,SI2,63.5,58,4079,6.34,6.39,4.04
1.01,Ideal,G,SI2,59.5,57,4079,6.56,6.59,3.91
0.9,Premium,G,VS2,60.6,61,4079,6.19,6.13,3.73
1,Very Good,I,SI2,60.7,59,4080,6.4,6.46,3.9
0.91,Very Good,G,SI1,63.5,58,4081,6.15,6.04,3.87
0.9,Very Good,G,VS2,63.5,62,4081,6.07,6.11,3.87
1,Very Good,F,SI2,62.8,57,4081,6.37,6.44,4.02
1,Good,I,VS2,62.6,59,4081,6.28,6.33,3.95
1,Very Good,F,SI2,62.9,59,4081,6.3,6.39,3.99
1,Very Good,F,SI2,62.6,58,4081,6.31,6.37,3.97
1,Good,F,SI2,63.8,58,4081,6.28,6.33,4.02
1,Good,F,SI2,62.7,57,4081,6.29,6.34,3.96
0.93,Very Good,F,SI1,58.8,60,4081,6.37,6.49,3.78
0.93,Premium,F,SI1,62.5,58,4081,6.19,6.22,3.88
0.91,Very Good,F,SI2,60.6,56,4081,6.27,6.3,3.81
1,Good,H,SI2,63,56,4081,6.31,6.38,4
0.9,Very Good,H,VS2,63.3,59,4082,6.05,6.01,3.82
1,Very Good,F,SI2,60.2,59,4082,6.41,6.48,3.88
0.74,Ideal,E,VVS2,62.2,57,4082,5.78,5.83,3.61
0.72,Ideal,D,VS2,61.8,56,4082,5.74,5.78,3.56
0.72,Ideal,D,VS2,61,55,4082,5.79,5.81,3.54
0.9,Premium,H,VS2,61.8,58,4082,6.17,6.12,3.8
0.9,Premium,H,VS2,61.3,59,4082,6.24,6.19,3.81
0.9,Premium,H,VS2,62.7,59,4082,6.15,6.1,3.84
0.9,Premium,H,VS2,62,57,4082,6.16,6.1,3.8
0.9,Premium,H,VS2,61.8,56,4082,6.25,6.18,3.84
0.9,Premium,H,VS2,60.7,58,4082,6.21,6.17,3.76
1.35,Premium,J,SI1,62.1,54,4082,7.15,7.09,4.42
1.1,Very Good,I,SI2,62.8,57,4083,6.56,6.63,4.14
1.12,Premium,G,SI2,61.2,58,4084,6.67,6.69,4.09
1.04,Very Good,G,SI2,60.3,62,4084,6.5,6.56,3.94
1.02,Very Good,I,SI2,62.6,56,4084,6.41,6.44,4.02
0.64,Ideal,D,VVS1,61.8,54,4084,5.54,5.56,3.43
1.1,Good,G,SI2,64.2,56,4084,6.55,6.51,4.19
1.11,Very Good,J,SI1,63.3,61,4084,6.56,6.49,4.13
1.28,Good,H,SI2,56.8,62,4086,7.22,7.16,4.08
0.8,Ideal,E,VS1,62.1,56,4086,5.92,5.97,3.69
0.92,Good,D,SI1,63.6,57,4086,6.14,6.09,3.89
1,Good,H,SI1,56.8,65,4086,6.61,6.49,3.72
0.81,Ideal,D,VS2,62.1,56,4087,6.01,5.98,3.72
1,Very Good,F,SI1,63.2,54,4088,6.3,6.23,3.96
1,Premium,H,SI2,58.6,59,4088,6.57,6.5,3.83
0.9,Ideal,G,SI1,62.1,56,4088,6.2,6.16,3.84
1,Premium,H,SI2,63,61,4088,6.35,6.31,3.99
1,Very Good,I,SI1,63.2,56,4088,6.37,6.31,4.01
0.9,Very Good,I,VS2,61.4,58,4089,6.22,6.25,3.83
1.01,Premium,E,SI2,60.8,58,4089,6.49,6.46,3.94
0.85,Ideal,E,SI1,63,56,4089,6,6.04,3.79
0.92,Good,G,SI1,60.6,60,4089,6.29,6.32,3.82
1.09,Premium,I,SI1,62,58,4090,6.6,6.56,4.08
1.09,Premium,I,VS2,59,61,4090,6.78,6.75,3.98
0.9,Ideal,E,SI2,62.7,54,4091,6.13,6.21,3.87
1.17,Premium,F,SI2,59.9,59,4092,6.82,6.86,4.1
1.06,Ideal,I,SI2,61.3,56,4092,6.55,6.59,4.03
0.79,Ideal,I,VVS2,61.7,56,4092,5.94,5.95,3.67
1.11,Ideal,J,SI2,61.7,57,4092,6.63,6.69,4.11
0.9,Very Good,E,SI1,63.1,61,4092,6.18,6.14,3.89
0.9,Premium,E,SI1,59.8,58,4092,6.26,6.21,3.73
0.9,Ideal,E,SI1,63,56,4092,6.15,6.1,3.86
0.9,Premium,E,SI1,62.7,62,4092,6.22,6.1,3.85
0.9,Very Good,E,SI1,63.1,60,4092,6.18,6.14,3.89
0.9,Good,G,VS2,63.6,59,4093,6.04,6.1,3.86
0.9,Very Good,G,VS2,59.6,61,4093,6.2,6.25,3.71
1.02,Good,H,SI1,57.1,61,4093,6.57,6.66,3.78
0.9,Ideal,I,VS1,61.3,55,4093,6.21,6.25,3.82
1.13,Premium,J,SI2,59.7,59,4093,6.85,6.76,4.06
1.08,Ideal,J,VS2,62.3,56,4093,6.6,6.53,4.09
0.72,Ideal,E,VVS2,62,54.9,4094,5.75,5.78,3.57
1,Premium,G,SI2,62.7,59,4095,6.3,6.36,3.97
0.7,Very Good,D,VS1,60.3,58,4095,5.76,5.79,3.48
1.03,Good,F,SI2,57.7,63,4095,6.68,6.64,3.84
1.03,Ideal,E,SI2,62,55,4095,6.46,6.44,4
0.91,Ideal,H,SI1,61.6,56,4096,6.21,6.25,3.84
1.11,Premium,G,SI1,60.9,59,4096,6.69,6.64,4.07
0.92,Premium,D,SI2,62.4,58,4096,6.19,6.18,3.86
0.92,Premium,D,SI2,62.4,60,4096,6.25,6.21,3.89
1.5,Premium,F,I1,62.6,57,4096,7.33,7.21,4.55
1.06,Premium,I,SI2,60.9,58,4096,6.6,6.56,4.01
0.95,Very Good,J,VVS2,60.5,59,4098,6.33,6.36,3.84
0.94,Premium,E,SI2,62.4,58,4098,6.26,6.33,3.93
1.08,Premium,J,SI1,61,60,4098,6.57,6.62,4.02
1.23,Ideal,H,I1,61.8,56,4098,6.91,6.85,4.25
0.9,Very Good,I,VVS1,61.3,59,4099,6.17,6.2,3.79
1.01,Ideal,J,SI2,61.9,55.3,4099,6.43,6.5,4.01
0.9,Very Good,F,SI1,62.8,59,4099,6.1,6.16,3.85
1.22,Fair,I,SI1,66.2,60,4099,6.61,6.56,4.36
1.2,Ideal,J,VS2,61.6,54,4099,6.88,6.82,4.22
1.03,Very Good,H,SI2,60.9,57,4101,6.5,6.58,3.98
1.11,Ideal,J,SI2,62.6,54,4101,6.61,6.64,4.15
0.9,Ideal,H,SI2,61.8,57,4101,6.17,6.19,3.82
0.9,Ideal,H,SI2,61.8,56,4101,6.17,6.2,3.82
0.9,Ideal,H,SI2,61.9,55,4101,6.21,6.19,3.84
1.03,Good,F,SI2,61.7,63,4101,6.46,6.51,4
0.97,Ideal,G,SI2,62.7,57,4101,6.31,6.28,3.95
0.97,Premium,G,SI2,61.3,57,4101,6.37,6.32,3.89
1.11,Very Good,E,SI2,61.6,61,4102,6.61,6.66,4.09
1.11,Very Good,E,SI2,61.7,63,4102,6.54,6.65,4.07
1.2,Very Good,J,SI2,61.8,56,4102,6.81,6.85,4.22
0.31,Premium,G,SI2,60.3,59,408,4.35,4.37,2.63
0.31,Very Good,I,SI1,60.7,60,408,4.33,4.37,2.64
0.31,Premium,I,SI1,62.3,59,408,4.29,4.32,2.68
0.31,Premium,G,SI2,61.3,58,408,4.37,4.4,2.69
0.31,Ideal,G,SI2,61.7,56,408,4.34,4.38,2.69
0.31,Good,I,SI1,63.3,53,408,4.3,4.32,2.73
0.31,Ideal,G,SI2,60.5,57,408,4.36,4.4,2.65
0.31,Good,I,SI1,63.8,55,408,4.31,4.34,2.76
0.31,Good,G,SI2,63.3,54,408,4.29,4.34,2.73
0.32,Ideal,J,VS2,61.5,53,409,4.44,4.47,2.74
0.35,Good,J,SI1,63.3,56,409,4.5,4.53,2.86
0.25,Very Good,E,VS2,59.7,61,409,4.08,4.1,2.44
0.3,Premium,H,SI2,60.2,62,410,4.37,4.34,2.62
0.25,Very Good,D,VS1,62.1,60,410,4.03,4.05,2.51
0.36,Premium,J,SI1,61.6,60,410,4.54,4.58,2.81
0.3,Ideal,J,VS1,62,57,411,4.28,4.3,2.66
0.3,Ideal,J,VS1,62.2,57,411,4.27,4.28,2.66
0.23,Premium,D,VS2,58.5,61,411,4.06,3.98,2.35
0.24,Very Good,E,VS1,62.5,55,412,3.96,3.98,2.48
0.27,Ideal,I,VVS2,62,54.5,412,4.15,4.19,2.58
0.31,Good,J,VS1,61.9,61,412,4.29,4.34,2.67
0.27,Very Good,E,VS1,60.6,59,413,4.19,4.22,2.55
0.27,Very Good,D,VS1,62.2,58,413,4.14,4.15,2.58
0.3,Very Good,G,SI1,60.1,58,413,4.31,4.34,2.6
0.3,Very Good,D,SI2,62.3,58,413,4.26,4.28,2.66
0.3,Ideal,J,VVS2,62,54,413,4.3,4.34,2.68
0.32,Ideal,J,VS2,62.3,55.3,413,4.36,4.37,2.72
0.34,Ideal,J,VS1,61.9,55,413,4.5,4.54,2.8
0.33,Ideal,F,SI2,61.4,57,413,4.44,4.48,2.74
0.3,Ideal,D,SI2,61.1,58,413,4.31,4.33,2.64
0.23,Very Good,D,VS2,60.2,57,577,4.02,4.07,2.43
0.3,Ideal,H,VVS2,61,55,577,4.33,4.34,2.65
0.31,Ideal,G,VS2,62.1,55,577,4.35,4.38,2.71
0.27,Ideal,F,VS2,60.9,57,577,4.17,4.2,2.55
0.27,Ideal,F,VS2,60.3,56,577,4.24,4.27,2.56
0.27,Ideal,E,VS2,61,55,577,4.18,4.2,2.56
0.27,Ideal,F,VS1,61.7,57,577,4.15,4.18,2.57
0.27,Ideal,E,VS1,60.5,56,577,4.21,4.22,2.55
0.25,Ideal,H,VVS1,62.5,56,577,4.06,4.03,2.53
0.25,Premium,H,VVS1,59.8,59,577,4.09,4.07,2.44
0.25,Premium,H,VVS1,60.1,62,577,4.11,4.08,2.46
0.25,Premium,H,VVS1,62.7,60,577,4.03,3.98,2.51
0.33,Premium,F,VS2,60,60,577,4.45,4.49,2.68
0.31,Very Good,H,VVS2,62.6,56,578,4.33,4.36,2.72
0.31,Very Good,H,VVS2,61.2,55,578,4.41,4.44,2.7
0.26,Ideal,I,VS1,61.6,54,578,4.08,4.12,2.53
0.3,Very Good,E,VS1,61.5,57,578,4.28,4.31,2.64
0.4,Very Good,F,SI2,62.6,53,579,4.7,4.75,2.96
0.4,Very Good,F,SI2,62.1,57,579,4.7,4.74,2.93
0.36,Ideal,G,VS2,62.3,54,579,4.59,4.62,2.87
0.31,Fair,E,SI1,56.9,66,579,4.53,4.47,2.56
0.33,Premium,E,SI1,60.4,59,579,4.43,4.47,2.69
0.33,Ideal,G,VS2,62.2,56,579,4.43,4.44,2.76
0.33,Very Good,G,VS2,60.6,61,579,4.46,4.49,2.71
0.33,Good,E,SI1,63.4,55,579,4.37,4.4,2.78
0.33,Very Good,E,SI1,60.2,58,579,4.49,4.55,2.72
0.33,Good,E,SI1,63.8,55,579,4.36,4.38,2.79
0.33,Very Good,E,SI1,60.3,60,579,4.47,4.49,2.7
0.33,Premium,G,VS2,61.3,59,579,4.44,4.46,2.73
0.33,Ideal,H,VS1,61.5,56,579,4.44,4.47,2.74
1,Good,F,SI2,65.7,62,4102,6.15,6.21,4.06
1.01,Fair,G,SI1,66.9,56,4102,6.15,6.22,4.14
1.09,Premium,E,SI2,60.1,62,4102,6.72,6.6,4
1.02,Premium,H,SI1,61.8,56,4102,6.47,6.42,3.98
0.9,Ideal,F,SI1,62.3,56,4103,6.17,6.13,3.83
0.9,Premium,F,SI1,62.6,60,4103,6.11,6.06,3.81
1.06,Ideal,I,SI2,61.9,59,4103,6.47,6.52,4.02
0.9,Very Good,F,SI1,63.1,56,4103,6.17,6.12,3.88
0.91,Very Good,G,VS2,64,56.6,4105,6.09,6.15,3.92
1.07,Premium,J,SI2,62.4,58,4105,6.54,6.47,4.06
1.2,Ideal,J,VS2,62.2,54,4106,6.84,6.8,4.24
0.9,Premium,E,SI1,61.1,58,4106,6.22,6.26,3.81
1.01,Good,E,SI1,64.3,59,4106,6.28,6.31,4.05
0.94,Premium,G,SI1,61.9,57,4106,6.29,6.24,3.88
1.01,Fair,E,SI1,65.6,59,4106,6.22,6.18,4.07
1.3,Very Good,J,VS2,63.3,57,4106,6.98,6.96,4.41
1,Very Good,I,SI2,62.6,57,4107,6.37,6.4,4
0.91,Fair,D,VS2,65.7,56,4107,6.1,6.05,3.99
0.91,Fair,D,VS2,65.7,58,4107,6.04,5.99,3.95
0.91,Ideal,F,SI1,60.2,57,4108,6.29,6.34,3.8
0.91,Very Good,F,SI1,62.2,57,4108,6.19,6.25,3.87
0.87,Ideal,D,SI1,62.6,56,4108,6.17,6.08,3.84
0.9,Good,G,VS1,65.8,59,4108,6,6.04,3.96
0.91,Ideal,H,VS1,62.9,55,4109,6.23,6.13,3.89
0.93,Very Good,G,SI1,61.5,57,4111,6.23,6.33,3.86
0.81,Ideal,H,IF,61.6,58,4111,5.98,6.01,3.69
1.05,Very Good,H,SI2,63.8,58,4112,6.38,6.45,4.09
1.02,Premium,H,SI2,60.9,58,4113,6.53,6.41,3.94
0.91,Good,D,SI1,63.1,61,4113,6.1,6.16,3.87
1.09,Very Good,F,SI2,58.5,59,4113,6.75,6.8,3.96
0.93,Very Good,E,SI2,62.5,58,4113,6.21,6.24,3.89
1,Good,G,SI2,57.6,62,4113,6.62,6.55,3.79
0.82,Ideal,D,SI1,61.9,56,4113,5.99,6.02,3.72
1.13,Fair,H,SI2,64.4,58,4113,6.59,6.51,4.22
1.02,Premium,H,SI2,61.1,61,4113,6.51,6.48,3.97
1.13,Premium,I,SI1,61.7,58,4113,6.66,6.62,4.1
1.02,Premium,I,SI1,61.7,58,4113,6.48,6.45,3.99
1.2,Premium,J,SI1,62.8,58,4113,6.77,6.7,4.23
0.96,Premium,E,SI2,62.6,60,4113,6.32,6.26,3.94
1.02,Ideal,I,SI2,60.6,56,4113,6.57,6.53,3.97
0.7,Very Good,E,VVS1,61.9,58,4114,5.6,5.67,3.49
0.7,Ideal,F,VVS2,61.7,55,4114,5.7,5.74,3.53
0.7,Ideal,F,VVS2,61.2,56,4114,5.73,5.78,3.52
0.9,Good,I,VVS1,63.6,58,4114,6.14,6.1,3.89
0.9,Premium,D,SI2,59.2,60,4114,6.34,6.3,3.74
0.91,Fair,H,VVS1,56.5,67,4115,6.38,6.4,3.61
0.9,Very Good,G,VS1,61.5,56,4116,6.15,6.2,3.8
1.01,Good,H,SI1,64,58,4116,6.31,6.37,4.06
1.01,Good,H,SI1,63.4,58,4116,6.37,6.41,4.05
0.73,Very Good,D,VS1,61.1,59,4116,5.79,5.86,3.56
0.98,Ideal,G,SI2,62.9,57,4116,6.33,6.29,3.97
0.92,Good,H,VS1,62.3,63,4116,6.18,6.3,3.88
1.05,Premium,H,SI2,61.4,58,4116,6.58,6.54,4.03
1.05,Premium,G,SI2,61.7,56,4116,6.57,6.53,4.04
1.05,Premium,J,VS1,60,60,4116,6.46,6.43,4
1.05,Ideal,J,VS1,62.8,57,4116,6.45,6.41,4.04
1,Premium,E,SI2,62.6,60,4116,6.35,6.33,3.97
0.9,Good,D,SI1,64.4,60,4117,5.95,6,3.85
0.8,Very Good,E,VS1,60.7,60,4118,6,6.09,3.67
1.02,Ideal,I,SI2,61.8,57,4118,6.44,6.46,3.99
1.01,Ideal,E,SI2,63,56,4118,6.34,6.3,3.98
1.01,Premium,E,SI2,60.6,58,4118,6.53,6.47,3.94
1.01,Fair,E,SI2,55.2,65,4118,6.78,6.67,3.71
1.01,Very Good,E,SI2,63.1,61,4118,6.34,6.27,3.98
1.01,Fair,E,SI2,64.7,55,4118,6.37,6.3,4.1
1.01,Fair,D,SI1,66.3,55,4118,6.22,6.17,4.11
1.01,Good,E,SI2,63.7,55,4118,6.38,6.31,4.05
1.01,Premium,G,SI1,63,60,4118,6.34,6.3,3.98
1.01,Ideal,I,VS1,62.9,56,4118,6.43,6.38,4.03
1.01,Premium,G,SI1,60,59,4118,6.51,6.47,3.89
1.07,Premium,H,SI2,62.2,59,4119,6.47,6.53,4.04
0.9,Good,F,SI1,62.5,59,4119,6.1,6.13,3.82
0.9,Very Good,F,SI1,62.7,59,4119,6.12,6.16,3.85
1.01,Very Good,F,SI2,62.8,58,4119,6.31,6.36,3.98
1.01,Ideal,H,SI2,62.8,56,4119,6.38,6.45,4.03
1.01,Good,F,SI2,58.2,63,4119,6.51,6.55,3.8
1.01,Very Good,J,VS2,59.3,59,4120,6.5,6.58,3.88
1.11,Premium,I,SI2,61.5,58,4120,6.61,6.65,4.08
1.06,Ideal,H,SI1,62.7,57,4120,6.48,6.53,4.08
1.11,Premium,I,SI2,61.8,58,4120,6.61,6.66,4.1
0.9,Good,D,SI1,63.8,58,4120,6.13,6.09,3.9
1.09,Premium,I,SI2,61.3,55,4120,6.66,6.62,4.07
1.01,Very Good,F,SI2,62.7,56,4121,6.35,6.4,4
1.01,Good,I,VS2,62.8,59,4121,6.34,6.4,4
1.01,Very Good,F,SI2,62.2,58,4121,6.36,6.4,3.97
1.01,Good,F,SI2,63.6,59,4121,6.34,6.37,4.04
1.01,Very Good,F,SI2,61,60,4121,6.44,6.48,3.94
1.01,Premium,F,SI2,60.6,60,4121,6.46,6.5,3.93
0.91,Premium,D,SI2,62.2,59,4123,6.19,6.23,3.86
0.91,Very Good,D,SI2,61.5,56,4123,6.22,6.27,3.84
0.91,Premium,D,SI2,61.1,60,4123,6.24,6.29,3.83
1.13,Fair,J,SI1,64.9,55,4123,6.49,6.56,4.24
1.04,Premium,D,SI2,60.9,57,4123,6.54,6.49,3.97
0.9,Very Good,F,VS2,62.7,62,4124,6.11,6.17,3.85
0.71,Ideal,E,VVS2,62,57,4124,5.7,5.72,3.54
0.9,Good,G,VS2,64.9,61,4124,5.91,5.99,3.86
1.08,Premium,G,SI2,63,54,4124,6.58,6.54,4.13
1.14,Ideal,F,I1,61.3,56,4124,6.76,6.74,4.13
1,Good,H,SI2,62.7,58,4125,6.31,6.33,3.96
1,Very Good,E,SI2,62.8,59,4125,6.3,6.34,3.97
1,Ideal,I,SI1,59.8,57,4125,6.44,6.5,3.87
1,Very Good,I,SI1,63,58,4125,6.3,6.33,3.98
1.04,Very Good,G,SI2,62.7,57,4125,6.4,6.46,4.03
0.8,Ideal,E,SI1,61.9,55,4125,5.94,5.98,3.69
0.91,Good,G,VS2,59.9,61,4125,6.2,6.33,3.75
0.9,Fair,E,VS2,64.5,61,4125,6.07,6.03,3.9
0.8,Very Good,F,VVS2,62.7,58,4126,5.88,5.92,3.7
0.9,Very Good,I,VS1,62.6,59,4126,6.11,6.15,3.84
0.8,Ideal,E,VS2,62.2,55,4126,5.95,5.98,3.71
1.05,Ideal,J,SI2,62.3,54,4126,6.52,6.55,4.07
1.07,Premium,I,SI1,61.2,58,4126,6.62,6.55,4.03
0.81,Ideal,G,VVS2,61.7,55.1,4127,5.97,6.04,3.71
0.74,Ideal,F,VVS1,60.8,60,4127,5.82,5.86,3.55
0.89,Ideal,F,SI1,62.1,55,4127,6.15,6.18,3.83
1.01,Fair,F,SI2,58.2,61,4127,6.48,6.52,3.78
0.9,Ideal,D,VS2,61.5,56,4128,6.25,6.2,3.83
0.91,Premium,H,VS2,62.8,58,4128,6.17,6.15,3.87
0.91,Premium,H,VS2,61.9,59,4128,6.23,6.18,3.84
0.91,Premium,H,VS2,61,59,4128,6.32,6.27,3.84
1.07,Ideal,F,SI2,61.2,57,4128,6.62,6.59,4.04
0.91,Premium,H,VS2,59.9,62,4128,6.33,6.26,3.77
1.01,Ideal,G,SI1,61.5,56,4129,6.52,6.46,3.99
0.9,Very Good,H,VS2,63.7,61,4129,6.04,6.07,3.86
1.01,Ideal,H,SI2,61.7,56,4129,6.47,6.43,3.98
1.01,Very Good,I,VS1,63.1,56,4129,6.42,6.36,4.03
1.01,Good,J,VS1,60.4,64,4129,6.48,6.44,3.9
1.01,Fair,H,SI2,64.9,56,4129,6.33,6.25,4.08
1.01,Premium,I,SI1,59.9,59,4129,6.46,6.42,3.86
0.9,Very Good,D,SI1,60.1,58,4130,6.27,6.3,3.78
0.82,Ideal,G,VVS2,62.1,56,4130,5.97,6.01,3.72
1.08,Ideal,I,SI2,62.3,57,4130,6.56,6.61,4.1
1.16,Good,F,SI2,60.8,65,4131,6.78,6.75,4.11
1.01,Ideal,H,SI2,60.1,60,4131,6.54,6.5,3.92
1.09,Ideal,J,VS2,61.3,57,4131,6.63,6.61,4.06
1.2,Premium,I,VS2,61.3,60,4131,6.79,6.75,4.15
1.06,Very Good,I,SI2,62.8,56,4132,6.47,6.55,4.09
0.91,Ideal,E,SI1,61,58,4132,6.23,6.29,3.82
1.22,Premium,J,SI2,62.2,60,4132,6.89,6.77,4.25
0.9,Premium,D,SI2,61.2,62,4133,6.22,6.07,3.76
1.23,Premium,I,SI1,60.3,60,4133,6.95,6.88,4.17
1.01,Very Good,J,SI1,63.3,55,4133,6.34,6.32,4.01
1,Ideal,I,SI1,61.6,59,4133,6.34,6.42,3.93
1.1,Good,I,SI1,63.1,61,4133,6.49,6.56,4.12
0.9,Ideal,G,VS2,62.7,56,4133,6.25,6.15,3.89
0.9,Premium,E,SI2,61.7,57,4133,6.23,6.21,3.84
0.9,Ideal,H,VS2,61.9,55,4133,6.22,6.19,3.84
0.9,Very Good,E,VS2,61.1,63,4134,6.17,6.2,3.78
1.11,Premium,F,SI2,62.5,59,4134,6.59,6.53,4.1
0.73,Ideal,D,VS2,60.7,57,4134,5.84,5.88,3.55
0.73,Ideal,D,VS2,61.6,56,4134,5.76,5.8,3.56
0.9,Very Good,G,VS2,63.4,59,4135,6.08,6.13,3.87
0.82,Very Good,E,VS2,62.8,59,4135,5.92,5.93,3.72
0.82,Ideal,D,SI1,61.6,57,4135,6.02,6.06,3.72
0.82,Ideal,D,SI1,62.2,55,4135,5.97,5.99,3.72
0.9,Good,G,VS2,64.4,62,4135,5.97,6.02,3.86
1.04,Ideal,I,SI1,63,56,4135,6.49,6.39,4.06
1.01,Good,G,SI2,63.7,59,4135,6.38,6.31,4.04
0.9,Very Good,H,VS1,61.5,59,4136,6.13,6.19,3.79
0.9,Very Good,H,VS1,61.8,56,4136,6.16,6.18,3.81
0.96,Very Good,H,VS2,61.2,57,4136,6.34,6.38,3.89
0.9,Very Good,H,VS1,62.7,57,4136,6.14,6.18,3.86
0.9,Very Good,H,VS1,63,59,4136,6.1,6.13,3.85
0.96,Very Good,G,SI1,62,59,4136,6.26,6.32,3.9
1.02,Very Good,J,SI1,61.4,58,4137,6.47,6.5,3.98
0.9,Premium,G,VS2,62.4,61,4137,6.17,6.13,3.84
0.9,Premium,G,VS2,60.8,56,4137,6.19,6.14,3.75
0.9,Premium,G,VS2,62,60,4137,6.19,6.14,3.82
0.9,Premium,G,VS2,62.8,58,4137,6.14,6.09,3.84
1.01,Premium,F,SI2,62.8,57,4137,6.31,6.24,3.94
1,Good,H,SI1,56.8,65,4138,6.61,6.49,3.72
0.91,Premium,E,SI1,60.5,61,4138,6.23,6.19,3.76
0.91,Premium,E,SI1,62.4,57,4138,6.23,6.11,3.85
0.91,Premium,E,SI1,61.9,61,4138,6.12,6.1,3.78
1.01,Premium,G,SI1,62.3,59,4138,6.37,6.34,3.96
0.91,Very Good,E,SI1,63.5,57,4138,6.11,6.07,3.87
0.91,Premium,E,SI1,62.6,58,4138,6.17,6.14,3.85
1.01,Good,G,SI1,64.2,56,4138,6.38,6.26,4.05
1.05,Premium,E,SI2,61.5,59,4139,6.52,6.58,4.03
1.12,Ideal,D,I1,60.6,55,4139,6.73,6.76,4.09
0.97,Very Good,G,SI1,60.2,61,4140,6.4,6.46,3.87
1.01,Good,F,SI2,64.9,60,4140,6.2,6.25,4.04
1.01,Good,F,SI2,58.2,61,4140,6.47,6.53,3.78
1.1,Very Good,E,SI2,63.3,56,4140,6.58,6.53,4.15
1.32,Fair,H,I1,65.8,55,4140,6.87,6.83,4.51
0.8,Ideal,F,VVS2,61.6,57,4140,5.97,5.94,3.67
1.12,Ideal,F,SI2,61.8,55,4140,6.69,6.66,4.13
0.93,Premium,D,SI2,62.6,57,4140,6.26,6.2,3.9
0.93,Premium,D,SI2,60.6,59,4140,6.34,6.3,3.83
1.5,Premium,G,I1,60.4,55,4140,7.4,7.32,4.45
1,Fair,E,SI1,66.3,62,4140,6.27,6.06,4.09
1.5,Good,G,I1,63.7,57,4140,7.28,7.21,4.62
1.04,Premium,I,SI2,61.3,59,4141,6.5,6.46,3.97
0.82,Very Good,F,VVS2,63.1,59,4141,5.91,5.97,3.75
0.91,Very Good,F,SI1,62,59,4141,6.2,6.22,3.85
0.95,Premium,E,SI2,60.7,59,4142,6.3,6.36,3.84
1,Very Good,G,SI2,62.4,60,4142,6.31,6.36,3.95
0.96,Very Good,F,SI2,60.9,57,4142,6.38,6.42,3.9
0.73,Ideal,G,IF,62.3,56,4142,5.72,5.78,3.58
0.91,Very Good,H,VVS2,63.6,56,4143,6.11,6.13,3.89
1,Premium,F,SI1,59,59,4144,6.55,6.5,3.85
1,Premium,J,VS1,62.8,57,4144,6.39,6.35,4
1,Ideal,J,VS1,62.3,56,4144,6.43,6.38,3.99
0.9,Very Good,E,SI1,62,62,4144,6.11,6.21,3.82
0.93,Very Good,G,SI1,62.3,58,4144,6.2,6.29,3.9
1,Premium,H,SI1,61.7,59,4144,6.41,6.36,3.94
1,Premium,F,SI2,61.5,59,4144,6.47,6.44,3.97
1.41,Fair,H,I1,64.7,58,4145,7.05,7,4.55
1.05,Premium,J,VS2,61.1,58,4145,6.56,6.51,3.99
0.8,Ideal,G,VVS2,62.6,54,4146,5.9,5.97,3.71
1.21,Fair,J,SI1,65,59,4147,6.64,6.57,4.29
1.21,Fair,J,SI1,65.3,60,4147,6.6,6.51,4.28
0.9,Ideal,E,SI1,61.7,56,4147,6.16,6.23,3.82
0.9,Good,E,SI1,60.4,58,4147,6.12,6.24,3.73
1,Very Good,I,SI1,63.1,58,4149,6.3,6.35,3.99
1.01,Good,H,SI2,64.8,58,4149,6.24,6.29,4.06
1.01,Good,E,SI2,63.3,58,4149,6.29,6.35,4
1.14,Ideal,H,SI2,62.6,57,4150,6.71,6.65,4.18
0.92,Premium,D,SI2,62.5,55,4150,6.21,6.18,3.87
0.91,Good,G,VS1,64.1,59,4150,6.1,6.13,3.92
1.01,Good,G,SI2,62.4,60,4150,6.32,6.38,3.96
1,Fair,H,SI1,56.3,63,4150,6.63,6.61,3.73
0.95,Premium,G,SI1,62.6,58,4150,6.26,6.21,3.9
0.76,Ideal,D,VVS2,62.3,57,4150,5.87,5.84,3.65
1,Premium,H,SI1,61.8,59,4150,6.4,6.35,3.94
0.76,Premium,F,IF,60.6,60,4150,5.89,5.85,3.56
1.02,Premium,F,SI2,62.7,59,4151,6.38,6.45,4.02
0.9,Very Good,E,SI1,63.1,58,4151,6.12,6.02,3.83
0.9,Premium,G,VS2,61.1,58,4152,6.22,6.25,3.81
1.08,Very Good,J,SI2,62.5,60,4152,6.51,6.57,4.09
1.18,Ideal,E,I1,61.6,56,4153,6.79,6.82,4.19
1.01,Very Good,J,SI1,61.3,57,4153,6.45,6.5,3.97
1.03,Premium,H,SI2,62.3,59,4153,6.46,6.42,4.01
1.03,Premium,J,SI1,61.7,54,4153,6.56,6.5,4.03
1.01,Premium,G,SI2,60.1,59,4154,6.45,6.39,3.86
1.09,Good,F,SI1,61,64,4154,6.58,6.63,4.03
1.01,Very Good,G,SI2,63.5,58,4154,6.39,6.34,4.04
0.92,Premium,H,VS1,61,62,4155,6.32,6.26,3.84
0.9,Very Good,H,VS2,62,57,4155,6.1,6.16,3.8
0.9,Premium,H,VS2,61.8,58,4155,6.12,6.17,3.8
0.9,Premium,H,VS2,61.3,59,4155,6.19,6.24,3.81
0.9,Very Good,H,VS2,61.8,56,4155,6.18,6.25,3.84
0.9,Very Good,H,VS2,62.7,59,4155,6.1,6.15,3.84
1.02,Very Good,I,SI2,63.2,60,4155,6.37,6.41,4.04
1,Good,F,SI2,57.3,61,4155,6.64,6.59,3.79
1.06,Premium,F,SI1,61.9,59,4155,6.57,6.52,4.05
1,Premium,I,VS2,62.6,59,4155,6.33,6.28,3.95
1,Good,F,SI2,63.8,58,4155,6.33,6.28,4.02
1,Ideal,F,SI2,62.7,57,4155,6.34,6.29,3.96
1,Premium,F,SI2,62.9,59,4155,6.39,6.3,3.99
1,Premium,F,SI2,62.6,58,4155,6.37,6.31,3.97
1,Premium,F,SI2,62.8,57,4155,6.44,6.37,4.02
1,Good,I,VS2,59.7,64,4155,6.51,6.45,3.87
1,Good,D,SI1,57.6,62,4155,6.62,6.5,3.78
1.06,Premium,D,SI2,60.9,60,4155,6.55,6.52,3.98
1,Premium,F,SI2,62.4,61,4155,6.34,6.32,3.95
1,Premium,F,SI2,59.4,62,4155,6.4,6.37,3.79
1.06,Premium,I,SI1,62.9,60,4155,6.47,6.43,4.06
0.9,Good,H,VS2,61.5,61,4156,6.15,6.24,3.81
0.9,Very Good,H,VS2,62.2,58,4157,6.11,6.18,3.82
0.74,Ideal,F,VVS2,61.7,57,4157,5.79,5.84,3.59
0.9,Ideal,I,VS2,62,53,4157,6.17,6.23,3.85
1.1,Ideal,J,SI2,60.9,56,4157,6.68,6.72,4.08
1.16,Premium,H,SI2,58.8,61,4157,6.93,6.84,4.05
0.9,Premium,F,SI1,61.2,59,4158,6.19,6.16,3.78
0.9,Very Good,F,SI1,63.2,56,4158,6.16,6.09,3.87
0.92,Good,D,SI1,63.6,57,4158,6.09,6.14,3.89
0.92,Good,D,SI1,63.1,58,4158,6.11,6.16,3.87
1,Good,F,SI1,63.7,58,4158,6.29,6.34,4.02
1.05,Very Good,H,SI2,63,59,4158,6.44,6.48,4.07
1.1,Ideal,I,SI2,62.8,57,4158,6.63,6.56,4.14
1.12,Premium,G,SI2,61.2,58,4158,6.69,6.67,4.09
1.04,Premium,G,SI2,60.3,62,4158,6.56,6.5,3.94
1.36,Fair,J,SI2,67.8,55,4158,6.73,6.66,4.54
1.12,Good,G,SI2,56.7,62,4158,6.91,6.86,3.9
0.9,Premium,E,SI1,62.9,58,4158,6.16,6.11,3.86
0.9,Premium,F,SI1,63,60,4158,6.13,6.09,3.85
0.9,Premium,F,SI1,59.9,59,4158,6.29,6.26,3.76
1.12,Ideal,G,SI2,62.8,54,4158,6.7,6.64,4.19
0.83,Ideal,D,SI1,61.9,56,4159,6.01,6.04,3.73
1.02,Good,G,SI2,59.9,58,4159,6.48,6.55,3.9
0.94,Premium,G,SI1,61.3,61,4159,6.33,6.27,3.86
1.03,Premium,G,SI2,59.3,58,4160,6.58,6.63,3.92
0.91,Ideal,E,SI2,61.8,56,4160,6.19,6.27,3.85
1.32,Premium,J,SI2,61.2,59,4160,7.08,7.04,4.32
0.9,Very Good,I,VVS1,63.5,58,4161,6.06,6.09,3.86
0.9,Ideal,G,SI1,62.1,56,4161,6.16,6.2,3.84
0.9,Ideal,G,SI1,61.9,55,4161,6.18,6.23,3.84
0.59,Ideal,D,IF,60.7,58,4161,5.45,5.49,3.32
1.02,Very Good,F,SI2,63,58,4162,6.38,6.44,4.04
1.02,Very Good,F,SI2,60.4,60,4162,6.49,6.53,3.93
1.02,Ideal,F,SI2,62.1,56,4162,6.41,6.44,3.99
1.02,Very Good,F,SI2,59.9,62,4162,6.5,6.53,3.9
1.06,Very Good,G,SI2,61.1,62,4162,6.55,6.61,4.02
1.02,Very Good,F,SI2,62,59,4162,6.33,6.42,3.95
1.02,Very Good,F,SI2,60.2,61,4162,6.48,6.52,3.91
1.02,Good,F,SI2,63.8,53,4162,6.37,6.46,4.09
1.02,Premium,F,SI2,59.9,59,4162,6.56,6.59,3.94
1.03,Ideal,I,SI2,62.3,59,4162,6.39,6.45,4
0.93,Very Good,G,SI2,62.9,56,4163,6.2,6.23,3.91
1,Fair,G,SI1,63.1,59,4163,6.32,6.27,3.97
0.33,Ideal,E,SI1,62.5,55,579,4.42,4.45,2.77
0.33,Ideal,I,VVS2,62.4,56,579,4.41,4.43,2.76
0.33,Premium,G,VS2,61.4,60,579,4.41,4.45,2.72
0.33,Ideal,H,VS1,62,55,579,4.44,4.46,2.76
0.33,Ideal,H,VS1,61.7,54,579,4.45,4.47,2.75
0.33,Very Good,E,SI1,62.7,56,579,4.39,4.45,2.77
0.33,Premium,G,VS2,61.9,59,579,4.4,4.46,2.74
0.33,Ideal,E,SI1,62.4,56,579,4.41,4.43,2.76
0.33,Very Good,E,SI1,60.7,57,579,4.43,4.47,2.7
0.33,Premium,I,VVS2,61,58,579,4.42,4.46,2.71
0.33,Very Good,G,VS2,60.9,56,579,4.46,4.5,2.73
0.33,Premium,I,VVS2,61,59,579,4.41,4.44,2.7
0.33,Very Good,G,VS2,62,58,579,4.42,4.45,2.75
0.33,Ideal,I,VVS2,62.7,54,579,4.42,4.45,2.78
0.33,Very Good,G,VS2,59.3,61,579,4.49,4.51,2.67
0.33,Good,I,VVS2,63.7,56,579,4.36,4.4,2.79
0.33,Ideal,H,VS1,61.8,56,579,4.41,4.46,2.74
0.33,Premium,G,VS2,62.6,58,579,4.41,4.44,2.77
0.33,Premium,I,VVS2,61.4,58,579,4.45,4.48,2.74
0.33,Very Good,E,SI1,59.1,58,579,4.51,4.56,2.68
0.33,Very Good,G,VS2,60.8,62,579,4.42,4.46,2.7
0.33,Ideal,I,VVS2,62.4,57,579,4.41,4.44,2.76
0.33,Ideal,G,VS2,62.5,57,579,4.39,4.41,2.75
0.33,Very Good,G,VS2,61.1,59,579,4.43,4.47,2.72
0.33,Premium,G,VS2,60.8,58,579,4.45,4.47,2.71
0.33,Very Good,H,VS1,60,61,579,4.48,4.52,2.7
0.33,Premium,E,SI1,62.2,59,579,4.41,4.43,2.75
0.33,Premium,H,VS1,61.9,58,579,4.43,4.45,2.75
0.33,Premium,H,VS1,62.1,59,579,4.43,4.46,2.76
0.33,Ideal,G,VS2,61.6,55,579,4.43,4.46,2.74
1.05,Ideal,I,SI2,60.9,57,4163,6.55,6.62,4.01
1,Ideal,H,SI2,62.5,54,4163,6.32,6.38,3.97
1.04,Premium,E,SI2,61.6,59,4164,6.55,6.57,4.04
0.85,Ideal,G,VS1,61.6,54,4164,6.08,6.12,3.76
0.9,Good,E,SI1,63.1,61,4165,6.14,6.18,3.89
0.9,Very Good,E,SI1,61.3,57,4165,6.24,6.29,3.84
0.9,Very Good,E,SI1,59.8,58,4165,6.21,6.26,3.73
0.9,Very Good,E,SI1,61.8,59,4165,6.11,6.16,3.79
0.93,Good,D,SI2,61.4,63,4165,6.22,6.26,3.83
0.9,Good,E,SI1,58.3,61,4165,6.24,6.29,3.65
0.91,Premium,D,SI1,61.5,59,4165,6.25,6.18,3.82
1.01,Very Good,I,SI1,62.9,58,4166,6.34,6.37,4
1.01,Premium,I,SI1,61.8,59,4166,6.37,6.44,3.96
1.01,Premium,H,SI2,61.6,59,4166,6.39,6.44,3.95
1.01,Good,F,SI2,63.7,59,4166,6.28,6.38,4.03
1.01,Very Good,H,SI2,58.8,58,4166,6.57,6.62,3.88
1,Fair,H,VS2,66.8,63,4166,6.19,6.08,4.1
1,Good,H,VS2,57.8,59,4166,6.53,6.47,3.75
0.71,Ideal,F,VVS2,62.2,56,4167,5.7,5.74,3.56
0.71,Ideal,F,VVS2,61.6,54,4167,5.76,5.79,3.56
1.17,Premium,F,SI2,59.9,59,4167,6.86,6.82,4.1
1.02,Good,H,SI1,57.1,61,4167,6.66,6.57,3.78
1.06,Ideal,I,SI2,61.3,56,4167,6.59,6.55,4.03
0.9,Ideal,D,SI2,60.8,56,4167,6.26,6.24,3.8
1.08,Very Good,F,SI2,63.3,59,4167,6.48,6.44,4.09
1.51,Fair,G,I1,65.6,54,4167,7.28,7.1,4.72
1.01,Good,E,SI2,63.3,58,4168,6.3,6.36,4.01
0.92,Premium,D,SI2,62.4,58,4168,6.18,6.19,3.86
0.92,Very Good,D,SI2,62.4,60,4168,6.21,6.25,3.89
1.11,Very Good,I,SI2,62.6,55,4168,6.65,6.71,4.18
1.19,Premium,D,SI2,58.6,61,4168,6.93,6.89,4.05
1.11,Very Good,E,SI2,60,61,4170,6.66,6.71,4.01
0.8,Ideal,D,VS2,61,57,4170,5.96,6,3.65
1,Premium,G,SI2,62.7,59,4170,6.36,6.3,3.97
0.7,Very Good,E,VVS1,61.6,61,4171,5.7,5.73,3.52
1.01,Very Good,I,SI2,62.9,55,4171,6.37,6.42,4.02
0.95,Premium,F,SI2,62.4,59,4171,6.26,6.21,3.89
0.73,Ideal,F,VVS1,61.1,56,4171,5.83,5.86,3.57
1.01,Good,E,SI2,57.5,63,4171,6.56,6.58,3.78
1.01,Good,I,SI1,61.7,58,4171,6.33,6.4,3.93
1,Ideal,H,VS2,62.4,57,4172,6.42,6.36,3.99
0.6,Ideal,D,VVS1,62.5,55,4172,5.4,5.42,3.38
1,Very Good,H,SI2,61.6,58,4172,6.43,6.47,3.97
0.97,Premium,H,SI1,61.9,60,4172,6.37,6.3,3.92
1,Premium,G,SI2,59.4,62,4172,6.5,6.47,3.85
0.9,Very Good,H,VS2,62.7,59,4173,6.11,6.17,3.85
1.14,Very Good,J,SI1,63.3,55,4173,6.6,6.67,4.2
0.9,Ideal,H,VS2,61.6,57,4173,6.17,6.29,3.84
0.9,Good,E,SI1,60.7,63,4173,6.07,6.13,3.7
0.92,Very Good,H,VS2,63.4,57,4173,6.17,6.11,3.89
0.92,Very Good,H,VS2,63.1,57,4173,6.2,6.17,3.9
1.08,Premium,J,SI1,61,60,4173,6.62,6.57,4.02
0.92,Ideal,G,SI1,62.6,56,4173,6.21,6.19,3.88
1,Ideal,I,SI1,62.7,56,4174,6.33,6.37,3.98
1.01,Ideal,J,SI2,61.9,55,4174,6.5,6.43,4.01
1.04,Very Good,I,SI1,62.5,62,4175,6.39,6.45,4.01
1.03,Ideal,J,SI1,61.6,57,4175,6.46,6.49,3.99
1.13,Fair,F,SI2,64.4,56,4176,6.58,6.52,4.22
1.01,Very Good,G,SI2,62.9,56,4176,6.36,6.39,4.01
1.11,Premium,E,SI2,61,60,4177,6.68,6.66,4.07
1.03,Good,D,SI2,57.6,58,4177,6.6,6.67,3.82
1.11,Premium,E,SI2,61.6,61,4177,6.66,6.61,4.09
1.2,Premium,J,SI2,61.8,56,4177,6.85,6.81,4.22
1.11,Very Good,E,SI2,61.7,63,4177,6.65,6.54,4.07
0.9,Good,D,SI1,63.8,57,4178,6.12,6.07,3.89
1.01,Good,E,SI1,63.8,60,4179,6.31,6.36,4.04
0.93,Ideal,E,SI1,62,56,4179,6.25,6.29,3.89
1.02,Good,F,SI2,64.1,60,4179,6.25,6.29,4.02
0.91,Premium,D,SI1,59.3,58,4179,6.38,6.33,3.77
1.28,Ideal,F,SI2,59.7,57,4179,7.12,7.06,4.23
0.79,Ideal,F,VVS2,61.9,57,4180,5.93,5.96,3.68
0.9,Premium,D,SI1,61.8,59,4181,6.13,6.11,3.78
1.04,Very Good,F,SI2,62.3,58,4181,6.44,6.5,4.03
1,Very Good,E,SI2,63.7,60,4181,6.24,6.32,4
1.22,Good,G,SI2,64,61,4181,6.75,6.68,4.3
0.83,Ideal,G,VS1,62.1,57,4181,5.99,6.03,3.73
0.85,Ideal,E,SI1,60.7,57,4181,6.11,6.14,3.72
1.01,Good,E,SI1,64.3,59,4181,6.31,6.28,4.05
1.01,Fair,E,SI1,64.7,59,4181,6.23,6.11,3.99
0.9,Very Good,G,VS2,62.4,60,4182,6.07,6.11,3.8
0.73,Ideal,G,VVS1,61.7,57,4182,5.77,5.8,3.57
0.94,Ideal,D,SI2,62.1,56,4182,6.21,6.25,3.87
0.97,Good,F,SI2,59.1,62,4182,6.49,6.54,3.85
0.93,Premium,F,SI1,61.1,59,4182,6.32,6.29,3.85
0.9,Premium,G,VS2,60.9,58,4183,6.34,6.19,3.79
0.9,Premium,F,SI1,62,55,4183,6.2,6.16,3.83
0.92,Ideal,E,SI1,61.4,55,4183,6.29,6.25,3.85
0.78,Ideal,D,VS2,62.3,54,4183,5.87,5.91,3.67
0.92,Very Good,E,SI1,63.2,58,4183,6.18,6.16,3.9
0.91,Good,G,VS2,63.6,58,4183,6.14,6.1,3.89
0.92,Premium,E,SI1,59.4,62,4183,6.3,6.24,3.73
0.9,Fair,F,VS1,66.2,55,4183,6.11,5.97,4
0.92,Good,E,SI1,63.7,57,4183,6.14,6.11,3.9
0.65,Ideal,E,IF,62.3,56,4184,5.52,5.56,3.45
1,Good,E,SI2,59.9,63,4184,6.45,6.5,3.88
1.01,Premium,I,SI1,61.8,58,4185,6.45,6.37,3.96
1.01,Very Good,H,SI2,58.9,60,4185,6.62,6.58,3.89
1.01,Good,G,SI2,63.8,53,4185,6.41,6.31,4.06
1.01,Very Good,I,SI1,63.4,55,4185,6.39,6.35,4.04
1.11,Ideal,G,SI2,61.9,55,4185,6.65,6.6,4.1
1.01,Very Good,G,SI1,63.3,57,4185,6.37,6.35,4.02
0.9,Very Good,H,VVS2,62.9,58,4186,6.1,6.15,3.85
0.9,Very Good,F,VS2,61.2,59,4186,6.2,6.26,3.81
0.96,Very Good,E,SI2,62.6,60,4186,6.26,6.32,3.94
1.01,Very Good,I,SI1,59.7,60,4186,6.49,6.55,3.89
1.15,Ideal,H,SI2,62.2,57,4186,6.68,6.63,4.14
1.15,Premium,F,SI2,61.8,54,4186,6.78,6.75,4.18
0.96,Very Good,I,VS2,59.6,59,4187,6.36,6.42,3.81
0.9,Good,I,VVS1,63.6,58,4187,6.1,6.14,3.89
1.01,Very Good,F,SI2,62.4,58,4187,6.37,6.42,3.99
0.9,Very Good,D,SI1,63.4,53,4187,6.1,6.17,3.89
0.9,Good,D,SI1,62,62,4187,6.06,6.1,3.77
0.91,Very Good,E,SI1,63.7,59,4188,6.13,6.17,3.92
0.91,Very Good,F,SI1,63.1,60,4188,6.13,6.17,3.88
0.87,Ideal,F,SI1,61.7,56,4188,6.1,6.12,3.77
0.87,Premium,D,SI1,62.1,58,4189,6.08,6.13,3.79
1.01,Very Good,I,SI1,63.6,58,4189,6.31,6.36,4.03
0.85,Ideal,E,VS1,63,57,4189,6.08,5.99,3.8
1.02,Ideal,I,SI2,62.8,58,4189,6.37,6.41,4.01
1.01,Good,J,VS1,61.5,61,4189,6.39,6.45,3.95
1,Premium,G,SI1,60,62,4189,6.48,6.45,3.88
1.04,Very Good,I,SI1,64.1,57,4190,6.35,6.38,4.08
0.9,Good,E,SI1,57.9,60,4190,6.3,6.34,3.66
1.01,Premium,H,SI1,60.3,59,4191,6.45,6.42,3.88
0.86,Very Good,D,VS2,62.8,55,4191,6.07,6.13,3.83
1.21,Very Good,J,VS2,62.4,58,4191,6.79,6.83,4.25
0.91,Very Good,E,SI1,63.3,56,4191,6.12,6.17,3.89
0.91,Very Good,E,SI1,58.8,59,4191,6.34,6.39,3.74
0.9,Ideal,E,SI2,62.2,55,4191,6.19,6.22,3.86
1.04,Good,D,SI2,57.6,63,4191,6.67,6.7,3.85
1.01,Good,H,SI1,64,58,4191,6.37,6.31,4.06
0.9,Premium,H,VS2,61.7,59,4191,6.19,6.13,3.8
1.01,Very Good,H,SI1,63.4,58,4191,6.41,6.37,4.05
1.01,Fair,H,SI1,64.6,55,4191,6.29,6.25,4.05
1.01,Premium,H,SI1,61.9,59,4191,6.35,6.32,3.92
1.01,Ideal,H,SI1,60.2,56,4191,6.47,6.42,3.88
1.01,Premium,H,SI1,61.2,59,4191,6.45,6.4,3.93
1.01,Premium,H,SI1,58.8,62,4191,6.59,6.54,3.86
1.01,Premium,H,SI1,58.2,62,4191,6.54,6.48,3.78
1.1,Very Good,I,SI2,62.6,59,4192,6.53,6.57,4.1
1.21,Good,J,SI2,63.7,55,4192,6.75,6.81,4.32
0.89,Ideal,D,SI2,60.8,56,4192,6.22,6.25,3.79
1.04,Very Good,I,SI1,63.2,54,4193,6.49,6.42,4.08
0.91,Very Good,H,VS2,58.3,59,4193,6.35,6.47,3.74
0.9,Good,D,SI1,63.8,58,4193,6.09,6.13,3.9
1.04,Good,H,SI2,57.9,58,4193,6.72,6.68,3.88
1.04,Ideal,H,SI2,60.3,56,4193,6.61,6.58,3.98
0.8,Premium,G,IF,62.6,58,4193,5.93,5.89,3.7
1.07,Good,I,VS2,63.8,60,4194,6.41,6.38,4.08
0.9,Ideal,H,VS1,61.8,56,4194,6.18,6.24,3.84
0.95,Very Good,G,SI2,62.6,58,4194,6.17,6.23,3.88
1.01,Very Good,J,SI1,63,54,4194,6.35,6.41,4.02
0.92,Premium,F,SI1,62.2,59,4194,6.21,6.14,3.84
1.01,Ideal,J,SI1,60.2,59,4194,6.48,6.51,3.91
0.9,Fair,I,VVS1,63.5,57,4194,5.98,6.09,3.83
0.9,Good,G,VS2,63.6,58,4194,6.12,6.08,3.88
1.07,Premium,H,SI2,62.2,59,4194,6.53,6.47,4.04
0.9,Premium,G,VS2,61.3,59,4194,6.21,6.15,3.79
1.13,Very Good,I,SI2,59.9,57,4195,6.76,6.8,4.06
1.01,Good,G,SI1,63.6,58,4195,6.29,6.35,4.02
1,Very Good,G,SI2,60,62,4195,6.45,6.48,3.88
0.73,Ideal,D,VS1,61.5,58,4196,5.76,5.79,3.55
1.11,Premium,I,SI2,61.5,58,4196,6.65,6.61,4.08
1.06,Ideal,H,SI1,62.7,57,4196,6.53,6.48,4.08
1.11,Ideal,E,SI2,62,57,4196,6.67,6.63,4.12
1.11,Premium,I,SI2,61.8,58,4196,6.66,6.61,4.1
1.01,Premium,F,SI2,59.6,59,4197,6.59,6.52,3.91
1,Ideal,F,SI2,61.8,57,4197,6.36,6.45,3.96
1.06,Very Good,I,SI1,62.7,56,4197,6.46,6.5,4.06
1.18,Premium,J,SI2,61.3,60,4197,6.78,6.83,4.17
1.01,Premium,F,SI2,61,60,4197,6.48,6.44,3.94
1.01,Premium,F,SI2,62.7,56,4197,6.4,6.35,4
1.01,Good,F,SI2,63.6,59,4197,6.37,6.34,4.04
1.01,Premium,F,SI2,58.8,62,4197,6.49,6.46,3.81
1.01,Good,I,VS2,63.9,59,4197,6.29,6.26,4.01
1.01,Good,F,SI2,64.3,59,4197,6.33,6.26,4.05
1.01,Ideal,F,SI2,60.8,55,4197,6.52,6.48,3.95
0.7,Good,D,VVS1,59.2,59,4198,5.76,5.79,3.42
1.19,Premium,J,SI2,58.4,60,4198,6.98,6.92,4.06
0.9,Ideal,F,SI2,61.5,56,4198,6.24,6.18,3.82
1.05,Premium,G,SI2,61.8,60,4198,6.49,6.46,4
1.01,Good,F,SI1,64.2,58,4199,6.31,6.33,4.06
1.05,Very Good,J,SI1,62.5,58,4199,6.47,6.52,4.06
1.03,Ideal,E,SI2,61.6,56,4199,6.5,6.45,3.99
0.91,Ideal,I,VS2,61.6,56,4199,6.17,6.25,3.83
0.91,Ideal,I,VS2,61.9,56,4199,6.18,6.22,3.84
1.25,Very Good,H,SI2,63.2,60,4199,6.87,6.81,4.32
1.03,Ideal,I,VS1,62.4,57,4199,6.48,6.4,4.02
1.03,Premium,I,VS1,60.1,59,4199,6.53,6.46,3.9
1,Ideal,I,SI1,61.4,56,4200,6.45,6.39,3.94
1.04,Ideal,G,SI2,62,57,4200,6.53,6.6,4.07
1.04,Very Good,G,SI2,60.9,58,4200,6.52,6.58,3.99
1.04,Premium,G,SI2,61.2,58,4200,6.5,6.57,4
1.04,Very Good,G,SI2,62.9,58,4200,6.43,6.47,4.06
1,Very Good,H,SI2,63.3,57,4200,6.37,6.3,4.01
1,Premium,I,SI1,60.5,59,4200,6.54,6.49,3.94
1,Good,H,SI1,63.7,55,4200,6.33,6.29,4.02
1,Ideal,I,SI1,59.8,57,4200,6.5,6.44,3.87
1,Premium,H,SI2,62.7,58,4200,6.33,6.31,3.96
1,Very Good,I,SI1,63.3,58,4200,6.34,6.3,4
1,Premium,F,SI2,62.5,59,4200,6.4,6.28,3.96
1,Premium,E,SI2,61,62,4200,6.41,6.34,3.89
1,Premium,E,SI2,62.8,59,4200,6.34,6.3,3.97
1.25,Premium,J,SI1,62,61,4200,6.86,6.84,4.25
1.25,Premium,H,SI2,60.5,61,4200,6.97,6.91,4.2
0.9,Very Good,H,VS1,60.5,63,4201,6.13,6.16,3.72
1.07,Very Good,G,SI2,58.5,61,4201,6.59,6.71,3.89
1.07,Premium,G,SI2,59.8,60,4201,6.65,6.7,3.99
1.07,Very Good,G,SI2,59.9,59,4201,6.61,6.67,3.98
1.1,Premium,E,SI2,60,60,4201,6.7,6.73,4.03
0.91,Very Good,H,VS2,59.9,62,4201,6.26,6.33,3.77
0.91,Very Good,H,VS2,62.8,58,4201,6.15,6.17,3.87
0.91,Premium,H,VS2,61.9,59,4201,6.18,6.23,3.84
0.9,Very Good,E,SI1,62.1,59,4201,6.13,6.17,3.82
0.9,Ideal,H,VS1,60.9,57,4201,6.2,6.24,3.79
1.05,Ideal,J,VS2,62.3,56,4201,6.55,6.51,4.07
1.21,Good,E,I1,64,57,4201,6.73,6.67,4.29
1.1,Very Good,I,SI2,60.5,59,4202,6.65,6.71,4.04
1.11,Very Good,I,SI2,61.1,58,4202,6.63,6.69,4.07
1,Premium,E,SI2,58.5,61,4202,6.52,6.48,3.8
1,Good,I,VS1,63.8,56,4202,6.35,6.32,4.04
0.9,Good,E,VS2,64,58,4203,6.07,6.02,3.87
1.2,Premium,D,SI2,60.2,60,4203,6.94,6.81,4.14
1.05,Good,E,SI2,63.2,59,4204,6.36,6.43,4.04
1,Good,F,SI2,62,59,4204,6.32,6.36,3.93
0.96,Premium,G,SI2,59.3,58,4204,6.49,6.43,3.83
0.91,Premium,F,SI1,62.1,56,4204,6.24,6.2,3.86
0.84,Very Good,D,SI1,59.9,54,4205,6.2,6.23,3.72
0.7,Ideal,E,VVS2,61.6,56,4205,5.72,5.75,3.53
0.91,Good,H,VVS2,65.5,57,4205,6.01,6.11,3.97
1.01,Fair,D,SI2,65.3,55,4205,6.33,6.19,4.09
1.13,Very Good,J,VS2,62,59,4206,6.62,6.66,4.12
1.07,Premium,I,SI2,59.7,59,4206,6.68,6.63,3.97
1,Very Good,G,SI2,62.8,57,4207,6.31,6.37,3.98
1.02,Premium,H,SI2,60.9,59,4207,6.46,6.51,3.95
1.02,Premium,H,SI2,59.8,59,4207,6.5,6.54,3.9
1.02,Very Good,F,SI2,60,60,4207,6.53,6.57,3.93
1.02,Good,H,SI2,63.1,59,4207,6.37,6.43,4.04
1.02,Ideal,H,SI2,61.8,55,4207,6.47,6.51,4.01
1.01,Very Good,I,SI1,60.9,59,4207,6.39,6.45,3.91
0.59,Ideal,D,IF,60.9,57,4208,5.4,5.43,3.3
1.01,Very Good,H,VS2,63.1,62,4208,6.18,6.15,3.89
1.01,Good,H,VS2,63.9,58,4208,6.26,6.22,3.99
0.81,Premium,D,VS1,62.3,58,4209,6,5.94,3.72
1.01,Ideal,G,SI2,62.1,59,4209,6.45,6.41,3.99
0.9,Premium,E,SI1,61.3,60,4209,6.19,6.14,3.78
0.9,Premium,E,SI1,60.3,56,4209,6.29,6.21,3.77
0.9,Premium,E,SI1,61.9,58,4209,6.17,6.1,3.8
0.6,Ideal,D,VVS1,62.5,55,4209,5.42,5.4,3.38
0.91,Good,G,VS1,63.6,60,4209,6.11,6.03,3.86
0.91,Very Good,G,VS1,63.2,58,4209,6.15,6.07,3.86
0.91,Very Good,G,VS1,63.4,54,4209,6.24,6.07,3.9
0.9,Very Good,G,VS2,62.4,61,4210,6.13,6.17,3.84
0.9,Very Good,G,VS2,61,60,4210,6.21,6.24,3.8
0.9,Good,G,VS2,60.8,56,4210,6.14,6.19,3.75
1.01,Good,G,SI2,62.8,61,4210,6.31,6.37,3.98
0.85,Very Good,D,VS2,61.8,56,4211,6.06,6.08,3.75
0.91,Very Good,E,SI1,60.5,61,4211,6.19,6.23,3.76
0.91,Very Good,E,SI1,61.9,61,4211,6.1,6.12,3.78
0.91,Premium,E,SI1,62.6,58,4211,6.14,6.17,3.85
0.91,Very Good,E,SI1,62.4,57,4211,6.11,6.23,3.85
0.91,Good,E,SI1,63.5,57,4211,6.07,6.11,3.87
1.01,Good,G,SI2,63.7,56,4211,6.26,6.34,4.01
1.18,Premium,D,SI2,61.8,58,4211,6.83,6.7,4.19
1.01,Very Good,I,SI1,62.7,56,4212,6.36,6.43,4.01
1.14,Ideal,J,SI2,61.5,57,4212,6.73,6.77,4.15
1.09,Ideal,H,SI2,61.5,55,4212,6.65,6.68,4.1
1.11,Premium,H,SI2,61.5,59,4212,6.61,6.56,4.05
0.79,Very Good,D,VS1,62.4,60,4213,5.86,5.88,3.66
0.96,Ideal,H,SI2,62.1,57,4213,6.3,6.35,3.93
1,Good,E,SI1,59.8,65,4213,6.56,6.45,3.89
1,Fair,E,SI1,58.1,63,4213,6.6,6.52,3.81
0.93,Very Good,D,SI2,60.6,59,4214,6.3,6.34,3.83
0.93,Very Good,D,SI2,62.6,57,4214,6.2,6.26,3.9
1.13,Premium,J,SI1,61.3,59,4214,6.77,6.67,4.12
1.12,Ideal,D,I1,60.6,55,4215,6.76,6.73,4.09
1.12,Premium,E,SI2,63,61,4215,6.66,6.61,4.18
0.56,Ideal,D,IF,62.4,56,4216,5.24,5.28,3.28
1.1,Very Good,J,SI2,61.9,55,4217,6.59,6.63,4.09
1,Good,G,SI1,63.9,58,4218,6.26,6.32,4.02
1,Good,G,SI1,63.1,56,4218,6.31,6.41,4.01
1,Good,D,SI2,61.5,63,4218,6.27,6.32,3.87
1,Good,D,SI2,57.8,58,4218,6.55,6.61,3.8
1,Good,D,SI2,63.5,59,4218,6.32,6.35,4.02
1,Very Good,G,SI1,58.6,63,4218,6.56,6.58,3.85
1.03,Very Good,F,SI2,61.1,59,4218,6.51,6.58,4
0.96,Very Good,F,SI2,59.8,59,4218,6.38,6.45,3.84
0.93,Ideal,H,VS2,61.5,57,4218,6.3,6.26,3.86
0.9,Fair,E,SI1,59.2,60,4220,6.17,6.22,3.67
1.01,Good,F,SI2,63.2,58,4221,6.3,6.43,4.02
1.01,Good,F,SI2,63.3,57,4221,6.37,6.39,4.04
1.03,Ideal,J,SI1,62.1,55,4221,6.46,6.51,4.03
0.71,Ideal,D,VVS2,61.6,56,4222,5.69,5.77,3.53
1.12,Ideal,G,SI2,62.1,57,4222,6.71,6.65,4.14
1.16,Fair,H,SI2,66.3,57,4222,6.56,6.5,4.33
1.16,Premium,J,SI1,62.5,58,4222,6.73,6.67,4.19
0.76,Ideal,D,VVS2,62.3,57,4223,5.84,5.87,3.65
0.76,Premium,F,IF,60.6,60,4223,5.85,5.89,3.56
0.97,Very Good,F,SI2,62.9,57,4223,6.28,6.31,3.96
0.9,Good,G,VS1,63.9,57,4223,6.08,6.03,3.87
0.33,Premium,H,VS1,61,59,579,4.45,4.5,2.73
0.33,Ideal,G,VS2,61.2,55,579,4.46,4.52,2.75
0.33,Ideal,G,VS2,62.6,57,579,4.45,4.47,2.79
0.33,Very Good,G,VS2,59.4,61,579,4.49,4.53,2.68
0.33,Very Good,E,SI1,63,54,579,4.38,4.42,2.77
0.33,Very Good,G,VS2,62.1,56,579,4.41,4.44,2.75
0.33,Very Good,H,VS1,59.7,59,579,4.52,4.53,2.7
0.33,Ideal,G,VS2,62.2,56,579,4.44,4.47,2.77
0.33,Very Good,I,VVS2,62.1,56,579,4.41,4.45,2.75
0.33,Very Good,H,VS1,60.2,62,579,4.44,4.47,2.68
0.33,Very Good,E,SI1,62,60,579,4.38,4.43,2.73
0.33,Ideal,G,VS2,62,57,579,4.44,4.47,2.76
0.33,Ideal,G,VS2,62.3,57,579,4.4,4.43,2.75
0.33,Premium,H,VS1,61.5,58,579,4.39,4.46,2.72
0.33,Premium,H,VS1,59.5,59,579,4.48,4.53,2.68
0.33,Premium,E,SI1,60.9,58,579,4.46,4.5,2.73
0.33,Very Good,H,VS1,62.9,59,579,4.35,4.4,2.75
0.33,Ideal,G,VS2,62.3,55,579,4.42,4.47,2.77
0.33,Ideal,H,VS1,61.4,57,579,4.44,4.49,2.74
0.33,Premium,I,VVS2,62.2,59,579,4.41,4.47,2.76
0.33,Ideal,H,VS1,60.2,57,579,4.5,4.54,2.72
0.33,Ideal,H,VS1,61.9,56,579,4.44,4.48,2.76
0.33,Very Good,G,VS2,62.8,54,579,4.4,4.42,2.77
0.33,Very Good,G,VS2,62.6,58,579,4.36,4.4,2.74
0.33,Very Good,G,VS2,62.6,56,579,4.38,4.41,2.75
0.33,Good,E,SI1,63.3,56,579,4.41,4.43,2.8
0.33,Premium,I,VVS2,61.5,58,579,4.43,4.45,2.73
0.33,Premium,E,SI1,61.1,58,579,4.43,4.47,2.72
0.33,Premium,G,VS2,60,58,579,4.47,4.49,2.69
0.33,Very Good,E,SI1,60.6,60,579,4.41,4.44,2.68
1.05,Ideal,H,SI1,62,56,4223,6.53,6.46,4.03
1.06,Very Good,F,SI2,60,59,4224,6.6,6.63,3.97
0.91,Very Good,H,VS1,63.4,56,4224,6.18,6.12,3.9
1.07,Premium,J,VS2,62.8,57,4224,6.54,6.49,4.09
1.02,Ideal,H,SI2,60.5,60,4225,6.56,6.53,3.96
1.1,Ideal,J,SI2,62,59,4226,6.58,6.61,4.09
0.98,Good,F,SI1,56.8,64,4226,6.68,6.52,3.75
1.02,Premium,F,SI2,62.7,59,4227,6.45,6.38,4.02
1.02,Fair,F,SI1,61.8,50,4227,6.59,6.51,4.05
1.11,Ideal,F,SI2,62,57,4227,6.67,6.64,4.13
1,Premium,G,SI2,62.9,60,4227,6.35,6.3,3.98
1.02,Premium,I,SI1,62.7,58,4227,6.44,6.41,4.03
0.71,Very Good,E,VVS1,62.8,59,4228,5.66,5.71,3.57
0.92,Very Good,H,VS1,61,62,4228,6.26,6.32,3.84
0.92,Very Good,H,VS1,62.9,58,4228,6.17,6.2,3.89
0.92,Very Good,H,VS1,61.7,62,4228,6.2,6.12,3.8
1.01,Very Good,G,SI2,63.3,56,4228,6.26,6.33,3.99
0.86,Ideal,E,SI1,60.6,56,4228,6.16,6.18,3.74
0.72,Ideal,F,IF,62,57,4228,5.71,5.78,3.56
0.91,Premium,D,SI1,62.8,57,4228,6.17,6.12,3.86
1.02,Very Good,H,SI2,62.6,60,4229,6.3,6.38,3.97
0.76,Ideal,D,VS1,61.3,57,4229,5.87,5.9,3.61
0.9,Good,E,SI1,59.8,64,4229,6.14,6.21,3.69
0.93,Premium,E,SI1,61.4,57,4229,6.34,6.23,3.86
0.8,Premium,E,VVS2,62.9,59,4229,5.95,5.88,3.72
0.9,Fair,F,VS2,64.4,53,4229,6.08,6.04,3.9
0.9,Premium,F,VS2,62.7,54,4229,6.13,6.11,3.84
0.93,Ideal,E,SI1,62.8,56,4229,6.24,6.19,3.9
1.18,Ideal,E,I1,61.6,56,4229,6.82,6.79,4.19
1.09,Good,F,SI1,61,64,4230,6.63,6.58,4.03
0.94,Premium,F,SI2,62.2,59,4230,6.27,6.23,3.89
0.71,Ideal,E,VVS1,62.3,55,4231,5.68,5.72,3.55
0.9,Very Good,F,SI1,63,60,4232,6.09,6.13,3.85
0.9,Good,F,SI1,64.2,56,4232,6.02,6.1,3.89
0.9,Premium,F,SI1,59.9,59,4232,6.26,6.29,3.76
0.92,Very Good,E,SI1,60.7,59,4232,6.25,6.28,3.8
0.92,Ideal,F,SI1,62.8,56,4232,6.14,6.18,3.87
1.07,Good,F,SI2,58.7,64,4232,6.64,6.68,3.91
1.2,Very Good,J,VS2,63.1,56,4232,6.77,6.71,4.25
1.02,Ideal,H,SI1,63,57,4233,6.36,6.3,3.99
1.14,Premium,G,SI2,62.8,58,4233,6.68,6.64,4.18
1.14,Good,G,SI2,63.7,60,4233,6.69,6.6,4.24
0.9,Premium,H,VS1,62.7,60,4234,6.12,6.07,3.82
0.9,Good,H,VS1,64.1,57,4234,6.07,6.04,3.88
0.78,Very Good,D,VS1,60.5,55,4234,6,6.03,3.64
1,Premium,F,SI1,63,60,4234,6.34,6.24,3.97
1.01,Good,D,SI2,64,56,4234,6.25,6.29,4.01
0.96,Good,G,SI1,57.6,59,4234,6.53,6.56,3.77
0.9,Premium,H,VS1,62.4,58,4234,6.19,6.15,3.85
0.9,Very Good,H,VS1,63.5,59,4234,6.13,6.1,3.88
1.05,Premium,H,SI2,63,59,4234,6.48,6.44,4.07
0.9,Premium,H,VS1,62.9,58,4234,6.12,6.06,3.83
0.9,Premium,H,VS1,62.1,59,4234,6.14,6.09,3.8
0.9,Good,F,VS2,63.6,59,4234,6.11,6.06,3.87
0.9,Premium,F,VS2,58.7,59,4234,6.34,6.3,3.71
0.9,Ideal,H,VS1,62,56,4234,6.22,6.19,3.85
0.9,Premium,H,VS1,60.2,58,4234,6.32,6.28,3.79
1,Premium,F,SI1,60.8,59,4234,6.44,6.38,3.9
1.2,Premium,I,SI2,59,60,4234,6.99,6.95,4.11
1,Very Good,F,SI1,63.1,59,4234,6.29,6.22,3.95
1,Premium,F,SI1,62.1,60,4234,6.29,6.23,3.88
0.71,Premium,D,VVS1,59.2,59,4234,5.88,5.84,3.47
1.2,Premium,J,SI2,61.1,59,4234,6.81,6.78,4.15
1.2,Ideal,J,SI1,63,57,4234,6.74,6.64,4.24
1,Premium,F,SI1,60.8,59,4234,6.45,6.41,3.91
1.1,Very Good,I,SI1,60.4,61,4235,6.69,6.73,4.05
1.07,Ideal,J,SI1,62,56,4235,6.53,6.57,4.06
1.07,Premium,H,SI1,58.9,59,4235,6.76,6.71,3.97
1.07,Very Good,I,SI1,60.7,61,4237,6.55,6.6,3.99
1,Ideal,I,SI1,62.8,56,4237,6.33,6.38,3.99
1.02,Premium,F,SI2,60.2,61,4238,6.52,6.48,3.91
0.91,Premium,H,VS2,61.8,60,4238,6.22,6.18,3.83
1.06,Premium,G,SI2,61.1,62,4238,6.61,6.55,4.02
1.02,Premium,F,SI2,60.4,60,4238,6.53,6.49,3.93
1.02,Ideal,F,SI2,62.1,56,4238,6.44,6.41,3.99
1.02,Premium,F,SI2,63,58,4238,6.44,6.38,4.04
1.02,Good,F,SI2,63.8,53,4238,6.46,6.37,4.09
1.02,Premium,F,SI2,62,59,4238,6.42,6.33,3.95
1.06,Ideal,G,SI2,62.5,55,4238,6.55,6.51,4.08
1.02,Premium,F,SI2,59.9,59,4238,6.59,6.56,3.94
1.02,Premium,F,SI2,59.9,62,4238,6.53,6.5,3.9
1.01,Good,I,VS2,62.5,59,4239,6.3,6.37,3.96
1.01,Ideal,F,SI2,60.6,57,4239,6.49,6.55,3.95
1.01,Ideal,I,VS2,62.6,54,4239,6.4,6.45,4.02
1.01,Ideal,F,SI2,61.4,56,4239,6.46,6.51,3.98
0.91,Very Good,D,SI1,61.5,59,4239,6.18,6.25,3.82
0.9,Very Good,E,SI1,61.5,62,4239,6.15,6.2,3.8
1.04,Premium,I,VS1,61.4,57,4240,6.52,6.47,3.99
0.7,Very Good,E,VVS2,61.7,57,4240,5.68,5.71,3.51
0.79,Ideal,E,VS1,62,56,4240,5.9,5.93,3.67
0.91,Ideal,G,SI1,62.1,57,4240,6.2,6.23,3.86
1.04,Premium,E,SI2,61.6,59,4240,6.57,6.55,4.04
1.04,Premium,E,SI2,61,60,4240,6.57,6.52,3.99
1.05,Premium,G,SI2,61.3,58,4241,6.55,6.6,4.03
1.08,Very Good,G,SI2,59.8,57,4241,6.66,6.72,4
1.05,Very Good,G,SI2,62.5,60,4241,6.45,6.5,4.05
1.08,Good,G,SI2,63.2,57,4241,6.5,6.54,4.12
1.02,Very Good,F,SI2,60.3,59,4241,6.5,6.53,3.93
1.05,Good,G,SI2,63.2,54,4241,6.49,6.52,4.11
1.05,Very Good,G,SI2,61.6,60,4241,6.49,6.56,4.02
0.9,Ideal,D,SI2,60.8,56,4241,6.24,6.26,3.8
0.61,Ideal,D,VVS1,62.1,56,4241,5.43,5.46,3.38
1.01,Ideal,I,SI1,60.2,59,4241,6.54,6.49,3.92
0.9,Good,F,SI1,61.8,63,4241,6.21,6.18,3.83
0.91,Premium,G,VS2,59.5,58,4241,6.34,6.26,3.75
1.01,Good,H,SI1,60.6,61,4242,6.35,6.39,3.86
1.01,Good,H,SI1,60.3,64,4242,6.49,6.52,3.92
1.01,Very Good,H,SI1,62.7,59,4242,6.27,6.33,3.95
1.01,Premium,I,SI1,62.9,58,4242,6.37,6.34,4
1.01,Premium,I,SI1,61.8,59,4242,6.44,6.37,3.96
1.01,Premium,H,SI2,61.9,60,4242,6.43,6.4,3.97
1.01,Premium,H,SI2,61.1,59,4242,6.54,6.46,3.97
1.01,Ideal,G,SI2,62.4,56,4242,6.42,6.37,3.99
1.01,Premium,H,SI2,59.9,59,4242,6.51,6.48,3.89
1.01,Premium,G,SI2,59.1,59,4242,6.55,6.51,3.86
1.01,Premium,H,SI2,58.8,58,4242,6.62,6.57,3.88
1.01,Premium,H,SI2,61.6,59,4242,6.44,6.39,3.95
1.01,Premium,H,SI2,61.5,60,4242,6.4,6.34,3.92
1.01,Ideal,D,SI2,62,57,4242,6.42,6.38,3.97
1.01,Premium,H,SI2,59.9,59,4242,6.55,6.48,3.9
1.01,Good,F,SI2,63.7,59,4242,6.38,6.28,4.03
0.84,Premium,F,VVS2,60.4,62,4243,6.15,6.1,3.7
1.01,Very Good,I,SI1,61.2,59,4243,6.34,6.44,3.92
0.76,Ideal,D,VS1,62,56,4243,5.84,5.87,3.63
1.02,Ideal,H,SI2,60.5,56,4243,6.53,6.57,3.96
0.92,Good,G,VS2,63.4,57,4243,6.17,6.23,3.93
0.7,Very Good,D,VVS1,62.7,54,4244,5.67,5.71,3.57
1.04,Very Good,F,SI2,62.8,55,4244,6.41,6.48,4.05
1.09,Very Good,D,SI2,59.2,63,4244,6.67,6.71,3.96
1.01,Very Good,I,SI2,63.5,57,4244,6.35,6.37,4.04
1.01,Ideal,I,SI2,62.8,57,4244,6.36,6.41,4.01
1.1,Good,F,SI2,63.8,56,4244,6.53,6.48,4.15
1.01,Very Good,E,SI2,63.3,58,4244,6.36,6.3,4.01
1.02,Good,D,SI2,57.7,64,4246,6.7,6.62,3.84
0.7,Ideal,F,VVS1,61.6,56,4246,5.86,5.71,3.51
0.9,Premium,H,VS2,60.4,59,4246,6.27,6.24,3.78
0.92,Good,H,VS2,63.4,57,4247,6.11,6.17,3.89
0.96,Very Good,G,SI1,63.2,57,4247,6.27,6.23,3.95
1.03,Premium,I,SI1,62,58,4248,6.43,6.47,4
1.01,Premium,G,SI2,62.5,60,4249,6.34,6.39,3.98
1.01,Very Good,G,SI2,61,58,4249,6.43,6.48,3.94
1.01,Very Good,G,SI2,62,58,4249,6.37,6.41,3.96
0.92,Ideal,G,SI1,62.6,55,4249,6.22,6.24,3.9
1.21,Ideal,H,SI1,62.7,56,4249,6.81,6.78,4.26
1.21,Ideal,H,SI1,62.9,57,4249,6.78,6.74,4.25
1.01,Very Good,H,SI1,63.4,55,4249,6.32,6.27,3.99
1.15,Premium,E,SI2,62.5,58,4250,6.65,6.72,4.18
1.15,Very Good,E,SI2,61.7,60,4250,6.7,6.78,4.16
1.03,Good,E,SI2,63.8,62,4250,6.3,6.37,4.04
1.12,Premium,H,SI2,62.4,58,4250,6.63,6.58,4.12
1.1,Ideal,H,SI2,61.9,56,4250,6.65,6.63,4.11
0.93,Premium,E,SI2,60.5,57,4250,6.37,6.32,3.84
1.2,Premium,G,SI2,62.6,61,4250,6.73,6.68,4.2
0.9,Premium,G,VS2,62.1,59,4252,6.15,6.09,3.8
1.04,Very Good,D,SI2,58.2,59,4252,6.62,6.67,3.87
1.02,Very Good,H,SI2,63.4,54,4252,6.37,6.43,4.06
0.72,Ideal,F,VVS1,62,56,4252,5.73,5.75,3.56
0.9,Fair,D,SI1,63.8,61,4252,6.07,5.99,3.85
1.04,Premium,I,SI1,62.5,62,4252,6.45,6.39,4.01
0.73,Ideal,D,VVS2,62.2,56,4252,5.79,5.73,3.58
0.91,Very Good,D,SI1,59.3,58,4253,6.33,6.38,3.77
0.92,Very Good,D,SI1,60.7,58,4253,6.27,6.39,3.84
1.05,Ideal,J,SI1,62.3,56,4253,6.47,6.5,4.04
0.9,Good,F,VS2,59.8,61,4253,6.18,6.22,3.71
0.9,Good,F,VS2,63.3,57,4253,6.04,6.09,3.84
0.92,Very Good,E,SI1,63,57,4254,6.17,6.21,3.9
0.9,Very Good,H,VS2,60,56,4255,6.3,6.34,3.79
1,Very Good,F,SI2,62.9,56,4255,6.36,6.42,4.02
1,Very Good,F,SI2,59.9,61,4255,6.42,6.46,3.86
1.06,Very Good,I,SI1,62.8,56,4255,6.47,6.52,4.08
1,Premium,F,SI2,61.5,58,4255,6.38,6.41,3.93
1,Very Good,F,SI2,61.6,62,4255,6.3,6.37,3.9
1.26,Good,J,SI1,63.9,58,4255,6.78,6.74,4.32
1.02,Ideal,G,SI2,61.4,56,4255,6.52,6.47,3.99
0.93,Very Good,F,SI1,59.8,58,4256,6.32,6.39,3.8
1.13,Premium,H,SI1,62.6,60,4256,6.68,6.62,4.16
1,Fair,E,SI2,65.2,56,4256,6.3,6.12,4.05
0.91,Premium,E,SI1,62.1,58,4256,6.18,6.15,3.83
1.01,Good,E,SI1,63.8,60,4256,6.36,6.31,4.04
0.91,Good,E,SI1,63.7,64,4256,6.09,6.03,3.86
0.91,Fair,E,SI1,65,62,4256,6.09,6.04,3.94
1.01,Fair,H,SI1,65.3,57,4256,6.33,6.23,4.1
1,Ideal,H,SI2,62.6,56,4256,6.38,6.34,3.98
1,Fair,F,SI1,66.4,57,4256,6.21,6.14,4.1
1,Premium,G,SI1,61.8,59,4256,6.43,6.38,3.96
0.91,Good,G,VS2,63.6,58,4257,6.1,6.14,3.89
0.91,Ideal,G,VS2,62.3,57,4257,6.18,6.24,3.87
1.04,Good,F,SI2,58.5,61,4257,6.63,6.68,3.89
1.06,Good,E,SI2,58.8,61,4257,6.63,6.67,3.91
1.01,Premium,F,SI2,61.8,56,4257,6.43,6.38,3.96
0.9,Very Good,H,VS2,63.6,58,4258,6.1,6.14,3.89
0.92,Good,E,SI1,63.7,57,4258,6.11,6.14,3.9
0.92,Good,E,SI1,63.2,58,4258,6.16,6.18,3.9
0.92,Ideal,E,SI1,61.4,54.6,4258,6.25,6.29,3.85
0.92,Premium,E,SI1,60.9,59,4258,6.25,6.27,3.81
0.73,Ideal,D,VS1,61.9,55,4258,5.78,5.81,3.59
1,Good,E,SI2,61.5,61,4258,6.35,6.43,3.93
0.84,Very Good,G,VVS2,60.4,55,4259,6.07,6.12,3.68
1.11,Ideal,J,SI1,62.1,56,4259,6.64,6.67,4.13
1.17,Premium,F,SI2,62.5,57,4259,6.8,6.71,4.22
0.9,Premium,G,VS2,60.8,61,4259,6.22,6.12,3.75
0.9,Premium,E,SI1,62.2,59,4259,6.21,6.16,3.88
0.9,Premium,G,VS2,62.1,59,4259,6.2,6.14,3.83
1.01,Very Good,D,SI2,60.8,61,4260,6.45,6.5,3.94
1.01,Premium,G,SI1,59.2,59,4260,6.52,6.58,3.88
1.01,Very Good,D,SI2,59.8,57,4260,6.51,6.57,3.91
1.01,Good,D,SI2,57.6,62,4260,6.56,6.66,3.81
1.01,Good,D,SI2,61.5,56,4260,6.36,6.42,3.93
1.01,Very Good,D,SI2,58.9,56,4260,6.55,6.59,3.87
1.01,Very Good,D,SI2,61.8,57,4260,6.42,6.47,3.98
1.01,Good,D,SI2,63.1,54,4260,6.37,6.43,4.04
1,Ideal,H,SI2,61.2,57,4260,6.42,6.45,3.94
1.01,Ideal,G,SI2,61.7,56,4260,6.47,6.43,3.98
0.9,Ideal,G,SI1,62.5,55,4260,6.17,6.21,3.87
1.01,Very Good,J,VS1,61.3,57,4262,6.43,6.5,3.96
1.01,Very Good,H,SI2,61.5,62,4262,6.35,6.44,3.93
0.8,Very Good,E,VS2,61.6,57,4263,5.95,5.97,3.67
1.01,Fair,I,VS1,64.9,58,4263,6.17,6.22,4.02
1.09,Ideal,H,SI2,62,57,4264,6.61,6.55,4.08
0.94,Premium,H,VS2,62.5,58,4264,6.26,6.18,3.89
0.96,Very Good,G,SI1,60.3,57,4265,6.35,6.38,3.84
1,Fair,E,SI2,65.9,62,4265,6.09,6.02,3.99
0.91,Good,D,SI1,64.6,58,4265,6.02,6.12,3.92
1.11,Premium,J,VS2,62.6,59,4265,6.6,6.56,4.12
1,Good,E,SI2,63.7,61,4265,6.27,6.2,3.97
0.93,Ideal,H,VS1,62.7,54,4265,6.25,6.2,3.9
0.9,Premium,H,VS2,61.7,59,4266,6.13,6.19,3.8
1.06,Very Good,I,SI1,60.4,59,4267,6.56,6.61,3.98
1.06,Ideal,H,SI2,60.6,59,4267,6.63,6.6,4.01
0.91,Ideal,F,SI1,62.3,56,4267,6.16,6.19,3.85
0.9,Very Good,F,VS2,64.2,59,4268,6.07,6.11,3.91
0.8,Premium,G,IF,62.6,58,4268,5.89,5.93,3.7
1.03,Very Good,H,SI2,62.3,57,4268,6.43,6.48,4.02
0.9,Good,F,VS2,65,58,4268,6.03,6.06,3.93
0.9,Good,F,VS2,64.5,60,4268,6.03,6.07,3.9
1.21,Premium,J,VS2,62.4,58,4268,6.83,6.79,4.25
1.03,Ideal,F,SI2,62.3,56,4268,6.51,6.43,4.03
1.01,Premium,G,SI2,60.1,59,4269,6.45,6.39,3.86
0.9,Premium,G,VS2,61.7,59,4269,6.14,6.22,3.81
0.9,Very Good,G,VS2,61.9,56,4269,6.17,6.23,3.84
0.9,Very Good,G,VS2,61.3,59,4269,6.15,6.21,3.79
0.9,Very Good,G,VS2,60.9,59,4269,6.18,6.24,3.78
0.9,Ideal,G,VS2,62.6,57,4269,6.14,6.2,3.86
0.9,Good,G,VS2,63.6,58,4269,6.08,6.12,3.88
1,Very Good,F,SI2,63.3,58,4269,6.26,6.29,3.97
0.9,Ideal,F,SI1,61.7,55,4269,6.19,6.16,3.81
1.01,Ideal,G,SI2,62.8,56,4269,6.4,6.44,4.03
1.1,Premium,I,SI2,62.6,59,4269,6.57,6.53,4.1
1.21,Good,J,SI2,63.7,55,4269,6.81,6.75,4.32
1.21,Premium,J,SI1,62.6,58,4269,6.74,6.71,4.21
1.01,Premium,G,SI2,60.1,60,4270,6.48,6.44,3.88
1.01,Very Good,F,SI2,63.4,54,4270,6.42,6.39,4.06
0.81,Ideal,F,VS1,61.8,55,4270,5.97,6.03,3.71
1.06,Ideal,I,SI2,61.8,57,4270,6.57,6.6,4.07
1.15,Premium,G,SI2,62.7,58,4270,6.71,6.69,4.2
1.01,Very Good,E,SI2,63.3,57,4270,6.39,6.31,4.02
1.01,Very Good,G,SI1,63.5,60,4271,6.41,6.38,3.92
0.83,Ideal,E,VS2,61.3,56,4271,6.06,6.08,3.72
1.13,Premium,I,SI2,59.9,57,4271,6.8,6.76,4.06
1.11,Very Good,I,SI1,61.9,59,4273,6.58,6.64,4.09
1.11,Ideal,I,SI1,62.4,55,4273,6.6,6.64,4.13
1,Very Good,H,SI2,59.7,58,4273,6.48,6.55,3.89
1,Good,I,SI1,58,58,4273,6.56,6.62,3.82
1.09,Premium,I,SI1,61.7,59,4273,6.59,6.53,4.05
1.09,Fair,I,SI1,56.4,62,4273,6.97,6.9,3.9
1.02,Premium,G,SI1,61.4,55,4273,6.51,6.48,3.99
1.2,Very Good,F,SI2,63.3,59,4274,6.7,6.66,4.23
0.74,Good,D,VVS1,59.2,62.6,4274,5.85,5.87,3.47
1.01,Good,H,SI1,64.6,56,4274,6.17,6.21,4
1.18,Premium,J,SI2,61.3,60,4274,6.83,6.78,4.17
1,Ideal,F,SI2,61.8,57,4274,6.45,6.36,3.96
1.03,Premium,H,SI1,62.4,58,4274,6.5,6.42,4.03
0.92,Premium,D,SI1,62.3,58,4274,6.27,6.21,3.89
1.03,Premium,H,SI1,63,59,4274,6.43,6.4,4.04
0.96,Premium,D,SI2,60,61,4274,6.36,6.32,3.81
1.2,Premium,F,SI2,62.7,60,4274,6.73,6.67,4.21
0.65,Ideal,D,VVS2,60.7,57,4275,5.63,5.65,3.42
1.1,Ideal,J,SI1,62.2,55,4275,6.62,6.65,4.13
1.01,Premium,F,SI1,62.7,54,4276,6.42,6.37,4.01
0.9,Very Good,G,VS2,58.4,61,4276,6.33,6.38,3.71
1.1,Very Good,H,SI1,63,58,4276,6.53,6.59,4.13
1.1,Very Good,H,SI1,62.1,58,4276,6.59,6.61,4.1
1.08,Very Good,I,SI1,60.5,60,4276,6.61,6.67,4.02
1.14,Ideal,I,SI2,62.1,55,4276,6.71,6.72,4.17
1.07,Ideal,J,SI1,62.1,56,4276,6.54,6.6,4.08
1,Good,H,SI1,64.9,56,4276,6.24,6.31,4.07
1.01,Good,F,SI1,64.2,58,4276,6.33,6.31,4.06
1.01,Good,F,SI1,64.1,60,4276,6.21,6.16,3.97
1.01,Fair,F,SI1,65.9,58,4276,6.16,6.1,4.04
1.01,Fair,F,SI1,67.2,60,4276,6.06,6,4.05
1.01,Fair,D,SI1,65.9,60,4276,6.32,6.18,4.12
1.01,Ideal,F,SI1,62.3,55,4276,6.38,6.31,3.95
1.12,Premium,E,SI2,62.4,58,4277,6.59,6.64,4.13
1.29,Fair,G,I1,66,58,4277,6.82,6.75,4.48
0.9,Fair,D,VS2,57.4,65,4277,6.26,6.29,3.6
1.04,Ideal,G,SI2,62,57,4277,6.6,6.53,4.07
1.04,Premium,G,SI2,60.9,58,4277,6.58,6.52,3.99
1.04,Premium,G,SI2,62.9,58,4277,6.47,6.43,4.06
0.9,Good,E,VS2,64,58,4278,6.02,6.07,3.87
1,Ideal,J,VS2,61.9,54,4278,6.41,6.45,3.98
0.33,Ideal,E,SI1,62,54,579,4.41,4.43,2.74
0.33,Ideal,E,SI1,62.5,55,579,4.42,4.45,2.77
0.33,Premium,H,VS1,59.2,58,579,4.5,4.55,2.68
0.33,Ideal,G,VS2,61.2,55,579,4.46,4.49,2.74
0.33,Ideal,E,SI1,61.9,57,579,4.43,4.46,2.75
0.32,Ideal,G,VS2,61.5,55,580,4.39,4.43,2.71
0.32,Ideal,H,VS1,61.4,55,580,4.43,4.49,2.74
0.32,Ideal,H,VS1,61,56,580,4.43,4.45,2.71
0.26,Premium,F,VS1,59.5,58,580,4.22,4.18,2.5
0.26,Ideal,F,VS1,62.3,56,580,4.1,4.08,2.55
0.26,Ideal,F,VS1,60.9,57,580,4.13,4.11,2.51
0.26,Premium,E,VS1,60.1,60,580,4.15,4.1,2.48
0.26,Premium,E,VS2,62.1,56,580,4.13,4.11,2.56
0.26,Premium,E,VS2,60.4,58,580,4.19,4.15,2.52
0.26,Ideal,E,VS1,61.8,55,580,4.13,4.09,2.54
0.26,Premium,E,VS1,61.9,58,580,4.11,4.1,2.54
0.26,Ideal,D,VS1,62,55,580,4.12,4.1,2.55
0.35,Ideal,I,SI2,61.6,55,580,4.62,4.53,2.82
0.32,Premium,E,VS2,59.3,58,580,4.45,4.49,2.65
0.3,Very Good,H,VVS2,63,56,581,4.24,4.27,2.68
0.3,Very Good,H,VVS2,62,59,581,4.27,4.34,2.67
0.3,Very Good,G,VS1,62.6,56,581,4.29,4.31,2.69
0.3,Ideal,H,VVS2,62.5,55,581,4.29,4.32,2.69
0.3,Ideal,H,VVS2,61.5,56,581,4.34,4.38,2.68
0.38,Ideal,D,SI1,62.3,57,581,4.6,4.65,2.88
0.34,Good,F,SI1,61.9,56,581,4.5,4.52,2.79
0.43,Premium,H,I1,62,59,581,4.83,4.78,2.98
0.31,Fair,E,VS2,55.9,62,581,4.6,4.56,2.56
0.38,Very Good,I,SI1,60.2,60,581,4.65,4.68,2.81
0.38,Ideal,I,SI1,62.3,56,581,4.58,4.63,2.87
0.97,Ideal,J,VS1,61.3,57,4278,6.37,6.41,3.92
1.07,Premium,G,SI2,58.5,61,4278,6.71,6.59,3.89
1.07,Premium,G,SI2,59.9,59,4278,6.67,6.61,3.98
1.24,Premium,E,SI2,60.8,57,4278,6.98,6.94,4.23
1.24,Premium,E,SI2,60.8,57,4278,6.98,6.94,4.23
1.07,Premium,G,SI2,59.8,60,4278,6.7,6.65,3.99
0.91,Good,F,SI1,63.9,55,4279,6.1,6.17,3.92
0.91,Very Good,F,SI1,59.7,55,4279,6.33,6.36,3.79
0.61,Ideal,D,VVS1,62.1,56,4279,5.46,5.43,3.38
1.03,Ideal,F,SI2,61.9,56,4280,6.47,6.43,3.99
1.02,Ideal,I,VS2,60.8,57,4281,6.42,6.5,3.93
1.02,Ideal,I,VS2,62.7,56,4281,6.37,6.43,4.01
0.92,Very Good,G,SI1,61.8,54,4281,6.25,6.37,3.9
0.64,Ideal,D,VVS1,61.5,56,4281,5.57,5.59,3.43
0.98,Fair,G,SI1,64.4,56,4281,6.33,6.24,4.03
1.05,Fair,I,VS1,58.9,66,4281,6.71,6.6,3.92
1.05,Very Good,E,SI2,63.2,59,4281,6.43,6.36,4.04
1.13,Very Good,F,SI2,62.3,59,4282,6.65,6.68,4.15
1.03,Very Good,F,SI1,62.5,59,4282,6.41,6.45,4.02
1.03,Ideal,J,VS2,61.6,57,4283,6.52,6.47,4
1.11,Very Good,J,VS2,61.8,56,4283,6.59,6.64,4.09
1.1,Very Good,J,SI2,61.8,58,4283,6.6,6.63,4.09
1.03,Very Good,H,SI2,62.8,59,4283,6.4,6.43,4.03
1.03,Ideal,H,SI2,60.6,56,4283,6.53,6.63,3.99
1.11,Premium,F,SI2,62.1,58,4283,6.63,6.51,4.1
1.07,Premium,E,SI2,60.5,59,4284,6.59,6.67,4.01
0.91,Good,G,VS1,63.4,54,4284,6.07,6.24,3.9
0.91,Good,G,VS1,63.6,60,4284,6.03,6.11,3.86
0.91,Good,G,VS1,63.2,58,4284,6.07,6.15,3.86
0.81,Premium,D,VS1,62.3,58,4284,5.94,6,3.72
0.91,Very Good,E,SI1,62.1,60,4284,6.21,6.25,3.87
1.02,Very Good,F,SI2,60.9,58,4284,6.43,6.55,3.95
1,Premium,G,SI2,61.8,60,4284,6.37,6.34,3.93
1.5,Fair,J,I1,68.8,57,4284,6.94,6.87,4.75
0.91,Ideal,E,SI1,62.3,57,4284,6.21,6.25,3.88
1,Ideal,G,SI2,62.8,57,4284,6.37,6.31,3.98
1.02,Very Good,H,SI2,63.1,59,4284,6.43,6.37,4.04
1.02,Premium,I,SI1,62.7,55,4284,6.48,6.41,4.04
1.02,Premium,H,SI2,62.5,54,4284,6.44,6.4,4.01
1.02,Premium,I,SI1,58,58,4284,6.84,6.6,3.9
0.9,Ideal,F,SI1,61.5,56,4284,6.25,6.2,3.83
1.02,Premium,H,SI2,60.9,59,4284,6.51,6.46,3.95
1.02,Premium,H,SI2,59.8,59,4284,6.54,6.5,3.9
1.02,Ideal,H,SI2,61.8,55,4284,6.51,6.47,4.01
1.02,Premium,F,SI2,60,60,4284,6.57,6.53,3.93
0.72,Ideal,E,VVS2,62.1,56,4285,5.72,5.77,3.57
1.01,Good,E,SI2,61.4,64,4285,6.29,6.42,3.9
1.02,Very Good,E,SI2,58.7,63,4286,6.61,6.55,3.86
0.9,Very Good,E,SI1,62.9,56,4286,6.09,6.12,3.84
0.92,Premium,G,VS2,61.6,62,4287,6.3,6.24,3.86
0.9,Very Good,E,SI2,59.9,57,4288,6.25,6.34,3.77
0.71,Good,D,VS2,63.6,54,4289,5.7,5.75,3.64
0.91,Very Good,E,SI1,63.9,57,4289,6.05,6.12,3.89
0.9,Very Good,D,SI1,62.1,60,4289,6.11,6.19,3.82
1.04,Very Good,I,SI1,62,57,4290,6.47,6.5,4.02
1.04,Premium,I,SI1,61.8,60,4290,6.47,6.51,4.01
1.04,Ideal,H,SI2,61.1,56,4290,6.6,6.66,4.05
1.03,Ideal,G,SI2,62.9,57,4290,6.37,6.47,4.04
1.04,Good,E,SI2,62.3,62,4290,6.4,6.44,4
1.12,Ideal,H,SI1,62.7,56,4290,6.66,6.61,4.16
1.02,Ideal,G,SI2,62.7,57,4291,6.42,6.44,4.03
1.02,Very Good,G,SI2,62.9,59,4291,6.38,6.4,4.02
1.02,Premium,G,SI2,62.5,59,4291,6.37,6.42,4
1.02,Very Good,G,SI2,61.6,61,4291,6.46,6.47,3.98
0.9,Very Good,D,SI1,61.8,59,4291,6.13,6.16,3.8
1.29,Premium,I,SI2,61.1,62,4291,7,6.94,4.26
1.03,Very Good,J,VS1,63.4,58,4292,6.36,6.42,4.05
1.05,Very Good,I,SI1,63.5,58,4292,6.46,6.43,4.09
0.85,Very Good,F,VS1,62,55,4293,6.08,6.14,3.78
0.56,Ideal,D,IF,61.9,57,4293,5.28,5.31,3.28
0.91,Premium,H,VS2,60.6,58,4293,6.3,6.25,3.8
1.18,Very Good,J,SI2,63.5,57,4294,6.68,6.74,4.26
1.13,Premium,H,SI2,62.3,59,4294,6.68,6.65,4.15
1.01,Very Good,J,SI1,62.2,57,4295,6.35,6.39,3.96
1,Ideal,H,SI2,59.4,55,4295,6.59,6.65,3.93
1,Very Good,D,SI2,61.5,63,4295,6.32,6.27,3.87
1,Good,D,SI2,57.8,58,4295,6.61,6.55,3.8
1,Very Good,D,SI2,63.5,59,4295,6.35,6.32,4.02
1,Fair,G,SI1,64.4,57,4295,6.32,6.28,4.06
1,Very Good,G,SI1,63.1,56,4295,6.41,6.31,4.01
1,Fair,G,SI1,66.2,58,4295,6.25,6.15,4.11
1,Very Good,D,SI2,63.3,60,4295,6.29,6.19,3.95
1,Premium,D,SI2,60.3,58,4295,6.48,6.45,3.9
1,Premium,D,SI2,60.8,60,4295,6.45,6.41,3.91
0.9,Very Good,G,VS2,60.5,60,4296,6.2,6.24,3.76
0.9,Good,G,VS2,61.5,61,4296,6.18,6.21,3.81
1.02,Ideal,H,SI2,60.5,57,4297,6.52,6.56,3.95
0.9,Very Good,G,VS1,62.4,58,4297,6.14,6.16,3.84
0.93,Premium,F,SI1,62.3,58,4297,6.22,6.18,3.86
0.91,Good,H,VS1,63.4,56,4298,6.12,6.18,3.9
1.01,Very Good,F,SI2,61.8,56,4298,6.43,6.38,3.96
1.01,Premium,E,SI1,61.6,59,4299,6.44,6.42,3.96
1.01,Very Good,E,SI2,63.4,59,4299,6.32,6.26,3.99
1.01,Very Good,F,SI2,63.2,58,4299,6.43,6.3,4.02
1.01,Very Good,F,SI2,63.3,57,4299,6.39,6.37,4.04
1.01,Ideal,G,SI2,61.5,57,4299,6.5,6.42,3.97
1.2,Very Good,I,SI1,63.1,61,4301,6.65,6.58,4.18
1.2,Premium,H,SI2,60.8,59,4301,6.8,6.75,4.12
0.96,Ideal,G,SI1,63,53,4301,6.24,6.21,3.92
1.01,Good,F,SI2,61.5,62,4302,6.41,6.46,3.96
1.13,Ideal,E,SI2,62.4,56,4303,6.66,6.63,4.15
0.91,Very Good,D,SI1,62.8,57,4303,6.12,6.17,3.86
1.02,Very Good,H,SI2,59.7,58,4303,6.53,6.57,3.91
1.09,Premium,J,VS1,59.3,57,4303,6.79,6.74,4.01
0.77,Very Good,F,VVS1,61.1,57,4304,5.91,5.94,3.62
0.93,Very Good,E,SI1,62.8,56,4304,6.19,6.24,3.9
0.8,Very Good,E,VVS2,62.9,59,4304,5.88,5.95,3.72
1.01,Very Good,F,SI2,59.1,57,4304,6.57,6.62,3.9
0.9,Ideal,D,SI1,60.7,57,4304,6.23,6.16,3.76
0.9,Very Good,D,SI1,63.3,57,4304,6.12,6.07,3.86
0.9,Premium,D,SI1,61.2,60,4304,6.19,6.14,3.77
0.9,Premium,D,SI1,62.7,56,4304,6.16,6.12,3.85
0.9,Premium,D,SI1,61.5,58,4304,6.21,6.15,3.8
0.9,Very Good,D,SI1,61,63,4304,6.13,6.1,3.73
0.9,Very Good,D,SI1,63.5,57,4304,6.15,6.11,3.89
0.9,Premium,D,SI1,59.4,62,4304,6.24,6.19,3.69
0.9,Premium,D,SI1,62.7,58,4304,6.15,6.09,3.84
0.9,Premium,D,SI1,62.6,58,4304,6.15,6.11,3.84
1,Good,H,VS2,63.6,57,4305,6.35,6.26,4.01
1.01,Very Good,H,SI1,62.5,58,4306,6.35,6.38,3.98
1.01,Very Good,H,SI1,62.3,57,4306,6.36,6.42,3.98
1.13,Ideal,I,SI2,61.7,57,4307,6.59,6.7,4.13
1.11,Very Good,E,SI2,62.3,58,4307,6.64,6.68,4.15
1.07,Very Good,I,SI1,61.8,60,4307,6.52,6.56,4.04
1,Good,E,SI2,62.1,61,4307,6.36,6.4,3.96
1.16,Fair,G,SI2,60.1,60,4307,6.9,6.72,4.09
1,Very Good,E,SI2,62.5,59,4308,6.31,6.37,3.96
0.98,Premium,F,SI2,61.8,58,4308,6.37,6.32,3.92
1.01,Premium,E,SI2,58.6,58,4308,6.66,6.62,3.89
0.9,Very Good,G,VS2,63.1,56,4309,6.14,6.04,3.84
0.9,Good,G,VS2,63.7,60,4309,6.02,5.98,3.82
0.9,Good,F,VS2,63.6,59,4309,6.06,6.11,3.87
0.9,Good,H,VS1,63.5,59,4309,6.1,6.13,3.88
0.9,Very Good,H,VS1,62.9,58,4309,6.06,6.12,3.83
0.9,Very Good,H,VS1,62.1,59,4309,6.09,6.14,3.8
0.9,Good,F,VS2,63.8,55,4309,6.09,6.13,3.9
0.9,Premium,H,VS1,62.4,58,4309,6.15,6.19,3.85
0.91,Good,H,VS2,59.9,61,4309,6.18,6.24,3.72
0.9,Premium,G,VS2,61.5,60,4309,6.16,6.13,3.78
0.92,Ideal,E,SI2,62.6,57,4309,6.22,6.18,3.88
0.9,Very Good,G,VS2,63.3,54,4309,6.19,6.11,3.89
0.9,Fair,G,VS2,65.8,61,4309,5.99,5.96,3.93
0.9,Ideal,G,VS2,62.4,54,4309,6.22,6.19,3.87
1.04,Very Good,H,SI1,63.2,57,4310,6.45,6.4,4.06
1.21,Premium,F,SI2,62.4,60,4310,6.77,6.73,4.21
0.66,Very Good,D,VVS2,60.7,59,4311,5.6,5.67,3.42
1,Very Good,E,SI2,61.9,59,4311,6.39,6.43,3.97
1,Very Good,E,SI2,60.7,59,4311,6.38,6.44,3.89
1,Fair,D,SI2,64.5,54,4312,6.34,6.28,4.07
1,Very Good,E,SI2,62.2,59,4312,6.35,6.38,3.96
1.21,Very Good,J,SI1,62.7,57,4312,6.72,6.77,4.23
1,Very Good,E,SI2,60.6,61,4312,6.39,6.44,3.89
1,Good,E,SI2,63.3,55,4312,6.25,6.29,3.97
1.12,Very Good,I,SI1,60.6,60,4312,6.73,6.77,4.09
1.1,Good,I,SI1,57.7,60,4312,6.82,6.77,3.92
1.1,Premium,I,SI1,60.4,61,4312,6.73,6.69,4.05
1,Fair,H,VVS2,65.3,58,4312,6.25,6.18,4.06
1,Fair,H,VVS2,65.1,57,4312,6.27,6.23,4.07
1,Premium,H,VVS2,61.9,61,4312,6.36,6.31,3.92
1,Fair,G,SI1,64.7,60,4312,6.22,6.18,4.01
1,Fair,F,VS2,68.3,58,4312,5.98,5.95,4.08
1,Good,D,SI1,64.3,62,4312,6.18,6.13,3.96
1,Ideal,H,SI2,61.4,56,4312,6.46,6.41,3.95
0.91,Premium,H,VS2,61.8,60,4313,6.18,6.22,3.83
1.01,Very Good,I,SI1,63.1,57,4313,6.32,6.36,4
1.06,Ideal,I,SI1,62.2,56,4313,6.49,6.53,4.05
1.07,Ideal,H,SI2,59.2,57,4314,6.7,6.64,3.95
0.81,Ideal,E,VS2,62,57,4314,5.96,5.98,3.7
0.9,Ideal,G,SI2,60.7,57,4314,6.19,6.33,3.8
1.07,Premium,I,SI1,60.7,61,4314,6.6,6.55,3.99
1.07,Very Good,E,SI1,60.4,63,4314,6.67,6.6,4.01
1.03,Very Good,G,SI2,63,57,4315,6.4,6.42,4.04
0.9,Very Good,E,SI1,62.6,58,4315,6.11,6.15,3.84
0.9,Very Good,E,SI1,62.6,61,4315,6.06,6.11,3.81
0.9,Very Good,E,SI1,63,56,4315,6.11,6.15,3.86
1.15,Ideal,H,SI2,60.5,56,4315,6.83,6.8,4.13
0.81,Ideal,D,VS2,59.5,60,4315,6.08,6.15,3.64
1.09,Ideal,I,SI2,60.3,57,4315,6.64,6.7,4.02
0.9,Good,E,VS2,64.2,59,4315,6.02,6.1,3.89
1.11,Premium,J,VS2,59.9,60,4315,6.78,6.71,4.04
0.91,Very Good,G,VS2,59.5,58,4316,6.26,6.34,3.75
1,Very Good,H,SI2,61.7,55,4316,6.4,6.46,3.97
1.11,Very Good,J,SI1,62.4,57.7,4316,6.57,6.64,4.12
1.01,Ideal,I,SI1,62.2,56,4316,6.35,6.42,3.97
1.04,Very Good,H,SI1,63.1,58,4316,6.43,6.37,4.04
1.04,Premium,H,SI1,62.1,56,4316,6.48,6.41,4.01
1.01,Premium,F,SI2,59.6,59,4317,6.59,6.52,3.91
0.91,Ideal,I,VS2,61.6,55,4317,6.21,6.28,3.85
0.93,Ideal,H,SI1,61.7,55,4317,6.26,6.29,3.87
1.01,Fair,F,SI2,65.3,59,4317,6.28,6.24,4.09
0.84,Very Good,F,VVS2,60.4,62,4318,6.1,6.15,3.7
1.08,Premium,G,SI2,60.7,60,4318,6.64,6.61,4.02
0.9,Ideal,F,SI1,62,57,4318,6.21,6.25,3.86
1.02,Good,D,SI2,61.5,61,4318,6.34,6.41,3.92
1.08,Premium,G,SI2,59.8,57,4318,6.72,6.66,4
1.08,Very Good,G,SI2,63.2,57,4318,6.54,6.5,4.12
1.05,Premium,G,SI2,62.5,60,4318,6.5,6.45,4.05
1.05,Premium,G,SI2,61.3,58,4318,6.6,6.55,4.03
1.05,Very Good,G,SI2,63.2,54,4318,6.52,6.49,4.11
1.05,Premium,G,SI2,61.6,60,4318,6.56,6.49,4.02
1.02,Premium,F,SI2,60.3,59,4318,6.53,6.5,3.93
0.84,Premium,E,VS1,59.7,59,4318,6.16,6.13,3.67
1.02,Very Good,F,SI2,63,58,4319,6.37,6.43,4.03
1.02,Ideal,F,SI2,62.4,57,4319,6.4,6.43,4
1,Premium,G,SI2,61.8,58,4319,6.39,6.43,3.96
1.02,Ideal,H,SI2,60.7,57,4319,6.51,6.54,3.96
1.07,Premium,F,SI2,58.2,58,4319,6.79,6.72,3.93
1.07,Ideal,I,VS2,61.1,57,4319,6.66,6.6,4.05
1.16,Premium,G,SI2,62,59,4320,6.74,6.62,4.14
0.9,Very Good,G,SI1,62.4,59,4320,6.1,6.15,3.82
0.65,Ideal,D,VVS1,61.9,56,4320,5.53,5.56,3.43
1.01,Premium,H,SI1,62.7,59,4320,6.33,6.27,3.95
1.01,Good,H,SI1,60.3,64,4320,6.52,6.49,3.92
1.01,Premium,H,SI1,60.6,61,4320,6.39,6.35,3.86
1.45,Fair,F,I1,64.8,67,4320,7.16,7,4.64
1.07,Very Good,G,SI2,62.9,59,4321,6.51,6.58,4.12
0.9,Premium,H,VS2,60.4,59,4321,6.24,6.27,3.78
1,Very Good,E,SI2,59.8,58,4321,6.47,6.53,3.89
1,Very Good,E,SI2,59.6,59,4321,6.48,6.51,3.87
1,Very Good,E,SI2,63.9,57,4321,6.24,6.27,4
1.04,Premium,F,SI2,62.8,55,4321,6.48,6.41,4.05
1.04,Good,F,SI2,64.2,56,4321,6.39,6.36,4.09
1.12,Premium,I,VS2,62.4,58,4321,6.63,6.59,4.13
1.06,Good,E,SI2,63.9,60,4321,6.45,6.41,4.11
1.09,Very Good,D,SI2,59.2,63,4322,6.71,6.67,3.96
1.09,Premium,G,SI1,62.5,59,4322,6.56,6.53,4.09
1.09,Premium,G,SI1,61.8,59,4322,6.59,6.53,4.06
1.16,Very Good,J,VS2,63.7,56,4323,6.63,6.68,4.24
0.7,Ideal,D,VS1,61.4,57,4323,5.71,5.76,3.52
0.7,Ideal,D,VS1,61.5,57,4323,5.68,5.71,3.5
1.04,Ideal,H,SI2,60.3,57,4323,6.54,6.59,3.96
0.9,Very Good,H,VS1,62.2,57,4324,6.1,6.15,3.81
0.9,Very Good,H,VS1,63.2,59,4324,6.08,6.11,3.85
0.9,Very Good,H,VS1,62.2,59,4324,6.14,6.18,3.83
1.17,Premium,F,SI2,59.6,60,4324,6.88,6.85,4.09
1.27,Good,F,I1,59.2,64,4324,7.06,6.99,4.16
0.9,Ideal,F,SI1,60.7,57,4324,6.25,6.21,3.78
0.93,Very Good,E,SI2,60.5,57,4325,6.32,6.37,3.84
0.71,Ideal,D,VVS2,61.6,54,4325,5.74,5.78,3.55
0.68,Ideal,D,VVS1,61.3,57,4325,5.66,5.69,3.48
0.84,Ideal,G,VS1,61.8,56,4325,6.02,6.11,3.75
1.12,Ideal,J,SI2,62.5,57,4325,6.63,6.59,4.13
1.03,Ideal,H,SI2,61.1,57,4325,6.48,6.52,3.97
0.92,Ideal,H,SI1,60.5,57,4325,6.27,6.32,3.81
1.03,Good,H,SI1,63.1,56,4326,6.35,6.39,4.02
1.03,Very Good,H,SI1,58.6,61,4326,6.6,6.64,3.88
1.01,Good,G,SI1,63.2,55,4326,6.32,6.4,4.02
0.92,Good,F,SI1,64,56,4326,6.12,6.17,3.93
1.03,Premium,I,SI1,62,58,4326,6.47,6.43,4
1.16,Premium,J,SI1,62.2,58,4326,6.75,6.68,4.18
1.16,Premium,I,SI2,62.1,58,4326,6.78,6.71,4.19
1.03,Very Good,E,SI2,60.7,63,4326,6.48,6.44,3.92
1.01,Premium,G,SI2,62.4,59,4327,6.39,6.34,3.97
1.01,Good,G,SI2,63.8,56,4327,6.32,6.28,4.02
0.92,Very Good,D,SI2,61.6,58,4327,6.19,6.22,3.82
0.82,Ideal,D,VS2,62.4,54,4327,5.99,6.02,3.75
1.01,Premium,G,SI2,62,58,4327,6.41,6.37,3.96
1.01,Premium,G,SI2,62.7,58,4327,6.44,6.38,4.02
1.01,Premium,G,SI2,60.5,58,4327,6.55,6.47,3.94
1.01,Premium,G,SI2,61.9,59,4327,6.46,6.39,3.98
1.01,Ideal,G,SI2,59.6,57,4327,6.59,6.54,3.91
1.01,Premium,G,SI2,60.1,59,4327,6.55,6.46,3.91
1.01,Ideal,G,SI2,60.5,58,4327,6.52,6.48,3.93
1.01,Premium,G,SI2,60.4,59,4327,6.57,6.52,3.95
1.01,Premium,G,SI2,62.5,60,4327,6.39,6.34,3.98
1.01,Premium,G,SI2,61,58,4327,6.48,6.43,3.94
1.01,Premium,G,SI2,60.1,61,4327,6.6,6.55,3.95
0.9,Very Good,H,VS2,62.3,59,4328,6.1,6.17,3.82
0.9,Very Good,H,VS1,62.5,58,4328,6.08,6.14,3.82
1,Fair,F,SI1,67.1,57,4328,6.06,6.1,4.08
1.15,Premium,E,SI2,62.5,58,4328,6.72,6.65,4.18
1.15,Premium,E,SI2,61.7,60,4328,6.78,6.7,4.16
1.03,Fair,I,VS1,57.6,58,4328,6.67,6.58,3.81
1.03,Premium,E,SI2,61.4,58,4328,6.49,6.45,3.97
1.5,Fair,I,SI2,70.1,58,4328,6.96,6.85,4.84
0.92,Ideal,H,VS1,60.9,57,4328,6.33,6.29,3.84
1.19,Very Good,J,SI2,63.4,56.8,4329,6.7,6.79,4.27
1.04,Premium,D,SI2,58.2,59,4330,6.67,6.62,3.87
1.01,Premium,E,SI1,61.7,56,4330,6.44,6.39,3.96
1.05,Ideal,H,SI2,61.2,57,4331,6.55,6.62,4.03
1.05,Ideal,H,SI2,61.2,57,4331,6.54,6.59,4.02
1.25,Premium,J,SI2,62.3,59,4331,6.82,6.86,4.26
1.19,Premium,H,SI2,61.9,58,4332,6.84,6.77,4.21
0.91,Premium,E,SI1,62.1,58,4332,6.15,6.18,3.83
1.04,Very Good,H,SI2,60.2,60,4332,6.52,6.57,3.94
1.01,Very Good,F,SI2,62.2,58,4332,6.33,6.38,3.95
1.01,Very Good,F,SI2,62.1,58,4332,6.35,6.41,3.96
1.06,Ideal,I,SI1,62.8,56,4333,6.52,6.47,4.08
1.08,Ideal,H,SI1,62.2,57,4333,6.56,6.6,4.09
0.96,Ideal,F,VS1,61.7,56,4333,6.4,6.34,3.93
1,Premium,F,SI2,62.9,56,4333,6.42,6.36,4.02
1,Premium,F,SI2,59.9,61,4333,6.46,6.42,3.86
1,Premium,F,SI2,61.6,62,4333,6.37,6.3,3.9
0.91,Very Good,F,SI2,62.5,58,4334,6.1,6.16,3.83
0.88,Ideal,H,VVS1,62,59,4334,6.12,6.13,3.8
0.9,Premium,E,VS2,62.9,58,4334,6.15,6.12,3.86
0.9,Good,D,VS2,62.6,65,4334,6.1,6.04,3.8
0.9,Premium,E,SI1,63,59,4334,6.13,6.1,3.85
0.78,Ideal,D,VS1,62.1,55,4336,5.9,5.95,3.68
1.01,Ideal,I,SI2,62.5,57,4336,6.38,6.45,4.01
0.39,Good,J,VS2,63.3,56,581,4.6,4.63,2.92
0.39,Ideal,J,VS2,61.4,57,581,4.66,4.72,2.88
0.39,Very Good,G,SI2,62.7,54,581,4.64,4.71,2.93
0.38,Premium,I,SI1,60.5,58,581,4.67,4.72,2.84
0.39,Premium,J,VS2,61.3,60,581,4.65,4.68,2.86
0.25,Ideal,G,VVS1,61.7,56,582,4.05,4.07,2.51
0.25,Ideal,G,VVS1,62.6,55,582,4.03,4.04,2.52
0.25,Ideal,G,VVS1,62.6,56,582,4.01,4.05,2.52
0.31,Ideal,E,SI1,62.1,56,582,4.35,4.38,2.71
0.25,Ideal,G,IF,61.1,57,582,4.06,4.07,2.48
0.25,Very Good,F,VVS2,61.2,55,583,4.1,4.14,2.52
0.23,Very Good,F,VVS2,61.4,56,583,3.94,3.97,2.43
0.23,Very Good,F,VVS2,61.5,56,583,3.95,4,2.44
0.23,Very Good,F,VVS2,61.6,57,583,3.96,3.99,2.45
0.23,Very Good,F,VVS1,61.8,57,583,3.94,3.96,2.44
0.23,Very Good,F,VVS1,62.3,55,583,3.93,3.96,2.46
0.23,Very Good,F,VVS1,62.8,54,583,3.92,3.94,2.47
0.23,Very Good,E,VVS1,62.4,54,583,3.95,3.98,2.47
0.23,Very Good,E,VVS1,62.2,57,583,3.93,3.96,2.45
0.36,Very Good,H,VS2,61,55,583,4.62,4.66,2.83
0.27,Ideal,F,VVS2,60,62,583,4.21,4.22,2.53
0.27,Ideal,F,VS2,61.9,54,583,4.14,4.16,2.57
0.27,Ideal,F,VS2,61.8,53,583,4.18,4.2,2.59
0.37,Ideal,F,SI1,61.3,55,583,4.61,4.65,2.84
0.37,Premium,J,VS2,61.1,60,583,4.63,4.6,2.82
0.37,Premium,J,VS2,60.7,60,583,4.68,4.65,2.83
0.31,Ideal,G,VS1,61.9,55,583,4.36,4.37,2.7
0.31,Good,G,VS1,63.3,57,583,4.28,4.31,2.72
0.31,Good,F,VS2,63.5,55,583,4.31,4.32,2.74
0.31,Ideal,F,VS2,61.6,56,583,4.35,4.38,2.69
1.01,Ideal,I,SI2,62.4,57,4336,6.37,6.41,3.99
0.74,Good,F,VVS1,58.4,60,4336,6.03,6.06,3.53
1.01,Very Good,J,VS2,60.6,59,4337,6.42,6.45,3.9
0.91,Ideal,H,SI1,62,56,4337,6.19,6.22,3.85
1.21,Premium,I,SI2,59.9,61,4337,6.89,6.85,4.11
1.01,Very Good,D,SI2,63.1,54,4338,6.43,6.37,4.04
1.01,Good,D,SI2,63.6,57,4338,6.34,6.3,4.02
1.01,Premium,D,SI2,60.8,61,4338,6.5,6.45,3.94
1.01,Good,D,SI2,57.6,62,4338,6.66,6.56,3.81
1.01,Premium,G,SI1,59.2,59,4338,6.58,6.52,3.88
1.23,Premium,J,VS2,58,61,4338,7.07,7.03,4.09
1.01,Premium,G,SI1,62.6,60,4338,6.39,6.35,3.99
1.01,Premium,D,SI2,61.8,57,4338,6.47,6.42,3.98
1.01,Premium,G,SI1,63,59,4338,6.32,6.27,3.96
1.01,Premium,D,SI2,62.6,60,4338,6.4,6.37,4
1.01,Premium,G,SI1,62.8,59,4338,6.33,6.29,3.96
0.72,Very Good,E,VVS1,60.8,58,4339,5.79,5.83,3.53
1.01,Good,F,SI1,63.4,55,4339,6.35,6.42,4.05
1.01,Good,F,SI1,64.2,58,4339,6.24,6.29,4.02
1.07,Very Good,G,SI2,64.6,60,4340,6.35,6.4,4.12
1,Premium,F,SI2,61.5,60,4340,6.35,6.33,3.9
1.25,Premium,I,SI2,60.1,60,4340,6.99,6.95,4.19
1.25,Premium,G,SI2,61.1,58,4340,6.96,6.91,4.24
1.02,Very Good,H,SI2,62.6,57,4341,6.42,6.46,4.03
0.7,Ideal,F,VVS1,62.4,55,4341,5.65,5.69,3.54
1.02,Premium,G,SI1,61.3,58,4341,6.47,6.45,3.96
0.95,Premium,D,SI2,60.1,61,4341,6.37,6.35,3.82
1.08,Ideal,H,SI2,62.1,56,4344,6.54,6.6,4.08
1.04,Ideal,I,SI1,61.7,57,4344,6.49,6.54,4.02
0.91,Good,E,VS2,63.1,58,4345,6.13,6.19,3.89
1.52,Premium,G,I1,62.3,60,4345,7.34,7.28,4.56
1.01,Very Good,J,SI1,61.9,58,4346,6.36,6.4,3.95
1.2,Good,D,I1,63.6,60,4346,6.72,6.67,4.26
1.03,Ideal,J,SI2,60.6,56,4347,6.58,6.57,3.99
1.15,Premium,J,SI1,62.3,55,4347,6.76,6.66,4.18
1.15,Premium,I,SI2,62.6,57,4347,6.73,6.69,4.2
1.15,Ideal,J,SI1,61.8,57,4347,6.73,6.67,4.14
1.02,Very Good,H,SI1,62.8,59,4348,6.33,6.38,3.99
1,Very Good,D,SI2,62.3,56,4348,6.33,6.39,3.96
1.13,Very Good,I,VS2,61.6,57,4348,6.73,6.78,4.16
1.01,Premium,H,VS2,58.1,60,4348,6.61,6.55,3.82
1.09,Very Good,H,SI2,60.9,57,4349,6.64,6.69,4.06
1.13,Premium,H,SI2,59.4,58,4350,6.74,6.8,4.02
0.92,Premium,D,SI1,62.3,58,4350,6.21,6.27,3.89
0.78,Ideal,D,VS1,62.2,57,4350,5.86,5.9,3.66
1.01,Ideal,G,SI2,62.1,57,4350,6.48,6.44,4.01
0.93,Very Good,H,VS2,62.8,59,4351,6.13,6.16,3.86
0.9,Ideal,D,SI1,61.6,56,4351,6.19,6.21,3.82
1.01,Very Good,E,SI2,60.4,60,4352,6.48,6.57,3.94
0.91,Premium,D,SI1,63,59,4352,6.15,6.11,3.86
1.34,Very Good,H,SI2,61.1,63,4352,7.08,7.01,4.3
1.18,Very Good,J,SI2,62.2,58,4353,6.74,6.79,4.21
1.27,Premium,G,SI2,62.4,56,4353,6.93,6.88,4.32
1.02,Ideal,H,SI2,61.9,56,4353,6.47,6.51,4.02
0.9,Good,E,VS1,64.8,54,4353,6.12,6.07,3.95
1.02,Very Good,J,VS2,63.9,57.9,4354,6.28,6.33,4.03
1.1,Premium,H,SI1,62.1,58,4354,6.61,6.59,4.1
1.05,Premium,F,SI2,60.4,57,4354,6.61,6.54,3.97
1.08,Ideal,I,SI1,61.4,57,4355,6.67,6.62,4.08
0.9,Premium,H,VS2,61.2,61,4355,6.18,6.08,3.75
1.01,Ideal,E,SI2,62.1,56,4355,6.39,6.43,3.98
1.01,Premium,E,SI2,62.5,60,4355,6.39,6.42,4
1.01,Very Good,E,SI2,61.8,56,4355,6.42,6.5,3.99
1.01,Very Good,E,SI2,62.4,58,4355,6.36,6.42,3.99
1.01,Very Good,E,SI2,59.6,61,4355,6.56,6.59,3.92
1.01,Very Good,E,SI2,62.8,57,4355,6.35,6.38,4
1.01,Good,E,SI2,63.3,58,4355,6.37,6.39,4.04
1.01,Very Good,F,SI2,63.4,56,4355,6.4,6.34,4.04
1.01,Premium,I,SI1,62.3,58,4355,6.44,6.4,4
0.97,Good,I,VS2,64.5,61,4355,6.16,6.21,3.99
0.9,Premium,H,VVS2,60.3,61,4355,6.25,6.22,3.76
0.9,Premium,H,VVS2,62,58,4355,6.16,6.13,3.81
1.08,Premium,I,SI1,60.5,60,4355,6.67,6.61,4.02
1.01,Fair,H,VVS2,65,55,4355,6.31,6.27,4.09
1.01,Premium,H,SI2,61.3,59,4355,6.47,6.41,3.95
0.96,Ideal,G,SI1,62.6,57,4355,6.28,6.24,3.92
0.96,Ideal,G,SI1,63,54,4355,6.27,6.24,3.94
1.01,Good,F,SI1,63.6,58,4355,6.36,6.28,4.02
1.01,Premium,I,SI1,61.9,58,4355,6.48,6.42,3.99
1.01,Premium,G,SI2,59.5,55,4355,6.59,6.53,3.9
1.1,Very Good,I,SI1,62.7,58,4356,6.54,6.58,4.11
1.02,Good,F,SI2,59.2,58,4356,6.51,6.56,3.87
1.01,Ideal,H,SI2,61.7,56,4357,6.41,6.46,3.97
1.06,Good,F,SI2,62.2,61,4357,6.47,6.53,4.04
0.91,Premium,G,VS2,60.8,56,4357,6.28,6.21,3.8
0.9,Very Good,G,VS1,62.4,55,4358,6.11,6.17,3.83
1.02,Ideal,H,SI2,61,58,4360,6.5,6.54,3.98
0.91,Ideal,G,SI2,61,57,4360,6.25,6.28,3.82
1.13,Premium,F,SI2,62.3,59,4360,6.68,6.65,4.15
1.1,Good,D,SI2,57,62,4361,6.91,6.84,3.92
1.1,Very Good,D,SI2,58.6,63,4361,6.76,6.69,3.94
1.09,Ideal,J,VS2,62,54,4361,6.64,6.61,4.11
0.7,Very Good,D,VVS1,63.4,59,4362,5.63,5.64,3.57
1.03,Premium,I,SI1,61.6,59,4362,6.46,6.49,3.99
1.08,Very Good,G,SI2,60.3,58,4362,6.65,6.72,4.03
1.01,Premium,G,SI2,62.4,58,4362,6.38,6.41,3.99
0.72,Ideal,F,VVS1,61,56,4362,5.78,5.8,3.53
0.8,Ideal,F,VS1,62.2,56,4362,5.93,5.96,3.7
0.9,Good,D,SI1,61.1,62,4362,6.2,6.24,3.8
1.07,Premium,E,SI2,60.5,59,4362,6.67,6.59,4.01
0.71,Very Good,D,VVS2,61,56,4363,5.75,5.79,3.52
1.01,Very Good,E,SI2,63.5,55,4363,6.32,6.38,4.03
1.05,Premium,F,SI2,61.7,60,4363,6.58,6.49,4.03
1.02,Ideal,G,SI2,62.6,58,4363,6.42,6.4,4.01
0.85,Ideal,E,SI1,61.6,57,4363,6.07,6.1,3.75
1.05,Premium,F,SI2,62.8,55,4363,6.55,6.48,4.09
1.05,Premium,F,SI2,62.3,56,4363,6.55,6.51,4.07
1.04,Very Good,F,SI2,62.4,54,4364,6.46,6.53,4.05
1.05,Ideal,J,SI2,61.3,56,4364,6.56,6.59,4.03
0.96,Premium,E,SI1,58.7,62,4365,6.41,6.39,3.76
0.84,Premium,D,VS1,60.6,57,4365,6.15,6.06,3.7
1.07,Premium,F,SI2,61.7,58,4366,6.55,6.58,4.05
1.07,Premium,F,SI2,61.8,58,4366,6.51,6.57,4.04
1.02,Ideal,G,SI2,62,55,4366,6.4,6.51,4
0.94,Ideal,E,SI2,60.9,57,4366,6.34,6.36,3.87
1.2,Ideal,I,SI1,62.2,57,4368,6.8,6.77,4.22
1.5,Fair,I,I1,71.3,58,4368,6.85,6.81,4.87
1.2,Fair,I,SI1,66.2,59,4368,6.55,6.47,4.31
1.04,Ideal,H,SI2,61.8,55,4368,6.54,6.5,4.03
1.04,Premium,H,SI1,60.4,59,4368,6.59,6.55,3.97
1.2,Ideal,H,SI2,61.1,57,4368,6.9,6.81,4.19
1.02,Good,F,SI2,61.4,61,4368,6.4,6.44,3.94
1.04,Premium,I,SI1,62,57,4368,6.5,6.47,4.02
1.04,Premium,I,SI1,61.8,60,4368,6.51,6.47,4.01
1.04,Premium,H,SI2,61.5,59,4368,6.54,6.51,4.01
1.2,Premium,H,SI2,62.5,58,4368,6.74,6.69,4.2
1.3,Premium,H,SI2,60.7,59,4368,7.06,7,4.27
1.2,Fair,H,SI2,64.8,58,4368,6.61,6.56,4.27
1,Premium,G,SI2,61.8,59,4368,6.38,6.33,3.93
1.04,Premium,H,SI2,58.6,60,4368,6.67,6.63,3.9
1,Fair,H,VS1,65.4,61,4368,6.22,6.17,4.05
1.04,Ideal,H,SI2,61.1,56,4368,6.66,6.6,4.05
1,Fair,H,VS1,57.4,68,4368,6.52,6.47,3.73
0.51,Fair,F,VVS2,60.7,66,4368,5.21,5.11,3.13
0.9,Very Good,G,VS2,62.5,58,4369,6.1,6.15,3.83
1.01,Very Good,H,SI1,62.6,58,4369,6.34,6.44,4
0.7,Ideal,D,VVS2,62,53.4,4369,5.69,5.72,3.54
0.9,Ideal,H,VS2,62.5,53,4369,6.17,6.22,3.87
1.01,Good,F,SI1,65.5,58,4369,6.11,6.25,4.05
0.91,Very Good,H,VS1,62.1,59,4370,6.17,6.2,3.84
0.9,Good,F,VS2,62.4,58,4370,6.08,6.1,3.8
0.9,Good,F,VS2,63.1,57,4370,6.13,6.16,3.88
1.02,Premium,G,SI2,62.9,59,4370,6.4,6.38,4.02
1.02,Very Good,G,SI2,63.1,60,4370,6.41,6.34,4.02
1.04,Premium,E,SI2,62.8,59,4370,6.45,6.41,4.04
1.02,Ideal,G,SI2,62.7,57,4370,6.44,6.42,4.03
1.02,Premium,G,SI2,62.5,59,4370,6.42,6.37,4
1.13,Ideal,J,SI2,61.9,56,4371,6.67,6.71,4.14
1.01,Premium,E,SI2,61,56,4371,6.42,6.36,3.9
1.09,Very Good,J,VS2,62.3,59,4372,6.56,6.63,4.11
1.06,Very Good,H,SI2,62.8,57,4372,6.49,6.57,4.1
1.06,Premium,I,SI1,61.9,59,4372,6.5,6.52,4.03
1,Very Good,F,SI2,61.3,61,4372,6.36,6.39,3.91
1,Very Good,F,SI2,61.6,61,4372,6.33,6.36,3.91
1.06,Premium,F,SI2,62.4,58,4372,6.5,6.54,4.07
1,Ideal,F,SI2,61.2,57,4372,6.39,6.48,3.94
1,Ideal,F,SI2,61.3,56,4372,6.43,6.46,3.95
1,Premium,I,VS2,61.6,59,4372,6.39,6.47,3.96
1,Good,F,SI1,64,57,4372,6.29,6.33,4.04
1,Very Good,F,SI2,61.1,61,4372,6.35,6.38,3.89
0.73,Ideal,D,VVS2,61.3,56,4372,5.79,5.82,3.56
0.84,Ideal,G,VS1,61.4,56,4372,6.04,6.15,3.74
0.93,Premium,F,SI1,62.3,58,4373,6.18,6.22,3.86
1.12,Premium,I,SI1,61.1,59,4373,6.66,6.69,4.08
1.12,Very Good,H,SI2,62.5,58,4373,6.58,6.63,4.13
1.02,Very Good,F,SI2,60,57,4373,6.53,6.57,3.93
0.85,Ideal,G,VS1,61.8,55,4373,6.09,6.11,3.77
0.85,Ideal,D,SI1,61.9,56,4373,6.03,6.09,3.75
1.32,Premium,G,SI2,59.2,61,4373,7.21,7.14,4.25
1.03,Very Good,G,SI2,62.2,56,4374,6.46,6.49,4.03
1.07,Ideal,F,SI2,61.9,55,4374,6.53,6.58,4.06
0.93,Ideal,E,SI1,62.2,55,4374,6.24,6.27,3.89
1.05,Premium,I,SI2,60.2,61,4374,6.64,6.61,3.99
1.07,Ideal,E,SI2,61.7,57,4374,6.59,6.56,4.06
1.07,Premium,H,VS2,60.6,60,4374,6.66,6.63,4.03
1.04,Ideal,G,SI2,60.7,57,4375,6.51,6.61,3.98
1.04,Ideal,G,SI2,61.4,57,4375,6.48,6.54,4
1.04,Very Good,G,SI2,62.6,58,4375,6.42,6.49,4.04
1.01,Very Good,I,SI1,60,62,4375,6.41,6.53,3.88
1.24,Premium,I,SI2,62.8,58,4375,6.88,6.79,4.28
1.24,Fair,F,SI2,64.9,60,4375,6.7,6.63,4.32
1.02,Ideal,H,SI2,60.5,57,4375,6.56,6.52,3.95
0.93,Good,G,SI1,63.8,58,4375,6.14,6.09,3.9
1.11,Ideal,I,SI2,61.9,57,4377,6.62,6.66,4.11
0.76,Ideal,D,VS1,61.7,56,4377,5.84,5.87,3.61
1.21,Ideal,F,I1,62,56,4377,6.84,6.8,4.23
0.83,Ideal,D,VS2,62,54.9,4378,6.03,6.04,3.74
1.01,Ideal,I,VS2,64.1,58,4378,6.27,6.21,4
0.92,Premium,E,SI1,61.3,58,4379,6.19,6.25,3.81
1,Very Good,H,SI2,62,57,4379,6.4,6.34,3.95
0.9,Very Good,F,SI1,61.4,58,4379,6.18,6.23,3.81
0.71,Ideal,D,VS1,61.7,56,4380,5.71,5.74,3.53
1.02,Premium,G,SI1,61.9,58,4381,6.47,6.42,3.99
0.9,Very Good,H,VS2,63,57,4381,6.09,6.13,3.85
0.9,Good,D,SI1,63.5,57,4381,6.11,6.15,3.89
0.9,Very Good,D,SI1,61,63,4381,6.1,6.13,3.73
0.9,Good,D,SI1,63.3,57,4381,6.07,6.12,3.86
0.9,Premium,D,SI1,62.7,58,4381,6.09,6.15,3.84
0.9,Very Good,D,SI1,59.4,62,4381,6.19,6.24,3.69
0.9,Very Good,D,SI1,61.5,58,4381,6.15,6.21,3.8
0.9,Very Good,D,SI1,62.6,58,4381,6.11,6.15,3.84
0.9,Good,D,SI1,63.2,55,4381,6.1,6.14,3.87
0.9,Very Good,D,SI1,62.7,56,4381,6.12,6.16,3.85
0.9,Very Good,D,SI1,61.2,60,4381,6.14,6.19,3.77
0.9,Good,H,VVS1,64.3,59,4381,6.04,6.09,3.9
1.02,Premium,D,SI2,60,62,4381,6.59,6.5,3.93
1.02,Fair,D,SI2,65.5,60,4381,6.27,6.24,4.1
1.02,Premium,D,SI2,60.9,61,4381,6.39,6.31,3.87
1.02,Premium,D,SI2,61.5,58,4381,6.51,6.33,3.95
1.02,Premium,D,SI2,62.1,57,4381,6.41,6.37,3.97
0.9,Very Good,E,SI1,63.2,54,4382,6.1,6.17,3.88
0.9,Good,G,VVS1,64,55,4382,6.05,6.02,3.86
1.03,Ideal,H,SI2,62.5,54,4382,6.46,6.5,4.05
0.9,Good,D,SI2,62.2,63,4382,6.14,6.23,3.85
0.76,Ideal,E,VVS1,61.8,54,4382,5.9,5.87,3.64
1,Very Good,F,SI2,62.2,55,4383,6.39,6.44,3.99
1.09,Ideal,H,SI2,60,59,4383,6.72,6.77,4.05
1.01,Ideal,G,SI2,61,56,4383,6.48,6.54,3.97
0.74,Ideal,F,IF,61.9,55,4383,5.79,5.84,3.6
1.01,Very Good,F,SI2,62.3,59,4384,6.31,6.37,3.95
1.03,Premium,H,SI1,60.7,60,4384,6.61,6.53,3.99
1.03,Ideal,H,SI2,61.1,57,4384,6.55,6.52,3.99
0.9,Premium,E,SI1,60.8,59,4385,6.24,6.19,3.78
1.13,Very Good,J,SI1,63.5,59,4385,6.62,6.55,4.18
0.9,Premium,E,SI1,59.1,62,4385,6.33,6.3,3.73
0.9,Premium,E,VS2,58,61,4385,6.45,6.34,3.71
1.13,Ideal,I,SI2,61.7,57,4385,6.7,6.59,4.13
0.9,Premium,E,SI1,61.6,57,4385,6.25,6.19,3.83
0.9,Premium,E,SI1,59.8,55,4385,6.34,6.3,3.78
0.9,Premium,G,VS2,61.8,60,4386,6.16,6.21,3.82
0.9,Very Good,G,VS2,61.5,60,4386,6.13,6.16,3.78
0.91,Ideal,H,SI1,61.9,56,4386,6.17,6.21,3.83
1,Good,F,SI2,60.2,65,4386,6.38,6.41,3.85
1.2,Premium,G,SI2,62.8,62,4387,6.69,6.65,4.19
1.44,Premium,I,I1,62.7,55,4387,7.21,7.18,4.51
0.93,Premium,H,VS2,58.3,60,4387,6.45,6.37,3.74
0.8,Ideal,G,VS1,61.1,57,4388,5.97,6,3.65
0.96,Premium,D,SI2,59.1,58,4388,6.53,6.44,3.83
1,Good,H,SI1,62.7,60,4389,6.24,6.3,3.93
1,Very Good,H,SI1,62.2,60,4389,6.34,6.45,3.98
1,Good,H,SI1,63.4,56,4389,6.34,6.37,4.03
1,Premium,H,SI1,59,60,4389,6.52,6.56,3.86
1,Good,H,SI1,63.9,56,4389,6.28,6.31,4.02
1,Good,H,SI1,61.2,62,4389,6.32,6.36,3.88
0.91,Very Good,D,SI1,63.5,56,4389,6.13,6.18,3.91
1,Ideal,H,SI2,58.3,61,4390,6.56,6.61,3.84
1.1,Ideal,J,SI1,61.5,55,4390,6.65,6.68,4.1
0.9,Ideal,F,SI1,62.2,55,4390,6.16,6.21,3.85
1,Very Good,E,SI2,63.3,55,4390,6.29,6.25,3.97
1.12,Premium,I,SI1,60.6,60,4390,6.77,6.73,4.09
1,Premium,E,SI2,62.2,59,4390,6.38,6.35,3.96
1,Premium,E,SI2,60.6,61,4390,6.44,6.39,3.89
1.13,Very Good,J,SI1,62.9,57.7,4391,6.6,6.64,4.16
1.03,Ideal,G,SI2,61.7,55,4391,6.48,6.52,4.01
1.08,Good,F,SI2,58,61,4391,6.72,6.77,3.91
1.21,Premium,J,SI1,62.7,57,4391,6.77,6.72,4.23
1.21,Premium,I,SI2,61.8,60,4391,6.86,6.76,4.21
0.91,Ideal,E,SI1,61,57,4392,6.2,6.26,3.8
1,Very Good,E,SI2,62.5,55,4392,6.38,6.41,4
1,Good,E,SI2,61,61,4394,6.37,6.44,3.91
1.09,Premium,H,SI2,61.2,62,4395,6.63,6.58,4.04
1.09,Premium,H,SI2,61.2,62,4395,6.63,6.58,4.04
1.16,Good,F,SI2,63.7,63,4395,6.55,6.63,4.2
1,Very Good,H,SI2,63.7,58,4395,6.31,6.35,4.03
1.03,Ideal,J,SI1,61.7,56,4395,6.49,6.53,4.02
0.9,Good,G,VS1,61,62,4395,6.16,6.24,3.78
1.01,Premium,G,SI1,58.8,58,4395,6.59,6.51,3.85
1.01,Premium,G,SI1,62.3,60,4395,6.31,6.25,3.91
0.9,Very Good,F,VS2,59.6,59,4397,6.27,6.31,3.75
1.02,Ideal,J,VS2,61.1,58,4397,6.45,6.49,3.95
1.02,Ideal,J,VS2,60.7,57,4397,6.5,6.54,3.96
1.01,Good,G,SI2,59.3,62,4397,6.51,6.58,3.88
1.02,Fair,H,SI2,59.6,57,4398,6.65,6.5,3.92
1.02,Very Good,E,SI2,60.5,58,4398,6.54,6.58,3.97
1.02,Good,E,SI2,63.3,59,4398,6.32,6.42,4.03
1.02,Very Good,E,SI2,62.8,55,4398,6.4,6.43,4.03
1.02,Very Good,E,SI2,62.9,56,4398,6.36,6.43,4.02
1.02,Very Good,E,SI2,63,57,4398,6.39,6.44,4.04
1.02,Ideal,E,SI2,62.4,55,4398,6.44,6.47,4.03
1.02,Very Good,E,SI2,59.6,59,4398,6.54,6.59,3.91
1.05,Very Good,E,SI2,62.9,57,4398,6.47,6.51,4.08
1.04,Fair,D,SI2,64.9,56,4398,6.39,6.34,4.13
1.02,Ideal,G,SI2,61.4,54,4398,6.55,6.52,4.01
1,Premium,G,SI2,61.8,58,4398,6.43,6.39,3.96
1.02,Premium,F,SI2,63,58,4398,6.43,6.37,4.03
1.02,Ideal,F,SI2,62.4,57,4398,6.43,6.4,4
1.02,Fair,D,SI1,70.6,57,4398,6.08,6.01,4.27
1.02,Ideal,H,SI2,60.7,57,4398,6.54,6.51,3.96
0.77,Very Good,F,VVS1,60.2,58,4399,5.93,5.97,3.58
1.01,Premium,E,SI1,62.4,58,4399,6.37,6.42,3.99
1.01,Good,E,SI1,64.1,59,4399,6.31,6.35,4.06
1.01,Good,E,SI1,64.1,62,4399,6.19,6.26,3.99
1.01,Very Good,E,SI1,61,56,4399,6.47,6.54,3.97
1.01,Good,E,SI1,59.3,64,4399,6.47,6.49,3.84
1.14,Premium,F,SI2,62.8,58,4399,6.61,6.56,4.14
0.9,Very Good,G,VS2,63.8,58,4400,6.08,6.12,3.89
0.9,Very Good,G,VS2,58.8,61,4400,6.28,6.3,3.7
0.9,Very Good,F,VS2,63.4,58,4400,6.07,6.11,3.86
1,Good,E,SI2,63.5,54,4400,6.35,6.41,4.05
0.97,Premium,G,SI1,62.6,58,4400,6.24,6.18,3.89
0.31,Very Good,F,VS2,60.7,61,583,4.36,4.4,2.66
0.31,Good,F,VS2,63.7,59,583,4.26,4.31,2.73
0.31,Ideal,F,VS2,60.8,57,583,4.38,4.41,2.67
0.31,Ideal,F,VS2,61.6,56,583,4.35,4.39,2.69
0.31,Premium,F,VS2,59.4,58,583,4.37,4.45,2.62
0.31,Very Good,F,VS2,63,57,583,4.27,4.33,2.71
0.31,Good,F,VS2,63.6,54,583,4.28,4.33,2.74
0.31,Very Good,G,VS1,58.2,61,583,4.42,4.45,2.58
0.31,Ideal,F,VS2,61.9,57,583,4.32,4.34,2.68
0.31,Very Good,F,VS2,58.3,61,583,4.44,4.48,2.6
0.31,Ideal,F,VS2,62.2,56,583,4.36,4.39,2.72
0.35,Ideal,F,SI1,62.5,54,583,4.5,4.52,2.82
0.35,Premium,F,SI1,60.2,58,583,4.54,4.6,2.75
0.35,Ideal,F,SI1,62.4,55,583,4.52,4.55,2.83
0.35,Ideal,F,SI1,62.2,56,583,4.48,4.52,2.8
0.35,Good,F,SI1,63.6,54,583,4.51,4.52,2.87
0.35,Good,F,SI1,63.1,56,583,4.46,4.51,2.83
0.35,Premium,F,SI1,62.3,58,583,4.49,4.53,2.81
0.35,Very Good,F,SI1,61.7,58,583,4.51,4.54,2.79
0.26,Very Good,E,VVS2,60.9,58,584,4.13,4.15,2.52
0.32,Very Good,E,SI1,59.9,57,584,4.47,4.49,2.68
0.32,Very Good,E,SI1,62.3,55,584,4.36,4.38,2.72
0.5,Fair,F,I1,69.8,55,584,4.89,4.8,3.38
0.34,Ideal,D,SI1,62,55,584,4.5,4.53,2.8
0.37,Good,H,VS2,63.1,55,584,4.59,4.63,2.91
0.37,Very Good,H,VS2,59.5,61,584,4.64,4.67,2.77
0.37,Good,H,VS2,63.7,55,584,4.54,4.56,2.9
0.37,Premium,I,VS1,61.4,59,584,4.55,4.61,2.81
0.34,Premium,D,SI1,62,58,584,4.43,4.47,2.76
0.3,Very Good,E,VS2,61.6,61,585,4.26,4.31,2.64
1.07,Premium,G,SI2,62,59,4401,6.54,6.5,4.04
0.9,Ideal,F,SI1,60.7,57,4401,6.21,6.25,3.78
0.9,Very Good,G,SI1,62.9,54,4401,6.14,6.16,3.87
1.06,Ideal,H,SI2,60.1,59,4401,6.65,6.63,3.99
1.03,Ideal,I,SI1,63.3,57,4401,6.37,6.46,4.06
1.07,Premium,G,SI2,62.9,59,4401,6.58,6.51,4.12
0.9,Good,G,VS1,63.9,60,4401,6.14,6.09,3.91
1.07,Ideal,G,SI2,62,57,4401,6.58,6.55,4.07
1.06,Ideal,H,SI2,62.8,57,4402,6.52,6.56,4.11
1.04,Ideal,F,SI1,59.9,56,4403,6.64,6.58,3.96
0.9,Ideal,H,VS2,61.9,58,4403,6.2,6.24,3.85
1.04,Fair,F,SI1,66.9,62,4403,6.22,6.15,4.14
1.04,Ideal,H,SI2,62.1,56,4404,6.48,6.5,4.03
0.92,Good,F,VS2,63.1,57,4404,6.11,6.16,3.87
1.02,Very Good,E,SI2,63.1,59,4404,6.33,6.39,4.01
1.02,Very Good,E,SI2,60.7,62,4404,6.44,6.47,3.92
0.97,Very Good,H,SI1,62.8,55,4404,6.25,6.3,3.94
1.51,Premium,H,I1,60.9,56,4404,7.38,7.26,4.46
1.21,Very Good,I,SI1,63.3,60,4404,6.76,6.69,4.26
1.21,Premium,I,SI1,61,56,4404,6.91,6.87,4.2
1.15,Very Good,I,SI2,62,58,4405,6.69,6.73,4.16
1.05,Ideal,J,SI1,61.7,55,4405,6.54,6.56,4.04
1.05,Ideal,J,SI1,61.5,55,4405,6.53,6.57,4.03
1,Good,H,SI1,61.6,61,4405,6.29,6.35,3.89
0.93,Good,G,SI1,58.8,61,4405,6.36,6.39,3.75
0.92,Ideal,G,VS2,62.6,56,4405,6.2,6.17,3.87
1.06,Ideal,I,VS2,61.4,57,4405,6.57,6.52,4.02
0.92,Ideal,G,SI2,61.9,57,4406,6.23,6.25,3.86
0.92,Good,E,VS2,58.9,57,4406,6.35,6.38,3.75
1.03,Premium,H,SI1,58.6,61,4406,6.64,6.6,3.88
1.03,Very Good,H,SI1,63.4,62,4406,6.46,6.27,4.05
1.13,Good,D,SI2,60.7,64,4406,6.68,6.63,4
0.9,Premium,D,SI1,61.4,62,4407,6.19,6.05,3.76
1.08,Very Good,F,SI2,62.6,56,4407,6.55,6.61,4.12
1.08,Premium,F,SI2,60.2,59,4407,6.6,6.65,3.99
0.77,Ideal,D,VS1,62.3,56,4407,5.83,5.89,3.65
1.03,Ideal,G,SI2,62.1,56,4407,6.44,6.48,4.01
0.7,Good,D,VVS1,61,61,4407,5.69,5.72,3.48
1.23,Premium,G,SI2,58.9,62,4408,7.03,6.97,4.12
0.9,Good,H,VS1,62.4,55,4409,6.09,6.16,3.82
1.25,Premium,J,SI2,62.3,59,4410,6.86,6.82,4.26
1.05,Ideal,H,SI2,61.2,57,4410,6.62,6.55,4.03
1.05,Ideal,H,SI2,61.2,57,4410,6.59,6.54,4.02
1.01,Premium,F,SI1,61.9,58,4412,6.38,6.34,3.94
1.01,Very Good,I,SI1,63.5,59,4412,6.36,6.31,4.02
1.01,Premium,H,VS2,62.3,58,4412,6.45,6.36,3.99
0.81,Ideal,F,VS1,62.3,55,4412,5.97,6,3.73
1.01,Very Good,H,VS1,63.5,56,4412,6.32,6.27,4
1.01,Premium,E,SI2,59.1,60,4412,6.57,6.55,3.88
1.01,Premium,H,SI2,60.3,60,4412,6.49,6.45,3.9
1.06,Very Good,J,VS2,62.6,59,4413,6.49,6.57,4.09
1.07,Premium,H,SI2,61.2,60,4413,6.53,6.57,4.01
1.07,Very Good,H,SI2,62.8,57,4413,6.5,6.58,4.11
1,Very Good,G,SI1,62.6,57,4413,6.31,6.37,3.97
1.01,Ideal,I,SI1,62.5,56,4413,6.4,6.44,4.01
1.01,Good,E,SI2,56.7,61,4413,6.68,6.7,3.79
1.08,Ideal,H,SI1,62.2,57,4413,6.6,6.56,4.09
1.03,Very Good,G,SI2,63.5,56,4413,6.37,6.33,4.03
1.03,Premium,G,SI2,59.9,60,4413,6.56,6.5,3.91
1.02,Good,E,SI2,64.2,59,4414,6.26,6.2,4
1.02,Very Good,E,SI2,58.7,63,4414,6.61,6.55,3.86
1.08,Premium,F,SI2,62.3,58,4414,6.55,6.52,4.07
1.1,Very Good,H,SI1,62.5,56,4414,6.56,6.63,4.12
1.03,Very Good,F,SI2,61.8,59,4414,6.43,6.48,3.99
1.03,Very Good,F,SI2,62,58,4414,6.43,6.51,4.01
1.04,Ideal,G,SI2,63.1,55,4414,6.45,6.52,4.09
1.03,Good,F,SI2,59,59,4414,6.55,6.6,3.88
1.08,Very Good,E,SI2,59.8,59,4415,6.65,6.73,4
1.01,Very Good,F,SI2,60,59,4416,6.48,6.61,3.93
1.01,Very Good,F,SI2,62.4,58,4416,6.37,6.41,3.99
1.01,Good,F,SI2,63.2,59,4416,6.35,6.38,4.02
1.01,Premium,F,SI2,62.2,59,4416,6.41,6.45,4
1.01,Premium,F,SI2,62.6,60,4416,6.35,6.37,3.98
1.01,Ideal,F,SI2,62.5,55,4416,6.39,6.4,4
1.01,Premium,F,SI2,61.3,60,4416,6.4,6.43,3.93
1.01,Premium,F,SI2,62.2,59,4416,6.38,6.42,3.98
1.01,Premium,F,SI2,61.6,58,4416,6.39,6.4,3.94
1.01,Ideal,F,SI2,60.5,57,4416,6.49,6.53,3.94
1.01,Good,F,SI2,63.9,54,4416,6.33,6.44,4.08
1.01,Very Good,F,SI2,62.7,59,4416,6.35,6.4,4
1.01,Very Good,F,SI2,62.8,60,4416,6.33,6.4,4
1,Good,G,SI1,62.2,62,4416,6.34,6.39,3.96
1.06,Ideal,H,VS2,62.4,57,4416,6.54,6.48,4.06
0.83,Ideal,F,VS2,62.3,56,4417,5.99,6.02,3.74
1.01,Fair,G,SI1,65.3,58,4417,6.14,6.2,4.03
0.95,Very Good,D,SI2,60.1,61,4418,6.35,6.37,3.82
1.15,Very Good,H,SI2,61.4,58,4418,6.7,6.75,4.13
1.01,Very Good,I,SI1,62.1,59,4418,6.36,6.42,3.97
1.01,Premium,F,SI1,62.2,59,4418,6.44,6.35,3.98
0.9,Very Good,E,VS2,62.8,57,4419,6.13,6.16,3.86
1,Very Good,D,SI2,63.7,55,4419,6.32,6.37,4.04
0.9,Very Good,D,SI1,59.5,57,4419,6.19,6.34,3.73
0.9,Ideal,E,VS2,62.1,57,4419,6.15,6.18,3.83
1.07,Ideal,G,SI2,62.4,57,4419,6.56,6.58,4.1
0.9,Good,D,SI1,61.9,62,4419,6.15,6.17,3.81
0.92,Premium,F,SI1,62.1,60,4420,6.22,6.21,3.86
0.86,Ideal,G,VS1,62.2,57,4420,6.05,6.1,3.78
1.07,Ideal,G,SI2,61.7,57,4421,6.55,6.59,4.05
1.1,Very Good,H,SI2,62.9,58,4422,6.53,6.56,4.12
1.07,Ideal,J,SI1,62.4,56,4422,6.52,6.56,4.08
1.12,Ideal,J,VS2,60.1,57,4422,6.82,6.75,4.08
1.12,Premium,J,VS2,58.6,58,4422,6.85,6.81,4
1.04,Ideal,I,SI1,61.4,55,4423,6.5,6.59,4.02
0.91,Very Good,F,VS1,63.1,59,4423,6.19,6.14,3.89
1.17,Premium,I,SI2,62.7,57,4423,6.77,6.69,4.22
1.35,Ideal,J,SI1,61,55,4423,7.17,7.09,4.35
1.17,Premium,J,SI1,61.9,58,4423,6.77,6.73,4.18
1.35,Good,I,SI2,57.9,60,4423,7.33,7.29,4.23
1.35,Fair,I,SI2,66.5,57,4423,6.79,6.74,4.5
0.9,Premium,G,VS2,60.2,59,4424,6.28,6.22,3.76
1.03,Fair,G,SI1,64.7,63,4424,6.36,6.31,4.1
0.9,Premium,G,VS2,60,59,4424,6.3,6.23,3.76
1.16,Ideal,G,SI2,61.3,55,4425,6.79,6.84,4.18
1.01,Very Good,F,SI2,60,55,4425,6.56,6.53,3.93
1.01,Ideal,J,VS2,62.3,55,4425,6.4,6.44,4
1,Ideal,F,SI2,61.3,57,4425,6.4,6.46,3.94
0.93,Good,G,VS1,63.8,59,4425,6.21,6.15,3.94
1.04,Ideal,F,SI1,62.1,56,4426,6.54,6.47,4.04
1,Very Good,E,SI2,62.6,58,4426,6.33,6.39,3.98
1.04,Very Good,I,SI1,61.9,58,4426,6.45,6.47,4
0.95,Premium,G,SI1,58,62,4426,6.47,6.42,3.74
1.23,Premium,G,SI2,62.8,59,4426,6.76,6.72,4.23
1.04,Good,F,SI2,63.1,60,4427,6.35,6.42,4.03
1.05,Very Good,G,SI2,63.5,57,4427,6.39,6.43,4.07
1.04,Very Good,F,SI2,60,61,4427,6.5,6.57,3.92
0.9,Premium,D,SI1,61.5,60,4427,6.19,6.17,3.8
1,Ideal,D,SI2,62.3,56,4427,6.39,6.33,3.96
1,Premium,G,SI1,60.2,59,4427,6.5,6.39,3.88
1,Good,D,SI2,58.1,65,4427,6.54,6.48,3.78
1,Good,G,SI1,64.3,58,4427,6.25,6.22,4.01
0.9,Very Good,H,VS1,62.5,58,4428,6.09,6.13,3.82
1.28,Ideal,G,I1,61.6,57,4428,6.93,6.96,4.28
0.9,Ideal,H,VS1,62.2,58,4428,6.14,6.17,3.83
1.11,Ideal,I,SI2,61.6,54,4428,6.66,6.72,4.12
0.91,Premium,D,SI1,60.2,60,4429,6.25,6.3,3.78
0.91,Very Good,D,SI1,63,59,4429,6.11,6.15,3.86
1.05,Very Good,G,SI1,59.1,57,4429,6.63,6.73,3.95
0.91,Very Good,G,SI1,60.2,58,4429,6.29,6.31,3.79
0.91,Ideal,E,SI1,60.8,57,4429,6.27,6.29,3.82
0.91,Very Good,H,VS2,60.8,58,4430,6.21,6.25,3.79
1.13,Premium,H,SI2,59.4,58,4430,6.8,6.74,4.02
1.13,Premium,I,VS2,60.2,61,4430,6.74,6.71,4.05
0.9,Very Good,H,VVS2,60.3,61,4432,6.22,6.25,3.76
0.9,Good,F,VS2,63.3,57,4432,6.11,6.15,3.88
0.9,Premium,H,VVS2,62,58,4432,6.13,6.16,3.81
1.01,Very Good,H,SI1,61.8,61,4432,6.4,6.47,3.98
1.01,Very Good,H,SI1,62.1,60,4432,6.4,6.44,3.99
1.01,Very Good,H,SI1,61.9,57,4432,6.36,6.41,3.95
1.01,Good,H,SI1,63.1,60,4432,6.37,6.41,4.03
1.07,Ideal,H,SI2,59.2,57,4434,6.7,6.64,3.95
1.03,Ideal,I,SI1,62.2,58,4434,6.45,6.41,4
0.91,Very Good,E,SI1,63.1,58,4434,6.17,6.12,3.88
1.01,Ideal,E,SI2,62.8,57,4434,6.38,6.35,4
1.01,Premium,E,SI2,62.5,60,4434,6.42,6.39,4
1.01,Very Good,E,SI2,63.3,58,4434,6.39,6.37,4.04
0.91,Very Good,F,VS2,63.4,55,4434,6.22,6.18,3.93
1.01,Premium,E,SI2,59.6,61,4434,6.59,6.56,3.92
1.01,Ideal,E,SI2,62.1,56,4434,6.43,6.39,3.98
0.91,Premium,E,SI1,62.5,61,4434,6.19,6.1,3.84
1.1,Premium,H,SI2,62.6,57,4435,6.6,6.56,4.12
0.9,Ideal,D,SI1,61.9,55,4435,6.22,6.18,3.84
1.02,Premium,G,SI1,62.2,58,4435,6.44,6.48,4.02
1.04,Very Good,H,SI2,62.9,57,4435,6.39,6.45,4.04
1.01,Very Good,G,SI2,59.3,61,4435,6.56,6.52,3.88
1.01,Very Good,G,SI2,62.1,60,4435,6.38,6.35,3.95
0.9,Very Good,G,SI1,62.2,58,4435,6.15,6.2,3.84
1,Very Good,E,SI2,60.5,59,4435,6.44,6.48,3.91
0.9,Premium,F,SI1,61.4,55,4435,6.18,6.16,3.79
0.9,Premium,E,VS2,61.4,57,4435,6.19,6.16,3.79
1.2,Premium,J,VS2,58,59,4435,6.98,6.92,4.03
1.1,Premium,I,SI1,62.7,58,4435,6.58,6.54,4.11
1,Good,E,SI1,63.1,64,4435,6.31,6.25,3.96
0.9,Very Good,F,SI1,58,63,4435,6.33,6.25,3.65
1,Very Good,E,SI1,63.1,58,4435,6.34,6.2,3.95
1,Fair,E,SI1,65.1,61,4435,6.15,6.08,3.98
1,Fair,G,VS2,69.8,54,4435,6.03,5.94,4.18
1,Premium,E,SI1,60.3,62,4435,6.52,6.43,3.91
1.05,Very Good,F,SI2,62.1,58,4436,6.47,6.5,4.03
1.04,Premium,E,SI2,60.1,60,4436,6.53,6.51,3.92
1.01,Good,E,SI2,60.7,62,4436,6.43,6.49,3.92
1.13,Very Good,G,SI2,60,61,4437,6.71,6.78,4.05
0.91,Very Good,F,SI1,60.4,59,4437,6.22,6.26,3.77
1.15,Premium,F,SI2,62.2,59,4437,6.7,6.62,4.14
1.15,Good,F,SI2,63.8,57,4437,6.65,6.6,4.23
1.19,Premium,I,SI2,61.6,56,4438,6.87,6.83,4.22
1.01,Very Good,I,VS2,61.3,56,4438,6.53,6.45,3.98
0.9,Very Good,D,SI1,60.9,57,4438,6.22,6.26,3.8
1.01,Premium,H,SI1,62.1,60,4439,6.43,6.39,3.98
0.7,Ideal,F,VVS2,61.5,56,4439,5.7,5.78,3.53
0.9,Ideal,E,SI1,59.1,59,4439,6.31,6.37,3.75
0.91,Fair,D,VS2,65.1,63,4439,6.02,6,3.91
1.07,Premium,H,SI1,62.9,61,4440,6.47,6.41,4.05
0.56,Very Good,D,IF,60.7,56,4440,5.34,5.36,3.25
1.21,Premium,J,SI2,60.9,60,4440,6.82,6.78,4.14
1.01,Good,E,SI2,63.9,55,4440,6.38,6.33,4.08
1.03,Ideal,E,SI2,62.5,56,4441,6.45,6.48,4.04
1.03,Premium,E,SI2,61,60,4441,6.46,6.53,3.96
0.9,Very Good,F,SI2,61,61,4441,6.14,6.18,3.76
1.03,Fair,D,SI1,65.5,58,4441,6.18,6.13,4.03
1.03,Premium,I,SI1,61.6,59,4441,6.49,6.46,3.99
1.03,Good,D,SI1,64.3,58,4441,6.31,6.28,4.05
1.03,Good,D,SI1,64.3,58,4441,6.31,6.28,4.05
1.11,Very Good,I,SI2,62.5,58,4442,6.59,6.65,4.14
1.07,Ideal,H,SI2,61.8,56,4442,6.58,6.63,4.08
1.01,Premium,G,SI2,62.4,58,4442,6.41,6.38,3.99
1.08,Premium,G,SI2,60.3,58,4442,6.72,6.65,4.03
1.2,Very Good,G,SI2,61.8,60,4443,6.78,6.85,4.21
1.2,Very Good,G,SI2,61.5,58,4443,6.83,6.85,4.21
1.08,Ideal,J,SI1,61.8,56.2,4443,6.55,6.58,4.06
1.02,Good,E,SI1,63.7,62,4443,6.31,6.4,4.05
1.02,Good,E,SI1,63.1,57,4443,6.37,6.43,4.04
0.84,Very Good,D,VS1,60.6,57,4443,6.06,6.15,3.7
0.9,Premium,E,SI1,62.7,60,4443,6.13,6.03,3.81
1.01,Ideal,J,VS2,62.2,54,4443,6.41,6.47,4.01
0.91,Very Good,D,SI1,62,60,4444,6.12,6.2,3.82
0.8,Good,E,VS1,60.2,54,4444,6.04,6.01,3.63
1.09,Premium,E,SI2,59.4,60,4444,6.81,6.7,4.01
1.24,Premium,H,SI2,62.3,58,4444,6.84,6.8,4.25
1.01,Very Good,E,SI2,62,60,4445,6.36,6.41,3.96
1,Good,I,VVS1,56.5,62,4445,6.58,6.55,3.71
1.05,Premium,F,SI1,61.8,58,4445,6.51,6.44,4.01
1.07,Premium,F,SI2,61.8,58,4446,6.57,6.51,4.04
1.07,Good,F,SI2,61.3,65,4446,6.59,6.41,4
1.07,Premium,F,SI2,61.7,58,4446,6.58,6.55,4.05
0.9,Very Good,D,SI1,63.4,57,4447,6.13,6.1,3.88
0.71,Ideal,E,VVS2,61.7,56,4447,5.78,5.8,3.57
0.93,Premium,D,SI1,60.8,59,4448,6.27,6.24,3.8
1.06,Ideal,I,VS2,62.3,56,4449,6.51,6.56,4.07
0.9,Very Good,E,VS1,63,55,4449,6.08,6.15,3.85
1.03,Very Good,F,SI2,62.2,56,4449,6.51,6.48,4.04
1.13,Ideal,F,SI2,60.4,56,4449,6.78,6.72,4.08
1.02,Premium,G,SI1,62.6,59,4449,6.43,6.38,4.01
1.01,Very Good,H,SI1,62.3,63,4449,6.3,6.23,3.9
0.92,Premium,H,VS2,62.4,60,4451,6.24,6.16,3.87
1.04,Very Good,J,VS2,59.5,59,4451,6.59,6.66,3.94
1.07,Very Good,I,SI1,62.6,58,4451,6.49,6.57,4.09
0.85,Premium,F,VVS2,61.2,60,4451,6.13,6.1,3.74
0.93,Good,G,SI1,63.8,58,4452,6.09,6.14,3.9
0.9,Ideal,G,SI1,62.3,58,4452,6.17,6.22,3.86
1.06,Premium,I,SI1,61.9,59,4452,6.52,6.5,4.03
1,Premium,I,VS2,61.6,59,4452,6.47,6.39,3.96
1.06,Premium,I,SI1,61.9,57,4452,6.61,6.51,4.06
1,Ideal,F,SI2,61.2,57,4452,6.48,6.39,3.94
1,Ideal,F,SI2,61.3,56,4452,6.46,6.43,3.95
1.06,Ideal,H,SI2,62.8,57,4452,6.57,6.49,4.1
1.06,Premium,F,SI2,62.4,58,4452,6.54,6.5,4.07
1,Premium,F,SI2,61.3,61,4452,6.39,6.36,3.91
1,Premium,F,SI2,61.1,61,4452,6.38,6.35,3.89
1,Premium,F,SI2,61.6,61,4452,6.36,6.33,3.91
1,Good,F,SI1,64,57,4452,6.33,6.29,4.04
1.06,Ideal,H,SI2,59.4,57,4452,6.67,6.63,3.95
0.91,Ideal,G,SI1,62,54,4453,6.23,6.26,3.87
1.07,Good,E,SI2,60,62,4453,6.57,6.62,3.96
0.71,Ideal,F,VVS1,62,56,4454,5.72,5.77,3.56
1.03,Ideal,F,SI2,61.8,56,4454,6.49,6.46,4
1.02,Premium,H,SI2,62.7,59,4455,6.41,6.34,4
0.9,Very Good,H,VS1,62.1,57,4455,6.17,6.23,3.85
1.08,Ideal,H,SI2,59.3,57,4455,6.71,6.74,3.99
1.2,Very Good,I,SI2,61.9,59,4455,6.77,6.84,4.21
1.2,Very Good,J,SI1,60.5,59,4455,6.79,6.84,4.12
1.08,Ideal,H,SI2,60.4,57,4455,6.63,6.68,4.02
1.16,Very Good,H,SI2,59.6,59,4455,6.85,6.87,4.09
1.16,Very Good,H,SI2,63.2,57,4455,6.66,6.7,4.22
1.04,Ideal,G,SI2,61.7,56,4455,6.57,6.52,4.04
0.9,Premium,G,SI1,62.6,57,4455,6.16,6.11,3.84
1.3,Premium,G,SI2,63,59,4455,6.97,6.9,4.37
1.17,Very Good,H,SI2,63.1,58,4455,6.72,6.64,4.22
0.9,Premium,G,SI1,60.6,57,4455,6.28,6.2,3.78
1.02,Premium,F,SI1,62.6,58,4455,6.42,6.36,4
1.04,Premium,G,SI2,62.6,58,4455,6.49,6.42,4.04
1.04,Ideal,G,SI2,61.4,57,4455,6.54,6.48,4
1.04,Ideal,G,SI2,60.7,57,4455,6.61,6.51,3.98
1.02,Fair,H,VS1,71.8,56,4455,6.04,5.97,4.31
1,Fair,G,VS1,64.9,65,4455,6.31,6.18,4.05
1.02,Ideal,I,SI1,61.3,56,4455,6.52,6.47,3.98
1.11,Good,H,SI2,63.5,60.3,4456,6.49,6.58,4.15
1.11,Very Good,H,SI2,59.8,60,4456,6.66,6.75,4.01
0.96,Good,H,VS1,63.9,54,4456,6.27,6.22,3.99
1.09,Premium,G,SI2,59,58,4456,6.78,6.72,3.98
1.01,Good,D,SI2,63.5,61,4457,6.33,6.37,4.03
1.02,Ideal,F,SI2,61,58,4457,6.48,6.51,3.96
0.92,Ideal,I,SI1,61.7,56,4457,6.2,6.23,3.83
1.1,Good,G,SI2,60.5,61,4457,6.69,6.74,4.06
1.11,Ideal,I,SI2,61.9,57,4457,6.66,6.62,4.11
0.7,Ideal,F,VVS1,62.2,57,4458,5.7,5.74,3.56
1.01,Ideal,F,SI2,61.5,56,4458,6.42,6.49,3.97
1.01,Ideal,F,SI2,62.1,55,4458,6.42,6.47,4
1.03,Ideal,I,SI1,60.7,60,4458,6.5,6.55,3.96
1.07,Ideal,H,VS2,62.1,57,4458,6.53,6.49,4.04
1.02,Premium,F,SI2,61.1,59,4459,6.41,6.45,3.93
1.06,Ideal,G,SI2,62.2,55,4459,6.53,6.56,4.07
1.02,Premium,F,SI2,61.5,58,4459,6.42,6.49,3.97
1.02,Premium,F,SI2,62.5,60,4459,6.36,6.43,4
1.02,Premium,I,VS2,62,58,4459,6.44,6.47,4
0.91,Premium,G,VS1,62.2,58,4459,6.22,6.12,3.85
1,Ideal,H,SI2,61.5,55.6,4459,6.41,6.48,3.96
1.02,Good,D,SI2,64.1,58,4459,6.25,6.32,4.03
1.58,Premium,I,I1,60.2,61,4459,7.55,7.51,4.53
0.9,Good,G,VS1,63.6,58,4460,6.12,6.09,3.88
0.9,Good,G,VS1,63.7,56,4460,6.15,6.07,3.89
0.3,Very Good,G,VS1,60.8,56,585,4.35,4.37,2.65
0.3,Very Good,G,VS1,62.1,55,585,4.28,4.31,2.67
0.38,Very Good,F,SI2,61.2,57,585,4.67,4.71,2.87
0.4,Premium,I,SI2,62.9,59,585,4.68,4.63,2.93
0.28,Very Good,G,VVS1,61.9,55,586,4.18,4.2,2.6
0.28,Very Good,G,VVS1,60.7,56,586,4.27,4.29,2.6
0.28,Ideal,G,VVS2,61.6,56,586,4.18,4.2,2.58
0.28,Ideal,G,VVS2,61.5,56,586,4.22,4.24,2.6
0.28,Ideal,H,VVS1,62,55,586,4.17,4.22,2.6
0.39,Ideal,J,VS2,61.8,55.9,586,4.66,4.69,2.89
0.31,Ideal,G,VS1,62.3,54,586,4.31,4.33,2.69
0.23,Ideal,E,VS1,61.9,55,586,3.94,3.98,2.45
0.23,Ideal,E,VS1,61.5,54,586,3.96,3.97,2.44
0.37,Ideal,G,SI1,61.4,56,586,4.63,4.65,2.85
0.37,Ideal,G,SI1,61.4,55,586,4.63,4.68,2.86
0.37,Ideal,G,SI1,62,55,586,4.62,4.64,2.87
0.37,Ideal,G,SI1,61.9,55,586,4.62,4.66,2.87
0.32,Ideal,F,SI1,61.4,54,586,4.42,4.44,2.72
0.32,Ideal,F,SI1,60.9,55,586,4.46,4.53,2.72
0.28,Ideal,H,IF,63,55,586,4.14,4.19,2.62
0.28,Ideal,H,IF,62,56,586,4.2,4.23,2.61
0.3,Fair,E,VVS2,66.6,54,586,4.14,4.18,2.77
0.31,Good,I,VS1,63.9,55,586,4.3,4.28,2.74
0.31,Premium,H,VS2,58.9,61,586,4.46,4.43,2.62
0.31,Good,H,VS2,63.8,56,586,4.33,4.29,2.75
0.38,Very Good,D,SI1,62,55,586,4.67,4.72,2.91
0.27,Very Good,E,VVS2,61.8,59,586,4.14,4.18,2.57
0.27,Ideal,D,VVS1,61.7,57,586,4.16,4.2,2.58
0.27,Ideal,E,VVS1,62,56,586,4.16,4.19,2.59
0.27,Good,E,VVS1,63.9,57,586,4.07,4.1,2.61
1.18,Premium,J,SI1,62.5,55,4460,6.82,6.74,4.24
1.18,Premium,I,SI2,61.2,59,4460,6.85,6.78,4.17
0.9,Premium,G,VS1,62.7,60,4460,6.13,6.06,3.82
0.9,Ideal,G,VS1,61.6,55,4460,6.27,6.23,3.85
0.9,Premium,G,VS1,62.3,60,4460,6.08,6,3.76
1.04,Ideal,H,SI2,61.7,57,4461,6.49,6.54,4.02
1.02,Fair,H,VS2,64.6,61,4462,6.32,6.24,4.06
1.02,Fair,F,SI1,65.1,56,4462,6.29,6.25,4.08
0.96,Premium,E,SI2,58.2,58,4462,6.52,6.47,3.78
1.24,Very Good,G,SI2,63.3,57,4462,6.85,6.79,4.32
0.9,Very Good,E,SI1,59.8,55,4463,6.3,6.34,3.78
0.9,Good,E,SI1,63.9,55,4463,6.08,6.13,3.9
0.9,Very Good,E,SI1,61.6,57,4463,6.19,6.25,3.83
0.9,Good,E,SI1,63.9,57,4463,6.05,6.1,3.88
0.9,Premium,E,SI1,60.8,59,4463,6.19,6.24,3.78
1.14,Premium,H,SI1,62.1,59,4463,6.73,6.61,4.14
0.91,Good,G,VVS2,64.1,58,4464,6.1,6.06,3.9
1.06,Very Good,I,SI2,61.4,56.5,4465,6.55,6.58,4.03
1.06,Very Good,H,SI2,61.7,59.5,4465,6.51,6.53,4.02
1.02,Ideal,E,SI2,61.6,56,4465,6.48,6.55,3.99
1.09,Ideal,J,SI1,62.7,57,4465,6.53,6.59,4.11
0.9,Very Good,H,VS1,61.7,58,4466,6.18,6.26,3.84
1.2,Good,J,VS2,63.7,58,4466,6.61,6.68,4.23
1.03,Very Good,G,SI2,61.4,54,4466,6.52,6.57,4.02
0.91,Very Good,D,SI1,63.2,59,4466,6.11,6.14,3.87
0.91,Very Good,D,SI1,60.2,60,4466,6.22,6.27,3.76
0.91,Very Good,D,SI1,62.1,59,4466,6.1,6.18,3.81
0.9,Very Good,D,SI1,61.7,60,4466,6.14,6.17,3.8
0.9,Very Good,D,SI1,62.8,59,4466,6.12,6.18,3.86
0.9,Very Good,D,SI1,62.5,59,4466,6.13,6.19,3.85
1,Ideal,J,VS1,61.1,57,4466,6.43,6.48,3.95
1.05,Ideal,I,SI1,62.6,56,4466,6.45,6.53,4.06
0.9,Good,F,VS2,62.6,57,4466,6.07,6.19,3.84
1,Good,G,SI1,62.5,62,4466,6.32,6.36,3.96
1.01,Good,D,VS2,64.1,57,4466,6.32,6.22,4.02
1,Very Good,H,SI1,63.6,54,4467,6.33,6.37,4.04
0.71,Ideal,E,VVS2,62,56,4467,5.71,5.74,3.55
1.06,Ideal,G,SI2,62.2,57,4467,6.51,6.49,4.04
1.04,Premium,G,SI1,62.3,57,4467,6.5,6.46,4.04
1.04,Premium,G,SI1,62.8,57,4467,6.5,6.41,4.05
0.8,Very Good,H,VVS1,62.9,58,4468,5.82,5.88,3.68
1.01,Good,D,SI2,64.6,59,4468,6.23,6.3,4.05
1.01,Good,D,SI2,65.1,57,4468,6.27,6.32,4.1
1.01,Premium,F,SI2,58.8,61,4468,6.53,6.46,3.82
1.01,Premium,F,SI2,62.6,54,4468,6.38,6.34,3.98
1,Good,H,SI1,57.9,54,4469,6.68,6.62,3.85
0.95,Ideal,G,SI1,60.7,56,4469,6.31,6.27,3.82
1.04,Ideal,J,SI1,62,53,4469,6.51,6.55,4.05
0.9,Good,D,SI1,58.5,63,4469,6.21,6.3,3.66
1,Very Good,H,SI1,63.4,56,4469,6.37,6.34,4.03
1,Premium,H,SI1,62.7,60,4469,6.3,6.24,3.93
1,Premium,H,SI1,61.2,62,4469,6.36,6.32,3.88
1,Premium,H,SI1,62.2,60,4469,6.45,6.34,3.98
1,Very Good,H,SI1,60,63,4469,6.37,6.34,3.81
1,Premium,D,SI1,62.3,60,4469,6.23,6.19,3.87
1,Ideal,H,SI1,62.6,57,4469,6.4,6.37,4
1,Ideal,H,SI1,61.4,55,4469,6.49,6.44,3.97
1,Good,H,SI1,63.9,56,4469,6.31,6.28,4.02
1.14,Very Good,J,SI2,62.4,57,4470,6.66,6.7,4.17
1.23,Premium,D,SI2,58,59,4470,7.02,6.97,4.06
0.98,Ideal,G,SI2,61.7,56,4470,6.36,6.4,3.93
1.03,Ideal,G,SI2,62.1,57,4470,6.44,6.42,3.99
1.06,Very Good,D,SI2,60.9,58,4471,6.57,6.63,4.02
1.02,Premium,G,SI2,62.5,58,4471,6.4,6.43,4.01
1.21,Premium,F,SI2,61.8,59,4472,6.82,6.77,4.2
1.04,Very Good,E,SI2,60.7,59,4472,6.5,6.54,3.96
1.1,Premium,E,SI1,60,58,4472,6.68,6.65,4.05
1.01,Very Good,D,SI2,63.4,57,4472,6.4,6.31,4.03
1.21,Premium,G,SI2,60.9,59,4472,6.87,6.82,4.17
1.03,Very Good,G,SI2,59.2,63,4473,6.55,6.6,3.89
0.91,Fair,F,VS2,58,56,4474,6.34,6.41,3.7
1,Good,E,SI1,63.8,55,4474,6.34,6.31,4.03
1,Very Good,F,SI1,63.1,56,4474,6.36,6.34,4.01
1.05,Premium,F,SI2,62.6,59,4475,6.43,6.47,4.04
1.01,Very Good,H,SI2,63.5,58,4475,6.29,6.37,4.02
1.01,Very Good,I,SI1,64.2,55,4475,6.28,6.34,4.05
1.01,Good,H,SI1,60.5,56,4475,6.43,6.49,3.91
1.31,Premium,J,SI1,60.7,58,4475,7.11,7.06,4.3
0.91,Premium,D,SI1,62.8,59,4476,6.21,6.17,3.89
1.08,Ideal,I,SI1,61.4,57,4476,6.67,6.62,4.08
1.2,Good,I,SI2,64.1,57,4476,6.7,6.62,4.27
1.2,Very Good,J,SI1,63.1,61,4476,6.66,6.58,4.18
1.02,Good,H,SI1,63.9,55,4476,6.37,6.4,4.08
1.02,Very Good,H,SI1,60.3,59,4476,6.44,6.5,3.9
1.02,Ideal,H,SI1,61.6,56,4476,6.51,6.55,4.02
1.02,Very Good,H,SI1,61.9,61,4476,6.34,6.42,3.95
1.16,Premium,F,SI2,61.9,59,4476,6.71,6.66,4.14
1.16,Good,F,SI2,63.7,63,4476,6.63,6.55,4.2
1.08,Premium,I,SI1,62.2,58,4476,6.6,6.56,4.09
1.01,Very Good,H,VS2,61.9,62,4477,6.37,6.45,3.97
1.04,Premium,H,VS2,58.7,62,4477,6.67,6.65,3.91
1.23,Very Good,G,SI2,61,63,4477,6.91,6.85,4.2
1.02,Good,E,SI2,64.3,58,4478,6.36,6.26,4.06
1.16,Ideal,I,SI2,62.6,56,4478,6.68,6.73,4.2
1.03,Very Good,D,SI2,61.8,60,4478,6.42,6.45,3.98
1.12,Very Good,G,SI2,63.3,58,4478,6.7,6.63,4.22
1.02,Ideal,E,SI2,62.8,55,4478,6.43,6.4,4.03
1.02,Ideal,E,SI2,62.4,55,4478,6.47,6.44,4.03
1.02,Premium,E,SI2,62.9,56,4478,6.43,6.36,4.02
1.02,Ideal,E,SI2,63,57,4478,6.44,6.39,4.04
0.98,Premium,E,SI2,61.7,61,4478,6.38,6.34,3.93
1.12,Premium,G,SI2,62.8,58,4478,6.62,6.57,4.14
1.02,Good,I,VS1,63.7,58,4478,6.33,6.26,4.01
1.02,Premium,E,SI2,59.9,58,4478,6.6,6.55,3.94
1.02,Premium,E,SI2,58.7,59,4478,6.61,6.57,3.87
1.02,Premium,E,SI2,59.6,59,4478,6.59,6.54,3.91
1.02,Very Good,E,SI2,63.3,59,4478,6.42,6.32,4.03
1.02,Premium,E,SI2,60.5,58,4478,6.58,6.54,3.97
1.01,Good,F,SI1,63.3,58,4479,6.31,6.4,4.02
1.01,Good,E,SI2,63.2,59,4479,6.34,6.38,4.02
1.01,Ideal,E,SI2,60.9,57,4479,6.47,6.51,3.95
0.9,Good,G,VS1,63.9,60,4479,6.09,6.14,3.91
0.9,Ideal,G,VS1,61.4,57,4479,6.18,6.32,3.84
0.98,Very Good,H,SI2,62.2,60,4479,6.31,6.36,3.94
1,Premium,F,SI2,58.2,59,4480,6.51,6.49,3.78
1,Ideal,E,SI1,62.6,56,4480,6.37,6.29,3.96
0.96,Premium,F,SI1,60.6,62,4480,6.39,6.35,3.86
1.01,Good,E,SI1,64.1,62,4480,6.26,6.19,3.99
1.01,Fair,E,SI1,65.1,61,4480,6.27,6.24,4.07
1.01,Good,E,SI1,64.1,59,4480,6.35,6.31,4.06
1.01,Premium,E,SI1,62.4,58,4480,6.42,6.37,3.99
1.01,Fair,E,SI1,64.8,58,4480,6.34,6.29,4.09
1.01,Good,E,SI1,59.3,64,4480,6.49,6.47,3.84
1,Fair,E,VS2,66.4,51,4480,6.31,6.22,4.16
1,Very Good,E,SI2,63.5,54,4480,6.41,6.35,4.05
1.01,Fair,G,VS2,66.8,56,4480,6.15,6.09,4.09
1,Premium,F,SI2,61.6,58,4480,6.44,6.35,3.94
1,Premium,G,SI2,62.2,59,4480,6.39,6.35,3.96
1.08,Very Good,H,SI2,63,59,4481,6.51,6.54,4.11
1.13,Ideal,I,SI2,61.4,56,4481,6.69,6.71,4.12
0.97,Premium,F,SI1,62.7,59,4481,6.31,6.28,3.95
0.9,Very Good,E,VS2,63.3,59,4482,6.08,6.12,3.86
0.71,Premium,D,VVS1,59.7,59,4482,5.81,5.88,3.49
0.92,Premium,E,SI1,62.2,58,4482,6.23,6.18,3.86
0.9,Ideal,G,VS2,62,57,4482,6.22,6.19,3.85
0.92,Fair,E,SI1,66.8,55,4482,6.04,5.99,4.02
0.92,Premium,E,SI1,62.1,58,4482,6.22,6.15,3.84
1.15,Very Good,H,SI2,63,54,4483,6.64,6.73,4.21
1.06,Premium,D,SI2,59.8,61,4483,6.63,6.58,3.95
1.04,Ideal,H,SI2,60.7,57,4484,6.51,6.43,3.93
1.04,Ideal,I,SI1,62.2,56,4484,6.51,6.47,4.04
0.9,Very Good,G,VS2,58.5,59,4484,6.35,6.36,3.72
1.04,Premium,E,SI2,59.2,58,4484,6.64,6.7,3.95
1.01,Very Good,F,SI2,61.9,57,4484,6.42,6.35,3.95
1.04,Ideal,I,SI1,61.8,59,4484,6.46,6.48,4
1.04,Very Good,H,SI1,58.9,63,4484,6.59,6.55,3.87
1.04,Ideal,H,SI2,62.1,56,4484,6.5,6.48,4.03
1.1,Ideal,G,SI1,62.5,57,4484,6.61,6.58,4.12
0.9,Very Good,H,VVS1,63.5,57,4485,6.02,6.07,3.84
1.08,Premium,G,SI1,61.2,59,4485,6.61,6.66,4.06
1.02,Ideal,J,VS2,62,56,4485,6.42,6.45,3.99
0.9,Good,G,VVS2,62.6,63,4485,6.1,6.14,3.83
1.04,Very Good,E,SI2,60.9,59,4486,6.58,6.62,4.02
1.01,Ideal,J,VS2,61.3,57,4486,6.47,6.54,3.99
1.04,Ideal,F,SI2,62.4,56,4486,6.4,6.48,4.02
1.02,Premium,G,SI2,60.9,59,4486,6.56,6.45,3.96
0.9,Premium,G,VVS2,63,58,4486,6.15,6.07,3.85
1.02,Very Good,H,SI1,63.5,55,4487,6.31,6.35,4.02
0.94,Very Good,G,VS2,62.9,58.6,4488,6.1,6.25,3.89
1.06,Good,F,SI1,57,64,4488,6.8,6.71,3.85
1.06,Very Good,F,SI1,59.5,63,4488,6.62,6.59,3.93
1.17,Ideal,I,SI2,62.2,56,4488,6.72,6.79,4.2
0.92,Ideal,I,SI1,61.8,57,4488,6.22,6.27,3.86
1.01,Good,H,SI1,57.1,58,4488,6.6,6.64,3.78
1.08,Premium,F,SI2,60.2,59,4488,6.65,6.6,3.99
1.08,Premium,F,SI2,62.6,56,4488,6.61,6.55,4.12
1.08,Ideal,G,SI2,62.3,56,4489,6.53,6.57,4.08
1.01,Good,H,VS2,64.3,58,4489,6.27,6.2,4.01
1.31,Premium,J,SI1,60.3,62,4490,7.12,7.04,4.26
0.79,Premium,E,VVS1,62.8,60,4490,5.89,5.8,3.67
1.07,Premium,F,SI2,60.8,58,4491,6.62,6.68,4.04
1.07,Premium,I,VS2,60.7,58,4491,6.62,6.66,4.03
1.08,Ideal,H,SI2,61.8,55,4491,6.57,6.6,4.07
1.54,Good,J,I1,61.7,60,4492,7.26,7.32,4.5
1.21,Premium,J,SI1,59.7,60,4492,6.9,6.93,4.13
0.9,Ideal,I,VS1,60.9,60,4492,6.2,6.24,3.79
0.9,Ideal,H,SI1,62.5,56,4492,6.14,6.18,3.85
0.9,Ideal,H,SI1,62.1,56,4492,6.14,6.19,3.83
0.8,Ideal,E,VVS2,61.4,57,4493,5.98,5.94,3.66
0.9,Very Good,F,VS2,61.7,57,4493,6.17,6.21,3.82
0.9,Good,F,VS2,62.7,59,4493,6.1,6.14,3.84
1,Good,G,SI2,61.7,63,4493,6.36,6.37,3.93
1,Premium,G,SI1,62.5,59,4493,6.35,6.29,3.95
1.05,Ideal,I,SI1,61,57,4494,6.55,6.62,4.02
1.07,Premium,H,SI2,61.2,60,4494,6.57,6.53,4.01
1.07,Ideal,H,SI2,62.8,57,4494,6.58,6.5,4.11
1.07,Premium,H,VS1,60.5,61,4494,6.67,6.59,4.01
0.8,Very Good,E,VS1,62.4,54,4495,5.98,5.94,3.72
1.07,Fair,E,SI2,62.2,66,4496,6.57,6.48,4.06
1.09,Premium,H,SI2,61.7,60,4496,6.57,6.59,4.06
1,Good,E,SI2,63.3,58,4496,6.32,6.35,4.01
1,Premium,E,SI2,62.7,58,4496,6.34,6.41,4
1,Very Good,H,SI2,60.8,60,4496,6.44,6.49,3.93
1,Good,I,SI1,61,60,4496,6.36,6.39,3.89
1.01,Good,H,SI1,62.9,57,4496,6.27,6.36,3.97
0.9,Very Good,D,SI1,62.3,58,4497,6.14,6.16,3.83
0.71,Ideal,F,VVS2,61.6,56,4497,5.73,5.75,3.53
1.11,Ideal,J,SI1,62.4,57,4497,6.57,6.6,4.11
1.01,Premium,F,SI2,62.7,59,4497,6.4,6.35,4
1.1,Premium,H,SI2,58.9,57,4497,6.86,6.82,4.03
1.1,Good,I,SI1,63.7,59,4497,6.56,6.5,4.16
1.01,Ideal,F,SI2,60.5,57,4497,6.53,6.49,3.94
1.01,Premium,F,SI2,61.6,58,4497,6.4,6.39,3.94
1.01,Premium,F,SI2,60,59,4497,6.61,6.48,3.93
1.01,Premium,F,SI2,62.2,59,4497,6.45,6.41,4
1.01,Premium,F,SI2,61.3,60,4497,6.43,6.4,3.93
1.01,Ideal,F,SI2,62.5,55,4497,6.4,6.39,4
1.01,Premium,F,SI2,62.8,60,4497,6.4,6.33,4
1.01,Premium,F,SI2,62.4,58,4497,6.41,6.37,3.99
1.01,Premium,F,SI2,62.6,60,4497,6.37,6.35,3.98
1.01,Very Good,F,SI2,63.2,59,4497,6.38,6.35,4.02
1.01,Premium,F,SI2,62.2,59,4497,6.42,6.38,3.98
1.01,Premium,F,SI2,61.6,58,4497,6.45,6.4,3.96
1.12,Very Good,H,SI2,60.9,60,4498,6.71,6.76,4.1
1.12,Very Good,H,SI2,62.9,58,4498,6.55,6.62,4.14
1.01,Very Good,G,SI2,63.7,57,4498,6.3,6.35,4.03
0.9,Very Good,F,SI1,59.1,59,4498,6.3,6.35,3.74
1.19,Good,J,SI1,59.8,64,4498,6.94,6.9,4.14
1.19,Premium,I,SI2,62.6,58,4498,6.82,6.69,4.23
1.19,Premium,I,SI2,60.1,59,4498,6.9,6.82,4.12
1.19,Premium,I,SI2,59.5,59,4498,6.95,6.89,4.12
1.19,Premium,J,SI1,63,54,4498,6.82,6.74,4.27
1,Good,I,VS1,63.9,56,4499,6.18,6.37,4.01
0.96,Ideal,F,SI2,60.9,60,4500,6.31,6.36,3.86
0.9,Premium,E,VS2,62.2,59,4500,6.18,6.13,3.83
1.02,Very Good,G,SI2,63.8,55,4501,6.37,6.4,4.07
1.14,Good,G,SI2,63.7,58,4501,6.62,6.54,4.19
1.02,Ideal,G,SI2,62.4,54,4501,6.39,6.47,4.02
0.91,Good,F,VS1,63.1,59,4502,6.14,6.19,3.89
1.2,Very Good,F,SI2,63.2,58,4502,6.78,6.74,4.27
0.9,Premium,E,SI1,62.3,56,4502,6.21,6.14,3.85
1.34,Premium,H,SI2,61.6,60,4502,7.05,6.97,4.32
0.93,Good,G,VS1,63.8,59,4503,6.15,6.21,3.94
0.9,Very Good,G,VS2,60.2,59,4503,6.22,6.28,3.76
1.03,Premium,F,SI2,60.7,60,4503,6.47,6.52,3.94
1.03,Very Good,F,SI2,61.4,57,4503,6.53,6.6,4.03
1.03,Premium,F,SI2,61.6,58,4503,6.43,6.46,3.97
1.03,Very Good,F,SI2,62.4,59,4503,6.38,6.45,4
0.76,Very Good,F,VVS1,62.1,57,4504,5.8,5.83,3.61
0.76,Very Good,F,VVS1,59.6,58,4504,5.91,5.96,3.54
0.9,Very Good,F,VS2,63.2,58,4504,6.11,6.16,3.88
1,Good,F,SI1,63.6,62,4504,6.24,6.3,3.99
1,Good,F,SI1,62.5,57,4504,6.28,6.39,3.96
1.05,Ideal,H,SI2,61.9,56,4504,6.49,6.56,4.04
1,Very Good,F,SI1,61.4,60,4504,6.35,6.38,3.91
0.97,Very Good,G,SI1,61,59,4504,6.36,6.4,3.89
1.01,Ideal,E,SI2,61.5,55,4504,6.45,6.49,3.98
1.01,Good,G,SI1,63.8,56,4504,6.32,6.37,4.05
0.9,Premium,D,VS2,58.7,62,4505,6.32,6.29,3.7
1.01,Good,E,SI2,58.5,61,4506,6.51,6.55,3.82
1.06,Very Good,I,SI1,60.2,59,4507,6.62,6.67,4
1.04,Premium,F,SI2,62.6,58,4507,6.49,6.44,4.05
1.19,Ideal,J,SI2,61.7,56,4508,6.8,6.85,4.21
0.95,Ideal,H,SI1,61.9,56,4508,6.29,6.35,3.91
0.9,Good,F,VS1,63.3,59,4508,6.03,6.07,3.83
1.04,Very Good,F,SI2,63.1,60,4508,6.42,6.35,4.03
1.15,Premium,H,SI2,62.4,57,4508,6.66,6.59,4.14
1.36,Premium,G,I1,62.1,57,4509,7.11,7.06,4.4
1.2,Ideal,J,SI2,59.1,62,4509,6.97,6.94,4.11
1.01,Ideal,I,SI1,61.9,57,4509,6.4,6.5,3.98
1.28,Ideal,G,I1,61.6,57,4509,6.96,6.93,4.28
1.22,Premium,H,SI2,61.3,60,4509,6.87,6.81,4.19
1.22,Premium,J,SI2,62.1,59,4509,6.82,6.77,4.22
1,Good,H,SI1,61,61,4510,6.36,6.42,3.9
1.05,Premium,G,SI1,59.1,57,4510,6.73,6.63,3.95
0.91,Premium,G,VS1,60.9,54,4510,6.38,6.27,3.85
1.04,Very Good,I,VS2,61.9,58,4511,6.47,6.55,4.03
1,Ideal,I,VS2,62.5,55,4511,6.41,6.36,4
0.93,Ideal,E,SI1,61.9,55,4511,6.26,6.31,3.89
0.91,Good,E,SI1,63.5,57,4512,6.11,6.14,3.89
0.91,Very Good,E,SI1,62.5,61,4512,6.1,6.19,3.84
0.91,Good,E,SI1,63.1,58,4512,6.12,6.17,3.88
1.01,Ideal,H,SI1,62.6,55,4513,6.42,6.36,4
1.07,Ideal,D,SI2,61.4,56,4513,6.55,6.58,4.03
1.14,Premium,D,SI2,62.4,58,4513,6.67,6.7,4.17
0.93,Very Good,G,SI1,61.7,56,4513,6.22,6.26,3.85
1.01,Premium,H,SI1,62.3,61,4513,6.39,6.32,3.96
0.91,Ideal,E,SI1,61.2,58,4513,6.24,6.3,3.84
1.01,Very Good,H,SI1,63.1,60,4513,6.41,6.37,4.03
1.01,Premium,H,SI1,61.8,61,4513,6.47,6.4,3.98
1.01,Premium,H,SI1,62.4,58,4513,6.41,6.35,3.98
1.01,Premium,H,SI1,62.3,58,4513,6.42,6.35,3.98
1.01,Premium,H,SI1,61.3,58,4513,6.47,6.39,3.94
1.01,Very Good,H,SI1,63.5,62,4513,6.36,6.24,4
0.91,Very Good,H,VS1,60,58,4514,6.29,6.38,3.8
1.2,Very Good,I,SI2,60.3,57,4514,6.88,6.95,4.17
1.2,Premium,J,SI1,60.7,60,4514,6.88,6.92,4.19
0.9,Very Good,D,SI1,61.9,55,4514,6.18,6.22,3.84
1,Very Good,H,VS2,63.3,60,4514,6.31,6.22,3.97
1,Premium,H,VS2,60.2,62,4514,6.46,6.43,3.88
1,Premium,H,VS2,58.9,56,4514,6.53,6.51,3.84
1,Premium,H,VS2,58.4,60,4514,6.36,6.3,3.7
0.9,Very Good,G,VS1,61.3,61,4515,6.15,6.25,3.8
1.04,Ideal,H,SI1,61.9,57,4515,6.49,6.46,4.01
1.04,Ideal,H,SI1,62.7,54,4515,6.51,6.47,4.07
1,Very Good,I,VS1,63.3,55,4516,6.39,6.34,4.03
1.05,Very Good,G,SI2,62.6,62,4516,6.45,6.49,4.05
1.06,Very Good,H,SI2,62.4,54,4516,6.5,6.54,4.07
1.06,Ideal,H,SI2,60.1,59,4516,6.58,6.67,3.98
1.05,Ideal,I,SI1,62.1,59,4516,6.5,6.47,4.03
0.27,Ideal,D,VVS2,61.5,56,586,4.15,4.18,2.56
0.27,Ideal,I,VVS2,61.2,56,587,4.18,4.2,2.56
0.41,Ideal,J,VS2,61.7,55,587,4.79,4.81,2.96
0.36,Ideal,H,VS2,61,57,587,4.59,4.63,2.81
0.36,Ideal,H,VS2,60.8,56,587,4.61,4.63,2.81
0.36,Ideal,H,VS2,61.4,57,587,4.59,4.63,2.83
0.36,Ideal,H,VS2,61,55,587,4.59,4.62,2.81
0.36,Ideal,H,VS2,61,56,587,4.61,4.63,2.82
0.36,Ideal,I,VS1,62,54,587,4.58,4.61,2.85
0.31,Ideal,G,VS1,60.6,58,587,4.39,4.42,2.67
0.38,Ideal,G,SI2,61.7,56,587,4.64,4.67,2.87
0.39,Ideal,F,SI2,62.2,55,587,4.68,4.71,2.92
0.27,Ideal,I,IF,60.5,57,587,4.2,4.22,2.55
0.31,Very Good,E,VS1,61.2,61,587,4.29,4.37,2.65
0.3,Ideal,F,VS1,61.5,55,587,4.33,4.35,2.67
0.39,Very Good,H,SI2,60.4,60,588,4.74,4.8,2.88
0.33,Very Good,F,SI1,60.9,54,588,4.47,4.52,2.73
0.4,Good,E,SI2,61.2,61,588,4.71,4.74,2.89
0.28,Very Good,E,VS1,63.1,55,588,4.18,4.15,2.63
0.35,Good,E,SI2,64,55,588,4.49,4.45,2.86
0.34,Premium,I,SI1,61.7,56,589,4.54,4.51,2.79
0.34,Premium,I,SI1,60,58,589,4.55,4.51,2.72
0.34,Premium,I,SI1,60.4,56,589,4.56,4.54,2.75
0.34,Ideal,I,SI1,61.9,57,589,4.52,4.49,2.79
0.34,Ideal,I,SI1,60.2,57,589,4.54,4.5,2.72
0.34,Ideal,I,SI1,62.8,57,589,4.45,4.43,2.79
0.34,Ideal,I,SI1,61.9,57,589,4.48,4.44,2.76
0.34,Ideal,I,SI1,62.4,56,589,4.49,4.45,2.79
0.34,Ideal,I,SI1,62.3,55,589,4.47,4.42,2.77
0.32,Very Good,D,SI1,62.6,58,589,4.33,4.36,2.72
0.9,Premium,I,IF,62.6,59,4516,6.15,6.12,3.84
1,Fair,E,SI2,65.2,59,4516,6.28,6.27,4.09
1.2,Ideal,J,SI2,62.5,57,4516,6.8,6.74,4.23
1.28,Good,H,SI2,63.8,55,4516,6.84,6.79,4.35
1,Fair,E,SI2,63,58,4516,6.35,6.26,3.97
1.06,Good,J,VS2,63.5,60.1,4517,6.43,6.51,4.11
1.02,Good,H,SI2,60.3,63,4517,6.45,6.49,3.9
1.02,Very Good,H,SI1,58.4,62,4518,6.55,6.61,3.84
1.01,Ideal,I,SI1,62.3,59,4518,6.41,6.37,3.98
1.13,Premium,G,SI2,60,61,4518,6.78,6.71,4.05
1.09,Premium,I,VS2,63,56,4519,6.61,6.57,4.15
1.03,Ideal,H,SI1,62.3,56,4520,6.45,6.48,4.03
1.03,Very Good,H,SI1,61.1,59,4520,6.5,6.56,3.99
1.14,Premium,D,SI2,62.6,58,4520,6.64,6.58,4.14
1.11,Ideal,H,SI2,61.3,60,4520,6.68,6.66,4.09
1,Good,D,SI2,62.8,61,4520,6.31,6.36,3.98
1.2,Very Good,G,SI1,63.4,55,4520,6.72,6.65,4.24
0.83,Very Good,D,VS1,58.2,59,4521,6.19,6.24,3.62
1.08,Ideal,I,SI1,62.1,59,4521,6.57,6.53,4.07
1.02,Good,H,SI2,61.4,60,4521,6.44,6.49,3.97
0.9,Very Good,D,VS2,63.5,61,4521,6.16,6.09,3.89
1.03,Ideal,E,SI2,62.5,56,4522,6.48,6.45,4.04
1.03,Premium,E,SI2,61,60,4522,6.53,6.46,3.96
1.07,Premium,G,SI2,62,59,4523,6.54,6.5,4.04
1.11,Good,H,SI1,64.2,58,4523,6.47,6.53,4.17
1.2,Very Good,J,SI2,61.2,58,4523,6.77,6.82,4.16
0.9,Very Good,D,SI1,64.2,55,4523,6.09,6.16,3.93
0.9,Very Good,D,SI1,63,58,4523,6.11,6.14,3.86
1.06,Ideal,H,SI2,62.7,57,4523,6.46,6.5,4.06
0.9,Ideal,F,SI1,62.5,57,4523,6.13,6.15,3.84
0.9,Ideal,D,SI1,62.1,57,4523,6.18,6.25,3.86
0.91,Good,E,SI1,60.2,60,4523,6.17,6.26,3.74
1.32,Premium,G,SI2,58.9,59,4524,7.25,7.18,4.25
1.2,Premium,G,SI2,61.8,60,4524,6.85,6.78,4.21
1.02,Very Good,E,SI1,63.1,57,4524,6.43,6.37,4.04
1.08,Ideal,J,SI1,61.8,56,4524,6.58,6.55,4.06
1.01,Premium,I,SI1,60.8,61,4525,6.47,6.43,3.92
1.01,Fair,E,VS2,66.6,55,4525,6.27,6.2,4.15
1.01,Very Good,I,SI1,63.2,54,4525,6.41,6.35,4.03
1.01,Premium,G,SI2,61.9,60,4525,6.37,6.33,3.93
1.01,Premium,G,SI1,63,58,4525,6.35,6.29,3.98
0.93,Very Good,D,SI1,60.8,59,4527,6.24,6.27,3.8
1.01,Very Good,D,SI2,62,59,4528,6.36,6.4,3.96
1,Good,G,SI1,62.5,65,4528,6.24,6.31,3.92
1,Good,G,SI1,61.6,62,4528,6.37,6.45,3.95
1.05,Good,I,VS2,63.1,58,4529,6.42,6.47,4.07
0.96,Premium,H,VS2,61.7,55,4529,6.36,6.31,3.91
0.85,Premium,F,VVS2,61.2,60,4530,6.1,6.13,3.74
1.04,Ideal,E,SI1,62,57,4530,6.47,6.5,4.02
1.06,Ideal,I,VS2,62.3,56,4530,6.56,6.51,4.07
0.9,Very Good,G,VS2,63.2,58,4531,6.11,6.17,3.88
0.9,Ideal,G,VS1,61.6,56.3,4531,6.22,6.3,3.86
0.9,Ideal,F,VS2,60.5,54,4531,6.22,6.17,3.75
0.93,Very Good,E,SI1,63.1,57,4531,6.19,6.17,3.9
1.02,Very Good,I,VS2,59.3,59,4532,6.56,6.6,3.9
1,Very Good,E,SI2,63.2,56,4532,6.33,6.36,4.01
1.11,Good,E,SI2,58.3,60,4532,6.76,6.83,3.96
1.01,Premium,F,SI2,61.7,60,4533,6.36,6.42,3.94
1.12,Very Good,I,SI2,61.2,59,4533,6.69,6.74,4.11
0.93,Very Good,F,SI1,61.1,58,4534,6.26,6.3,3.84
1,Fair,G,VVS2,66.9,55,4534,6.2,6.17,4.14
0.96,Good,H,VS1,63.9,54,4535,6.22,6.27,3.99
1.13,Ideal,H,SI2,61,60,4535,6.73,6.69,4.09
1,Good,E,SI1,63.5,62,4535,6.27,6.4,4.02
0.91,Very Good,G,VS1,63.1,61,4536,6.13,6.07,3.85
0.9,Premium,F,VS2,61.9,55,4536,6.25,6.23,3.86
1.13,Premium,I,SI1,61.8,59,4536,6.65,6.68,4.12
1.2,Ideal,J,SI1,62.5,55,4536,6.84,6.79,4.26
1.2,Premium,J,SI1,60.5,59,4536,6.84,6.79,4.12
0.9,Fair,F,VS2,59.5,67,4536,6.29,6.24,3.73
1.08,Ideal,H,SI2,61,57,4536,6.64,6.6,4.04
1.08,Ideal,H,SI2,59.3,57,4536,6.74,6.71,3.99
1.08,Ideal,H,SI2,60.4,57,4536,6.68,6.63,4.02
1,Premium,H,VS2,61.9,61,4536,6.37,6.23,3.9
1.1,Very Good,I,SI1,62,59,4537,6.54,6.59,4.07
1.1,Premium,H,SI2,62.2,58,4537,6.6,6.69,4.13
1.1,Ideal,H,SI2,62,55,4537,6.6,6.62,4.1
1.1,Ideal,H,SI2,62.6,56,4537,6.57,6.65,4.14
1.13,Very Good,H,SI2,59.8,59,4537,6.75,6.82,4.06
1.13,Very Good,H,SI2,62.5,62,4537,6.59,6.66,4.14
0.93,Very Good,E,SI1,62.5,58,4537,6.18,6.24,3.88
1.1,Ideal,J,VS2,62.4,55,4537,6.59,6.64,4.13
1.12,Very Good,H,SI2,62.4,55,4538,6.63,6.68,4.15
1,Very Good,I,SI1,63.3,56,4538,6.27,6.36,4
1.01,Very Good,D,SI2,63.5,61,4538,6.37,6.33,4.03
1.01,Fair,D,SI2,64.6,62,4538,6.26,6.21,4.03
1.11,Ideal,H,SI2,63.5,60,4538,6.58,6.49,4.15
1.11,Premium,H,SI2,59.8,60,4538,6.75,6.66,4.01
1.01,Good,G,SI1,63.5,64,4538,6.41,6.28,4.03
1.09,Premium,D,SI2,62.8,56,4538,6.49,6.45,4.06
1.1,Very Good,E,SI2,60,58,4539,6.72,6.75,4.04
1.1,Very Good,E,SI2,60.9,60,4539,6.61,6.66,4.04
1,Ideal,J,VS2,62.4,54,4539,6.4,6.46,4.01
1.02,Ideal,H,SI1,61.6,57,4540,6.43,6.5,3.98
0.9,Very Good,G,VS1,62.7,60,4540,6.06,6.13,3.82
0.9,Good,G,VS1,63.6,58,4540,6.09,6.12,3.88
0.9,Good,G,VS1,63.7,56,4540,6.07,6.15,3.89
0.9,Very Good,G,VS1,62.3,60,4540,6,6.08,3.76
1.02,Very Good,E,SI2,63.3,58,4540,6.31,6.4,4.02
1.01,Very Good,E,SI2,60,60,4540,6.57,6.49,3.92
1,Very Good,D,SI2,64.7,57,4541,6.29,6.36,4.09
1,Good,D,SI2,64.5,59,4541,6.25,6.31,4.05
1.06,Ideal,G,SI2,62.2,55,4541,6.56,6.53,4.07
1.02,Ideal,F,SI2,60.7,56,4541,6.53,6.5,3.95
1.02,Premium,F,SI2,61.5,58,4541,6.49,6.42,3.97
1.02,Premium,F,SI2,62.5,60,4541,6.43,6.36,4
1.02,Premium,F,SI2,61.1,59,4541,6.45,6.41,3.93
0.98,Very Good,G,SI2,62.2,57,4542,6.33,6.37,3.95
1.27,Good,J,SI2,66,59,4542,6.71,6.75,4.44
0.9,Very Good,G,VS2,62.7,59,4543,6.09,6.16,3.84
0.91,Good,G,VVS2,64.1,58,4543,6.06,6.1,3.9
1,Very Good,D,SI2,59.5,62,4543,6.49,6.52,3.87
1,Good,D,SI2,62.2,61,4543,6.3,6.36,3.94
1,Good,G,SI1,63.3,60,4543,6.24,6.33,3.98
1,Very Good,D,SI2,59.4,60,4543,6.48,6.56,3.87
1,Very Good,D,SI2,61.6,58,4543,6.37,6.45,3.95
1,Very Good,D,SI2,58.3,61,4543,6.54,6.59,3.83
1.04,Premium,D,SI2,61.9,58,4543,6.54,6.49,4.03
1.04,Ideal,I,SI1,62.6,56,4543,6.55,6.48,4.08
1.25,Premium,D,SI2,59.8,55,4543,7.07,7.01,4.21
1.04,Ideal,H,SI2,61.7,57,4543,6.54,6.49,4.02
1.08,Very Good,G,SI2,62.9,59,4544,6.53,6.57,4.12
1.08,Ideal,G,SI2,61.9,57,4544,6.55,6.57,4.06
1.08,Ideal,G,SI2,62.2,56,4544,6.56,6.59,4.09
1.1,Very Good,J,VS1,60.9,59,4545,6.65,6.74,4.08
1.03,Very Good,D,SI2,60.9,57,4545,6.53,6.55,3.98
0.9,Very Good,F,SI1,63.3,55,4545,6.18,6.12,3.89
1.01,Good,E,SI1,63.5,58,4546,6.28,6.35,4.01
0.93,Ideal,G,SI1,62,56,4546,6.22,6.26,3.87
1.04,Ideal,F,SI2,62.6,57,4547,6.45,6.48,4.05
1.04,Ideal,F,SI2,61.8,56,4547,6.49,6.53,4.02
0.73,Ideal,D,VVS2,62,53.6,4547,5.76,5.8,3.59
0.9,Good,G,VS2,60.4,61,4547,6.23,6.32,3.79
1.06,Ideal,H,SI2,61.7,60,4547,6.53,6.51,4.02
1.02,Ideal,E,SI2,61.6,56,4547,6.55,6.48,3.99
1.31,Premium,H,SI2,61.7,59,4548,7.03,6.98,4.32
1.31,Premium,H,SI2,61.7,59,4548,7.03,6.98,4.32
1.2,Good,J,VS2,63.7,58,4548,6.68,6.61,4.23
0.94,Premium,H,VS2,60.1,59,4548,6.35,6.32,3.81
0.95,Ideal,G,VS2,61.6,56,4549,6.34,6.3,3.89
1.01,Good,F,SI1,63.5,57,4549,6.29,6.33,4.01
1.01,Very Good,F,SI1,63,57,4549,6.36,6.4,4.02
1.04,Ideal,J,VS2,61.3,54,4550,6.53,6.55,4.01
0.91,Fair,E,VS2,61.8,66,4550,6.11,6.09,3.77
1.05,Good,I,VS2,64.3,55,4550,6.46,6.42,4.14
1,Ideal,G,SI2,62,53,4551,6.42,6.45,3.99
1.26,Fair,I,SI2,64.8,57,4551,6.73,6.69,4.35
1.07,Very Good,F,SI2,59.4,60,4552,6.68,6.75,3.99
1.02,Very Good,H,SI1,63.7,55,4552,6.31,6.38,4.04
1.27,Good,H,SI2,63.6,58,4552,6.82,6.74,4.31
1.02,Premium,G,SI2,62.5,58,4552,6.43,6.4,4.01
1.28,Premium,J,SI2,62.3,58,4553,6.89,6.94,4.31
0.87,Ideal,G,VS2,61.4,55,4553,6.15,6.17,3.78
1.18,Fair,I,VS2,62,66,4553,6.75,6.63,4.16
1.07,Fair,F,SI1,60.6,66,4554,6.65,6.46,3.97
1.18,Premium,I,SI2,61.7,58,4555,6.75,6.79,4.18
0.91,Very Good,D,SI1,62.8,59,4556,6.17,6.21,3.89
1.01,Ideal,G,SI2,59.3,60,4556,6.54,6.58,3.89
1.13,Ideal,H,SI2,62,57,4556,6.74,6.64,4.15
1.13,Ideal,H,SI1,61.3,57,4556,6.72,6.7,4.11
1.04,Ideal,H,SI2,61.7,55,4557,6.49,6.53,4.02
1.03,Ideal,G,SI2,62.8,54,4557,6.51,6.46,4.07
1.05,Premium,F,SI2,62.6,59,4557,6.47,6.43,4.04
1.03,Premium,G,SI2,60.6,60,4557,6.53,6.5,3.95
1.1,Premium,H,SI2,62.6,57,4558,6.6,6.56,4.12
1.19,Premium,I,SI2,61.6,56,4558,6.87,6.83,4.22
1.02,Ideal,H,SI1,61.8,57,4558,6.48,6.41,3.98
1.02,Good,H,SI1,63.9,55,4558,6.4,6.37,4.08
1.02,Premium,H,SI1,60.3,59,4558,6.5,6.44,3.9
1.02,Premium,H,SI1,61.9,61,4558,6.42,6.34,3.95
1.05,Premium,H,SI1,62.5,57,4558,6.52,6.45,4.05
1.1,Premium,H,SI2,60.9,57,4558,6.67,6.62,4.05
1.02,Good,D,SI1,64.3,54,4558,6.32,6.27,4.05
1.19,Very Good,H,SI2,63.4,58,4558,6.79,6.76,4.29
1.14,Ideal,G,SI2,63,57,4558,6.7,6.64,4.2
1.01,Good,H,SI1,63.3,58,4559,6.37,6.4,4.04
1.01,Very Good,H,SI1,63,60,4559,6.33,6.36,4
1.01,Premium,H,SI1,59.8,60,4559,6.48,6.52,3.89
1.01,Very Good,H,SI1,62.8,58,4559,6.36,6.38,4
1.01,Good,H,SI1,63.4,58,4559,6.34,6.38,4.03
1.01,Premium,H,SI1,61.2,58,4559,6.43,6.47,3.95
1.01,Good,H,SI1,60.3,64,4559,6.5,6.53,3.93
1.01,Ideal,H,SI1,62.4,53,4559,6.42,6.47,4.02
1.21,Good,J,SI2,60.4,56,4559,6.84,6.93,4.16
1.01,Premium,H,VS2,61.9,62,4559,6.45,6.37,3.97
1.01,Ideal,F,SI1,63,57,4559,6.39,6.34,4.01
1.01,Very Good,H,VS2,63.3,57,4559,6.32,6.27,3.99
1.01,Premium,H,VS2,62.9,60,4559,6.33,6.22,3.95
1.35,Ideal,G,I1,62.5,57,4560,7.01,7.04,4.39
1.07,Premium,F,SI2,61.8,59,4560,6.53,6.57,4.05
0.96,Very Good,F,SI1,60.6,62,4560,6.35,6.39,3.86
0.9,Very Good,E,SI1,63.2,58,4560,6.12,6.1,3.86
1.01,Ideal,G,SI2,61.6,54,4560,6.4,6.45,3.96
1.05,Good,D,SI2,60,63,4560,6.59,6.64,3.97
1.03,Premium,D,SI2,61.8,60,4560,6.45,6.42,3.98
1.16,Ideal,I,SI2,62.6,56,4560,6.73,6.68,4.2
0.97,Premium,F,SI1,62.7,59,4561,6.28,6.31,3.95
0.9,Ideal,G,VS2,62,57,4561,6.19,6.22,3.85
1.1,Very Good,H,SI2,59.8,60,4561,6.7,6.77,4.03
0.91,Very Good,D,SI1,60.8,60,4561,6.24,6.21,3.79
1.05,Ideal,G,SI2,62.3,56,4561,6.52,6.58,4.08
0.92,Ideal,D,SI1,62.2,56,4561,6.23,6.27,3.89
1.01,Very Good,E,SI2,63.2,59,4561,6.38,6.34,4.02
1.01,Fair,F,SI1,65.9,60,4561,6.25,6.17,4.09
0.92,Premium,E,SI1,62.2,58,4562,6.18,6.23,3.86
0.92,Premium,E,SI1,59.8,59,4562,6.33,6.37,3.8
0.92,Very Good,E,SI1,62.1,58,4562,6.15,6.22,3.84
0.9,Premium,E,VS2,63,57,4562,6.15,6.07,3.85
0.9,Premium,E,VS2,60.6,53,4562,6.3,6.27,3.81
1.22,Premium,I,VS2,61.6,59,4562,6.86,6.81,4.21
1.01,Very Good,E,SI1,61.1,57,4563,6.44,6.5,3.95
1.06,Ideal,H,SI2,60.9,56,4563,6.58,6.63,4.02
1.01,Good,E,SI1,64.5,56,4563,6.24,6.29,4.04
1.07,Ideal,E,SI2,61.6,55,4564,6.62,6.59,4.07
1.04,Very Good,H,SI1,62.8,57,4564,6.44,6.48,4.06
1.01,Very Good,D,SI2,59.7,58,4564,6.55,6.61,3.93
1.01,Very Good,D,SI2,61.4,60,4564,6.33,6.38,3.9
1.08,Ideal,H,SI2,61.2,57.4,4564,6.57,6.63,4.04
1,Ideal,H,SI1,61.4,57,4564,6.37,6.34,3.9
0.9,Very Good,G,VVS2,63,58,4565,6.07,6.15,3.85
1.09,Ideal,J,SI1,61.4,55,4565,6.61,6.67,4.08
1.04,Fair,E,SI2,67.5,56,4566,6.28,6.22,4.22
1.01,Very Good,E,SI2,60.9,58,4566,6.45,6.49,3.94
1.04,Ideal,G,SI2,60.4,58,4566,6.56,6.62,3.98
1.01,Good,E,SI2,60.2,60,4566,6.37,6.42,3.85
0.91,Good,H,VS1,57.8,61,4566,6.4,6.36,3.69
1.04,Premium,E,SI2,59.2,58,4566,6.7,6.64,3.95
0.92,Ideal,H,VS2,62.2,55,4568,6.21,6.27,3.88
1.06,Ideal,F,SI2,60.7,57,4568,6.57,6.61,4
1,Good,H,SI1,61.5,64,4568,6.38,6.41,3.93
1,Good,H,VS2,62.7,54,4569,6.26,6.31,3.94
1.12,Premium,F,SI2,60.5,59,4570,6.73,6.79,4.09
0.79,Very Good,E,VVS1,62.8,60,4570,5.8,5.89,3.67
1.06,Very Good,E,SI2,61.7,62,4570,6.5,6.54,4.02
1.45,Fair,J,SI2,58.6,68,4570,7.45,7.33,4.34
0.91,Premium,G,VS1,62.5,61,4570,6.17,6.05,3.82
1.02,Premium,F,SI2,62.5,57,4570,6.47,6.43,4.03
1.06,Premium,G,SI2,61.5,58,4571,6.6,6.54,4.04
1.06,Premium,G,SI2,61.9,60,4571,6.53,6.52,4.04
1.12,Premium,H,SI1,62,56,4572,6.69,6.59,4.13
1.15,Ideal,H,SI2,62.6,55,4572,6.74,6.65,4.19
1,Good,E,SI1,63.9,57,4573,6.31,6.34,4.04
1.32,Good,J,SI1,63.5,57,4573,6.95,6.98,4.42
1.03,Very Good,H,SI1,63.5,53,4573,6.43,6.46,4.09
1.07,Premium,F,SI2,62.4,57,4573,6.58,6.53,4.09
1,Very Good,H,SI1,62.4,58,4574,6.37,6.42,3.99
1.01,Good,H,SI1,62.9,55,4574,6.35,6.41,4.01
1.21,Premium,J,SI1,59.7,60,4574,6.93,6.9,4.13
0.94,Ideal,D,SI1,62.3,57,4575,6.24,6.29,3.9
1.01,Very Good,E,SI2,62.2,58,4575,6.36,6.43,3.98
1,Very Good,E,SI2,60.6,60,4576,6.33,6.4,3.86
1.12,Very Good,H,SI1,63.1,56,4576,6.62,6.59,4.17
1.02,Ideal,F,SI2,61.4,56,4578,6.47,6.5,3.98
1.06,Ideal,G,SI2,61,57,4578,6.56,6.61,4.02
1.11,Ideal,H,SI2,62.7,57,4578,6.59,6.66,4.14
1.11,Ideal,H,SI2,62,54,4578,6.61,6.64,4.11
1.11,Ideal,H,SI2,61.3,55,4578,6.65,6.73,4.1
1.11,Premium,H,SI2,61.6,60,4578,6.6,6.67,4.09
1.09,Premium,H,SI2,61.7,60,4578,6.59,6.57,4.06
1.09,Premium,H,SI2,62.1,55,4578,6.63,6.58,4.1
1.01,Premium,H,SI1,60.5,58,4578,6.47,6.39,3.89
0.9,Very Good,D,SI1,62.5,59,4579,6.11,6.15,3.83
0.9,Ideal,D,SI1,62.5,57,4579,6.12,6.2,3.85
1.18,Premium,I,SI2,60.8,58,4579,6.84,6.78,4.14
1.03,Premium,F,SI1,60.9,60,4579,6.52,6.45,3.95
0.9,Premium,G,VS1,62.7,58,4579,6.15,6.06,3.83
1,Premium,E,SI2,62.7,58,4579,6.41,6.34,4
1,Very Good,E,SI2,63.3,58,4579,6.35,6.32,4.01
1.27,Premium,J,VS2,62.2,58,4580,6.88,6.84,4.27
0.9,Very Good,E,VS2,59.1,62,4580,6.24,6.28,3.7
0.9,Good,F,VS1,63.5,57,4580,6.06,6.09,3.86
0.9,Very Good,E,VS2,62.2,59,4580,6.13,6.18,3.83
0.9,Good,E,VS2,63.1,58,4580,6.11,6.15,3.87
0.9,Very Good,E,VS2,62.9,57,4580,6.16,6.18,3.88
1.2,Very Good,J,SI2,61.8,60,4580,6.76,6.83,4.2
1.03,Very Good,D,SI2,63.7,56,4580,6.32,6.39,4.05
1,Ideal,H,SI2,62,55,4580,6.39,6.43,3.98
0.94,Premium,E,SI1,62,58,4580,6.27,6.24,3.88
0.94,Premium,E,SI1,60,58,4580,6.44,6.37,3.84
0.94,Premium,E,SI1,62.4,56,4580,6.27,6.24,3.9
1.11,Premium,E,SI2,62.5,58,4581,6.61,6.63,4.14
1.01,Very Good,E,SI2,63.3,58,4581,6.37,6.3,4.01
1,Good,I,VS1,63.9,56,4581,6.37,6.18,4.01
1.03,Ideal,G,SI2,61.8,55,4582,6.46,6.51,4.01
1.03,Good,J,VS1,60.1,62.4,4582,6.43,6.49,3.88
1.24,Very Good,J,SI2,62.2,58,4583,6.82,6.94,4.28
1.02,Premium,D,SI2,59.3,60,4583,6.56,6.52,3.88
1.02,Very Good,D,SI2,58.6,63,4583,6.56,6.54,3.84
1.09,Very Good,I,SI2,62.5,57,4584,6.56,6.58,4.11
1.11,Very Good,H,SI2,59,59,4584,6.79,6.82,4.02
0.9,Ideal,H,VS2,59.9,57,4584,6.27,6.31,3.77
1.13,Ideal,H,SI2,62.5,57,4584,6.67,6.71,4.18
1.01,Ideal,I,SI1,62.4,56,4584,6.36,6.4,3.98
1.07,Premium,G,SI2,62.1,59,4584,6.54,6.48,4.04
1.03,Ideal,H,SI1,59.7,55,4585,6.6,6.64,3.95
1.02,Ideal,E,SI2,62.7,57,4585,6.35,6.44,4.01
1.09,Ideal,G,SI2,61.2,57,4586,6.63,6.68,4.07
1.09,Ideal,G,SI2,62.1,56,4586,6.59,6.66,4.12
1.16,Very Good,I,SI1,62.9,58,4586,6.64,6.69,4.19
1,Good,F,SI1,63.6,62,4586,6.3,6.24,3.99
0.32,Ideal,D,SI1,61.3,55,589,4.39,4.42,2.7
0.32,Very Good,D,SI1,62.8,56,589,4.37,4.42,2.76
0.32,Premium,D,SI1,61.5,59,589,4.39,4.42,2.71
0.32,Ideal,D,SI1,61.3,57,589,4.37,4.41,2.69
0.32,Ideal,D,SI1,61.4,57,589,4.41,4.42,2.71
0.32,Good,D,SI1,63.1,57,589,4.37,4.38,2.76
0.32,Good,D,SI1,63.1,56,589,4.34,4.38,2.75
0.32,Good,D,SI1,63.7,55,589,4.35,4.38,2.78
0.32,Ideal,D,SI1,62.7,54,589,4.37,4.4,2.75
0.32,Very Good,D,SI1,58.3,58,589,4.49,4.54,2.63
0.32,Very Good,D,SI1,62.8,56,589,4.34,4.35,2.73
0.32,Premium,D,SI1,61.3,60,589,4.41,4.43,2.71
0.32,Premium,D,SI1,60.8,58,589,4.41,4.44,2.69
0.32,Ideal,D,SI1,61.9,57,589,4.36,4.4,2.71
0.32,Ideal,I,VVS1,62.5,55,589,4.37,4.4,2.74
0.32,Premium,D,SI1,60.2,58,589,4.4,4.43,2.66
0.32,Premium,D,SI1,60.4,58,589,4.44,4.47,2.69
0.32,Very Good,I,VVS1,63,58,589,4.32,4.38,2.74
0.32,Ideal,D,SI1,62,57,589,4.38,4.42,2.73
0.32,Ideal,I,VVS1,61.7,55,589,4.39,4.4,2.71
0.36,Premium,G,VS2,62.5,58,589,4.51,4.55,2.83
0.32,Good,D,SI1,63.5,55,589,4.31,4.35,2.75
0.32,Ideal,D,SI1,62,55,589,4.37,4.47,2.74
0.32,Very Good,D,SI1,58.9,60,589,4.47,4.49,2.64
0.32,Ideal,D,SI1,61.5,56,589,4.39,4.42,2.71
0.32,Good,D,SI1,63.6,56,589,4.34,4.37,2.77
0.32,Good,D,SI1,63.3,57,589,4.37,4.38,2.77
0.32,Good,D,SI1,63.8,56,589,4.33,4.35,2.77
0.32,Ideal,D,SI1,62.5,54,589,4.39,4.41,2.75
0.32,Good,D,SI1,63.2,54,589,4.36,4.38,2.76
1,Premium,F,SI1,61.4,60,4586,6.38,6.35,3.91
0.9,Premium,D,VS2,63,62,4586,6.13,6.06,3.84
1.17,Good,I,SI1,60,64,4586,6.91,6.83,4.12
1,Good,F,SI1,64.1,60,4586,6.25,6.19,3.99
1,Fair,F,SI1,64.8,58,4586,6.26,6.21,4.04
1.03,Ideal,F,SI2,60.5,58,4586,6.55,6.49,3.94
1.26,Premium,H,SI2,62,56,4586,6.92,6.88,4.28
1,Very Good,F,SI1,58.1,63,4586,6.45,6.36,3.72
1.03,Premium,F,SI2,60.7,60,4586,6.52,6.47,3.94
1.03,Premium,F,SI2,61.4,57,4586,6.6,6.53,4.03
1.05,Ideal,H,SI2,61.9,56,4586,6.56,6.49,4.04
1.03,Premium,F,SI2,62.4,59,4586,6.45,6.38,4
1,Good,F,SI1,63.8,58,4586,6.28,6.22,3.99
1,Premium,F,SI1,62.2,58,4586,6.39,6.35,3.96
0.91,Very Good,D,SI1,63.1,59,4586,6.14,6.1,3.86
1.03,Premium,F,SI2,61.6,58,4586,6.46,6.43,3.97
1,Premium,F,SI1,62.9,57,4586,6.37,6.32,3.99
0.92,Ideal,I,VS1,62.3,55,4587,6.24,6.28,3.9
0.92,Ideal,H,SI1,61.6,56,4587,6.21,6.25,3.84
0.9,Very Good,H,VS2,62.3,59,4588,6.13,6.17,3.83
1.01,Very Good,J,VS1,59.5,59,4588,6.54,6.6,3.91
1.01,Very Good,D,SI2,62.2,60,4588,6.4,6.43,3.99
1.01,Very Good,G,SI1,62.9,61,4588,6.36,6.4,4.01
1.01,Good,D,SI2,63.9,57,4588,6.29,6.36,4.04
1.01,Good,G,SI1,63.6,57,4588,6.33,6.37,4.04
1.01,Very Good,D,SI2,58.3,59,4588,6.63,6.67,3.88
1.01,Very Good,G,SI1,62.9,54,4588,6.41,6.47,4.05
1.01,Premium,G,SI1,62.5,60,4588,6.34,6.39,3.98
1.01,Good,G,SI1,63.5,60,4588,6.3,6.33,4.01
1.01,Very Good,G,SI1,59.6,61,4588,6.47,6.52,3.87
1.01,Good,G,SI1,63.4,58,4588,6.28,6.33,4
1.01,Very Good,D,SI2,60.3,57,4588,6.51,6.56,3.94
1.01,Good,G,SI1,63.9,57,4588,6.3,6.37,4.05
1.01,Ideal,G,SI1,61.8,57,4588,6.41,6.46,3.98
1.01,Very Good,D,SI2,61.8,60,4588,6.37,6.41,3.95
1.01,Very Good,D,SI2,62.8,59,4588,6.34,6.44,4.01
1.28,Premium,H,SI2,62.4,56,4588,6.97,6.89,4.34
0.91,Very Good,G,VS1,60.9,54,4590,6.27,6.38,3.85
1.2,Very Good,J,VS2,62.5,57,4590,6.72,6.79,4.22
1.05,Ideal,F,SI2,60.9,56,4591,6.56,6.64,4.02
1.02,Ideal,E,SI1,61.1,56,4591,6.45,6.51,3.96
1.09,Very Good,G,SI2,62.1,57,4591,6.58,6.63,4.1
1.06,Ideal,I,SI2,62.7,58,4591,6.48,6.5,4.07
1.14,Ideal,F,SI2,61.7,56,4591,6.71,6.67,4.13
1.19,Premium,I,VS2,59.3,59,4591,6.98,6.88,4.11
1,Good,H,SI2,57.9,62,4592,6.53,6.49,3.77
1,Premium,I,SI1,59.6,58,4592,6.55,6.5,3.89
1,Good,H,VVS2,59.5,64,4592,6.44,6.41,3.82
0.9,Very Good,H,VVS2,63.7,57,4592,6.09,6.02,3.86
0.9,Very Good,H,VS1,62.3,59,4592,6.12,6.17,3.83
1.01,Premium,I,VS2,62.5,58,4592,6.39,6.44,4.01
0.9,Ideal,H,VS1,61.6,56,4592,6.17,6.13,3.79
0.83,Ideal,F,VS1,62.3,56.4,4592,5.97,6.02,3.73
1,Ideal,D,SI1,63,56,4592,6.33,6.28,3.97
0.9,Ideal,F,SI2,61.8,56,4593,6.18,6.21,3.83
0.9,Ideal,F,SI2,61.9,57,4593,6.13,6.18,3.81
0.9,Ideal,F,SI2,62.4,55,4593,6.17,6.2,3.86
1.02,Very Good,F,SI1,63,58,4594,6.36,6.4,4.02
1.02,Good,F,SI1,63.5,57,4594,6.35,6.4,4.05
1,Very Good,D,SI2,62.8,58,4595,6.29,6.39,3.98
0.9,Very Good,I,IF,62.6,59,4596,6.12,6.15,3.84
0.76,Ideal,F,IF,59.6,58,4596,5.95,5.96,3.55
1,Good,H,SI1,63.8,53,4596,6.39,6.27,4.04
1.14,Premium,I,SI1,60.4,60,4596,6.78,6.73,4.08
1.2,Ideal,I,SI2,63,57,4596,6.77,6.7,4.24
1.07,Premium,F,SI1,61.7,58,4597,6.58,6.62,4.07
0.9,Very Good,E,VS2,63.8,55,4598,6.11,6.18,3.92
1.09,Very Good,D,SI2,62.2,59,4598,6.46,6.49,4.03
1.38,Good,J,SI2,63.7,58,4598,7.06,7.01,4.48
1.05,Premium,G,SI2,62.6,62,4598,6.49,6.45,4.05
0.92,Premium,E,VS2,61.2,62,4600,6.27,6.22,3.82
0.9,Very Good,G,VS2,62.5,57,4600,6.12,6.14,3.83
1.51,Very Good,J,I1,63.3,57,4600,7.31,7.23,4.6
1.11,Ideal,H,SI2,60.9,56,4600,6.71,6.73,4.09
1.01,Fair,E,SI2,57.1,59,4600,6.65,6.69,3.81
0.9,Good,D,VS2,63.5,61,4601,6.09,6.16,3.89
0.9,Very Good,G,VVS1,62.3,58,4601,6.14,6.21,3.85
1.04,Premium,I,SI1,60.7,59,4601,6.6,6.57,4
1.07,Ideal,J,VS2,61.6,56.3,4602,6.55,6.59,4.04
1.07,Good,J,VS2,61.7,57.7,4602,6.55,6.58,4.05
1,Ideal,I,SI1,61.8,55,4602,6.41,6.44,3.97
1.06,Ideal,H,SI1,60.8,54,4602,6.64,6.61,4.03
1.2,Very Good,H,SI1,61.4,63,4603,6.76,6.72,4.14
1.03,Premium,H,SI1,61.1,59,4603,6.56,6.5,3.99
1.03,Ideal,H,SI1,62.3,56,4603,6.48,6.45,4.03
1.03,Premium,H,SI1,60,60,4603,6.41,6.4,4.02
1.02,Very Good,H,SI1,62.6,59,4604,6.38,6.43,4.01
1.02,Premium,H,SI1,61.9,58,4604,6.43,6.47,3.99
1.02,Good,H,SI1,63.5,58,4604,6.36,6.39,4.05
1.05,Ideal,H,SI2,61.8,58,4604,6.52,6.55,4.04
1.07,Ideal,H,SI2,61,55,4604,6.62,6.65,4.05
1.01,Ideal,E,SI2,59.6,60,4604,6.52,6.6,3.91
1.02,Ideal,H,VS2,62.3,54,4604,6.48,6.39,4.01
1.02,Very Good,H,VS2,60,63,4604,6.54,6.49,3.91
1.02,Very Good,H,VS2,63.3,55,4604,6.4,6.33,4.03
1.01,Premium,G,SI1,62.8,59,4605,6.43,6.34,4.01
0.91,Very Good,F,VS2,60.8,57,4606,6.24,6.25,3.8
1.01,Very Good,D,SI2,62.7,58,4606,6.31,6.39,3.98
1.01,Good,D,SI2,64.5,58,4606,6.18,6.26,4.01
1.11,Good,H,SI1,64.2,58,4606,6.53,6.47,4.17
1.1,Very Good,E,SI2,60.1,62,4607,6.65,6.69,4.01
1.05,Very Good,H,SI1,59.5,58,4608,6.61,6.69,3.96
1.05,Good,H,SI1,63.1,60,4608,6.42,6.49,4.07
1.05,Premium,H,SI1,61.9,58,4608,6.45,6.5,4.01
1.05,Ideal,G,SI2,61.8,57,4608,6.51,6.57,4.04
1,Good,F,SI1,58.1,64,4608,6.56,6.6,3.82
1.01,Good,E,SI1,64.7,57,4608,6.22,6.29,4.05
1.07,Very Good,E,SI2,60.5,61,4609,6.55,6.61,3.98
0.91,Ideal,I,VVS1,60,57,4609,6.29,6.31,3.83
1.01,Good,H,SI1,63.7,56,4610,6.34,6.33,4.08
1.13,Premium,I,VS2,62,58,4611,6.64,6.69,4.13
0.93,Good,E,SI1,63.1,57,4611,6.17,6.19,3.9
0.91,Good,E,SI1,63.6,57,4611,6.13,6.1,3.89
1.03,Ideal,H,SI2,61.6,54,4611,6.51,6.55,4.02
1.09,Ideal,J,SI1,60.7,58,4611,6.64,6.68,4.04
1.2,Premium,J,VS2,61.8,59,4611,6.84,6.76,4.2
1.16,Fair,G,SI1,65.9,55,4612,6.54,6.51,4.3
0.9,Premium,D,SI1,62.2,60,4612,6.14,6.08,3.8
1.01,Ideal,I,SI1,60.2,59,4612,6.49,6.54,3.92
0.9,Premium,D,SI1,62.2,58,4612,6.18,6.11,3.82
0.9,Premium,D,SI1,62.8,59,4612,6.18,6.14,3.87
1.05,Very Good,I,VS2,63.1,58,4612,6.47,6.42,4.07
1.22,Good,J,SI1,63.8,57,4612,6.77,6.72,4.3
0.9,Ideal,D,SI1,62.7,56,4612,6.18,6.16,3.87
0.9,Premium,D,SI1,62.4,61,4612,6.17,6.13,3.84
1.11,Premium,F,SI2,58.9,60,4612,6.8,6.74,3.99
1.22,Ideal,I,SI2,61.8,57,4612,6.9,6.83,4.23
1.07,Ideal,E,SI2,62.4,57,4613,6.52,6.55,4.08
1.04,Ideal,E,SI1,62,57,4613,6.5,6.47,4.02
1.14,Very Good,H,SI2,63.3,57,4615,6.6,6.63,4.19
1.01,Premium,F,SI2,62.9,59,4616,6.32,6.27,3.96
1.01,Good,H,SI1,59.4,60,4616,6.49,6.54,3.87
1.01,Premium,F,SI2,61.7,60,4616,6.42,6.36,3.94
0.9,Very Good,F,VS2,61.6,63,4617,6.13,6.17,3.79
0.9,Very Good,F,VS2,62.2,57,4617,6.17,6.24,3.86
0.9,Good,F,VS2,64.3,57,4617,6.07,6.09,3.91
0.9,Very Good,H,VVS2,61.8,60,4617,6.11,6.15,3.79
1.02,Very Good,H,SI1,63,58,4617,6.34,6.4,4.01
1.01,Very Good,H,SI1,60.2,60,4617,6.5,6.48,3.91
1.01,Ideal,J,VS2,61.3,56,4617,6.46,6.5,3.97
1.01,Ideal,J,VS2,61.1,56,4617,6.49,6.51,3.97
0.83,Ideal,F,VS1,61.2,54,4617,6.07,6.11,3.73
1.17,Ideal,J,SI1,62.1,57,4617,6.74,6.81,4.21
1.05,Premium,G,SI2,63,57,4618,6.47,6.41,4.06
1.01,Very Good,F,SI1,63,58,4619,6.31,6.39,4
1.01,Good,F,SI1,62.4,59,4619,6.3,6.42,3.97
1.01,Very Good,F,SI1,61.9,57,4619,6.37,6.42,3.96
1.01,Good,E,SI1,63.2,59,4619,6.25,6.28,3.96
1.01,Very Good,H,SI1,58.5,56,4619,6.6,6.69,3.89
0.8,Ideal,D,VS1,62.4,56,4619,5.94,5.98,3.72
1.13,Premium,H,SI2,61.1,59,4619,6.73,6.65,4.09
1.17,Ideal,J,VS2,62.1,56,4619,6.8,6.75,4.21
1,Premium,E,SI2,61.1,58,4620,6.44,6.48,3.95
1.5,Good,I,I1,62.6,63,4620,7.19,7.25,4.52
1,Good,D,SI2,63.3,56,4620,6.35,6.38,4.03
1,Good,E,SI2,63.5,56,4620,6.31,6.38,4.03
1,Very Good,E,SI2,61.4,61,4620,6.36,6.41,3.92
1.12,Premium,H,SI2,61.9,58,4620,6.66,6.74,4.15
1,Very Good,F,SI1,60.3,61,4620,6.38,6.43,3.86
1,Very Good,E,SI2,62.4,57,4620,6.33,6.4,3.97
1,Premium,E,SI2,61.7,58,4620,6.34,6.39,3.93
1,Premium,E,SI2,61.2,60,4620,6.42,6.45,3.94
1.26,Ideal,I,SI2,59.6,57,4620,7.01,7.04,4.19
1.1,Premium,I,SI1,62,59,4620,6.59,6.54,4.07
1,Very Good,I,VS2,63.5,56,4620,6.33,6.3,4.01
1.1,Ideal,H,SI2,62,55,4620,6.62,6.6,4.1
1.1,Premium,H,SI2,62.2,58,4620,6.69,6.6,4.13
1.1,Ideal,H,SI2,62.6,56,4620,6.65,6.57,4.14
0.92,Very Good,F,SI1,62.2,55,4621,6.19,6.26,3.87
1.01,Very Good,H,SI1,62.6,61,4622,6.36,6.39,3.99
1.06,Ideal,H,SI2,60.6,55,4622,6.62,6.65,4.02
1.1,Premium,E,SI2,60.9,60,4622,6.66,6.61,4.04
1,Ideal,E,SI2,62,57,4623,6.37,6.41,3.96
0.91,Ideal,E,SI1,61.9,55,4623,6.18,6.22,3.84
0.98,Premium,H,VS2,59.9,60,4623,6.45,6.38,3.84
1.12,Very Good,H,SI2,61.8,58,4624,6.62,6.68,4.11
1.1,Ideal,J,SI2,60.1,57,4624,6.77,6.74,4.06
1.1,Ideal,I,SI2,62.6,55,4624,6.57,6.6,4.13
1,Good,I,VS1,59.6,61,4624,6.48,6.53,3.88
0.9,Premium,E,VS2,63,58,4625,6.16,6.13,3.87
1.01,Very Good,I,VS2,61.9,61,4626,6.36,6.41,3.95
1,Premium,D,SI2,62.2,61,4626,6.36,6.3,3.94
1,Very Good,G,SI1,63.3,60,4626,6.33,6.24,3.98
1,Premium,D,SI2,58.3,61,4626,6.59,6.54,3.83
1,Premium,D,SI2,59.4,60,4626,6.56,6.48,3.87
1,Premium,D,SI2,61.6,58,4626,6.45,6.37,3.95
1,Premium,D,SI2,59.5,62,4626,6.52,6.49,3.87
1.35,Fair,G,SI2,66,58,4627,6.89,6.81,4.52
1.08,Premium,G,SI2,62.2,56,4627,6.62,6.54,4.09
1.08,Premium,G,SI2,62.3,56,4627,6.6,6.52,4.09
1.08,Premium,G,SI2,62.9,59,4627,6.57,6.53,4.12
1.08,Ideal,G,SI2,61.9,57,4627,6.57,6.55,4.06
1.08,Ideal,G,SI2,62.2,56,4627,6.59,6.56,4.09
0.9,Very Good,F,VS2,63.1,59,4627,6.13,6.05,3.84
1,Very Good,D,SI2,63.2,57,4628,6.24,6.32,3.97
0.82,Ideal,D,VS2,60.8,57,4628,6.02,6.05,3.67
0.82,Ideal,D,VS2,61.9,56,4628,5.98,6.03,3.72
0.95,Premium,E,SI1,62.8,59,4628,6.25,6.21,3.91
1.04,Ideal,H,SI1,60.3,57,4629,6.55,6.58,3.96
0.94,Premium,H,VS2,60.1,59,4629,6.32,6.35,3.81
1.09,Very Good,F,SI2,58.6,63,4629,6.73,6.78,3.96
1,Very Good,E,SI2,63,54,4630,6.33,6.37,4
1.06,Ideal,I,SI1,61.2,56,4630,6.64,6.6,4.05
1.06,Ideal,I,SI1,61.2,56,4630,6.64,6.6,4.05
0.81,Ideal,F,VVS2,62.3,54,4630,5.94,6.01,3.72
1.04,Ideal,F,SI2,62.6,57,4630,6.48,6.45,4.05
1,Fair,G,VS1,63.1,63,4630,6.38,6.29,4
1.04,Ideal,F,SI2,61.8,56,4630,6.53,6.49,4.02
1.21,Ideal,G,SI2,62.9,57,4631,6.78,6.73,4.25
1.17,Premium,H,SI1,62.6,59,4631,6.78,6.71,4.22
0.56,Ideal,D,IF,60.8,58,4632,5.35,5.31,3.24
1.01,Very Good,F,SI1,63.5,58,4632,6.29,6.24,3.98
1.01,Premium,F,SI1,63,58,4632,6.33,6.29,3.98
1.01,Good,F,SI1,57.4,57,4632,6.52,6.48,3.73
1.02,Good,D,SI2,63.4,59,4633,6.37,6.41,4.05
1.02,Very Good,G,SI1,63,55,4633,6.4,6.45,4.05
1.02,Premium,G,SI1,60.8,58,4633,6.46,6.5,3.94
1.02,Premium,G,SI1,62.3,59,4633,6.4,6.44,4
1.02,Very Good,D,SI2,61.5,56,4633,6.47,6.51,3.99
1.02,Ideal,G,SI1,59.2,57,4633,6.52,6.56,3.87
1.02,Premium,G,SI1,61,59,4633,6.44,6.48,3.94
1.02,Very Good,G,SI1,62,57,4633,6.41,6.5,4
1.02,Very Good,D,SI2,60.3,58,4633,6.48,6.52,3.92
1,Good,J,VVS1,63.5,59,4633,6.29,6.34,4.01
1.08,Ideal,J,SI1,62.1,55,4633,6.54,6.57,4.07
1.06,Very Good,F,SI2,62.6,60,4634,6.54,6.44,4.06
1.01,Fair,F,SI1,65.5,57,4634,6.12,6.22,4.04
1.33,Premium,G,SI2,61.3,59,4634,7.06,6.93,4.29
0.93,Ideal,H,SI1,62.4,55,4635,6.2,6.24,3.88
1.2,Very Good,J,SI2,61.4,55,4636,6.85,6.92,4.23
1.28,Premium,J,SI2,62.3,58,4636,6.94,6.89,4.31
1.2,Good,J,VS2,64.3,56,4637,6.65,6.57,4.25
0.9,Very Good,F,VS2,63.4,57,4637,6.19,6.08,3.89
0.9,Premium,G,VS2,61.7,57,4637,6.21,6.11,3.8
1.2,Very Good,H,SI1,63.3,56,4637,6.75,6.72,4.26
0.9,Very Good,H,VVS2,59.9,61,4637,6.29,6.19,3.74
1,Good,H,VS2,63.6,61,4637,6.21,6.25,3.96
0.92,Premium,H,VVS2,62.5,58,4637,6.25,6.16,3.88
0.91,Premium,D,VS2,62.7,59,4637,6.16,6.13,3.85
1.15,Premium,I,SI1,62.2,56,4637,6.77,6.67,4.18
1.21,Very Good,G,SI1,63.4,60,4637,6.68,6.63,4.22
1.21,Fair,G,SI1,64.5,56,4637,6.69,6.62,4.29
0.92,Premium,E,SI1,61.7,57,4637,6.32,6.2,3.86
1.01,Ideal,I,SI1,61.9,59,4638,6.38,6.42,3.96
1.01,Premium,H,SI2,60.3,60,4638,6.49,6.47,3.91
0.92,Ideal,H,VS2,60.8,58,4639,6.27,6.32,3.83
0.97,Premium,D,SI1,62,60,4639,6.29,6.25,3.89
1.09,Premium,H,SI2,62.5,58,4639,6.61,6.55,4.11
1.09,Very Good,I,SI1,63.2,59,4639,6.54,6.5,4.12
1.17,Good,D,SI2,57.8,62,4639,6.97,6.91,4.01
1.18,Premium,I,SI2,61.7,58,4639,6.79,6.75,4.18
1.1,Very Good,I,SI1,61.2,61,4640,6.61,6.66,4.01
1.1,Premium,D,SI2,62.4,58,4640,6.57,6.6,4.11
1.09,Very Good,I,SI1,61.4,58,4640,6.61,6.69,4.08
1,Very Good,I,VS1,63.3,55,4641,6.39,6.34,4.03
1.01,Ideal,I,SI1,60.3,58,4641,6.5,6.56,3.94
1.01,Good,G,SI1,62.8,58,4641,6.36,6.29,3.97
1.12,Premium,H,SI2,59.7,60,4641,6.77,6.72,4.03
1.12,Premium,H,SI2,62,57,4641,6.68,6.61,4.12
1.12,Premium,H,SI1,61.2,59,4641,6.69,6.65,4.08
1.12,Premium,I,SI1,62,56,4641,6.73,6.65,4.15
1.01,Premium,H,SI1,62.5,59,4642,6.44,6.33,3.99
0.91,Ideal,F,SI2,62,57,4642,6.15,6.23,3.84
0.91,Ideal,F,SI2,61.7,56,4642,6.21,6.24,3.84
0.91,Ideal,F,SI2,62,56,4642,6.2,6.22,3.85
1.01,Premium,H,SI1,62.8,58,4642,6.38,6.36,4
1.01,Very Good,H,SI1,63.4,58,4642,6.38,6.34,4.03
1.01,Premium,H,SI1,61.2,58,4642,6.47,6.43,3.95
1.01,Premium,H,SI1,63,60,4642,6.36,6.33,4
1.01,Good,H,SI1,60.3,64,4642,6.53,6.5,3.93
1.01,Very Good,H,SI1,63.3,58,4642,6.4,6.37,4.04
1.01,Ideal,H,SI1,62.4,53,4642,6.47,6.42,4.02
1.01,Premium,H,SI1,61.8,60,4642,6.48,6.43,3.99
0.9,Very Good,E,VS2,63,57,4643,6.07,6.15,3.85
1,Very Good,F,SI1,62.5,56,4643,6.38,6.42,4
1.06,Ideal,J,VS2,62.4,54,4643,6.51,6.57,4.08
1.35,Ideal,G,I1,62.5,57,4643,7.04,7.01,4.39
0.7,Very Good,E,VVS1,63.2,57,4644,5.62,5.67,3.57
1.07,Premium,F,SI2,61.8,59,4644,6.57,6.53,4.05
1.02,Ideal,E,SI2,62,59,4645,6.43,6.4,3.98
1.11,Ideal,I,SI1,62.3,56,4645,6.59,6.64,4.12
1,Good,E,SI1,63.9,55,4646,6.28,6.34,4.03
1.06,Ideal,I,SI1,62.6,56,4646,6.46,6.54,4.07
1.01,Fair,G,SI1,60.4,62,4646,6.31,6.34,3.82
1.13,Premium,G,SI2,61.5,59,4647,6.73,6.69,4.13
1,Premium,E,SI2,60.4,60,4648,6.49,6.46,3.91
1.52,Fair,H,I1,69.7,55,4648,6.92,6.89,4.81
1.52,Fair,H,I1,65.4,62,4648,7.1,7.02,4.62
1.04,Ideal,H,SI1,62.5,57,4648,6.5,6.46,4.05
1,Very Good,I,SI1,58.5,61,4649,6.51,6.55,3.82
1,Ideal,H,SI2,62,56,4649,6.38,6.43,3.97
1,Ideal,I,SI1,62.5,56,4649,6.38,6.41,4
1,Ideal,I,SI1,61.5,57,4649,6.39,6.43,3.94
1.23,Premium,J,SI1,61.9,54,4649,6.89,6.86,4.26
1.1,Premium,G,SI2,61.4,59,4650,6.71,6.59,4.08
1.14,Very Good,F,SI2,62.9,59,4652,6.62,6.64,4.17
1.06,Premium,E,SI2,60.5,60,4652,6.61,6.67,4.02
1.22,Very Good,J,SI2,62.6,58,4652,6.78,6.84,4.26
1.17,Very Good,H,SI1,63.1,56,4652,6.76,6.71,4.25
1,Very Good,H,VS2,63.3,62,4652,6.37,6.29,4.01
0.36,Premium,E,SI1,62.2,59,589,4.53,4.57,2.83
0.32,Very Good,D,SI1,62.3,55,589,4.38,4.42,2.74
0.32,Ideal,D,SI1,62,57,589,4.37,4.4,2.72
0.32,Ideal,I,VVS1,61.9,55,589,4.39,4.4,2.72
0.32,Good,D,SI1,63.3,57,589,4.36,4.39,2.77
0.32,Very Good,D,SI1,62.7,57,589,4.34,4.37,2.73
0.32,Premium,D,SI1,61.4,58,589,4.38,4.42,2.7
0.32,Premium,D,SI1,60.9,60,589,4.39,4.41,2.68
0.32,Ideal,I,VVS1,62.4,55,589,4.34,4.38,2.72
0.4,Good,J,VS1,63.5,56,589,4.69,4.7,2.98
0.32,Very Good,D,SI1,63,58,589,4.36,4.4,2.76
0.32,Ideal,D,SI1,62.7,54,589,4.35,4.39,2.74
0.32,Ideal,D,SI1,62.6,55,589,4.36,4.39,2.74
0.32,Ideal,D,SI1,60.8,57,589,4.41,4.44,2.69
0.32,Ideal,D,SI1,59.3,55,589,4.51,4.53,2.68
0.32,Ideal,D,SI1,59.6,57,589,4.42,4.47,2.65
0.32,Ideal,D,SI1,60.9,56,589,4.4,4.43,2.69
0.32,Very Good,I,VVS1,60.1,61,589,4.4,4.45,2.66
0.34,Good,F,VS2,64.3,53,589,4.44,4.48,2.87
0.31,Ideal,E,VS2,62,56,589,4.36,4.38,2.71
0.34,Very Good,H,VS1,62.3,57,590,4.45,4.48,2.78
0.26,Very Good,F,SI1,59.6,55,590,4.18,4.24,2.51
0.35,Very Good,F,SI1,61,55,590,4.6,4.63,2.81
0.38,Very Good,E,SI2,62.5,61,590,4.59,4.63,2.88
0.35,Ideal,I,VVS2,62.4,54,590,4.51,4.53,2.82
0.3,Ideal,H,VVS2,62.2,57,590,4.26,4.29,2.66
0.3,Ideal,H,VVS2,62.4,56,590,4.28,4.31,2.68
0.3,Ideal,H,VVS2,62.1,54,590,4.32,4.35,2.69
0.3,Ideal,H,VVS2,61.5,55,590,4.34,4.37,2.68
0.3,Ideal,H,VVS2,62.7,53,590,4.29,4.32,2.7
1.01,Very Good,G,SI1,62.4,58,4653,6.39,6.44,4
1.01,Ideal,G,SI1,61.4,55,4653,6.46,6.5,3.98
1.01,Ideal,G,SI1,61.4,57,4653,6.44,6.5,3.97
1.15,Very Good,H,SI2,61.9,57,4654,6.68,6.72,4.15
1.06,Premium,E,SI2,61.7,62,4654,6.54,6.5,4.02
1.12,Premium,F,SI2,61.6,58,4654,6.69,6.63,4.1
1.14,Premium,H,SI1,63,57,4654,6.7,6.65,4.2
1.12,Premium,F,SI2,60.5,59,4654,6.79,6.73,4.09
0.9,Good,F,VS2,60,58,4655,6.21,6.26,3.74
0.75,Very Good,D,VVS2,59.4,59,4656,5.88,5.94,3.51
1.26,Ideal,J,SI2,62.5,53,4656,6.86,6.9,4.3
1.08,Premium,E,SI2,60.8,59,4656,6.57,6.62,4.01
1.08,Very Good,E,SI2,60.2,58,4656,6.61,6.68,4
1.08,Good,E,SI2,63.7,57,4656,6.49,6.54,4.15
1,Fair,F,VS2,68.4,58,4656,5.97,6.1,4.13
1.06,Premium,F,SI2,62,59,4656,6.57,6.52,4.06
1.16,Very Good,I,SI1,61.5,60.4,4657,6.71,6.76,4.14
1.2,Premium,J,SI1,61.5,59,4657,6.84,6.81,4.2
0.9,Premium,H,VVS2,62.4,58,4657,6.15,6.12,3.83
1.32,Very Good,J,SI1,63.5,57,4657,6.98,6.95,4.42
1,Fair,F,SI1,65.8,58,4657,6.23,6.15,4.07
0.9,Ideal,F,SI1,61.7,57,4657,6.25,6.2,3.84
1.2,Ideal,J,SI2,61.7,56,4659,6.79,6.87,4.21
1.2,Good,J,SI2,63.3,54.4,4659,6.72,6.78,4.27
1.01,Very Good,H,SI1,63.5,57,4659,6.31,6.35,4.02
1.09,Premium,I,VS2,61.3,58,4659,6.63,6.58,4.05
1.04,Premium,H,SI1,58.5,62,4659,6.67,6.64,3.89
1.04,Ideal,I,SI1,61.3,57,4659,6.56,6.53,4.01
1.04,Ideal,I,SI1,61.3,57,4659,6.57,6.54,4.02
1.19,Premium,I,SI2,62.6,58,4660,6.7,6.75,4.21
1.27,Premium,J,SI2,60.4,58,4660,7.04,7,4.24
0.94,Very Good,E,SI1,62.4,56,4661,6.24,6.27,3.9
0.94,Very Good,E,SI1,61.8,56,4661,6.29,6.33,3.9
0.94,Premium,E,SI1,60,58,4661,6.37,6.44,3.84
0.94,Premium,E,SI1,62,58,4661,6.24,6.27,3.88
1.13,Very Good,H,SI2,62.7,55,4661,6.61,6.69,4.17
0.9,Premium,G,VS1,62.7,58,4661,6.06,6.15,3.83
1.23,Very Good,F,SI2,60.9,58,4661,6.93,6.96,4.23
1.15,Very Good,H,SI2,63.7,56,4661,6.63,6.66,4.23
1,Very Good,D,SI2,62.5,58,4661,6.35,6.44,4
0.9,Ideal,D,SI1,61.3,58,4661,6.16,6.21,3.79
1.11,Premium,H,SI2,61.5,59,4662,6.67,6.63,4.09
1.11,Premium,H,SI2,62.9,59,4662,6.59,6.54,4.13
1.02,Premium,I,VS2,59.5,59,4662,6.54,6.5,3.88
0.9,Very Good,H,VS2,62.6,57,4662,6.11,6.09,3.82
1.02,Ideal,I,VS2,61.5,57,4662,6.49,6.45,3.98
1.02,Ideal,F,SI2,62.4,55,4662,6.46,6.43,4.02
1.06,Ideal,G,SI2,61,57,4662,6.61,6.56,4.02
1.02,Ideal,F,SI2,61.4,56,4662,6.5,6.47,3.98
1.11,Ideal,H,SI2,62.7,57,4662,6.66,6.59,4.14
1.11,Premium,H,SI2,61.6,60,4662,6.67,6.6,4.09
1.11,Ideal,H,SI2,62,54,4662,6.64,6.61,4.11
1.11,Ideal,H,SI2,61.3,55,4662,6.73,6.65,4.1
0.91,Ideal,I,VVS2,60.6,57,4663,6.25,6.27,3.79
1.12,Premium,D,SI2,59.5,59,4663,6.8,6.75,4.03
0.91,Premium,D,SI1,62.3,60,4663,6.21,6.15,3.85
0.91,Premium,D,SI1,59,61,4663,6.35,6.29,3.73
0.9,Very Good,H,VVS1,62.1,59,4664,6.17,6.19,3.84
1,Ideal,I,VS1,63.1,57,4664,6.32,6.39,4.01
1.11,Premium,E,SI2,62.5,58,4664,6.63,6.61,4.14
0.91,Very Good,H,VVS2,62.9,58,4665,6.14,6.17,3.87
0.86,Very Good,E,VS2,62.3,56,4665,6.05,6.08,3.78
0.98,Ideal,G,SI1,62.3,56,4665,6.37,6.34,3.96
1.19,Very Good,I,SI1,63.2,58,4665,6.82,6.7,4.27
1,Fair,H,SI1,67.6,59,4665,6.03,5.95,4.05
1.01,Very Good,I,VS2,62.3,60,4666,6.33,6.41,3.97
1.01,Very Good,E,SI2,59.5,59,4666,6.54,6.58,3.9
1.01,Ideal,E,SI2,62.2,54,4666,6.39,6.43,3.99
1.01,Very Good,D,SI1,62.4,58,4666,6.39,6.47,4.01
1.01,Ideal,E,SI2,61.2,54,4666,6.49,6.52,3.98
1.01,Premium,E,SI2,61.5,58,4666,6.4,6.43,3.95
1.01,Premium,E,SI2,62.6,59,4666,6.36,6.39,3.99
1.01,Very Good,E,SI2,61.5,56,4666,6.45,6.47,3.97
1.01,Ideal,E,SI2,61.1,57,4666,6.48,6.52,3.97
1.01,Good,E,SI2,63.7,58,4666,6.32,6.36,4.04
1.24,Ideal,J,SI2,61.6,57,4666,6.89,6.87,4.24
1.24,Premium,E,SI2,60.5,62,4666,6.97,6.89,4.19
0.93,Ideal,G,SI1,62.2,58,4666,6.2,6.24,3.87
1.24,Premium,J,SI2,62.2,58,4666,6.94,6.82,4.28
1.05,Ideal,G,SI2,62.2,54,4667,6.52,6.56,4.07
1.04,Ideal,F,SI2,62.1,57,4668,6.46,6.48,4.02
0.9,Very Good,G,VVS2,62.6,55,4668,6.12,6.19,3.85
0.9,Very Good,D,VS2,63,62,4668,6.06,6.13,3.84
0.9,Good,G,VVS2,62.6,58,4668,6.1,6.13,3.83
1.03,Very Good,E,SI2,62.1,59,4668,6.43,6.46,4
0.91,Very Good,E,SI2,63.2,56,4668,6.08,6.14,3.86
1.01,Ideal,E,SI2,61.6,58,4668,6.45,6.5,3.99
1.16,Ideal,I,SI1,61.7,56,4668,6.76,6.7,4.15
1.01,Very Good,H,SI1,63.3,56,4669,6.35,6.39,4.03
1.21,Good,F,SI2,63.7,64,4669,6.73,6.63,4.25
1.21,Premium,I,VS2,61.6,61,4669,6.86,6.8,4.21
1.11,Premium,G,SI2,61.5,58,4670,6.6,6.67,4.08
0.91,Premium,H,VS1,61,59,4670,6.25,6.18,3.79
0.91,Premium,H,VS1,61.8,54,4670,6.32,6.27,3.89
0.91,Very Good,H,VS1,59.4,63,4670,6.32,6.28,3.74
1.09,Ideal,G,SI2,61.2,57,4670,6.68,6.63,4.07
1.09,Ideal,G,SI2,62.1,56,4670,6.66,6.59,4.12
1.03,Good,D,SI2,59.3,58,4671,6.57,6.61,3.91
1.01,Premium,D,SI2,58.8,59,4672,6.58,6.55,3.86
1.01,Premium,G,SI1,61.2,61,4672,6.47,6.41,3.94
1.01,Good,G,SI1,60.7,59,4672,6.35,6.4,3.87
1.01,Premium,G,SI1,61,62,4672,6.49,6.4,3.93
1.01,Very Good,G,SI1,63.5,60,4672,6.33,6.3,4.01
1.01,Premium,D,SI2,62.8,59,4672,6.44,6.34,4.01
1.01,Very Good,G,SI1,63.4,58,4672,6.33,6.28,4
1.01,Good,G,SI1,63.9,57,4672,6.37,6.3,4.05
1.01,Premium,G,SI1,62.9,61,4672,6.4,6.36,4.01
1.01,Premium,D,SI2,62.2,60,4672,6.43,6.4,3.99
1.01,Good,G,SI1,63.6,57,4672,6.37,6.33,4.04
1.01,Premium,G,SI1,62.5,60,4672,6.39,6.34,3.98
1.01,Premium,D,SI2,61.8,60,4672,6.41,6.37,3.95
1.01,Ideal,G,SI1,62.9,54,4672,6.47,6.41,4.05
1.01,Premium,D,SI2,60.3,57,4672,6.56,6.51,3.94
1.01,Premium,G,SI1,59.6,61,4672,6.52,6.47,3.87
1.01,Good,D,SI2,63.9,57,4672,6.36,6.29,4.04
1.01,Premium,D,SI2,60.9,62,4672,6.45,6.43,3.92
1.01,Premium,D,SI2,58.3,59,4672,6.67,6.63,3.88
1.12,Very Good,H,SI1,63.1,56,4673,6.62,6.59,4.17
0.91,Ideal,G,SI1,62.5,56,4673,6.19,6.22,3.88
1.1,Good,F,SI2,60.5,61,4674,6.61,6.67,4.02
1.21,Premium,J,VS1,61,60,4675,6.88,6.83,4.18
1.08,Ideal,G,SI2,61.9,58,4675,6.55,6.57,4.06
1.02,Ideal,E,SI1,61.1,56,4675,6.51,6.45,3.96
1.05,Ideal,F,SI2,60.9,56,4675,6.64,6.56,4.02
1.01,Premium,I,VS2,62.5,58,4676,6.44,6.39,4.01
0.92,Very Good,D,SI1,62.9,56,4676,6.18,6.22,3.9
1.22,Ideal,J,SI2,61.2,57,4676,6.86,6.9,4.21
0.91,Premium,E,VS2,62.2,60,4676,6.21,6.13,3.84
1,Ideal,H,SI1,61.4,55,4676,6.49,6.44,3.97
1.01,Premium,F,SI2,61.9,58,4676,6.39,6.34,3.94
0.9,Premium,E,SI1,62.8,58,4677,6.13,6.09,3.84
1.74,Very Good,H,I1,63.2,55,4677,7.62,7.59,4.8
1.07,Ideal,F,SI2,62,57,4678,6.49,6.6,4.06
1.07,Ideal,F,SI2,61.5,57,4678,6.57,6.6,4.05
0.9,Very Good,F,VS2,61.9,57,4678,6.17,6.23,3.84
0.9,Ideal,F,VS2,62.7,56,4678,6.17,6.2,3.88
0.9,Very Good,F,VS2,61.7,56,4678,6.18,6.21,3.82
1.02,Premium,F,SI1,63,58,4678,6.4,6.36,4.02
1.02,Very Good,F,SI1,63.5,57,4678,6.4,6.35,4.05
1.18,Good,G,SI1,64.2,62,4678,6.6,6.51,4.25
1.02,Good,F,SI1,63.7,61,4678,6.27,6.23,3.98
0.91,Ideal,H,VS2,62.4,56,4678,6.2,6.14,3.85
1.19,Ideal,J,SI1,62,56,4678,6.8,6.77,4.21
1.03,Very Good,D,SI2,61.3,61,4679,6.46,6.49,3.97
1.03,Good,G,SI1,63.2,58,4679,6.38,6.43,4.05
1.03,Premium,D,SI2,61.7,58,4679,6.47,6.5,4
1.03,Very Good,D,SI2,62.8,56,4679,6.43,6.46,4.05
1.03,Ideal,D,SI2,61.2,57,4679,6.51,6.59,4.01
1.03,Ideal,G,SI1,62.4,57,4679,6.47,6.52,4.05
1.03,Ideal,D,SI2,61.8,56,4679,6.46,6.51,4.01
0.7,Very Good,E,IF,60.3,59,4679,5.72,5.76,3.46
1.05,Ideal,I,SI1,62.1,54,4679,6.54,6.55,4.06
1,Good,F,SI1,60.1,65,4679,6.4,6.44,3.86
1,Fair,F,SI1,56.5,60,4679,6.62,6.66,3.75
1.28,Good,G,SI2,63.6,57,4679,6.78,6.73,4.29
1.01,Very Good,H,SI1,59.8,61,4680,6.54,6.51,3.9
1.01,Ideal,H,SI1,61.4,60,4680,6.48,6.45,3.97
0.9,Very Good,F,VS2,62.6,58,4681,6.08,6.13,3.82
1.01,Very Good,I,SI1,62.1,58,4681,6.37,6.39,3.96
1.04,Very Good,H,SI1,59.7,60,4682,6.55,6.58,3.92
0.95,Premium,F,SI1,62.9,59,4682,6.24,6.13,3.89
0.9,Good,D,VS2,65.8,58,4682,5.99,6.01,3.95
1.09,Premium,D,SI2,62.2,59,4682,6.49,6.46,4.03
1.09,Good,D,SI2,63.8,60,4682,6.57,6.49,4.16
1.06,Ideal,D,SI2,61.2,57,4682,6.59,6.51,4.01
1.1,Very Good,H,SI1,63.5,55,4682,6.55,6.49,4.14
0.95,Premium,F,SI1,62.3,60,4682,6.3,6.26,3.91
1.05,Premium,H,SI1,62.2,58,4682,6.5,6.46,4.03
1.03,Ideal,F,SI2,61.6,55,4683,6.46,6.49,3.99
1.02,Ideal,F,SI2,61.6,56,4684,6.52,6.49,4.01
0.9,Very Good,H,VS1,63.6,55,4685,6.15,6.11,3.9
0.9,Very Good,H,VS1,62.8,59,4685,6.07,6.15,3.84
1.08,Very Good,G,SI2,62.8,56,4685,6.48,6.6,4.11
1,Very Good,E,SI2,59.6,62,4685,6.45,6.51,3.86
1.01,Ideal,I,VS2,59.9,61,4685,6.49,6.53,3.9
1.02,Ideal,I,SI1,61.3,57,4685,6.47,6.49,3.97
0.9,Good,H,VS2,58.2,59,4685,6.36,6.33,3.69
1.01,Good,E,SI2,58.7,63,4685,6.52,6.6,3.85
1.2,Premium,J,SI2,58.7,59,4685,6.99,6.94,4.09
1.21,Premium,I,SI2,62.3,59,4686,6.82,6.77,4.23
1.07,Ideal,J,VS2,61.7,58,4686,6.58,6.55,4.05
1.07,Ideal,J,VS2,61.6,56,4686,6.59,6.55,4.04
1.24,Premium,J,SI1,61.8,58,4687,6.9,6.86,4.25
0.9,Premium,E,VS2,62.6,59,4687,6.14,6.06,3.82
0.9,Premium,F,VS1,59,58,4687,6.33,6.29,3.72
1.11,Premium,H,VS1,62.3,57,4687,6.67,6.62,4.14
1.05,Very Good,I,SI1,62.6,56,4688,6.49,6.45,4.05
1,Fair,F,SI1,56.9,63,4688,6.45,6.52,3.69
1.02,Very Good,H,SI1,63.5,58,4688,6.39,6.36,4.05
1.02,Premium,H,SI1,62.6,59,4688,6.43,6.38,4.01
1.01,Premium,E,SI2,62.9,59,4688,6.37,6.31,3.99
1.14,Premium,G,SI2,61.1,59,4688,6.77,6.72,4.12
1.02,Very Good,H,SI1,63.2,57,4688,6.44,6.38,4.05
1.15,Premium,E,SI2,62.3,58,4688,6.73,6.67,4.18
1.13,Premium,H,SI1,61.2,59,4689,6.68,6.65,4.08
1.1,Very Good,H,SI1,63,57,4689,6.5,6.54,4.11
0.9,Ideal,H,VS1,61.9,56,4689,6.17,6.23,3.84
1.06,Premium,E,SI1,63,56,4689,6.54,6.45,4.09
1.13,Premium,H,SI1,62.1,58,4689,6.7,6.66,4.15
1.13,Very Good,H,SI1,63.3,56,4689,6.65,6.62,4.2
1.01,Very Good,F,SI2,62.5,58,4690,6.39,6.41,4
1.01,Very Good,D,SI2,60.1,60,4690,6.41,6.47,3.87
1.25,Premium,J,SI2,61.5,57,4690,7,6.93,4.28
1.21,Very Good,J,VS2,63,57,4691,6.73,6.77,4.25
0.92,Ideal,F,SI2,61.5,53,4691,6.26,6.3,3.86
1.1,Premium,E,SI2,60.1,62,4691,6.69,6.65,4.01
1.01,Good,E,SI1,63.3,57,4692,6.33,6.37,4.02
1.09,Ideal,I,SI1,59.4,61,4692,6.68,6.73,3.98
1.05,Premium,H,SI1,61.9,58,4692,6.5,6.45,4.01
1.05,Very Good,H,SI1,63.1,60,4692,6.49,6.42,4.07
1.05,Premium,H,SI1,59.5,58,4692,6.69,6.61,3.96
1.11,Premium,G,SI2,58.8,59,4692,6.8,6.76,3.99
1.05,Very Good,H,SI1,63.5,57,4692,6.47,6.44,4.1
1.01,Very Good,H,VS2,63.3,58,4692,6.33,6.27,3.99
0.93,Premium,D,SI2,62,56,4692,6.27,6.22,3.87
1.27,Ideal,J,SI2,62.6,57,4693,6.85,6.88,4.3
0.9,Very Good,D,SI1,59.6,62,4693,6.19,6.22,3.7
0.9,Very Good,D,SI1,62.4,61,4693,6.13,6.17,3.84
0.9,Premium,D,SI1,62.2,58,4693,6.11,6.18,3.82
0.9,Very Good,D,SI1,62.8,59,4693,6.14,6.18,3.87
1.01,Very Good,I,SI1,61.4,62,4693,6.39,6.45,3.94
1.01,Ideal,J,VS1,61.2,57,4693,6.45,6.49,3.96
1.01,Ideal,H,SI2,61.1,56,4693,6.44,6.48,3.95
1.01,Ideal,H,SI2,62.4,57,4693,6.36,6.43,3.99
0.96,Good,D,SI1,61,61,4693,6.29,6.33,3.85
1.01,Ideal,E,SI2,62,56,4694,6.46,6.42,3.99
1.01,Ideal,G,SI1,62.3,57,4694,6.41,6.36,3.98
1.01,Premium,D,SI2,60.4,60,4694,6.52,6.46,3.92
1.04,Ideal,F,SI2,62,54,4695,6.49,6.51,4.03
1.13,Fair,I,VS2,55.9,67,4695,7.05,6.94,3.9
0.92,Ideal,D,SI1,61.8,55,4696,6.25,6.28,3.87
1.04,Ideal,I,VS1,63,56,4696,6.44,6.41,4.05
0.9,Very Good,G,VVS1,63.3,58,4697,6.05,6.14,3.86
1,Very Good,D,SI1,60.1,60,4697,6.47,6.55,3.91
1.09,Good,F,SI2,60.3,61,4698,6.64,6.69,4.02
1.07,Ideal,E,SI2,62.4,57,4698,6.55,6.52,4.08
1.33,Fair,F,I1,62,56,4698,7.05,7.01,4.36
1.11,Premium,F,SI1,60.4,58,4699,6.68,6.66,4.03
1.09,Premium,H,SI2,62,57,4700,6.61,6.55,4.08
0.93,Ideal,E,SI1,59.6,57,4700,6.37,6.42,3.81
1.07,Premium,F,SI2,62,58,4700,6.57,6.52,4.06
1.07,Premium,F,SI2,60.3,58,4700,6.68,6.62,4.01
1.09,Good,H,SI1,62.4,64,4700,6.61,6.51,4.09
1.15,Premium,E,SI2,61.8,56,4701,6.75,6.7,4.15
1.14,Very Good,J,VS1,60,60,4702,6.76,6.81,4.07
1,Very Good,H,SI1,62.3,60,4702,6.34,6.38,3.96
1,Ideal,H,SI1,60.3,56,4702,6.52,6.54,3.94
1,Premium,H,SI1,61.5,58,4702,6.37,6.45,3.94
1.25,Very Good,J,SI1,62.5,57,4702,6.83,6.86,4.28
1.14,Good,I,SI1,63.5,56,4702,6.58,6.62,4.19
1,Good,H,SI1,63.7,60,4702,6.3,6.33,4.02
1.14,Premium,H,SI2,60.6,59,4702,6.77,6.8,4.11
1,Very Good,H,SI1,62.7,59,4702,6.3,6.37,3.97
0.72,Ideal,E,VVS1,61.6,56,4702,5.75,5.77,3.55
1.16,Premium,J,VS2,62.2,59,4702,6.74,6.69,4.18
1.04,Very Good,G,SI2,60.6,57,4703,6.56,6.6,3.99
1.02,Very Good,H,SI1,63.5,56,4703,6.36,6.43,4.06
1.2,Good,H,SI2,64.1,57,4704,6.68,6.65,4.27
1.32,Premium,I,SI2,60.8,58,4704,7.03,7.11,4.3
1.02,Very Good,G,SI1,62.9,56,4704,6.36,6.4,4.01
1,Fair,D,SI1,66.3,58,4704,6.15,6.04,4.04
1.5,Fair,I,I1,66.1,57,4704,7.12,7.04,4.68
1.5,Fair,I,I1,69.7,56,4704,6.94,6.9,4.82
1,Very Good,F,SI1,63.1,57,4704,6.37,6.33,4.01
1,Ideal,H,VS2,62.5,58,4704,6.38,6.33,3.97
1.26,Ideal,I,SI2,59.6,57,4704,7.04,7.01,4.19
1,Premium,E,SI2,61.2,60,4704,6.45,6.42,3.94
1.12,Premium,I,SI1,60.8,57,4704,6.76,6.7,4.09
1.2,Very Good,I,SI1,63.3,57,4704,6.7,6.66,4.23
1.5,Fair,I,SI2,64.9,61,4704,7.14,7.09,4.62
1.2,Premium,J,VS1,62,59,4704,6.77,6.72,4.18
1.12,Premium,H,SI2,61.9,58,4704,6.74,6.66,4.15
1,Premium,F,SI1,60.3,61,4704,6.43,6.38,3.86
1,Premium,E,SI2,61.7,58,4704,6.39,6.34,3.93
1,Very Good,D,SI2,63.3,56,4704,6.38,6.35,4.03
1,Very Good,E,SI2,63.5,56,4704,6.38,6.31,4.03
1,Premium,E,SI2,61.4,61,4704,6.41,6.36,3.92
1,Premium,E,SI2,61.1,58,4704,6.48,6.44,3.95
1,Premium,D,SI1,62,58,4704,6.41,6.29,3.94
1,Fair,D,SI1,64.9,59,4704,6.2,6.13,4
1,Fair,D,SI1,65.9,54,4704,6.24,6.2,4.1
1.01,Very Good,H,SI1,63.1,59,4705,6.34,6.43,4.03
1.03,Good,H,SI1,59.3,56,4705,6.57,6.66,3.92
1.22,Fair,F,SI2,65,56,4705,6.71,6.8,4.39
0.91,Ideal,E,SI1,61,57,4706,6.27,6.32,3.84
1.01,Premium,E,VS2,60.8,58,4706,6.43,6.4,3.9
0.9,Very Good,E,VS2,60.4,60,4707,6.23,6.29,3.78
0.9,Very Good,E,VS2,62.2,56,4707,6.12,6.17,3.82
0.9,Very Good,E,VS2,63,58,4707,6.13,6.16,3.87
1.01,Very Good,G,SI1,62.4,60,4707,6.34,6.39,3.97
1.13,Ideal,G,SI2,60.8,56,4707,6.64,6.72,4.06
1.01,Very Good,H,SI1,63.3,57,4707,6.41,6.36,4.04
1.01,Premium,H,SI1,62.2,54,4707,6.48,6.41,4.01
1.01,Premium,H,SI1,62.6,61,4707,6.39,6.36,3.99
1.14,Ideal,J,SI1,61.7,54,4708,6.71,6.74,4.15
1.02,Ideal,G,SI1,60.3,56,4708,6.57,6.54,3.95
1.13,Ideal,H,VS2,62,55,4708,6.68,6.65,4.13
0.9,Very Good,E,VS2,60.6,60,4709,6.14,6.27,3.76
1.11,Ideal,H,SI2,61.4,57,4709,6.63,6.67,4.08
1.11,Ideal,I,SI1,61.9,57,4709,6.62,6.67,4.11
0.34,Ideal,D,I1,62.5,57,413,4.47,4.49,2.8
0.34,Ideal,D,I1,61.4,55,413,4.5,4.52,2.77
0.31,Ideal,I,SI1,60.9,57,414,4.36,4.41,2.67
0.23,Ideal,I,VVS1,63,56,414,3.94,3.9,2.47
0.23,Premium,I,VVS1,60.5,61,414,3.98,3.95,2.4
0.3,Good,D,SI2,60.8,65,414,4.26,4.29,2.6
0.23,Very Good,G,VVS1,61.3,59,414,3.94,3.96,2.42
0.23,Very Good,G,VVS1,60.2,59,415,4,4.01,2.41
0.29,Good,F,VS1,62.1,56,415,4.24,4.26,2.64
0.33,Ideal,F,SI2,61.4,55,416,4.46,4.5,2.75
0.3,Fair,J,VS2,64.8,58,416,4.24,4.16,2.72
0.33,Good,H,SI2,63.5,57,416,4.36,4.39,2.78
0.26,Ideal,I,VS1,62.5,53,417,4.08,4.11,2.56
0.31,Ideal,H,SI1,61.2,58,417,4.37,4.39,2.68
0.24,Very Good,F,VS1,62,56,417,3.94,3.99,2.46
0.24,Premium,E,VS2,62.6,58,417,3.99,4.03,2.51
0.24,Ideal,F,VS2,61.8,57,417,3.97,4.02,2.47
0.34,Very Good,H,SI2,58.6,62,417,4.6,4.62,2.7
0.3,Good,G,SI1,63.2,55,417,4.26,4.29,2.7
0.34,Premium,J,VS2,62.3,60,417,4.46,4.49,2.79
0.34,Good,F,SI2,63.9,56,417,4.4,4.43,2.82
0.26,Very Good,G,VS1,61.9,56,418,4.07,4.1,2.53
0.26,Very Good,G,VS1,62.1,56,418,4.07,4.11,2.54
0.31,Ideal,J,SI1,61.3,56,418,4.37,4.4,2.69
0.31,Premium,I,SI1,59.6,58,418,4.39,4.44,2.63
0.31,Ideal,I,SI1,62.5,56,418,4.29,4.35,2.7
0.31,Very Good,I,SI1,62.8,60,418,4.29,4.31,2.7
0.31,Premium,I,SI1,60.1,59,418,4.38,4.41,2.64
0.31,Ideal,I,SI1,62.2,56,418,4.34,4.37,2.71
0.31,Very Good,I,SI1,62.3,58,418,4.35,4.38,2.72
0.3,Ideal,H,VVS2,60.8,58,590,4.33,4.38,2.65
0.3,Ideal,H,VVS2,62.1,55,590,4.33,4.36,2.7
0.27,Very Good,F,VVS2,62.3,59,591,4.14,4.18,2.59
0.27,Very Good,F,VVS2,60.8,59,591,4.17,4.19,2.54
0.26,Very Good,F,VVS1,61.2,60,591,4.13,4.14,2.53
0.27,Very Good,F,VVS1,62,55,591,4.16,4.16,2.59
0.27,Very Good,E,VVS1,62.4,55,591,4.18,4.22,2.62
0.31,Ideal,F,VS2,61.8,53,591,4.36,4.38,2.7
0.31,Ideal,F,VS2,60.5,57,591,4.39,4.41,2.66
0.31,Ideal,F,VS2,61.3,55,591,4.35,4.39,2.68
0.31,Ideal,H,SI1,61.5,56,591,4.36,4.39,2.69
0.35,Good,F,SI2,63.8,56,591,4.48,4.45,2.85
0.32,Premium,H,SI1,60.9,60,591,4.43,4.4,2.69
0.32,Premium,H,SI1,61.8,56,591,4.43,4.4,2.73
0.32,Very Good,H,SI1,63.1,58,591,4.36,4.33,2.74
0.32,Premium,H,SI1,63,59,591,4.37,4.33,2.74
0.32,Very Good,H,SI1,63.5,57,591,4.39,4.34,2.77
0.32,Very Good,H,SI1,63.4,55,591,4.38,4.36,2.77
0.32,Premium,H,SI1,62.3,60,591,4.4,4.36,2.73
0.32,Premium,H,SI1,62.6,55,591,4.38,4.37,2.74
0.32,Premium,H,SI1,62,58,591,4.39,4.38,2.72
0.32,Good,H,SI1,63.7,55,591,4.33,4.3,2.75
0.35,Premium,J,VS1,62.2,58,591,4.54,4.49,2.81
0.35,Ideal,F,SI2,62.8,55,591,4.53,4.48,2.83
0.4,Good,J,VS2,64,57,591,4.67,4.7,3
0.29,Very Good,F,VVS2,60.8,63,592,4.28,4.31,2.61
0.31,Very Good,F,VS1,61.8,58,592,4.29,4.35,2.67
0.33,Ideal,I,VVS1,62.1,54,592,4.46,4.49,2.78
0.32,Ideal,H,VS1,61.6,56,592,4.42,4.46,2.73
0.33,Ideal,H,VS1,62.2,53.3,592,4.45,4.48,2.77
1.07,Good,D,SI2,61,62,4710,6.6,6.68,4.05
1.16,Ideal,G,SI2,61.7,56,4710,6.82,6.76,4.18
0.95,Very Good,E,SI1,62.8,59,4711,6.21,6.25,3.91
1.23,Very Good,H,SI2,63.2,58,4711,6.8,6.74,4.28
1.2,Very Good,G,SI2,61.2,59,4712,6.78,6.84,4.17
1.12,Ideal,G,SI2,62.4,56,4712,6.63,6.67,4.15
1.02,Ideal,E,SI2,60.3,57,4712,6.5,6.53,3.95
1,Good,F,SI1,63.3,61,4712,6.29,6.31,3.99
1,Very Good,F,SI1,61.8,59,4712,6.33,6.38,3.93
1.02,Good,E,SI2,63.4,57,4712,6.41,6.43,4.07
1.02,Good,E,SI2,63.2,56,4712,6.37,6.41,4.04
1.02,Very Good,D,SI2,62.7,59,4712,6.36,6.44,4.01
0.9,Good,F,SI1,63.6,55,4712,6.15,6.12,3.9
1.13,Ideal,G,SI2,61.3,57,4712,6.73,6.67,4.11
1.1,Premium,G,SI1,59.6,60,4712,6.74,6.7,4
0.9,Very Good,D,VS2,63.2,58,4712,6.16,6.09,3.87
1,Ideal,H,SI2,61.4,60,4713,6.35,6.41,3.92
1.05,Ideal,E,SI2,60.3,61,4714,6.56,6.6,3.97
1.22,Ideal,I,SI2,60.7,57,4714,6.92,6.88,4.19
1.31,Very Good,G,SI2,63.4,58,4714,6.91,6.8,4.35
0.9,Very Good,F,VS2,63.2,59,4715,6.08,6.04,3.83
0.9,Very Good,F,VS2,63.2,57,4715,6.12,6.07,3.85
1.2,Premium,J,VS2,60.3,59,4715,6.9,6.94,4.17
1.1,Very Good,F,SI2,59.1,57,4715,6.72,6.82,4
0.73,Very Good,D,VVS1,61.8,61,4716,5.7,5.73,3.53
1.07,Very Good,H,SI2,62.1,58,4716,6.53,6.57,4.07
1.2,Premium,J,SI1,60,61,4717,6.89,6.84,4.12
1.08,Premium,H,SI2,61.2,58,4717,6.62,6.58,4.04
1,Very Good,J,VVS1,63.5,59,4717,6.34,6.29,4.01
1.17,Fair,H,SI2,60,66,4717,6.86,6.78,4.09
0.9,Premium,D,VS2,61.6,62,4717,6.12,6.09,3.76
0.9,Good,D,VS2,57.7,61,4717,6.34,6.32,3.65
1.04,Premium,F,SI2,60.2,58,4717,6.6,6.55,3.96
1.02,Very Good,G,SI1,63.2,59,4718,6.41,6.37,4.04
1.02,Premium,G,SI1,62.3,59,4718,6.44,6.4,4
1.02,Premium,G,SI1,63,55,4718,6.45,6.4,4.05
1.02,Premium,G,SI1,60.8,58,4718,6.5,6.46,3.94
1.02,Premium,G,SI1,61,59,4718,6.48,6.44,3.94
1.02,Very Good,D,SI2,63.4,59,4718,6.41,6.37,4.05
1.02,Premium,D,SI2,61.5,56,4718,6.51,6.47,3.99
1.02,Premium,D,SI2,60.3,58,4718,6.52,6.48,3.92
1.01,Very Good,G,SI1,60,58,4719,6.51,6.55,3.92
1.01,Very Good,G,SI1,60.2,58,4719,6.5,6.59,3.94
1.01,Good,D,SI2,63.6,57,4719,6.35,6.39,4.05
1.01,Premium,G,SI1,59.8,58,4719,6.54,6.58,3.92
1.01,Very Good,D,SI2,61.5,56,4719,6.39,6.46,3.95
1,Very Good,E,SI1,61,61,4719,6.4,6.45,3.92
1.11,Ideal,H,SI2,62.6,56,4719,6.58,6.65,4.14
1.06,Premium,F,SI2,62.5,58,4719,6.54,6.41,4.05
1.32,Premium,I,VS1,62.4,58,4719,7.01,6.96,4.36
1.12,Premium,H,SI1,61.6,58,4719,6.72,6.62,4.11
0.91,Very Good,D,VS2,62.7,59,4720,6.13,6.16,3.85
1.12,Ideal,F,SI2,61.6,57,4720,6.68,6.66,4.11
0.97,Premium,D,SI1,62,60,4721,6.25,6.29,3.89
1.06,Very Good,F,SI1,62.5,58,4721,6.46,6.5,4.05
1,Ideal,F,SI2,62.7,57,4721,6.37,6.42,4.01
0.92,Very Good,H,VS1,59.7,63,4721,6.34,6.29,3.77
1,Good,H,VS2,63.6,61,4722,6.25,6.21,3.96
1.05,Ideal,I,SI2,61.8,59,4723,6.53,6.49,4.02
1.04,Premium,D,SI2,61,59,4724,6.51,6.54,3.98
1.04,Very Good,G,SI1,59.2,61,4724,6.63,6.68,3.94
1.12,Very Good,I,SI1,61.7,58.1,4724,6.6,6.66,4.09
1.02,Ideal,H,SI1,60,59,4724,6.56,6.55,3.93
0.9,Ideal,F,SI1,61.3,56,4724,6.21,6.23,3.81
0.93,Ideal,D,SI1,61.6,57,4724,6.27,6.33,3.88
1.14,Ideal,I,SI1,61.8,57,4724,6.76,6.68,4.15
1,Premium,H,SI1,62.7,58,4724,6.41,6.32,3.99
1.25,Good,I,SI2,63.9,56,4725,6.81,6.77,4.34
1.17,Ideal,G,SI2,61.1,56,4725,6.8,6.86,4.17
1,Very Good,G,SI2,62.6,58,4725,6.34,6.38,3.98
1.1,Fair,D,SI2,64.6,54,4725,6.56,6.49,4.22
1.1,Premium,I,SI1,61.2,61,4725,6.66,6.61,4.01
1.1,Ideal,H,SI2,63.1,58,4725,6.54,6.53,4.12
1.1,Premium,D,SI2,62.4,58,4725,6.6,6.57,4.11
0.97,Premium,F,SI1,59.9,59,4726,6.39,6.36,3.82
1.01,Very Good,D,SI2,61.9,58,4727,6.43,6.49,4
1.02,Very Good,H,SI1,61.6,58,4727,6.49,6.54,4.01
1,Good,D,SI2,61.1,61,4727,6.37,6.43,3.91
1.23,Good,J,VS2,63.6,60,4727,6.77,6.73,4.29
1.07,Very Good,I,SI1,59.1,59,4728,6.68,6.71,3.96
0.91,Premium,E,SI1,59.8,59,4729,6.28,6.23,3.74
0.9,Very Good,D,VS2,58.8,61,4729,6.27,6.32,3.7
1.05,Ideal,F,SI1,61.8,57,4729,6.51,6.54,4.03
1.05,Good,F,SI1,57.9,62,4729,6.68,6.73,3.88
1,Premium,D,SI2,62.4,58,4730,6.33,6.36,3.96
1.38,Fair,G,SI2,61.2,59,4730,7.19,7.13,4.38
1.03,Premium,E,SI2,61.8,56,4730,6.5,6.47,4.01
1.5,Good,G,I1,64,61,4731,7.15,7.04,0
0.91,Ideal,G,SI1,61.9,56,4731,6.22,6.18,3.84
1,Good,H,VS1,62.1,64,4732,6.4,6.18,3.91
1.3,Premium,H,SI2,60.4,61,4732,7.09,7.04,4.27
1,Fair,F,VS2,66.7,57,4732,6.11,6.04,4.05
1,Very Good,H,VS1,63.3,53,4732,6.37,6.29,4.01
1,Premium,H,VS1,62.7,58,4732,6.37,6.33,3.98
1,Premium,H,VS1,59.1,60,4732,6.45,6.42,3.8
1,Fair,H,VS1,64.1,60,4732,6.3,6.22,4.01
1.1,Ideal,H,SI2,62,55,4733,6.61,6.65,4.11
1.08,Ideal,G,SI2,62.1,57,4733,6.56,6.58,4.08
1.09,Ideal,G,SI2,61.7,57,4733,6.57,6.62,4.07
1.22,Premium,I,SI2,61.5,61,4735,6.89,6.83,4.22
1.22,Premium,I,SI2,61.5,61,4735,6.89,6.83,4.22
0.9,Premium,D,SI1,59.4,61,4735,6.32,6.3,3.75
0.9,Premium,D,SI1,63,56,4735,6.14,6.09,3.85
1.22,Premium,I,SI2,61.7,59,4735,6.84,6.8,4.21
1,Good,G,SI1,63.9,60,4737,6.22,6.27,3.99
1,Ideal,G,SI1,62.7,56,4737,6.36,6.39,4
1.24,Very Good,J,SI2,60.4,61,4737,6.85,6.92,4.16
1.33,Premium,F,SI2,60.4,60,4737,7.17,7.11,4.31
1.14,Premium,F,SI2,62.9,59,4737,6.64,6.62,4.17
1.06,Premium,E,SI2,60.5,60,4737,6.67,6.61,4.02
0.95,Very Good,E,SI1,61.6,56,4738,6.31,6.36,3.9
1.02,Ideal,I,SI1,62,56,4738,6.44,6.46,4
1,Very Good,I,VS2,64,54,4739,6.28,6.34,4.04
0.9,Good,D,VS2,62.6,62,4739,6.11,6.15,3.84
1.05,Premium,H,VS2,60.5,58,4739,6.7,6.63,4.03
0.91,Premium,E,VS2,62.8,59,4739,6.17,6.15,3.87
0.91,Premium,E,VS2,61.6,58,4739,6.2,6.18,3.81
0.91,Very Good,F,VS1,63.5,56,4739,6.18,6.14,3.91
0.93,Premium,E,SI1,62.8,56,4739,6.26,6.2,3.91
1.08,Premium,H,SI1,61.7,59,4740,6.56,6.6,4.06
1.08,Ideal,H,SI1,62.7,57,4740,6.48,6.51,4.07
0.9,Very Good,H,VVS2,62.4,58,4740,6.12,6.15,3.83
0.8,Ideal,G,VVS2,61.5,55,4740,5.95,5.99,3.68
0.8,Ideal,G,VVS2,61.4,57,4740,5.96,6,3.67
1.04,Ideal,F,SI2,61.2,57,4740,6.54,6.6,4.02
0.9,Ideal,H,SI1,61.6,56,4740,6.17,6.23,3.82
1.21,Premium,F,SI2,61.5,57,4740,6.93,6.88,4.25
1,Very Good,G,SI1,59.3,63,4741,6.44,6.48,3.83
1.04,Premium,G,SI1,60.6,61,4742,6.63,6.59,4
1.05,Premium,E,SI2,59.5,59,4742,6.65,6.59,3.94
1.02,Ideal,H,SI2,59.8,58,4742,6.55,6.59,3.93
1.08,Good,E,SI2,63.7,57,4742,6.54,6.49,4.15
1.05,Premium,E,SI2,60.4,58,4742,6.59,6.55,3.97
1.16,Ideal,I,SI1,61.5,60,4742,6.76,6.71,4.14
1.08,Premium,E,SI2,60.2,58,4742,6.68,6.61,4
1.26,Ideal,J,SI2,62.5,53,4742,6.9,6.86,4.3
1.21,Premium,H,SI1,60.5,60,4743,6.81,6.72,4.09
1.15,Premium,H,SI2,61.6,60,4743,6.72,6.75,4.15
1.15,Very Good,H,SI2,62,58,4743,6.66,6.7,4.14
1,Ideal,E,SI2,61.8,57,4743,6.39,6.43,3.96
1.01,Very Good,H,SI1,62.7,58,4743,6.36,6.34,3.98
1.31,Premium,F,SI2,62.7,61,4743,7.03,6.86,4.36
0.97,Ideal,G,SI2,61.6,56,4743,6.31,6.39,3.91
1.01,Good,E,SI1,62.6,61,4743,6.38,6.43,4.01
1,Premium,F,VS2,58.7,56,4743,6.46,6.42,3.78
1.11,Premium,I,VS2,58.3,60,4744,6.84,6.78,3.97
1.11,Premium,I,VS2,63,53,4744,6.64,6.59,4.17
1.2,Ideal,J,SI2,63.3,54,4744,6.78,6.72,4.27
1.2,Ideal,J,SI2,61.7,56,4744,6.87,6.79,4.21
0.91,Good,G,VS1,64.1,60,4744,6.11,6.06,3.9
1.03,Very Good,H,SI2,61.3,56,4745,6.5,6.53,3.99
1.06,Ideal,I,SI1,61.9,54,4745,6.56,6.59,4.07
1.01,Premium,H,VS2,62.6,60,4745,6.39,6.36,3.99
1.19,Premium,I,SI2,62.6,58,4745,6.75,6.7,4.21
1.02,Ideal,F,SI2,61.8,57,4746,6.43,6.49,3.99
0.91,Very Good,D,SI1,62.3,60,4746,6.15,6.21,3.85
1.03,Very Good,G,SI1,61,58,4746,6.5,6.54,3.98
1.26,Fair,D,SI2,64.5,59,4746,6.75,6.71,4.34
1.02,Ideal,H,SI1,62.5,57,4746,6.41,6.46,4.02
1.13,Premium,I,SI1,62.8,57,4746,6.68,6.64,4.18
1.18,Premium,H,SI1,60.1,60,4746,6.89,6.75,4.1
1.13,Premium,H,SI2,62.7,55,4746,6.69,6.61,4.17
1.11,Premium,H,SI1,58.9,59,4748,6.82,6.76,4
0.94,Premium,F,SI1,59.8,61,4748,6.39,6.35,3.81
1,Very Good,F,SI2,63.3,60,4749,6.32,6.25,3.98
1.01,Good,H,SI1,63.4,59,4749,6.28,6.34,4
1.01,Ideal,H,SI1,62.6,55,4749,6.39,6.43,4.01
1.01,Good,H,SI1,63.1,59,4749,6.32,6.36,4
1.01,Good,H,SI1,63.7,60,4749,6.3,6.35,4.03
1.01,Very Good,I,SI1,63.3,54,4749,6.34,6.36,4.02
1,Premium,F,SI2,61.4,61,4749,6.47,6.4,3.95
1.06,Ideal,I,SI1,61.2,56,4749,6.6,6.57,4.03
1.06,Ideal,H,SI2,59.9,58,4749,6.67,6.63,3.98
1.1,Ideal,G,SI2,62.1,56,4750,6.63,6.61,4.11
0.93,Premium,G,VS2,62.2,59,4750,6.26,6.21,3.88
1.01,Premium,E,SI2,61.6,56,4751,6.45,6.4,3.96
0.81,Ideal,G,IF,62.4,54,4751,5.93,5.99,3.72
1.01,Fair,D,SI1,63.5,58,4751,6.35,6.25,4
1.01,Fair,H,VS2,64.5,60,4751,6.3,6.25,4.05
1.01,Premium,E,SI2,62.6,59,4751,6.39,6.36,3.99
1.01,Premium,E,SI2,61.5,58,4751,6.43,6.4,3.95
1.01,Good,E,SI2,63.7,58,4751,6.36,6.32,4.04
1.01,Ideal,E,SI2,61.2,54,4751,6.52,6.49,3.98
1.01,Premium,E,SI2,59.5,59,4751,6.58,6.54,3.9
1.01,Ideal,E,SI2,62.2,54,4751,6.43,6.39,3.99
1.01,Premium,E,SI2,62.6,57,4751,6.35,6.33,3.97
1.01,Fair,D,SI1,64.6,60,4751,6.12,6.08,3.94
1.01,Premium,D,SI1,62.8,58,4751,6.37,6.3,3.98
1.01,Ideal,E,SI2,59.2,56,4751,6.63,6.59,3.91
1.01,Ideal,E,SI2,61.1,57,4751,6.52,6.48,3.97
1.01,Fair,D,SI1,66.9,54,4751,6.25,6.21,4.17
1.2,Good,I,SI1,63.1,58,4752,6.66,6.72,4.22
1.2,Very Good,J,SI1,61.4,59,4752,6.82,6.87,4.2
1.03,Ideal,D,SI2,60.7,55,4752,6.53,6.61,3.99
1.07,Ideal,G,SI2,62.1,55,4752,6.54,6.61,4.08
1.04,Ideal,G,SI2,62,56,4752,6.52,6.49,4.03
1,Very Good,D,SI2,62.8,58,4753,6.33,6.37,3.99
1.01,Ideal,D,SI2,61.2,56,4753,6.41,6.46,3.94
1.21,Very Good,J,VS2,59.9,59,4754,6.86,6.92,4.13
1.02,Premium,H,SI1,59.2,58,4754,6.6,6.57,3.9
1.04,Ideal,F,SI2,62.1,57,4754,6.48,6.46,4.02
0.96,Very Good,F,SI1,62.1,62,4755,6.24,6.32,3.9
1.11,Premium,G,SI2,62.3,58,4755,6.65,6.61,4.13
1.11,Premium,G,SI2,61.2,59,4755,6.74,6.66,4.1
1.11,Ideal,G,SI2,60.5,56,4755,6.71,6.67,4.05
1.11,Premium,G,SI2,61.5,58,4755,6.67,6.6,4.08
1.01,Very Good,I,VS1,62.2,60,4756,6.39,6.35,3.96
1.08,Ideal,I,SI1,60.3,60,4757,6.67,6.62,4.01
1.03,Ideal,E,SI2,62.3,56,4758,6.44,6.52,4.04
1.03,Premium,E,SI2,61.8,59,4758,6.42,6.47,3.98
1,Good,G,SI1,57.2,59,4758,6.66,6.62,3.8
1,Premium,D,SI2,61.6,60,4758,6.37,6.33,3.91
1.2,Very Good,D,SI2,63.5,59,4758,6.61,6.56,4.18
1.02,Fair,H,SI1,65.5,60,4758,6.29,6.22,4.1
1.19,Premium,G,SI2,58.9,60,4758,7,6.92,4.09
0.91,Very Good,E,VS2,62.2,60,4759,6.13,6.21,3.84
1.01,Good,F,SI1,63.5,59,4759,6.3,6.39,4.03
1.01,Very Good,F,SI1,62.8,58,4759,6.35,6.43,4.01
1.01,Very Good,I,SI1,62.9,58,4759,6.36,6.4,4.01
1.03,Ideal,H,SI1,61,55,4759,6.56,6.59,4.01
0.9,Very Good,E,SI1,62.8,58,4760,6.09,6.13,3.84
1.01,Very Good,D,SI2,62.9,60,4760,6.35,6.46,4.03
1,Ideal,E,SI2,61.9,56,4760,6.43,6.4,3.97
1,Good,I,VS2,61.7,60.2,4761,6.29,6.35,3.9
1.19,Premium,J,VS2,62.8,57,4761,6.78,6.7,4.23
1.09,Premium,H,SI2,59.6,61,4761,6.69,6.63,3.97
1.02,Very Good,I,VS2,59.3,59,4762,6.57,6.62,3.91
1.18,Very Good,I,SI2,63.5,57,4763,6.75,6.8,4.3
0.99,Ideal,I,SI1,61.8,57,4763,6.4,6.42,3.96
0.9,Good,H,VVS1,63.8,59,4763,6.13,6.09,3.9
1.05,Very Good,E,SI2,63.3,57,4763,6.5,6.46,4.1
1.1,Ideal,H,SI1,62.5,57,4764,6.6,6.56,4.11
1.25,Ideal,J,SI1,62.7,57,4764,6.86,6.88,4.31
0.81,Ideal,E,VS1,61.6,55,4764,5.96,6.02,3.69
1.03,Premium,D,SI2,61.7,58,4764,6.5,6.47,4
1.03,Very Good,G,SI1,63.2,58,4764,6.43,6.38,4.05
1.03,Ideal,D,SI2,62.8,56,4764,6.46,6.43,4.05
1.03,Premium,D,SI2,61.3,61,4764,6.49,6.46,3.97
1.03,Ideal,D,SI2,61.2,57,4764,6.59,6.51,4.01
1.03,Ideal,G,SI1,62.4,57,4764,6.52,6.47,4.05
1.07,Ideal,I,VS2,62.1,56,4764,6.61,6.53,4.08
1.03,Premium,D,SI2,62.5,54,4764,6.5,6.42,4.04
1.03,Very Good,G,SI1,63.1,57,4764,6.45,6.41,4.06
1.07,Premium,H,SI1,60.7,60,4764,6.64,6.61,4.02
1.03,Ideal,D,SI2,61.8,56,4764,6.51,6.46,4.01
1.07,Ideal,F,SI2,62,57,4764,6.6,6.49,4.06
1.07,Ideal,F,SI2,61.5,57,4764,6.6,6.57,4.05
0.91,Fair,D,VS2,64.5,55,4765,6.24,6.07,3.97
1.15,Very Good,J,VS2,62.9,57,4766,6.73,6.63,4.2
1.13,Very Good,I,SI1,61.5,60,4766,6.68,6.72,4.12
1.12,Good,I,VS2,63.8,55,4766,6.57,6.63,4.21
1.02,Very Good,G,SI1,60.8,60,4766,6.5,6.55,3.97
1.01,Good,E,SI1,64.3,59,4766,6.31,6.34,4.07
1.01,Very Good,E,SI1,58.6,58,4766,6.52,6.58,3.84
1.01,Very Good,E,SI1,62.9,59,4766,6.3,6.38,3.99
1.09,Good,F,SI2,63.2,58,4766,6.49,6.54,4.12
1.02,Ideal,H,SI2,61.4,58,4766,6.47,6.52,3.99
1,Ideal,E,SI2,61.9,56,4766,6.39,6.43,3.97
1.15,Very Good,H,SI2,63.2,58,4767,6.64,6.68,4.21
1.01,Ideal,H,SI1,61.9,58,4767,6.42,6.48,3.99
1.11,Premium,G,SI1,61.5,58,4768,6.73,6.63,4.1
1.03,Very Good,G,SI2,63.9,59,4769,6.33,6.39,4.07
1.06,Very Good,G,SI2,61,57,4769,6.58,6.61,4.02
1.11,Very Good,E,SI2,62,58,4769,6.61,6.68,4.12
1.01,Premium,H,VS2,62.4,58,4769,6.42,6.36,3.99
1.01,Premium,H,VS2,62.3,62,4769,6.39,6.35,3.97
1.03,Ideal,F,SI2,61.6,55,4769,6.49,6.46,3.99
1.21,Premium,J,SI1,59.9,60,4770,6.89,6.86,4.12
0.9,Ideal,E,VS2,62.7,56,4770,6.14,6.18,3.86
0.9,Good,E,VS2,63.7,54,4770,6.13,6.15,3.91
0.9,Premium,F,VS1,59,58,4770,6.29,6.33,3.72
0.9,Good,F,VS1,62.8,57,4770,6.04,6.1,3.81
0.9,Ideal,E,SI2,61.8,56,4770,6.18,6.22,3.83
0.91,Fair,E,VS1,64.5,58,4770,6.14,6.1,3.95
1.04,Premium,F,SI1,61.5,59,4770,6.53,6.47,4
1.04,Ideal,F,SI1,62.2,57,4770,6.5,6.4,4.01
1.01,Premium,H,SI1,59.5,59,4771,6.56,6.52,3.89
1.11,Ideal,I,SI1,62.3,58,4771,6.6,6.65,4.13
1.2,Ideal,H,VS2,62.8,57,4771,6.71,6.67,4.2
1.01,Premium,H,SI1,60.7,58,4771,6.49,6.45,3.93
1.08,Ideal,G,SI1,61.4,56,4771,6.62,6.6,4.06
1.15,Premium,H,SI1,60.2,60,4772,6.87,6.78,4.11
1.23,Ideal,I,SI2,62.3,55,4773,6.85,6.82,4.26
1.23,Ideal,I,SI2,62.3,55,4773,6.85,6.82,4.26
0.9,Ideal,G,VS2,61.7,56,4773,6.19,6.26,3.84
1.01,Ideal,H,SI1,62.9,55,4773,6.35,6.4,4.01
1.01,Ideal,H,SI1,62.2,58,4773,6.37,6.43,3.98
1.23,Premium,I,SI2,62.1,59,4773,6.83,6.79,4.23
1.06,Premium,F,SI1,61.9,58,4774,6.53,6.58,4.06
1,Ideal,D,SI1,60.2,57,4774,6.48,6.54,3.92
1.06,Premium,F,SI1,62.4,58,4774,6.51,6.56,4.07
1.01,Premium,F,SI1,62.2,58,4775,6.35,6.28,3.93
0.91,Ideal,G,VS1,62.3,55,4775,6.22,6.17,3.86
1.15,Premium,G,SI1,62,58,4776,6.68,6.77,4.17
1.19,Premium,I,SI1,62.2,58,4777,6.73,6.77,4.2
1,Very Good,E,SI2,61.2,58,4777,6.37,6.41,3.91
1.2,Premium,J,SI1,58.5,61,4778,6.95,6.89,4.05
1.09,Ideal,J,VS2,43,54,4778,6.53,6.55,4.12
0.9,Good,F,VS2,62.8,58,4778,6.04,6.09,3.81
1.13,Ideal,F,SI2,62.3,57,4778,6.67,6.61,4.14
0.29,Fair,D,VS2,64.7,62,592,4.14,4.11,2.67
0.32,Good,F,SI1,63.8,59,593,4.33,4.29,2.75
0.41,Very Good,H,SI2,61.5,59,593,4.8,4.82,2.96
0.37,Very Good,E,SI1,61.4,60,593,4.6,4.62,2.83
0.36,Very Good,E,SI1,63.5,58,593,4.46,4.49,2.84
0.38,Ideal,I,SI1,61.9,54,593,4.64,4.67,2.88
0.38,Ideal,I,SI1,61.8,54,593,4.66,4.7,2.89
0.3,Fair,F,VS1,61.7,66,593,4.25,4.31,2.64
0.31,Ideal,G,SI1,62.2,55,593,4.38,4.36,2.72
0.31,Premium,G,SI1,58.8,62,593,4.42,4.39,2.59
0.31,Premium,G,SI1,61.4,58,593,4.35,4.31,2.66
0.31,Premium,G,SI1,61.8,60,593,4.35,4.32,2.68
0.31,Ideal,G,SI1,62.8,55,593,4.38,4.32,2.73
0.31,Premium,G,SI1,62.1,58,593,4.36,4.33,2.7
0.31,Premium,G,SI1,61.9,56,593,4.38,4.34,2.7
0.31,Ideal,G,SI1,62.2,55,593,4.36,4.35,2.71
0.31,Very Good,G,SI1,63.1,59,593,4.33,4.29,2.72
0.31,Premium,G,SI1,62.6,58,593,4.34,4.29,2.7
0.31,Premium,G,SI1,63,58,593,4.34,4.3,2.72
0.31,Very Good,G,SI1,63.2,54,593,4.33,4.31,2.73
0.31,Premium,G,SI1,62.4,55,593,4.34,4.31,2.7
0.31,Very Good,G,SI1,63.2,57,593,4.3,4.27,2.71
0.31,Premium,D,SI2,61.8,60,593,4.37,4.33,2.69
0.31,Premium,D,SI2,60.1,58,593,4.4,4.38,2.64
0.31,Good,D,SI2,63.7,58,593,4.3,4.27,2.73
0.31,Premium,D,SI2,61.5,60,593,4.34,4.31,2.66
0.31,Good,G,SI1,63.6,57,593,4.33,4.29,2.74
0.31,Ideal,G,SI1,63,56,593,4.34,4.3,2.72
0.31,Premium,G,SI1,61.5,59,593,4.38,4.34,2.68
0.31,Premium,G,SI1,61.7,55,593,4.38,4.37,2.7
1.06,Ideal,G,SI2,62.2,56,4778,6.55,6.48,4.05
1.27,Ideal,J,SI2,62.6,57,4779,6.88,6.85,4.3
1.01,Premium,H,VS1,61.9,57,4779,6.43,6.39,3.97
1.01,Ideal,H,VS1,61.5,56,4779,6.48,6.43,3.97
0.9,Very Good,G,VS1,62.7,56,4780,6.1,6.14,3.84
0.99,Very Good,E,SI2,61.8,59,4780,6.3,6.33,3.9
1,Very Good,E,SI2,62.9,60,4781,6.3,6.35,3.98
0.8,Ideal,D,VS2,61.3,56,4781,5.97,6,3.67
1.01,Good,G,SI1,63.3,59,4781,6.24,6.31,3.97
1.03,Ideal,I,SI1,61.1,55,4782,6.53,6.57,4
1.03,Ideal,I,SI1,62.2,54,4782,6.46,6.5,4.03
1.22,Good,H,SI2,61.5,64,4782,6.93,6.87,4.25
0.9,Ideal,H,VVS1,61.9,57,4783,6.19,6.24,3.85
1.01,Ideal,G,SI2,61.5,57,4783,6.43,6.45,3.96
1.24,Ideal,J,SI2,60.1,57,4783,7.02,6.98,4.21
1.09,Good,H,SI1,63.2,57,4784,6.54,6.57,4.14
1.09,Ideal,H,SI1,62.2,56,4784,6.56,6.59,4.09
1.09,Ideal,H,SI1,62.4,55,4784,6.59,6.68,4.14
1.09,Ideal,H,SI1,61.9,56,4784,6.61,6.64,4.1
1.09,Very Good,H,SI1,61.8,58,4784,6.58,6.63,4.08
1.14,Very Good,I,VS2,62.5,59,4785,6.63,6.66,4.15
1.06,Very Good,H,SI1,62.8,58,4785,6.47,6.49,4.07
1.06,Premium,H,SI1,61.6,59,4785,6.54,6.55,4.03
1.01,Ideal,D,SI2,62.6,56,4785,6.34,6.4,3.99
1.16,Very Good,H,SI2,61.8,58,4785,6.75,6.81,4.19
1.16,Very Good,I,SI1,62.7,57,4785,6.67,6.76,4.21
1.2,Very Good,I,SI1,61.7,56,4785,6.82,6.76,4.19
1.01,Premium,G,SI1,61,59,4785,6.45,6.51,3.95
0.91,Very Good,F,SI1,62.3,58,4785,6.14,6.19,3.84
1,Good,D,SI1,65.1,54,4786,6.23,6.27,4.07
1.09,Premium,I,VS1,62.3,54,4786,6.65,6.61,4.13
1.01,Ideal,E,SI2,61.1,59,4787,6.53,6.47,3.97
1,Premium,H,SI1,61.3,60,4788,6.38,6.35,3.9
1,Premium,H,SI1,59.4,58,4788,6.51,6.46,3.85
1,Good,H,SI1,57.5,62,4788,6.51,6.47,3.73
1.01,Ideal,E,SI2,62.2,56,4788,6.42,6.45,4
1.01,Very Good,G,SI1,59.9,56,4788,6.45,6.6,3.91
1,Premium,H,SI1,62.3,60,4788,6.38,6.34,3.96
1,Good,H,SI1,63.7,60,4788,6.33,6.3,4.02
1.14,Premium,I,SI1,62.2,58,4788,6.7,6.67,4.16
1.14,Premium,I,SI1,59.1,58,4788,6.83,6.81,4.03
1.14,Ideal,H,SI2,62.6,57,4788,6.72,6.63,4.18
1.14,Premium,I,SI1,60.1,60,4788,6.81,6.76,4.08
1,Premium,H,SI1,62.1,56,4788,6.48,6.38,3.99
1,Premium,H,SI1,61.5,58,4788,6.45,6.37,3.94
1,Ideal,H,SI1,60.3,56,4788,6.54,6.52,3.94
1.14,Very Good,I,SI1,63.5,56,4788,6.62,6.58,4.19
1,Premium,H,SI1,62.7,59,4788,6.37,6.3,3.97
0.9,Ideal,E,VS2,62.3,57,4788,6.19,6.17,3.85
1.14,Premium,H,SI2,60.6,59,4788,6.8,6.77,4.11
1.14,Ideal,H,SI1,60.3,57,4789,6.79,6.85,4.11
1.24,Very Good,J,SI2,62.8,58,4789,6.77,6.83,4.27
1.08,Very Good,I,VS1,62.5,57,4790,6.51,6.54,4.08
1.01,Premium,E,SI2,60.4,60,4790,6.46,6.49,3.91
1.08,Fair,E,SI1,53.8,63,4790,6.99,6.81,3.71
0.94,Good,D,SI1,63.6,56,4790,6.25,6.2,3.96
1.1,Very Good,E,SI1,61.3,58,4791,6.64,6.71,4.09
1.21,Very Good,I,SI2,62.1,59,4791,6.8,6.86,4.24
1.21,Very Good,I,SI2,59.9,58,4791,6.91,6.94,4.15
1.04,Very Good,H,SI1,62.2,57,4791,6.42,6.48,4.01
1.24,Premium,I,SI1,62.4,59,4791,6.89,6.87,4.29
1.01,Fair,F,VS2,64.8,56,4791,6.3,6.25,4.07
1.01,Fair,F,VS2,64.8,56,4791,6.3,6.25,4.07
1.01,Fair,F,VS2,66.1,61,4791,6.1,6.04,4.01
0.92,Ideal,E,SI1,61,55,4791,6.27,6.25,3.82
1,Premium,H,VS2,63,59,4791,6.43,6.34,4.02
1.22,Very Good,J,VS2,61.9,57,4793,6.82,6.87,4.24
0.93,Premium,G,VS1,62.1,59,4793,6.21,6.16,3.84
1.01,Very Good,I,SI1,63.5,53,4794,6.32,6.4,4.04
1.09,Premium,G,SI2,61.1,59,4794,6.69,6.63,4.07
0.91,Very Good,E,VS2,59.4,59,4795,6.3,6.36,3.76
0.9,Very Good,E,SI1,61.7,58,4795,6.15,6.2,3.81
1.25,Ideal,I,VS2,60,57,4795,7.07,7.02,4.23
0.9,Ideal,F,SI1,61.8,58,4795,6.21,6.24,3.85
1.01,Premium,F,SI2,62.2,57,4796,6.43,6.36,3.98
1.02,Premium,H,SI1,62,60,4796,6.37,6.4,3.96
1.02,Good,H,SI1,63.4,57,4796,6.36,6.42,4.05
1.02,Very Good,H,SI1,62.9,59,4796,6.38,6.41,4.02
1.01,Ideal,F,SI2,60,57,4796,6.55,6.51,3.92
0.9,Fair,D,SI1,64,63,4796,6.12,6.04,3.89
1.05,Very Good,E,SI2,60.5,58,4797,6.55,6.6,3.98
1.16,Ideal,H,SI2,61.9,56,4797,6.73,6.77,4.18
1.04,Ideal,F,SI2,62.2,56,4797,6.45,6.48,4.02
1.02,Premium,H,SI2,62.6,58,4798,6.44,6.4,4.02
0.76,Very Good,E,IF,61.9,56,4798,5.83,5.85,3.62
1.02,Ideal,I,VS1,60.2,57,4798,6.56,6.49,3.93
1,Fair,E,SI1,65.8,59,4798,6.07,6.15,4.02
1.02,Fair,D,SI1,66.4,60,4798,6.29,6.21,4.15
1.19,Ideal,H,SI2,61.7,56,4798,6.83,6.78,4.2
1.12,Premium,G,SI2,60.8,55,4798,6.84,6.69,4.11
1.02,Ideal,E,SI2,62.9,57,4798,6.44,6.38,4.03
1,Fair,F,SI1,65.4,59,4798,6.27,6.2,4.08
1.02,Ideal,H,VVS2,60.9,57,4798,6.49,6.44,3.94
1.02,Ideal,E,SI2,62.1,55,4798,6.51,6.4,4.01
1,Very Good,F,SI1,63.3,61,4798,6.31,6.29,3.99
1.12,Ideal,G,SI2,62.4,56,4798,6.67,6.63,4.15
1.02,Ideal,E,SI2,60.3,57,4798,6.53,6.5,3.95
1.02,Ideal,D,SI1,62.1,53,4798,6.43,6.38,3.98
1.01,Very Good,D,SI2,60.5,58,4799,6.45,6.5,3.92
1.07,Ideal,E,SI2,61.2,56,4799,6.63,6.66,4.07
1.03,Very Good,H,SI1,60.4,58,4800,6.48,6.56,3.94
0.63,Very Good,D,IF,59.6,59,4800,5.55,5.59,3.32
1.03,Ideal,H,SI1,62.4,56,4800,6.45,6.5,4.04
0.9,Premium,F,VS2,62.4,58,4801,6.15,6.22,3.86
0.9,Ideal,F,VS2,62.6,56,4801,6.16,6.23,3.88
1.04,Ideal,H,SI1,62.1,57,4801,6.49,6.52,4.04
0.91,Ideal,F,SI1,62,57,4801,6.22,6.24,3.86
0.71,Ideal,E,VVS1,62,56,4802,5.69,5.73,3.54
1.01,Ideal,G,SI2,61.4,57,4803,6.44,6.48,3.97
0.9,Very Good,D,VS2,60.9,62,4804,6.11,6.18,3.74
1.04,Ideal,E,SI2,62,55,4804,6.48,6.51,4.03
1.04,Ideal,E,SI2,61.4,56,4804,6.5,6.56,4.01
1.01,Very Good,I,SI1,64.4,54,4805,6.31,6.4,4.09
1.01,Ideal,D,SI2,63,54,4805,6.43,6.39,4.04
1.01,Premium,G,SI1,60,58,4805,6.55,6.51,3.92
1.01,Good,D,SI2,63.6,57,4805,6.39,6.35,4.05
1,Good,G,VS1,63.7,60,4805,6.38,6.31,4.04
1.23,Ideal,I,SI2,60.6,57,4805,6.97,6.88,4.2
1,Premium,E,SI1,59.1,58,4805,6.52,6.44,3.83
1.01,Premium,G,SI1,60.2,60,4805,6.45,6.43,3.88
1.01,Premium,G,SI1,62.1,56,4805,6.42,6.36,3.97
1.01,Good,D,SI2,63.6,56,4805,6.38,6.33,4.04
1.1,Premium,I,SI1,62.7,57,4805,6.6,6.55,4.12
1.01,Premium,D,SI2,61.5,56,4805,6.46,6.39,3.95
1,Premium,E,SI1,62.8,59,4805,6.4,6.3,3.99
1,Very Good,E,SI1,63.4,58,4805,6.29,6.26,3.98
1,Premium,E,SI1,61,61,4805,6.45,6.4,3.92
1.01,Good,E,SI2,58.5,61,4807,6.51,6.61,3.84
1.01,Premium,G,SI1,61,58,4808,6.53,6.49,3.97
1,Ideal,E,SI2,62.9,55,4808,6.38,6.41,4.02
1,Ideal,E,SI2,62.2,52,4808,6.42,6.47,4.01
1.01,Premium,G,SI1,62.7,59,4808,6.41,6.35,4
1.01,Ideal,I,VS1,62.6,56,4808,6.42,6.36,4
1.01,Ideal,E,SI2,62.4,56,4808,6.43,6.39,4
1.1,Ideal,F,SI2,60.4,55,4809,6.73,6.77,4.08
0.97,Premium,F,SI1,59.9,59,4810,6.36,6.39,3.82
1.04,Premium,G,SI1,59.2,61,4811,6.68,6.63,3.94
1.04,Premium,D,SI2,61.6,58,4811,6.52,6.46,4
1.12,Ideal,I,SI1,61.7,58,4811,6.66,6.6,4.09
1.04,Premium,D,SI2,61,59,4811,6.54,6.51,3.98
1.24,Ideal,I,SI2,60.7,57,4812,6.98,6.92,4.22
1.01,Very Good,F,SI1,62.7,56,4812,6.37,6.39,4
1.04,Ideal,H,SI1,59.7,60,4812,6.61,6.59,3.94
1.02,Very Good,E,SI1,60.5,63,4813,6.48,6.54,3.94
1.16,Premium,H,SI1,59.6,58,4814,6.86,6.83,4.08
1.08,Ideal,G,SI2,61.8,56,4814,6.54,6.6,4.06
1.06,Premium,G,SI1,59.6,58,4815,6.67,6.73,3.99
1.21,Very Good,J,VS2,60.9,58,4816,6.86,6.91,4.19
1.11,Very Good,G,SI2,58.5,61,4816,6.74,6.8,3.96
1.08,Very Good,F,SI1,61.3,57,4816,6.62,6.6,4.05
1,Premium,H,SI1,62.8,58,4816,6.38,6.36,4
0.8,Ideal,F,VS2,61.4,56,4816,5.99,6,3.68
1.01,Good,F,SI1,61.6,63,4816,6.42,6.47,3.97
1.05,Ideal,F,SI1,61.8,57,4816,6.54,6.51,4.03
1,Premium,G,SI1,60.8,58,4816,6.48,6.45,3.93
1,Premium,H,SI1,58.3,60,4816,6.5,6.44,3.77
1,Premium,H,SI1,62.4,59,4816,6.42,6.37,3.99
0.91,Premium,D,SI1,60.2,58,4816,6.31,6.28,3.79
1,Premium,D,SI2,62.4,58,4816,6.36,6.33,3.96
0.94,Premium,D,SI1,60.7,60,4817,6.32,6.27,3.82
1.11,Good,I,VS1,59.2,64,4817,6.8,6.77,4.02
0.94,Premium,D,SI1,58.4,58,4817,6.51,6.41,3.77
1.02,Premium,D,SI2,62.5,59,4818,6.38,6.43,4
0.9,Ideal,D,SI1,62.6,55,4819,6.1,6.16,3.84
1.03,Good,I,VS2,60,62,4819,6.51,6.55,3.92
1.02,Premium,H,SI1,58.3,59,4819,6.68,6.59,3.87
1.02,Ideal,H,SI1,58.8,57,4819,6.66,6.6,3.9
1.02,Premium,H,SI1,61.2,57,4819,6.54,6.5,3.99
1.23,Ideal,F,SI2,62.1,57,4819,6.83,6.8,4.23
1.16,Premium,F,SI2,61.2,61,4820,6.77,6.74,4.14
1.01,Very Good,D,SI1,59.1,61,4821,6.46,6.5,3.83
1.01,Very Good,H,VS2,62.2,56,4821,6.35,6.44,3.98
1.01,Very Good,H,VS2,62.6,61,4821,6.35,6.4,3.99
1.01,Very Good,H,VS2,62.5,57,4821,6.37,6.44,4
1.01,Ideal,H,VS2,62.3,57,4821,6.35,6.4,3.97
1.01,Very Good,D,SI1,62.7,58,4821,6.34,6.38,3.99
1.01,Good,D,SI1,64.1,60,4821,6.27,6.3,4.03
0.91,Ideal,E,SI2,62.4,57,4821,6.17,6.21,3.86
0.91,Good,F,VS1,63.5,56,4823,6.14,6.18,3.91
0.91,Very Good,E,VS2,61.6,58,4823,6.18,6.2,3.81
0.91,Very Good,E,VS2,62.9,55,4823,6.13,6.17,3.87
0.91,Very Good,E,VS2,58.4,63,4823,6.31,6.32,3.69
0.91,Very Good,E,VS2,62.8,59,4823,6.15,6.17,3.87
0.91,Good,E,VS2,56.3,64,4823,6.37,6.42,3.6
1.02,Ideal,E,SI2,61.6,55,4824,6.46,6.52,4
1.07,Very Good,E,SI2,61.6,56,4824,6.54,6.6,4.05
1.21,Good,J,SI2,61.1,60.8,4824,6.83,6.89,4.18
1,Good,G,SI1,63.9,60,4824,6.27,6.22,3.99
1,Ideal,G,SI1,62.7,56,4824,6.39,6.36,4
1.29,Fair,F,SI2,64.4,57,4824,6.85,6.79,4.39
1.01,Ideal,H,SI2,62,57,4825,6.4,6.43,3.98
1.01,Ideal,I,SI1,61.2,56,4825,6.48,6.51,3.97
0.98,Very Good,H,VS2,59.9,60,4826,6.45,6.38,3.84
1.17,Very Good,I,SI1,62.6,58,4826,6.64,6.71,4.18
1.17,Very Good,H,SI2,62.7,56,4826,6.68,6.74,4.21
1.17,Good,H,SI2,63.8,58,4826,6.57,6.73,4.24
1.08,Premium,H,SI1,62.6,56,4826,6.58,6.52,4.1
1.39,Premium,I,SI2,61.9,59,4826,7.15,7.11,4.41
1.1,Very Good,H,SI1,61.6,56,4827,6.61,6.66,4.09
1.1,Ideal,H,SI1,60.2,56,4827,6.74,6.82,4.08
1,Very Good,G,SI1,59.3,63,4827,6.48,6.44,3.83
1.02,Premium,H,VS1,62.1,57,4827,6.46,6.42,4
1.04,Good,F,SI1,63.1,57,4828,6.36,6.41,4.03
1.2,Good,G,SI1,63.5,60,4828,6.68,6.74,4.26
1.01,Ideal,F,SI1,62.3,57,4829,6.4,6.44,4
1.01,Premium,F,SI1,60.3,58,4829,6.53,6.61,3.96
1.06,Ideal,H,SI2,62.5,57.1,4829,6.46,6.5,4.05
1.12,Ideal,I,SI1,62,56,4829,6.69,6.64,4.13
1.1,Ideal,E,SI2,61.6,57,4829,6.68,6.64,4.1
1.1,Premium,E,SI2,60.7,58,4829,6.77,6.65,4.07
1,Fair,F,VS2,64.7,59,4829,6.22,6.15,4
1.22,Premium,H,SI1,61,59,4829,6.92,6.86,4.2
1,Ideal,E,SI2,61.8,57,4829,6.43,6.39,3.96
1.07,Premium,H,VS2,58.9,58,4830,6.7,6.65,3.93
1.07,Ideal,H,SI1,62,57,4830,6.51,6.56,4.05
1,Very Good,H,SI1,62.8,56,4830,6.33,6.37,3.99
1,Very Good,H,SI1,62.2,59,4830,6.32,6.35,3.94
0.73,Ideal,E,VVS1,62,56,4830,5.75,5.79,3.58
1.2,Ideal,J,SI1,62.3,56,4830,6.77,6.81,4.23
1.15,Premium,H,SI2,61.6,60,4830,6.75,6.72,4.15
1.15,Premium,I,SI1,62.2,59,4830,6.75,6.68,4.18
1.15,Ideal,H,SI2,62,57,4830,6.75,6.66,4.16
1.01,Very Good,E,SI1,63.2,59,4830,6.28,6.25,3.96
1.15,Premium,H,SI2,62,58,4830,6.7,6.66,4.14
1.22,Premium,I,SI2,62.3,58,4831,6.8,6.85,4.25
1.2,Very Good,H,SI2,60.7,60,4831,6.81,6.89,4.16
1.2,Ideal,J,SI1,61.6,57,4831,6.79,6.87,4.21
1.01,Ideal,E,SI2,61.9,56,4832,6.43,6.46,3.99
1.07,Good,H,SI1,58.1,60,4832,6.72,6.78,3.92
1.1,Premium,F,SI2,62.6,57,4832,6.6,6.56,4.12
1.02,Ideal,F,SI2,61.8,57,4832,6.49,6.43,3.99
0.9,Premium,E,VS2,62.1,55,4833,6.23,6.14,3.84
0.93,Premium,G,VS2,62.2,59,4834,6.21,6.26,3.88
1.11,Very Good,G,VS2,63.4,56,4834,6.62,6.54,4.18
1.03,Very Good,H,SI1,60.8,60,4836,6.47,6.5,3.94
1.04,Ideal,I,SI1,61.7,55,4836,6.5,6.54,4.02
1.01,Very Good,H,SI1,63.1,59,4836,6.36,6.32,4
1.01,Very Good,H,SI1,63.4,59,4836,6.34,6.28,4
1.01,Good,H,SI1,63.7,60,4836,6.35,6.3,4.03
1.01,Premium,H,SI1,60,62,4836,6.51,6.45,3.89
1.01,Ideal,H,SI1,62.2,57,4836,6.43,6.37,3.98
1.01,Premium,H,SI1,62.4,60,4836,6.36,6.33,3.96
1.27,Premium,I,SI2,62,60,4836,6.91,6.86,4.27
1.01,Ideal,H,SI1,62.6,55,4836,6.43,6.39,4.01
1.01,Ideal,D,SI2,60.5,57,4837,6.53,6.6,3.97
1.15,Ideal,G,SI2,62.3,56,4838,6.67,6.75,4.18
1,Fair,G,VS2,66.1,61,4838,6.08,5.99,3.99
1,Good,G,VS2,56.7,62,4838,6.64,6.59,3.75
1.18,Ideal,I,SI2,62.2,57,4838,6.73,6.76,4.2
1.2,Premium,H,VS1,61.7,59,4838,6.78,6.74,4.17
1.2,Very Good,I,SI1,63.1,58,4838,6.72,6.66,4.22
1.2,Premium,J,SI1,60.6,59,4838,6.88,6.84,4.16
0.9,Ideal,H,VVS2,62,57,4838,6.2,6.15,3.83
1.2,Premium,I,SI2,61.5,58,4838,6.82,6.77,4.18
1.2,Fair,J,SI1,65.2,58,4838,6.67,6.58,4.32
1.2,Premium,J,SI1,61.4,59,4838,6.87,6.82,4.2
0.9,Premium,F,VS2,62.3,58,4838,6.16,6.14,3.83
0.9,Ideal,F,VS2,62,56,4838,6.23,6.15,3.84
1.2,Premium,J,VS2,60.8,60,4839,6.85,6.89,4.18
1.01,Good,H,VS2,64.2,55,4839,6.38,6.34,4.08
1.01,Premium,H,VS2,60.5,58,4839,6.46,6.4,3.89
1.03,Ideal,D,SI2,60.7,55,4839,6.61,6.53,3.99
1.08,Very Good,E,SI2,59.5,59,4840,6.71,6.78,4.01
1.14,Very Good,I,SI1,62.6,55,4840,6.66,6.72,4.19
1.07,Ideal,H,SI2,62.4,55,4840,6.56,6.59,4.1
1.12,Ideal,J,SI1,62.4,57,4840,6.65,6.6,4.14
1,Ideal,I,VS2,62.4,52,4841,6.41,6.45,4.02
1.21,Premium,J,VS2,59.9,59,4841,6.92,6.86,4.13
0.9,Very Good,H,VVS2,59.7,62,4842,6.2,6.23,3.71
1,Very Good,H,VS2,63,59,4842,6.43,6.34,4.02
1.11,Premium,H,SI1,58.4,60,4842,6.87,6.83,4
1.03,Premium,H,SI1,62.2,60,4843,6.4,6.43,3.99
1.03,Good,H,SI1,63.3,57,4843,6.39,6.41,4.05
1.01,Ideal,F,SI2,62.7,57,4843,6.36,6.39,4
1,Very Good,G,SI1,62.6,59,4844,6.29,6.33,3.95
0.82,Very Good,G,IF,61.9,57,4844,5.96,6,3.7
1,Good,F,SI1,63.8,57,4844,6.21,6.29,3.99
1,Good,F,SI1,64.9,57,4844,6.25,6.32,4.08
1.01,Fair,E,SI1,65.3,59,4844,6.13,6.19,4.02
1,Fair,E,SI1,57.4,61,4844,6.53,6.63,3.78
1.2,Premium,I,VS2,62.3,57,4844,6.79,6.74,4.22
1.2,Ideal,I,VS2,62.6,57,4844,6.74,6.67,4.2
1.05,Good,H,SI1,59.2,60,4845,6.59,6.62,3.91
1.03,Fair,D,SI1,64.4,61,4845,6.33,6.25,4.05
1.03,Ideal,E,SI2,62.3,56,4845,6.52,6.44,4.04
1.03,Premium,E,SI2,61.8,59,4845,6.47,6.42,3.98
0.9,Very Good,F,VS2,62.3,59,4846,6.1,6.16,3.82
0.9,Very Good,D,SI1,60.4,59,4846,6.21,6.24,3.76
1.04,Ideal,I,SI1,61.2,56,4846,6.53,6.55,4
1.01,Very Good,F,SI1,63.5,59,4846,6.39,6.3,4.03
0.72,Very Good,E,VVS1,61.2,57,4847,5.73,5.78,3.53
1.2,Good,G,SI2,63.1,57,4847,6.73,6.77,4.26
0.9,Good,H,VVS1,63.8,59,4847,6.09,6.13,3.9
1.11,Very Good,G,SI2,63.2,56,4848,6.61,6.56,4.16
1.03,Very Good,I,SI1,63,55,4848,6.37,6.42,4.03
0.91,Very Good,G,VVS2,63.4,58,4849,6.1,6.14,3.88
1.09,Very Good,H,SI1,61.7,59,4849,6.53,6.59,4.05
1.11,Ideal,I,SI1,61.4,60,4849,6.61,6.65,4.07
0.96,Fair,F,SI1,60.7,65,4849,6.43,6.28,3.86
1.64,Fair,G,I1,64.5,60,4849,7.44,7.35,4.76
0.31,Premium,G,SI1,60.4,58,593,4.42,4.39,2.66
0.31,Premium,G,SI1,60.7,60,593,4.36,4.34,2.64
0.31,Ideal,D,SI2,61.3,56,593,4.41,4.36,2.69
0.31,Premium,D,SI2,60.1,60,593,4.41,4.38,2.64
0.31,Ideal,D,SI2,62.1,57,593,4.34,4.32,2.69
0.31,Good,D,SI2,63.7,55,593,4.35,4.32,2.76
0.31,Very Good,D,SI2,63.1,54,593,4.38,4.33,2.75
0.31,Ideal,D,SI2,62.8,53,593,4.37,4.35,2.74
0.31,Ideal,D,SI2,62.3,56,593,4.38,4.35,2.72
0.31,Ideal,D,SI2,62.5,55,593,4.34,4.3,2.7
0.31,Premium,D,SI2,62.7,59,593,4.35,4.3,2.71
0.31,Ideal,D,SI2,62.9,54,593,4.35,4.3,2.72
0.31,Good,D,SI2,63.6,54,593,4.34,4.31,2.75
0.31,Premium,D,SI2,62.1,59,593,4.35,4.31,2.69
0.31,Ideal,D,SI2,62.6,57,593,4.35,4.27,2.7
0.31,Premium,D,SI2,62.9,59,593,4.31,4.28,2.7
0.31,Good,D,SI2,63.9,57,593,4.33,4.28,2.75
0.31,Premium,I,SI1,60.7,58,593,4.42,4.38,2.67
0.31,Ideal,D,SI2,62,56,593,4.35,4.33,2.69
0.3,Premium,H,VVS1,61.3,58,593,4.3,4.32,2.64
0.32,Very Good,E,VS2,61.6,58,594,4.4,4.47,2.73
0.33,Premium,I,VS2,61,61,594,4.46,4.43,2.71
0.33,Premium,I,VS2,60.6,58,594,4.47,4.44,2.7
0.33,Premium,I,VS2,62,60,594,4.46,4.41,2.75
0.33,Ideal,I,VS2,61.5,57,594,4.49,4.42,2.74
0.33,Premium,I,VS2,62.6,58,594,4.42,4.34,2.74
0.33,Ideal,I,VS2,62.4,56,594,4.43,4.39,2.75
0.33,Premium,I,VS2,61.1,59,594,4.44,4.4,2.7
0.33,Ideal,H,SI1,63,56,594,4.42,4.41,2.78
0.33,Premium,E,SI2,60,59,594,4.49,4.47,2.69
1.01,Very Good,J,VVS2,62.2,56,4850,6.37,6.42,3.98
1.15,Very Good,I,SI1,62.5,60,4851,6.68,6.72,4.19
1.05,Very Good,E,SI2,62.3,56,4851,6.47,6.54,4.05
1,Very Good,F,SI1,61.4,62,4851,6.32,6.36,3.89
1,Good,F,SI1,63.6,58,4851,6.27,6.31,4
1,Premium,F,SI1,59.7,60,4851,6.48,6.51,3.88
1,Very Good,F,SI1,62.8,59,4851,6.32,6.36,3.98
1,Good,F,SI1,63.4,61,4851,6.29,6.35,4.01
1.02,Ideal,F,SI2,62.6,56,4851,6.38,6.44,4.01
1.01,Ideal,H,SI1,62.7,56,4851,6.41,6.44,4.03
1.12,Very Good,G,SI2,60.2,59,4852,6.7,6.85,4.08
0.99,Very Good,F,SI2,61.2,56,4852,6.4,6.45,3.93
1.22,Ideal,F,SI2,62,57,4852,6.88,6.83,4.25
1.01,Very Good,F,SI2,62.7,55,4853,6.32,6.4,3.99
1.09,Very Good,F,SI2,63.2,58,4853,6.54,6.49,4.12
1.01,Good,E,SI1,64.3,59,4853,6.34,6.31,4.07
1.01,Premium,E,SI1,62.9,59,4853,6.38,6.3,3.99
1.12,Good,I,VS2,63.8,55,4853,6.63,6.57,4.21
1.01,Premium,G,VS1,59.5,60,4853,6.49,6.48,3.86
1.01,Good,E,SI1,60.9,64,4853,6.29,6.22,3.81
1.01,Fair,E,SI1,69.5,55,4853,6,5.94,4.15
1.01,Ideal,E,SI1,60.7,57,4853,6.52,6.49,3.95
1.01,Premium,E,SI1,59.6,59,4853,6.53,6.46,3.87
1.01,Premium,E,SI1,62,58,4853,6.41,6.37,3.96
1.01,Very Good,E,SI1,63.1,55,4853,6.41,6.34,4.02
1.13,Ideal,D,SI2,61.6,55,4854,6.73,6.7,4.14
0.89,Ideal,F,VS2,61.5,55,4854,6.18,6.21,3.81
1.11,Ideal,J,VS1,61.7,57,4854,6.67,6.72,4.13
0.9,Ideal,E,SI1,61.1,56,4854,6.21,6.23,3.8
1.24,Premium,H,SI2,62.1,58,4854,6.92,6.88,4.28
1.13,Premium,I,SI1,61.5,60,4854,6.72,6.68,4.12
1.01,Very Good,H,SI1,61.8,60,4855,6.38,6.44,3.96
1.02,Ideal,F,SI2,61.3,56,4855,6.5,6.48,3.98
1.02,Premium,G,SI1,60.7,60,4855,6.51,6.48,3.94
1.02,Premium,F,SI1,58.4,59,4855,6.65,6.57,3.86
1.23,Premium,J,VS2,62.7,58,4856,6.81,6.77,4.26
1.08,Very Good,E,SI2,63.4,56,4857,6.55,6.5,4.14
1.05,Premium,G,SI1,62.1,60,4857,6.48,6.44,4.01
1.01,Very Good,I,VS1,59.7,58,4858,6.53,6.57,3.91
0.9,Very Good,E,VS2,62.7,56,4858,6.13,6.21,3.87
1.01,Ideal,F,SI2,62.9,57,4858,6.35,6.41,4.01
0.93,Ideal,E,SI2,60.5,54,4858,6.4,6.38,3.87
1.24,Premium,I,VS2,61.2,58,4858,6.94,6.89,4.23
0.79,Ideal,F,VVS1,61.5,55,4858,5.98,5.95,3.67
1,Good,G,SI1,61.9,61,4859,6.36,6.4,3.95
0.91,Ideal,G,VS1,62.3,55,4860,6.17,6.22,3.86
0.71,Ideal,E,VVS1,61,57,4860,5.75,5.76,3.51
0.91,Fair,G,VS2,64.9,54,4860,6.04,6.08,3.93
1.26,Ideal,J,SI2,62.8,54,4860,6.91,6.89,4.33
1,Fair,H,VS2,64.8,62,4861,6.22,6.13,4
1.07,Very Good,G,SI1,60.5,62,4861,6.6,6.69,4.02
1.07,Very Good,D,SI2,62.6,61,4861,6.42,6.49,4.04
1.07,Good,G,SI1,63.1,59,4861,6.45,6.49,4.08
1.22,Very Good,J,SI2,60.5,58.5,4861,6.84,6.96,4.17
1,Ideal,D,SI1,60.2,57,4861,6.54,6.48,3.92
1.15,Premium,G,SI2,62.5,55,4861,6.72,6.68,4.19
1.24,Good,G,SI2,63.7,60,4861,6.77,6.7,4.3
1,Ideal,G,SI2,62.3,56,4861,6.46,6.44,3.96
1,Premium,H,VS2,59.7,58,4861,6.57,6.52,3.91
1,Good,H,VS2,63.7,59,4861,6.3,6.26,4
1.06,Ideal,F,SI1,61.3,57,4862,6.56,6.51,4.01
1.06,Premium,F,SI1,62.4,58,4862,6.56,6.51,4.07
1.06,Ideal,F,SI1,61.2,55,4862,6.62,6.57,4.03
1.06,Premium,F,SI1,61.9,58,4862,6.58,6.53,4.06
0.99,Very Good,G,SI1,62.8,56,4863,6.34,6.36,3.99
1.15,Premium,G,SI1,62,58,4863,6.77,6.68,4.17
1.31,Good,G,SI2,63.8,56,4864,7.03,6.89,4.44
1.08,Premium,F,SI1,62.1,58,4864,6.57,6.61,4.09
1,Ideal,E,SI1,61.5,57,4864,6.41,6.47,3.96
1,Very Good,E,SI1,61.9,62,4864,6.34,6.4,3.94
1,Very Good,E,SI1,62.1,57,4864,6.35,6.4,3.96
0.72,Ideal,E,VVS1,61.4,57,4864,5.74,5.79,3.54
0.96,Premium,E,SI1,60,60,4864,6.44,6.39,3.85
1.01,Fair,G,VS1,66.8,61,4864,6.15,6.06,4.08
1.19,Premium,I,SI1,62.2,58,4865,6.77,6.73,4.2
1.01,Good,H,SI2,63,61,4865,6.32,6.29,3.97
1.05,Ideal,F,SI2,62.7,54,4866,6.5,6.54,4.09
1,Ideal,G,SI1,62.4,56,4867,6.34,6.41,3.98
1,Very Good,D,SI2,62.6,57,4867,6.37,6.4,4
1.01,Very Good,H,SI1,59.3,62,4868,6.57,6.55,3.89
1.1,Ideal,I,SI1,60.8,61,4868,6.63,6.7,4.05
1.01,Ideal,G,SI1,60.7,58,4868,6.55,6.52,3.97
1.16,Very Good,I,VS2,62.6,59,4869,6.63,6.69,4.17
1.16,Ideal,I,VS2,59.3,56,4869,6.84,6.88,4.07
0.84,Very Good,D,VS1,60.1,58,4869,6.12,6.15,3.69
1.01,Very Good,F,SI1,60.8,59,4869,6.49,6.53,3.96
1.15,Ideal,H,SI2,62,56,4870,6.68,6.75,4.16
1.23,Good,J,SI1,63.1,57.6,4870,6.74,6.8,4.27
1.02,Ideal,H,SI2,62.4,55,4870,6.41,6.46,4.02
1.11,Very Good,H,SI1,62,55,4871,6.61,6.68,4.12
0.9,Ideal,H,VS2,60.9,54,4871,6.19,6.22,3.78
0.92,Ideal,E,SI2,62.3,56,4871,6.21,6.25,3.88
0.9,Ideal,G,SI1,61.9,57,4871,6.16,6.19,3.82
1.09,Ideal,H,SI1,61.9,56,4871,6.64,6.61,4.1
1.09,Very Good,H,SI1,63.2,57,4871,6.57,6.54,4.14
1.09,Premium,H,SI1,61.8,58,4871,6.63,6.58,4.08
1.09,Ideal,H,SI1,62.2,56,4871,6.59,6.56,4.09
1.09,Ideal,H,SI1,62.4,55,4871,6.68,6.59,4.14
0.9,Very Good,G,VS1,61.7,60,4872,6.11,6.2,3.8
1.2,Premium,I,SI1,61.7,56,4872,6.82,6.76,4.19
1.01,Ideal,I,SI1,60,60,4872,6.53,6.57,3.93
1.16,Premium,H,SI2,61.8,58,4872,6.81,6.75,4.19
1.06,Premium,H,SI1,61.6,59,4872,6.55,6.54,4.03
1.06,Premium,H,SI1,62.8,58,4872,6.49,6.47,4.07
1.16,Premium,I,SI1,60,58,4872,6.82,6.78,4.08
1.16,Premium,H,SI2,60.2,59,4872,6.84,6.78,4.1
1,Ideal,H,SI1,61.9,57,4872,6.43,6.39,3.97
1.16,Premium,I,SI1,62.7,57,4872,6.76,6.67,4.21
1.01,Ideal,D,SI2,62.6,56,4872,6.4,6.34,3.99
1.01,Premium,G,SI1,62.6,59,4872,6.38,6.3,3.97
1.03,Ideal,E,SI1,58.9,57,4873,6.62,6.56,3.88
1.07,Very Good,I,VS2,62.5,56,4873,6.5,6.53,4.07
1.01,Very Good,H,SI1,63.6,56,4873,6.31,6.37,4.03
1.03,Ideal,G,SI2,61.8,55,4873,6.5,6.52,4.02
1.13,Premium,H,SI2,62.3,57,4873,6.68,6.65,4.15
1.13,Premium,J,VS1,61.1,59,4873,6.74,6.67,4.1
1.13,Premium,H,SI2,60.7,54,4873,6.82,6.72,4.11
1.11,Fair,E,SI2,64.7,61,4873,6.42,6.39,4.14
1.03,Premium,H,VS1,59.2,58,4874,6.66,6.61,3.92
1.03,Ideal,H,VS1,61.5,57,4874,6.49,6.45,3.98
1.24,Ideal,J,SI1,61.8,57,4875,6.92,6.86,4.26
1.14,Very Good,G,SI2,62.4,60,4875,6.6,6.67,4.14
1.02,Very Good,H,SI1,61.2,57,4875,6.47,6.53,3.98
1.01,Premium,G,SI1,59.9,56,4875,6.6,6.45,3.91
1.01,Ideal,E,SI2,62.2,56,4875,6.45,6.42,4
1.01,Very Good,H,SI1,61.8,59,4876,6.37,6.41,3.95
1.01,Very Good,H,SI1,60,58,4876,6.54,6.6,3.94
1.23,Premium,F,SI2,61.7,58,4876,6.85,6.95,4.26
1.01,Ideal,H,SI1,62.3,59,4876,6.36,6.41,3.98
1.15,Ideal,G,SI2,62.4,56,4877,6.7,6.74,4.19
1.11,Good,D,SI2,60.1,63,4877,6.68,6.7,4.02
1.08,Premium,I,VS1,62.5,57,4877,6.54,6.51,4.08
1.1,Very Good,I,VS1,61,59,4878,6.65,6.67,4.06
1.28,Good,J,SI1,63.4,59,4878,6.84,6.89,4.35
1.05,Good,E,SI1,64.2,61,4878,6.33,6.41,4.09
1.06,Very Good,H,SI1,62.2,58,4878,6.45,6.53,4.04
1.01,Premium,E,SI2,60.4,60,4878,6.49,6.46,3.91
1.05,Premium,F,SI1,62.8,59,4879,6.43,6.4,4.03
0.93,Very Good,G,VS1,62.1,59,4879,6.16,6.21,3.84
1.21,Ideal,J,VS2,62.2,57,4879,6.78,6.82,4.23
1.03,Very Good,H,SI1,61.4,57,4879,6.45,6.54,3.99
1.32,Premium,H,SI2,59.4,54,4879,7.21,7.09,4.25
1.21,Ideal,I,SI2,64.6,56,4879,6.67,6.62,4.29
1.21,Premium,I,SI2,62.1,59,4879,6.86,6.8,4.24
1.21,Premium,I,SI2,60.7,60,4879,6.88,6.82,4.16
1.21,Premium,I,SI2,59.9,58,4879,6.94,6.91,4.15
1.16,Ideal,G,SI2,61.9,56,4880,6.73,6.77,4.18
1.21,Ideal,I,SI2,60.7,56,4880,6.86,6.91,4.18
1.02,Ideal,G,SI1,60.5,59,4882,6.55,6.51,3.95
1,Good,G,SI1,64.4,54,4882,6.29,6.32,4.06
1.11,Premium,G,SI2,60.7,56,4882,6.73,6.68,4.07
1.11,Ideal,H,SI2,61.5,55,4883,6.65,6.69,4.1
1.17,Ideal,J,SI1,62.3,55,4883,6.74,6.77,4.21
1.02,Premium,F,SI1,62.5,56,4884,6.44,6.35,4
1.14,Premium,G,SI2,60.4,59,4884,6.8,6.78,4.1
1.02,Premium,H,SI1,62.9,59,4884,6.41,6.38,4.02
0.9,Ideal,G,VS2,60.8,57,4884,6.26,6.17,3.78
1.21,Premium,I,VS2,62.6,59,4884,6.77,6.67,4.21
1.02,Premium,H,SI1,60.5,60,4884,6.58,6.51,3.96
1.02,Very Good,H,SI1,63.4,57,4884,6.42,6.36,4.05
1.02,Premium,H,SI1,62,60,4884,6.4,6.37,3.96
1.03,Premium,E,SI2,62,59,4885,6.42,6.49,4
1.18,Ideal,E,SI2,60.8,57,4885,6.89,6.83,4.17
1.01,Ideal,H,SI1,62.1,56,4886,6.38,6.47,3.99
1.21,Very Good,G,SI2,58.9,61,4887,6.91,6.98,4.09
1.01,Ideal,I,VS2,61.3,53,4887,6.52,6.54,4
1.06,Good,I,VS1,58.8,62,4887,6.65,6.72,3.93
1.01,Fair,G,VS2,64.9,56,4887,6.27,6.21,4.05
1.01,Fair,G,VS2,64.4,58,4887,6.25,6.18,4
0.75,Very Good,E,VVS1,62.3,57,4889,5.73,5.83,3.6
1.04,Premium,H,SI1,59.5,58,4890,6.58,6.67,3.94
1.04,Premium,H,SI1,62.6,59,4890,6.43,6.47,4.04
1.14,Very Good,H,SI1,59.2,58,4890,6.8,6.86,4.04
1.01,Very Good,F,SI1,59.8,59,4890,6.39,6.43,3.83
1.01,Very Good,G,SI1,63,57,4890,6.28,6.35,3.98
1.2,Ideal,I,SI2,59.6,61,4890,6.95,6.97,4.15
1.02,Ideal,G,SI2,61,57,4890,6.51,6.58,3.99
1.11,Ideal,I,SI1,62.2,56,4890,6.62,6.65,4.13
0.9,Premium,H,VVS1,62.3,59,4890,6.15,6.09,3.81
1.03,Ideal,F,SI2,60.9,56,4891,6.56,6.51,3.98
1.09,Ideal,F,SI2,61.2,57,4891,6.6,6.64,4.05
1.2,Very Good,J,SI1,61.3,59,4891,6.83,6.9,4.21
1,Fair,G,VS1,63.1,68,4892,6.32,6.17,3.94
1.04,Premium,E,SI2,62.4,57,4892,6.51,6.43,4.04
1.04,Premium,I,VS1,61.6,56,4892,6.59,6.52,4.04
0.96,Very Good,G,VS1,60.5,63,4892,6.32,6.28,3.81
1.04,Ideal,E,SI2,61.4,56,4892,6.56,6.5,4.01
1.04,Ideal,E,SI2,62,55,4892,6.51,6.48,4.03
0.91,Premium,F,VS2,62.2,58,4892,6.21,6.17,3.85
0.8,Very Good,E,VVS2,62.8,57,4893,5.93,5.95,3.73
1.05,Very Good,I,VS2,63.2,56,4895,6.47,6.51,4.1
1.23,Very Good,J,VS2,62.9,59,4896,6.8,6.85,4.29
1.1,Ideal,F,SI2,60.4,55,4897,6.77,6.73,4.08
1.1,Ideal,I,VS2,62,56,4897,6.67,6.62,4.12
0.9,Very Good,F,VS1,62.1,58,4898,6.15,6.19,3.83
0.9,Good,F,VS1,62.8,60,4898,6.11,6.15,3.85
1.47,Fair,H,I1,66.7,59,4898,6.98,6.94,4.64
1.01,Very Good,F,SI1,59.5,62,4899,6.45,6.53,3.86
1.01,Very Good,F,SI1,61,61,4899,6.44,6.47,3.94
1.01,Good,F,SI1,63.3,59,4899,6.38,6.42,4.05
1.01,Good,F,SI1,63.6,58,4899,6.31,6.37,4.03
1.01,Very Good,F,SI1,59.7,61,4899,6.49,6.55,3.89
1.01,Good,F,SI1,63.7,57,4899,6.35,6.4,4.06
1.01,Good,F,SI1,63.8,59,4899,6.29,6.32,4.02
1.01,Good,F,SI1,63.5,59,4899,6.29,6.38,4.02
1.01,Premium,F,SI1,62.5,58,4899,6.39,6.42,4
1.01,Premium,F,SI1,61.8,59,4899,6.34,6.41,3.94
0.87,Ideal,G,VS2,61.8,56,4899,6.11,6.13,3.78
1.07,Ideal,H,SI2,62.8,56,4899,6.5,6.56,4.1
1.03,Ideal,G,SI1,60.9,57,4900,6.54,6.5,3.97
1.06,Very Good,H,SI1,60.2,59,4900,6.6,6.55,3.96
1.03,Ideal,H,SI1,62,56,4900,6.43,6.5,4.01
0.97,Good,F,SI1,60.1,65,4900,6.46,6.36,3.85
1.03,Premium,G,SI1,61.6,59,4900,6.53,6.5,4.01
1.03,Ideal,G,SI1,61.6,57,4900,6.53,6.46,4
1.03,Premium,G,SI1,58.2,59,4900,6.7,6.64,3.88
1.25,Ideal,H,SI2,61.6,54,4900,6.94,6.88,4.25
1,Very Good,F,SI2,62.6,59,4901,6.34,6.38,3.98
1.02,Very Good,E,SI1,60.5,63,4901,6.54,6.48,3.94
0.94,Very Good,D,SI1,58.4,58,4902,6.41,6.51,3.77
0.94,Very Good,D,SI1,60.7,60,4902,6.27,6.32,3.82
1.18,Fair,F,SI2,55.9,64,4903,7.15,7.01,3.95
1.06,Premium,D,SI2,61.6,61,4903,6.59,6.53,4.04
1.03,Very Good,G,SI1,63.1,58,4903,6.41,6.37,4.03
1.06,Premium,G,SI1,59.6,58,4903,6.73,6.67,3.99
0.78,Very Good,E,VVS1,61.3,60,4904,5.86,5.92,3.61
1.02,Very Good,D,SI2,60.9,61,4904,6.47,6.53,3.96
1.14,Very Good,J,VS1,61.5,59,4905,6.64,6.75,4.11
1.08,Very Good,G,SI1,60.6,58,4906,6.58,6.73,4.03
1.04,Very Good,D,SI2,58.6,58,4906,6.65,6.72,3.92
1.14,Ideal,J,VS2,61.4,55,4906,6.74,6.77,4.15
1.2,Premium,H,SI2,59.6,60,4906,6.91,6.84,4.1
1.24,Premium,F,SI2,62.7,59,4907,6.83,6.77,4.26
1.02,Premium,D,SI2,62.5,59,4907,6.43,6.38,4
1.01,Premium,D,SI1,62.7,58,4909,6.38,6.34,3.99
1.01,Good,D,SI1,64.1,60,4909,6.3,6.27,4.03
1.01,Premium,D,SI1,59.1,61,4909,6.5,6.46,3.83
1.01,Good,H,VS2,59.6,64,4909,6.53,6.45,3.87
1.01,Ideal,H,VS2,62.1,54,4909,6.5,6.44,4.02
1.01,Premium,H,VS2,62.3,60,4909,6.32,6.27,3.92
1.13,Ideal,H,SI2,61.6,55,4911,6.68,6.72,4.13
1.11,Premium,I,SI1,60.6,59,4911,6.73,6.66,4.06
1.15,Ideal,H,SI1,63,57,4911,6.71,6.66,4.21
1.04,Very Good,H,VS2,63.2,58,4911,6.45,6.42,4.07
1.01,Good,E,SI1,63.4,59,4912,6.34,6.38,4.03
1.01,Good,E,SI1,63.1,60,4912,6.34,6.37,4.01
1.01,Very Good,E,SI1,62.6,57,4912,6.36,6.41,4
1.01,Very Good,E,SI1,62.4,60,4912,6.32,6.35,3.95
1.02,Premium,D,SI2,59.5,62,4912,6.56,6.52,3.89
1.02,Ideal,E,SI2,61.6,55,4912,6.52,6.46,4
0.91,Very Good,G,VVS2,62.1,60,4913,6.14,6.19,3.83
1.21,Premium,H,SI2,62.9,58,4913,6.74,6.69,4.23
1.12,Very Good,I,VS2,63.9,52,4914,6.58,6.65,4.23
1.11,Very Good,E,SI2,62.8,55,4914,6.6,6.62,4.15
0.91,Very Good,E,SI1,62.3,59,4914,6.18,6.21,3.86
1.19,Ideal,H,SI2,62,57,4914,6.77,6.81,4.21
1.17,Good,H,SI2,63.8,58,4914,6.73,6.57,4.24
0.9,Premium,E,VS1,62.3,56,4914,6.19,6.1,3.83
0.9,Good,G,VVS2,63.6,58,4914,6.11,6.1,3.88
0.9,Premium,D,VS2,62.6,59,4914,6.17,6.14,3.85
1.17,Good,I,SI1,63.6,61,4914,6.66,6.64,4.23
1.22,Ideal,H,VS2,61.9,55,4914,6.88,6.83,4.24
1.17,Premium,H,SI2,62.7,56,4914,6.74,6.68,4.21
1.17,Premium,I,SI1,62.6,58,4914,6.71,6.64,4.18
1.2,Fair,F,SI2,65.1,58,4915,6.62,6.56,4.29
1.14,Very Good,E,SI2,62.6,56,4915,6.63,6.69,4.17
1.15,Very Good,F,SI2,63.1,63,4915,6.67,6.57,4.18
0.97,Premium,E,SI1,61,61,4915,6.32,6.28,3.84
1.1,Premium,H,SI1,63,58,4916,6.6,6.55,4.14
1.1,Premium,H,SI1,63,58,4916,6.6,6.55,4.14
1.01,Premium,G,SI1,61.5,59,4916,6.43,6.48,3.97
1.01,Very Good,G,SI1,62.6,59,4916,6.38,6.3,3.97
1.01,Ideal,D,SI2,61.6,57,4916,6.42,6.46,3.97
1.01,Ideal,D,SI2,61.3,54,4916,6.47,6.52,3.99
1.01,Very Good,G,SI1,60.6,57,4916,6.49,6.52,3.94
1.24,Premium,D,SI2,60.6,59,4916,6.99,6.96,4.23
1.14,Ideal,H,SI1,62.2,57,4916,6.73,6.67,4.17
0.59,Ideal,D,IF,60.9,60,4916,5.41,5.39,3.29
1,Good,E,SI1,60.4,61,4916,6.37,6.44,3.87
1,Good,E,SI1,59.3,61,4916,6.42,6.53,3.84
1.2,Fair,H,SI2,64.8,60,4916,6.55,6.59,4.26
1.1,Premium,H,SI1,61.6,56,4916,6.66,6.61,4.09
1.24,Ideal,G,SI1,62.7,56,4916,6.89,6.85,4.31
1.33,Fair,E,SI2,65,57,4916,6.93,6.89,4.49
1.18,Premium,H,VS2,61.1,60,4916,6.8,6.76,4.14
1.1,Ideal,H,SI1,60.2,56,4916,6.82,6.74,4.08
0.91,Very Good,F,VS2,62.1,58,4917,6.19,6.24,3.86
1.02,Ideal,H,SI2,62.5,53,4918,6.43,6.47,4.03
1.07,Ideal,H,SI1,62,57,4918,6.56,6.51,4.05
1.23,Premium,G,SI2,62.1,58,4918,6.85,6.8,4.24
0.9,Ideal,D,SI1,61.8,57,4919,6.22,6.17,3.83
0.9,Very Good,E,VS2,62.1,55,4919,6.14,6.23,3.84
1,Very Good,G,SI1,61.4,57,4919,6.45,6.42,3.95
0.91,Ideal,H,SI1,62.1,57,4919,6.18,6.21,3.85
1.22,Premium,I,SI2,62.3,58,4919,6.85,6.8,4.25
1.09,Good,H,SI1,63.6,56,4920,6.53,6.56,4.16
1.06,Premium,I,VS1,62.4,55,4920,6.57,6.5,4.08
0.9,Very Good,E,SI1,60.3,58,4921,6.26,6.32,3.79
0.9,Ideal,E,SI1,61.7,57,4921,6.18,6.24,3.83
1.01,Premium,H,VS2,60.7,61,4921,6.47,6.39,3.9
0.33,Premium,E,SI2,59.7,58,594,4.53,4.48,2.69
0.33,Ideal,G,SI2,60.2,57,594,4.5,4.47,2.7
0.31,Ideal,H,VS2,61.6,55,595,4.34,4.38,2.69
0.25,Ideal,F,VS1,62.1,57,595,4.01,4.04,2.5
0.25,Ideal,F,VS1,61.1,58,595,4.04,4.08,2.48
0.25,Ideal,F,VS1,61.8,56,595,4.07,4.09,2.52
0.31,Ideal,E,SI1,60.6,56,595,4.39,4.42,2.67
0.31,Ideal,H,SI1,61.9,56,595,4.38,4.35,2.7
0.37,Good,I,VS2,64,56,595,4.58,4.45,2.89
0.32,Very Good,H,VVS2,62.4,56,596,4.35,4.37,2.72
0.28,Very Good,F,VVS2,61.8,60,596,4.16,4.19,2.58
0.28,Very Good,E,VVS2,63.6,56,596,4.13,4.17,2.64
0.28,Very Good,E,VVS2,61.4,60,596,4.18,4.22,2.58
0.32,Very Good,I,VVS1,60.9,57,596,4.45,4.48,2.71
0.28,Very Good,D,VVS1,60.3,62,596,4.22,4.24,2.55
0.31,Ideal,H,VVS2,61.2,56,596,4.34,4.37,2.66
0.31,Ideal,G,VS1,61.6,55,596,4.37,4.4,2.7
0.4,Ideal,H,SI2,61.9,58,596,4.71,4.73,2.92
0.4,Ideal,H,SI2,62.2,56,596,4.71,4.75,2.94
0.35,Ideal,F,SI1,61.5,55.9,596,4.53,4.56,2.8
0.34,Ideal,D,SI1,60.9,56,596,4.53,4.56,2.76
0.28,Good,F,VVS2,61.2,62,596,4.16,4.21,2.56
0.35,Good,F,VS2,57.9,60,596,4.65,4.68,2.7
0.38,Premium,E,SI2,59.9,56,596,4.79,4.72,2.85
0.34,Good,E,SI1,63.9,56,596,4.44,4.48,2.85
0.34,Premium,E,SI1,61.8,58,596,4.47,4.5,2.77
0.34,Very Good,G,VS2,62.9,55,596,4.45,4.52,2.82
0.34,Ideal,E,SI1,62,57,596,4.46,4.48,2.77
0.34,Ideal,H,VS1,62.7,57,596,4.45,4.48,2.8
0.34,Ideal,E,SI1,62.7,55,596,4.46,4.47,2.8
1.01,Ideal,E,SI2,61.9,56,4921,6.46,6.43,3.99
1.01,Premium,E,SI2,60,61,4921,6.53,6.47,3.9
0.91,Very Good,H,VS2,62.6,57,4922,6.15,6.21,3.87
1.13,Very Good,E,SI1,62.7,57,4922,6.62,6.65,4.16
0.91,Very Good,G,SI1,62.8,56,4922,6.16,6.2,3.88
0.91,Ideal,G,SI1,62,56,4922,6.19,6.22,3.85
0.91,Ideal,G,SI1,60.8,58,4922,6.21,6.29,3.8
0.9,Very Good,F,VS2,62.3,58,4924,6.14,6.16,3.83
0.9,Ideal,H,VVS2,62,57,4924,6.15,6.2,3.83
1.02,Ideal,H,SI1,61.9,57,4924,6.4,6.46,3.98
0.93,Very Good,F,VS2,62.7,58,4925,6.21,6.27,3.91
0.9,Very Good,E,VS2,60.4,59,4925,6.26,6.3,3.79
1.15,Ideal,I,SI1,62.3,57,4925,6.74,6.67,4.18
1,Fair,F,SI1,62.6,59,4925,6.25,6.3,3.93
0.81,Ideal,F,VVS2,62.2,53.9,4926,5.97,6.01,3.72
1.21,Fair,E,SI2,65.6,59,4926,6.62,6.56,4.32
0.72,Ideal,E,VVS2,61.7,55,4927,5.76,5.78,3.56
1.2,Ideal,J,VS2,62.3,57,4927,6.82,6.75,4.23
1.15,Ideal,G,SI2,62.3,56,4927,6.75,6.67,4.18
1,Good,D,SI1,63.8,53,4928,6.35,6.4,4.07
1.01,Good,E,SI1,56.9,61,4928,6.65,6.6,3.77
1,Ideal,D,SI1,62.5,55,4928,6.43,6.38,4
1.03,Ideal,G,SI2,62.3,59,4928,6.44,6.46,4.02
1.03,Ideal,G,SI1,61.9,56,4928,6.46,6.5,4.01
1,Fair,G,VVS2,65.5,54,4928,6.3,6.22,4.1
1.1,Premium,F,SI2,62,59,4928,6.62,6.6,4.1
1,Premium,D,SI2,59.9,59,4928,6.48,6.44,3.87
1.21,Very Good,I,SI2,60,58,4929,6.89,6.97,4.16
1,Premium,H,VS2,60.7,60,4930,6.55,6.49,3.96
1.27,Ideal,J,SI2,61.2,55.7,4931,6.95,6.99,4.27
0.82,Ideal,F,VS2,61.3,56,4931,6.02,6.05,3.7
0.9,Ideal,G,VS1,61.8,56,4931,6.19,6.24,3.84
1.19,Good,J,VS1,63.6,54,4931,6.78,6.74,4.3
1.02,Very Good,H,SI1,62.8,58,4932,6.37,6.43,4.02
1.02,Very Good,H,SI1,62.2,58,4932,6.42,6.48,4.01
1.13,Ideal,H,SI2,62.1,55,4932,6.65,6.68,4.14
1.05,Ideal,D,SI2,60.2,57,4932,6.58,6.65,3.98
1.03,Premium,H,SI1,61.9,58,4932,6.49,6.43,4
1.03,Very Good,H,SI1,63.3,57,4932,6.41,6.39,4.05
1.03,Premium,H,SI1,62.2,60,4932,6.43,6.4,3.99
1.08,Very Good,I,SI1,62.2,57,4933,6.57,6.54,4.08
1.21,Premium,E,SI2,61,58,4933,6.93,6.88,4.21
1.14,Very Good,G,SI2,59.5,59,4935,6.79,6.85,4.06
1.02,Fair,H,SI1,56.9,58,4935,6.64,6.75,3.81
1,Good,E,SI1,62.4,59,4936,6.35,6.4,3.98
1.02,Good,F,SI1,64.3,58,4936,6.28,6.32,4.05
1.13,Premium,E,SI2,61.4,59,4936,6.78,6.7,4.14
1.13,Ideal,I,SI1,61.4,57,4936,6.72,6.69,4.12
1.27,Ideal,G,SI2,58.8,56,4936,7.16,7.06,4.18
1.05,Good,H,SI1,63.2,56,4937,6.47,6.51,4.1
1.05,Ideal,H,SI1,62.5,56,4937,6.43,6.52,4.05
0.71,Ideal,F,VVS1,61.1,54,4937,5.78,5.84,3.55
1.24,Ideal,I,SI2,60.7,57,4937,6.98,6.92,4.22
1.29,Very Good,G,SI2,63.3,61,4937,6.84,6.8,4.32
1.1,Very Good,H,SI1,62.4,58,4938,6.58,6.62,4.12
1,Ideal,F,SI1,62.4,55,4939,6.45,6.37,4
1,Ideal,F,SI1,60,57,4939,6.45,6.41,3.86
0.9,Very Good,H,VS1,63,55,4939,6.18,6.13,3.88
1.5,Fair,H,I1,65.7,58,4939,7.07,7.02,4.63
1.5,Fair,H,I1,66.6,54,4939,7.05,7.01,4.68
1.01,Premium,D,SI2,61,62,4939,6.43,6.39,3.91
1.26,Ideal,E,SI2,62.4,57,4939,6.91,6.85,4.29
0.91,Ideal,H,VS1,60.8,58,4939,6.27,6.32,3.83
1,Premium,F,SI1,62.8,59,4939,6.36,6.32,3.98
1,Premium,F,SI1,59.7,60,4939,6.51,6.48,3.88
1,Premium,F,SI1,59.3,60,4939,6.61,6.57,3.91
1.4,Premium,J,SI1,62.9,59,4939,7.16,7.07,4.48
1.15,Premium,I,SI1,62.5,60,4939,6.72,6.68,4.19
1,Very Good,F,SI1,63.4,61,4939,6.35,6.29,4.01
1,Premium,F,SI1,61.4,62,4939,6.36,6.32,3.89
1,Good,F,SI1,63.6,58,4939,6.31,6.27,4
1.05,Premium,E,SI2,62.3,56,4939,6.54,6.47,4.05
1.15,Very Good,D,SI2,63.5,58,4939,6.73,6.69,4.26
1.13,Ideal,I,VS2,62.3,56,4940,6.63,6.73,4.16
0.9,Ideal,E,SI1,61.7,57,4940,6.21,6.24,3.84
1.04,Ideal,I,SI1,61.9,54,4941,6.51,6.57,4.05
1.03,Premium,F,SI1,62.2,59,4942,6.45,6.41,4
1.11,Premium,I,VS2,60.4,58,4942,6.79,6.73,4.08
1.11,Ideal,F,SI2,61.7,55,4942,6.66,6.63,4.1
1.07,Premium,E,SI2,61.3,59,4943,6.58,6.64,4.05
1.07,Premium,E,SI2,59.7,58,4943,6.66,6.68,3.98
1.01,Ideal,H,SI1,61.2,58,4943,6.42,6.49,3.95
1.01,Premium,H,SI1,61.8,60,4943,6.44,6.38,3.96
0.97,Ideal,H,VS2,62.9,56,4943,6.35,6.31,3.98
0.91,Premium,H,VVS1,62.5,59,4944,6.19,6.16,3.86
1.21,Very Good,H,SI1,63.5,58,4944,6.73,6.63,4.24
0.9,Very Good,D,SI2,62.5,55,4946,6.16,6.2,3.86
1.02,Ideal,D,SI2,61.4,56,4946,6.42,6.57,3.99
1.21,Premium,D,SI2,59.7,58,4946,7.06,6.96,4.19
1.02,Good,F,SI1,63.3,58,4948,6.35,6.39,4.03
1.02,Good,D,SI1,56.9,62,4948,6.64,6.69,3.79
1.02,Very Good,F,SI1,62.5,57,4948,6.35,6.41,3.99
1.04,Very Good,I,SI1,62.9,54,4948,6.42,6.49,4.06
1.04,Premium,G,SI1,62.6,55,4948,6.49,6.42,4.04
1.14,Premium,H,SI1,62.5,58,4948,6.71,6.67,4.18
1.07,Premium,D,SI2,62.4,61,4949,6.51,6.48,4.05
1.07,Very Good,G,SI1,63.1,59,4949,6.49,6.45,4.08
1.07,Premium,G,SI1,60.5,62,4949,6.69,6.6,4.02
1.07,Premium,D,SI2,62.6,61,4949,6.49,6.42,4.04
1.01,Premium,H,SI1,61.9,57,4949,6.49,6.4,3.99
1.25,Very Good,I,SI2,61,60,4950,6.93,6.98,4.24
1,Premium,H,VS1,62.4,58,4950,6.43,6.4,4
0.98,Ideal,F,SI1,62.7,55,4950,6.37,6.27,3.96
0.7,Ideal,F,VVS1,61,56,4951,5.72,5.75,3.5
0.7,Ideal,F,VVS1,61.7,56,4951,5.68,5.73,3.52
1.12,Very Good,F,SI2,61.5,58,4953,6.63,6.68,4.09
1,Very Good,H,SI1,61.9,58,4953,6.3,6.37,3.92
1.26,Good,I,SI2,63.7,58,4953,6.84,6.79,4.34
1.14,Ideal,I,SI1,62.2,56,4953,6.65,6.7,4.15
1,Premium,E,SI1,61.9,62,4953,6.4,6.34,3.94
1.08,Premium,F,SI1,62.1,58,4953,6.61,6.57,4.09
1.34,Premium,G,SI2,60.1,61,4953,7.11,7.06,4.26
1.07,Ideal,F,SI2,61.6,56,4954,0,6.62,0
1.12,Ideal,G,SI2,62.2,55,4955,6.68,6.64,4.14
1.07,Ideal,H,SI1,61.1,56,4955,6.63,6.6,4.04
1.01,Premium,H,VVS1,60.5,57,4955,6.55,6.48,3.94
1,Ideal,D,SI2,61.5,56,4956,6.45,6.41,3.95
1,Ideal,G,SI1,62,57,4956,6.39,6.32,3.94
1.18,Premium,I,SI1,60.5,59,4956,6.9,6.82,4.15
1.18,Premium,H,SI2,61.6,57,4956,6.81,6.73,4.17
1.18,Premium,H,SI2,58.7,60,4956,7.01,6.93,4.09
1.18,Premium,I,SI1,61.1,59,4956,6.78,6.73,4.13
1,Ideal,G,SI1,61.6,55,4956,6.51,6.41,3.98
1,Ideal,G,SI1,62.4,56,4956,6.41,6.34,3.98
1,Ideal,G,SI1,62.2,57,4956,6.45,6.38,3.99
1,Premium,G,SI1,63,59,4956,6.44,6.32,4.02
1.14,Very Good,D,SI2,59.2,61,4957,6.82,6.84,4.04
1.02,Premium,H,VS2,60,58,4958,6.56,6.5,3.92
1.07,Ideal,I,SI1,62,55,4958,6.56,6.6,4.08
0.95,Ideal,H,SI1,61.9,56,4958,6.31,6.35,3.92
1.16,Premium,I,VS2,62.2,58,4958,6.74,6.67,4.17
1.02,Premium,H,VS2,61,60,4958,6.5,6.46,3.95
1.09,Very Good,I,VS2,62,56,4959,6.57,6.59,4.08
1.13,Very Good,H,SI1,60.1,60,4959,6.73,6.77,4.06
1.13,Ideal,H,SI1,62,57,4959,6.66,6.73,4.15
1.01,Very Good,H,VS2,61,63,4959,6.38,6.41,3.9
1.01,Premium,H,VS2,61.3,59,4959,6.44,6.48,3.96
1.01,Premium,H,VS2,61.2,59,4959,6.45,6.47,3.95
1.01,Good,H,VS2,63.5,61,4959,6.24,6.32,3.99
1.15,Premium,H,SI2,62.9,56,4959,6.7,6.59,4.18
1.15,Premium,I,SI1,59.6,58,4959,6.86,6.82,4.08
1.23,Ideal,J,SI1,63.1,58,4959,6.8,6.74,4.27
1.15,Ideal,H,SI2,62,56,4959,6.75,6.68,4.16
1.11,Premium,H,SI1,61.9,58,4960,6.63,6.59,4.09
1.23,Very Good,J,VS2,62.8,59,4960,6.75,6.82,4.26
0.9,Very Good,F,VS1,62.5,58,4961,6.1,6.15,3.83
0.9,Very Good,F,VS1,62.4,59,4961,6.1,6.15,3.82
0.93,Premium,F,VS2,61.7,58,4961,6.22,6.29,3.86
0.93,Premium,F,VS2,62.1,59,4961,6.24,6.28,3.89
1,Very Good,F,SI1,59.4,60,4961,6.47,6.52,3.86
1,Good,F,SI1,57.9,62,4961,6.55,6.58,3.8
1.1,Ideal,I,VS2,61.8,56,4962,6.65,6.6,4.1
0.9,Very Good,H,VVS2,63.5,55,4963,6.14,6.08,3.88
1.2,Very Good,J,VS2,62.6,57,4963,6.72,6.8,4.23
1.11,Good,I,VS2,63.6,58,4963,6.52,6.57,4.16
1.03,Very Good,D,SI2,63.3,58,4963,6.38,6.42,4.05
0.83,Ideal,G,VVS1,61.9,56,4963,6.03,6.05,3.74
1.02,Good,G,SI1,63.6,58,4964,6.34,6.39,4.05
1.02,Very Good,D,SI2,58.8,58,4964,6.62,6.68,3.91
1.02,Very Good,D,SI2,62.8,55,4964,6.38,6.46,4.03
1.02,Very Good,G,SI1,62.8,57,4964,6.35,6.38,4
1.03,Very Good,H,SI2,62.8,59,4964,6.41,6.46,4.04
0.9,Ideal,H,VS1,61.8,55,4964,6.21,6.14,3.82
1.13,Premium,I,VS2,62.4,59,4964,6.63,6.58,4.12
1.08,Ideal,H,SI1,62.8,57,4964,6.55,6.51,4.1
1.32,Very Good,I,SI2,60.9,59,4965,7.02,7.19,4.33
1.09,Ideal,H,SI1,61.8,57,4965,6.57,6.6,4.07
1.01,Premium,H,SI1,60,58,4965,6.6,6.54,3.94
1.01,Premium,H,SI1,61.8,59,4965,6.41,6.37,3.95
1.55,Good,G,I1,63.6,58,4965,7.34,7.29,4.65
1.01,Ideal,H,SI1,62.6,55,4965,6.44,6.38,4.01
1.26,Fair,G,SI2,53.2,61,4966,7.44,7.36,3.94
1.1,Premium,E,SI2,59.1,60,4967,6.77,6.7,3.98
1.1,Premium,E,SI2,59.1,60,4967,6.77,6.7,3.98
1.1,Good,I,VS1,63.7,60,4967,6.61,6.45,4.16
1.28,Very Good,J,SI1,63.4,59,4967,6.89,6.84,4.35
1.05,Good,E,SI1,64.2,61,4967,6.41,6.33,4.09
1.28,Ideal,J,SI1,61.2,57,4967,7.02,6.96,4.28
1.02,Ideal,F,SI2,61.6,56,4968,6.47,6.5,3.99
1.21,Ideal,J,SI1,61.9,57,4968,6.84,6.89,4.25
1.21,Premium,J,VS2,61.9,58,4968,6.84,6.79,4.22
1.21,Ideal,J,VS2,59.6,57,4968,6.98,6.94,4.15
1.01,Ideal,F,SI1,62.5,56,4969,6.38,6.42,4
1.01,Very Good,F,SI1,62.1,57,4969,6.41,6.48,4
1.01,Very Good,F,SI1,61.3,59,4969,6.44,6.47,3.96
1.01,Premium,F,SI1,62.3,59,4969,6.38,6.4,3.98
1.22,Very Good,J,SI1,58.8,61,4969,6.94,7,4.1
1.11,Ideal,E,SI2,62.2,56,4969,6.58,6.66,4.12
1.11,Ideal,E,SI2,61.2,57,4969,6.7,6.74,4.11
0.91,Premium,E,VS1,62.7,59,4969,6.19,6.15,3.87
1.16,Premium,G,SI2,62.6,58,4969,6.72,6.66,4.19
0.91,Premium,D,VS2,62,60,4969,6.23,6.19,3.85
0.91,Premium,E,VS1,62.8,60,4969,6.11,6.08,3.83
1.16,Ideal,G,SI2,61.9,56,4969,6.77,6.73,4.18
1.16,Premium,G,SI2,62.5,58,4969,6.72,6.68,4.19
1.05,Very Good,H,VS1,63.4,57,4969,6.48,6.45,4.1
1.09,Ideal,G,SI1,62.2,56,4970,6.6,6.55,4.09
1.02,Ideal,D,SI2,58.9,61,4971,6.56,6.62,3.88
1.01,Very Good,F,SI1,60.3,60,4972,6.46,6.55,3.92
1.06,Very Good,E,SI2,62.1,56,4972,6.52,6.59,4.07
0.94,Ideal,E,SI2,61.6,57,4972,6.29,6.31,3.88
1.14,Premium,D,SI2,60.3,58,4972,6.79,6.71,4.07
1.01,Fair,E,VS2,64.8,59,4972,6.34,6.26,4.08
1.11,Very Good,H,SI2,63.2,58,4973,6.64,6.53,4.16
1.11,Premium,H,SI2,61.9,59,4973,6.6,6.56,4.07
1.04,Ideal,G,SI2,61.9,58,4973,6.47,6.51,4.02
1.2,Premium,H,SI2,62.8,61,4973,6.7,6.62,4.18
1.07,Ideal,E,SI1,60.4,57,4973,6.62,6.56,3.98
1.35,Premium,J,VS2,61.2,61,4974,7.13,7.08,4.35
1.22,Premium,E,SI2,62.1,56,4974,6.89,6.83,4.26
1.22,Ideal,E,SI2,62.8,54,4974,6.78,6.75,4.25
1.03,Premium,E,SI2,62,59,4974,6.49,6.42,4
1.22,Premium,E,SI2,60.5,60,4974,6.93,6.89,4.18
1.05,Premium,G,SI1,60.3,57,4974,6.64,6.59,3.99
1.05,Very Good,I,VS2,62.4,59,4975,6.48,6.51,4.05
1,Very Good,E,SI2,58.7,59,4975,6.5,6.58,3.84
1.05,Ideal,H,SI1,61.8,56,4975,6.52,6.58,4.05
1.21,Premium,G,SI2,58.9,61,4976,6.98,6.91,4.09
0.9,Very Good,H,VVS1,62.3,59,4977,6.09,6.15,3.81
1.01,Good,D,SI1,62.9,57,4977,6.34,6.37,4
1.29,Very Good,F,SI2,63.4,57,4977,6.92,6.77,4.35
1.01,Premium,H,SI1,60.4,60,4977,6.55,6.47,3.93
1.01,Ideal,H,SI1,62.3,55,4977,6.43,6.37,3.99
1,Very Good,H,VS2,60.7,60,4978,6.55,6.49,3.96
1,Very Good,H,VS2,59.6,59,4978,6.47,6.54,3.88
1.27,Very Good,H,SI2,63.1,57,4978,6.88,6.84,4.33
0.91,Premium,F,VS2,62.2,58,4979,6.17,6.21,3.85
1.16,Premium,H,SI2,62.6,57,4979,6.75,6.67,4.2
1.14,Premium,H,SI1,59.2,58,4980,6.86,6.8,4.04
1.04,Premium,H,SI1,58.7,61,4980,6.62,6.57,3.87
1.54,Premium,H,I1,62,60,4980,7.32,7.4,4.56
1.04,Premium,H,SI1,62.6,59,4980,6.47,6.43,4.04
1.04,Premium,H,SI1,59.5,58,4980,6.67,6.58,3.94
1.2,Premium,H,SI1,62.8,56,4980,6.76,6.68,4.22
0.9,Very Good,D,VS2,63.3,59,4981,6.12,6.17,3.89
0.71,Ideal,F,VVS1,61.1,54,4981,5.84,5.78,3.55
1.09,Ideal,F,SI2,61.2,57,4981,6.64,6.6,4.05
1.02,Ideal,E,SI2,62.6,54.6,4983,6.4,6.44,4.02
1.06,Premium,H,SI1,61,58,4984,6.57,6.61,4.02
1.13,Ideal,F,SI2,61.8,56,4984,6.69,6.73,4.15
1.01,Ideal,E,SI2,62.2,55,4984,6.4,6.43,3.99
1,Premium,H,VS2,60.4,58,4984,6.51,6.46,3.92
1,Fair,F,VS1,67,52,4984,6.12,6.08,4.09
1.15,Premium,G,SI2,62.2,60,4985,6.69,6.66,4.15
1.23,Ideal,J,VS2,61.8,56,4986,6.87,6.81,4.23
1.23,Ideal,J,VS2,61.8,56,4986,6.87,6.81,4.23
1.05,Very Good,I,VS2,63.2,59,4986,6.47,6.44,4.08
1.01,Good,E,SI1,63.3,58,4986,6.37,6.39,4.04
1.01,Very Good,E,SI1,62.6,57,4986,6.38,6.43,4.01
1.23,Premium,J,VS2,62.9,59,4986,6.85,6.8,4.29
1.12,Premium,I,VS2,62.8,57,4986,6.68,6.61,4.17
1.12,Ideal,I,VS2,62.8,55,4986,6.69,6.66,4.19
1.06,Ideal,G,SI2,62.1,58,4987,6.49,6.53,4.04
1.05,Ideal,F,SI2,60.3,55,4987,6.55,6.68,3.99
1.12,Premium,I,VS1,59.6,58,4987,6.82,6.77,4.05
1.02,Ideal,G,SI1,62.2,57,4988,6.43,6.49,4.02
1.18,Premium,G,SI2,60.5,60,4988,6.88,6.81,4.14
1.08,Ideal,E,SI2,61.7,57,4989,6.55,6.6,4.06
1.2,Premium,I,SI2,60,58,4989,6.91,6.93,4.15
1.5,Good,E,I1,62.4,64,4989,7.22,7.26,4.52
1.26,Very Good,J,SI1,61.8,58,4989,6.88,6.91,4.26
1.01,Premium,F,SI1,58.5,60,4989,6.6,6.57,3.85
1.01,Premium,F,SI1,59.1,59,4989,6.56,6.5,3.86
0.83,Ideal,G,VS1,62.1,55,4989,6.02,6.05,3.75
1,Good,E,SI1,62.6,61,4989,6.29,6.32,3.95
1.01,Good,F,SI1,63.6,58,4989,6.37,6.31,4.03
1.01,Good,F,SI1,63.7,57,4989,6.4,6.35,4.06
1.01,Premium,F,SI1,59.5,62,4989,6.53,6.45,3.86
1.01,Very Good,F,SI1,63.3,59,4989,6.42,6.38,4.05
1.01,Good,F,SI1,63.8,59,4989,6.32,6.29,4.02
1.01,Premium,F,SI1,59.7,61,4989,6.55,6.49,3.89
1.01,Good,F,SI1,60.5,64,4989,6.48,6.45,3.91
1.01,Good,F,SI1,58.8,64,4989,6.58,6.51,3.85
1.01,Premium,I,VVS1,62,59,4989,6.39,6.32,3.94
1.01,Good,F,SI1,57.8,58,4989,6.65,6.6,3.83
1.01,Premium,F,SI1,62.5,58,4989,6.42,6.39,4
1.01,Very Good,F,SI1,63.5,59,4989,6.38,6.29,4.02
1.01,Premium,F,SI1,61.8,59,4989,6.41,6.34,3.94
1.01,Ideal,H,SI1,62.6,54,4989,6.38,6.34,3.98
1.21,Very Good,J,SI1,61.6,59,4990,6.8,6.83,4.2
1.02,Premium,E,SI2,58.7,58,4990,6.68,6.61,3.9
1.12,Ideal,G,SI2,61.3,55,4990,6.74,6.7,4.12
1.21,Very Good,H,SI2,61.1,60,4991,6.86,6.91,4.21
1.01,Premium,E,SI1,59.9,59,4991,6.49,6.46,3.88
1.25,Premium,G,SI2,62.8,57,4991,6.86,6.78,4.28
1.23,Good,J,SI2,63.2,57.5,4992,6.74,6.82,4.29
0.99,Very Good,D,SI2,62.5,57,4993,6.3,6.34,3.95
1.3,Very Good,J,VS1,63.2,57,4994,6.91,6.86,4.35
1.12,Premium,H,SI1,62.4,56,4994,6.74,6.63,4.17
1.06,Very Good,F,SI1,62.3,56,4995,6.5,6.57,4.07
1,Very Good,H,SI1,62,54,4995,6.43,6.47,4
1,Very Good,H,SI1,61.8,57,4995,6.39,6.42,3.96
1.03,Very Good,F,SI1,61.5,59,4996,6.42,6.49,3.97
1.1,Very Good,G,SI1,62.3,58,4997,6.55,6.61,4.1
1.1,Very Good,G,SI1,59.4,58,4997,6.72,6.79,4.01
1.1,Good,G,SI1,63.4,57,4997,6.52,6.55,4.14
1,Very Good,G,SI1,59.6,60,4997,6.43,6.49,3.85
1,Ideal,G,SI1,61.9,56,4997,6.37,6.45,3.97
1.04,Ideal,I,VS1,62.9,43,4997,6.45,6.41,4.04
1.13,Good,F,SI2,56.5,62,4998,6.93,6.88,3.9
0.4,Very Good,G,SI2,61.9,61,596,4.69,4.74,2.92
0.34,Ideal,E,SI1,62.2,55,596,4.45,4.49,2.78
0.34,Ideal,E,SI1,61.7,56,596,4.49,4.52,2.78
0.34,Ideal,G,VS2,61.5,55,596,4.47,4.5,2.76
0.34,Premium,H,VS1,61.4,59,596,4.5,4.53,2.77
0.34,Ideal,E,SI1,62.1,55,596,4.47,4.51,2.79
0.34,Very Good,E,SI1,60.3,57,596,4.53,4.56,2.74
0.4,Very Good,J,VS2,62.9,57,596,4.7,4.75,2.97
0.34,Good,E,SI1,63.2,55,596,4.46,4.49,2.83
0.34,Very Good,E,SI1,62.9,56,596,4.45,4.48,2.81
0.4,Good,G,SI2,63.1,59,596,4.65,4.7,2.95
0.34,Ideal,H,VS1,62.5,57,596,4.43,4.46,2.78
0.34,Premium,G,VS2,60.2,58,596,4.51,4.56,2.73
0.34,Premium,G,VS2,60.3,58,596,4.49,4.53,2.72
0.34,Very Good,I,VVS2,61.3,57,596,4.49,4.52,2.76
0.34,Ideal,E,SI1,61,57,596,4.48,4.51,2.74
0.34,Premium,G,VS2,60.3,59,596,4.49,4.53,2.72
0.34,Ideal,H,VS1,62.7,55,596,4.48,4.51,2.82
0.34,Ideal,G,VS2,62.2,53,596,4.46,4.51,2.79
0.34,Very Good,G,VS2,61.2,62,596,4.44,4.48,2.73
0.34,Ideal,E,SI1,62.3,57,596,4.48,4.51,2.8
0.34,Ideal,G,VS2,61.5,56,596,4.47,4.5,2.76
0.34,Ideal,E,SI1,60.7,57,596,4.48,4.51,2.73
0.34,Premium,G,VS2,61.2,59,596,4.43,4.49,2.73
0.3,Very Good,I,VVS2,63,57,596,4.24,4.27,2.68
0.34,Ideal,G,VS2,62.5,57,596,4.46,4.5,2.8
0.34,Very Good,E,SI1,59.6,57,596,4.52,4.61,2.72
0.34,Ideal,E,SI1,60.7,56,596,4.51,4.55,2.75
0.34,Premium,H,VS1,60.6,60,596,4.45,4.49,2.71
0.34,Ideal,H,VS1,62.1,57,596,4.48,4.51,2.79
1.19,Ideal,I,SI1,62.3,57,4998,6.78,6.73,4.21
1.04,Premium,H,SI1,61,58,4999,6.54,6.6,4.01
1.17,Ideal,I,SI2,61.8,54,4999,6.78,6.82,4.2
1,Very Good,H,VS2,63.3,53,5000,6.42,6.37,4.05
1.24,Ideal,J,SI1,61.8,57,5000,6.92,6.86,4.26
1.08,Ideal,I,VS2,61.6,56,5000,6.63,6.59,4.07
1.01,Very Good,I,SI2,62.2,59,5000,6.36,6.41,3.97
1.01,Very Good,I,SI2,63.4,57,5000,6.3,6.39,4.02
1.11,Very Good,G,SI1,60.3,60,5000,6.62,6.67,4.01
1.12,Ideal,E,SI2,60.5,55,5000,6.73,6.79,4.09
1.01,Premium,H,VS1,60.9,62,5000,6.52,6.49,3.96
1,Premium,H,VS2,61.5,61,5000,6.45,6.4,3.95
0.9,Premium,F,VS1,62.7,58,5000,6.17,6.14,3.86
1.24,Premium,I,SI2,62.1,58,5000,6.88,6.84,4.26
1.24,Ideal,F,SI2,60,56,5000,7.03,7,4.21
1.5,Fair,H,SI2,66,64,5000,7.1,6.97,4.64
1.16,Ideal,E,SI2,62.7,56,5001,6.69,6.73,4.21
1.16,Ideal,E,SI2,59.9,57,5001,6.8,6.82,4.08
0.9,Good,G,VVS2,63.6,58,5001,6.1,6.11,3.88
0.9,Very Good,E,VS1,62.3,56,5001,6.1,6.19,3.83
0.9,Premium,D,VS2,62.6,59,5001,6.14,6.17,3.85
1.07,Ideal,I,SI1,61.7,56.1,5002,6.57,6.59,4.06
1.1,Ideal,H,SI2,62,56.5,5002,6.58,6.63,4.09
1.2,Ideal,J,SI1,62.1,55,5002,6.81,6.84,4.24
1,Good,G,VS2,64.1,58,5002,6.22,6.32,4.02
1,Good,G,VS2,63.6,58,5002,6.26,6.35,4.01
1.01,Very Good,E,SI1,63.4,59,5002,6.38,6.34,4.03
1.01,Very Good,E,SI1,63.1,60,5002,6.37,6.34,4.01
1.01,Premium,E,SI1,62.4,60,5002,6.35,6.32,3.95
1.16,Premium,I,SI1,61.5,57,5002,6.79,6.73,4.16
1.14,Ideal,H,SI1,61.6,57,5003,6.7,6.75,4.14
1.14,Premium,H,SI1,60.7,58,5003,6.76,6.82,4.12
1.17,Premium,H,SI1,62.3,57,5004,6.75,6.71,4.19
1.11,Ideal,E,SI2,62.8,55,5004,6.62,6.6,4.15
1.09,Premium,H,VS2,61.2,58,5005,6.63,6.58,4.03
1,Very Good,D,SI1,62.8,58,5005,6.35,6.39,4
1,Good,D,SI1,60.4,64,5005,6.3,6.39,3.83
1,Good,D,SI1,61.9,65,5005,6.31,6.36,3.92
1.03,Ideal,H,SI1,62.2,56,5005,6.45,6.51,4.03
1.15,Good,H,SI1,60.2,61,5005,6.74,6.84,4.09
1.14,Ideal,E,SI2,62.6,56,5005,6.69,6.63,4.17
1.2,Premium,I,VS2,62.2,61,5006,6.74,6.73,4.19
0.72,Ideal,F,VVS1,60.8,56,5006,5.81,5.83,3.54
0.92,Very Good,F,VS1,61,60,5006,6.25,6.27,3.82
1.11,Ideal,I,SI1,62.2,54,5006,6.64,6.68,4.14
1.01,Premium,G,SI1,61.5,59,5006,6.48,6.43,3.97
1.01,Premium,G,SI1,60.6,57,5006,6.52,6.49,3.94
1.01,Premium,D,SI2,61.7,57,5006,6.49,6.44,3.99
1.01,Premium,G,SI1,61.3,59,5006,6.48,6.44,3.96
1.01,Ideal,D,SI2,61.3,54,5006,6.52,6.47,3.99
1.01,Ideal,D,SI2,61.6,57,5006,6.46,6.42,3.97
1.01,Premium,G,SI1,62.6,60,5006,6.36,6.29,3.96
1.01,Ideal,G,SI1,62.3,56,5006,6.42,6.38,3.99
1.01,Premium,G,SI1,62.2,58,5006,6.42,6.4,3.99
0.8,Ideal,E,VS1,61.8,56,5007,5.92,5.96,3.67
1.27,Ideal,J,VS1,62,57,5008,6.96,6.92,4.3
1.02,Premium,H,VS2,60.4,59,5008,6.52,6.55,3.95
1.14,Premium,I,VS2,62.8,60,5008,6.68,6.59,4.17
1.14,Premium,F,SI2,60.8,58,5008,6.79,6.74,4.11
1.15,Ideal,G,VS2,62.2,54,5008,6.74,6.65,4.17
1,Very Good,I,VS1,61.1,59.9,5009,6.37,6.41,3.9
1.11,Very Good,H,SI1,62,56,5010,6.61,6.65,4.11
1.03,Very Good,E,SI1,61.3,60,5010,6.51,6.53,4
1.01,Very Good,F,SI1,62.8,60,5010,6.32,6.38,3.99
1.01,Very Good,F,SI1,63.1,59,5010,6.3,6.37,4
1.09,Good,H,SI1,63.6,56,5010,6.56,6.53,4.16
1.03,Premium,I,VS1,60.4,59,5012,6.51,6.57,3.95
1.11,Ideal,J,VS1,61.3,55,5012,6.65,6.75,4.11
1.13,Premium,E,SI1,62.7,57,5012,6.65,6.62,4.16
1.17,Ideal,G,SI2,62,55,5012,6.81,6.74,4.2
1.02,Very Good,I,VS2,62.1,59,5013,6.37,6.44,3.98
1.03,Ideal,D,SI2,61.8,54,5013,6.46,6.52,4.01
0.9,Ideal,H,VS1,60.9,56,5013,6.25,6.27,3.81
0.9,Ideal,H,VS1,62.1,56,5013,6.15,6.2,3.83
0.9,Ideal,H,VS1,62,54,5013,6.2,6.23,3.86
1,Good,D,SI1,64.8,58,5013,6.23,6.27,4.05
1.08,Very Good,F,SI1,62.9,57,5014,6.53,6.54,4.11
1.13,Very Good,F,SI2,59.1,59,5014,6.81,6.87,4.04
1.14,Very Good,E,SI2,60.2,58,5014,6.71,6.78,4.06
0.92,Ideal,E,SI1,61.7,57,5014,6.24,6.27,3.86
1.02,Ideal,H,SI1,61.9,57,5014,6.46,6.4,3.98
1.21,Very Good,I,SI2,63.2,57,5014,6.7,6.66,4.22
1.26,Premium,J,VS2,62.5,58,5015,6.9,6.92,4.32
1.26,Premium,J,VS2,62.1,58,5015,6.9,6.95,4.3
1.11,Good,D,SI2,58,62,5015,6.77,6.81,3.94
1.2,Very Good,H,SI2,61.9,57,5016,6.78,6.85,4.22
1.2,Very Good,J,VS1,59.1,61,5016,6.94,7,4.12
1.09,Ideal,F,SI2,61.2,55,5016,6.64,6.67,4.07
1.02,Ideal,G,SI1,62.4,55,5016,6.43,6.48,4.03
1.16,Premium,I,VS2,62.4,58,5016,6.69,6.65,4.16
1.13,Very Good,F,SI1,61.2,59,5017,6.72,6.75,4.12
1.13,Very Good,F,SI1,61,58,5017,6.69,6.75,4.1
1.04,Premium,G,SI1,60.9,59,5017,6.57,6.53,3.99
1.08,Very Good,E,SI2,62.9,59,5018,6.44,6.53,4.08
1.28,Good,H,SI2,63.6,56,5018,6.92,6.78,4.37
1.03,Ideal,H,SI1,59.8,57,5018,6.64,6.57,3.95
1,Good,I,VS1,63.7,56,5018,6.34,6.32,4.03
1.12,Ideal,G,SI2,61.5,57,5018,6.74,6.68,4.13
1.17,Ideal,H,SI2,62.3,57,5019,6.74,6.78,4.21
1.02,Very Good,F,SI1,61.9,58,5019,6.43,6.49,4
1.05,Very Good,G,SI1,59.7,58,5019,6.6,6.66,3.96
0.71,Ideal,F,VVS1,61,56,5019,5.77,5.8,3.53
0.71,Ideal,F,VVS1,61.7,56,5019,5.73,5.77,3.55
0.71,Ideal,F,VVS1,61.4,56,5019,5.75,5.78,3.54
1,Very Good,I,VS2,61.9,59,5020,6.35,6.38,3.94
1.06,Very Good,H,SI1,62.6,58,5020,6.4,6.51,4.04
1.01,Ideal,F,SI2,60.4,59,5020,6.48,6.51,3.92
1.01,Ideal,I,SI1,62.5,56,5020,6.4,6.36,3.99
1.01,Ideal,H,SI1,60.4,58,5020,6.5,6.54,3.94
1.06,Ideal,H,SI1,62.1,56,5020,6.51,6.57,4.06
1.01,Good,G,SI1,63.7,60,5021,6.28,6.32,4.01
1.01,Good,G,SI1,63.2,59,5021,6.32,6.36,4.01
1.03,Ideal,D,SI2,62.5,55,5021,6.41,6.48,4.03
1.27,Ideal,J,SI2,61.2,56,5021,6.99,6.95,4.27
1.39,Ideal,F,SI2,62.2,56,5021,7.2,7.15,4.46
1.09,Ideal,G,SI1,62.2,56,5022,6.6,6.55,4.09
1.01,Ideal,I,VS1,62.5,59,5022,6.33,6.41,3.98
0.91,Ideal,G,VS2,61.4,57,5023,6.23,6.28,3.84
0.92,Ideal,E,VS1,62.6,57,5023,6.18,6.13,3.85
1.03,Very Good,G,SI1,62.6,56,5024,6.41,6.44,4.02
1.17,Very Good,G,SI1,63.3,61,5025,6.65,6.59,4.19
1,Very Good,E,SI1,63.3,56,5026,6.31,6.39,4.02
1.01,Very Good,H,SI1,61.9,59,5026,6.4,6.43,3.97
1.24,Premium,J,VS2,61.4,59,5026,6.91,6.83,4.22
0.7,Premium,D,IF,60,59,5027,5.75,5.81,3.47
1.12,Premium,I,VS2,61.9,58,5027,6.63,6.68,4.12
1.32,Premium,E,I1,62.2,58,5027,7.05,6.97,4.36
1.07,Ideal,F,SI2,60.7,56.9,5027,6.62,6.65,4.02
1.25,Premium,H,SI1,60.7,58,5027,7.04,6.99,4.26
1,Premium,E,SI1,62.7,61,5027,6.37,6.32,3.98
1,Fair,E,SI1,57.6,57,5027,6.56,6.52,3.77
1.05,Ideal,H,SI1,62.5,56,5027,6.52,6.43,4.05
1.05,Very Good,H,SI1,63.2,56,5027,6.51,6.47,4.1
1.21,Ideal,F,SI2,61.5,57,5028,6.88,6.82,4.21
0.92,Premium,D,SI1,62.5,59,5028,6.24,6.14,3.87
1.01,Premium,H,VS2,61.3,58,5028,6.46,6.49,3.97
1.01,Very Good,H,VS2,62.1,57,5028,6.39,6.45,3.99
1.01,Ideal,H,VS2,61.9,57,5028,6.42,6.48,3.99
0.97,Ideal,D,SI1,62.8,56,5028,6.24,6.3,3.94
1.21,Fair,F,SI2,65.3,53,5028,6.74,6.68,4.38
1.54,Premium,J,SI1,61.1,58,5028,7.48,7.41,4.55
1.21,Good,I,VS2,64.1,61,5028,6.7,6.66,4.28
1.21,Good,J,VVS2,63.7,56,5028,6.71,6.67,4.26
1.03,Very Good,E,SI1,62.6,58,5029,6.42,6.49,4.04
1.22,Very Good,J,SI1,62.2,59,5029,6.77,6.8,4.22
0.86,Good,D,VVS1,64.3,53,5029,6.02,6.12,3.89
1.01,Ideal,H,SI1,62.3,55,5029,6.46,6.45,4.02
1,Very Good,F,SI1,63.8,56,5030,6.25,6.29,4
1.23,Ideal,J,VS2,61.5,57,5030,6.85,6.9,4.23
1.07,Premium,H,SI1,60,60,5031,6.61,6.65,3.98
1.07,Ideal,H,SI1,60.9,57,5031,6.61,6.68,4.05
1.13,Ideal,I,VS2,62.3,56,5031,6.73,6.63,4.16
1.17,Ideal,F,SI1,63,54,5032,6.71,6.66,4.21
0.91,Premium,H,VVS1,62.5,59,5032,6.16,6.19,3.86
1.14,Very Good,F,SI2,59.2,63,5033,6.78,6.86,4.04
0.91,Very Good,D,SI1,62.8,58,5033,6.16,6.19,3.88
1.07,Premium,E,SI2,62.9,59,5033,6.55,6.46,4.09
1.07,Premium,E,SI2,61.3,59,5033,6.64,6.58,4.05
1.16,Very Good,E,SI2,62.4,55,5034,6.69,6.77,4.2
1.01,Premium,G,SI1,59.6,58,5034,6.61,6.54,3.92
1.09,Ideal,J,SI2,62,55,5034,6.58,6.64,4.1
1.01,Very Good,H,VS2,63.1,56,5034,6.41,6.36,4.03
1.01,Fair,E,SI1,64.7,56,5034,6.34,6.27,4.08
1.09,Very Good,E,SI2,60.9,59,5035,6.61,6.75,4.07
1.09,Ideal,E,SI2,61.6,55,5035,6.6,6.64,4.08
1.09,Ideal,E,SI2,61.9,55,5035,6.6,6.64,4.1
1.12,Very Good,I,VS1,59.6,58,5036,6.82,6.77,4.05
1,Very Good,H,SI1,61.5,59,5036,6.35,6.4,3.92
1.03,Ideal,G,SI1,60.9,57,5037,6.54,6.5,3.97
1.23,Very Good,G,SI2,60.8,59,5037,6.88,6.97,4.21
1.1,Ideal,I,SI1,62.1,57,5037,6.6,6.64,4.11
1.03,Premium,G,SI1,61.9,56,5037,6.54,6.48,4.03
1.02,Premium,F,SI1,59.2,58,5038,6.53,6.5,3.86
1.15,Ideal,I,VS2,61.7,59,5038,6.68,6.73,4.14
1.02,Very Good,F,SI1,63.3,58,5038,6.39,6.35,4.03
1.02,Very Good,F,SI1,62.1,63,5038,6.48,6.36,3.99
1.26,Premium,J,SI2,62.7,58,5038,6.95,6.9,4.34
1.23,Premium,G,SI1,62.5,62,5039,6.87,6.78,4.27
1.2,Premium,H,SI2,62.4,61,5040,6.81,6.78,4.24
0.9,Very Good,D,SI1,60.6,59,5040,6.23,6.28,3.79
1.2,Good,I,SI1,65,59,5040,6.51,6.57,4.25
1.25,Premium,I,SI2,61,60,5040,6.98,6.93,4.24
1.2,Ideal,J,VS1,61.8,55,5040,6.81,6.76,4.19
1.5,Fair,I,I1,65.1,59,5040,7.12,6.96,4.58
1.2,Ideal,H,SI2,62.3,57,5040,6.83,6.75,4.23
1.2,Very Good,I,SI1,63.1,59,5040,6.7,6.67,4.22
1,Premium,E,SI1,61.2,58,5040,6.39,6.35,3.9
1,Fair,F,SI1,61.3,62,5040,6.45,6.37,3.93
1.01,Very Good,I,VS1,63.4,57,5041,6.32,6.39,4.03
1.21,Fair,H,VS2,64.5,56,5041,6.7,6.66,4.31
1.07,Premium,F,SI1,61.7,58,5042,6.54,6.61,4.06
1.11,Very Good,D,SI2,61.3,60,5042,6.54,6.6,4.03
1.11,Very Good,D,SI2,59.9,57,5042,6.72,6.74,4.03
1.09,Ideal,E,SI2,61.7,58,5042,6.58,6.62,4.07
1.09,Premium,D,SI2,61.3,58,5042,6.65,6.62,4.07
1.22,Premium,J,SI1,61.9,58,5042,6.87,6.84,4.24
1.06,Premium,G,SI1,61.9,55,5043,6.61,6.54,4.07
1.16,Very Good,D,SI2,62.5,60,5044,6.64,6.7,4.17
1.04,Ideal,G,SI2,62.4,54,5044,6.49,6.53,4.06
1.02,Ideal,G,SI1,62.2,56,5044,6.46,6.44,4.01
1.02,Ideal,G,SI1,60.6,59,5044,6.55,6.52,3.96
1.08,Premium,G,SI1,59.4,60,5044,6.7,6.63,3.96
1.04,Good,F,SI1,63.4,59,5045,6.4,6.44,4.07
1.24,Very Good,J,SI1,61.6,60,5045,6.89,6.95,4.26
1.95,Premium,H,I1,60.3,59,5045,8.1,8.05,4.87
1,Very Good,H,VS2,59.7,59,5046,6.52,6.57,3.91
1.24,Very Good,I,SI1,62.5,57,5046,6.84,6.89,4.29
1.12,Ideal,F,SI2,61.9,55,5046,6.68,6.72,4.15
1.15,Very Good,H,SI1,60.9,57,5047,6.72,6.8,4.12
1.05,Very Good,H,SI1,60.2,62,5047,6.52,6.57,3.94
1.3,Very Good,J,SI2,61.1,61,5047,6.95,7,4.26
1.02,Very Good,H,SI1,64.4,59,5047,6.24,6.36,4.06
1.02,Ideal,H,SI1,61.7,57,5047,6.45,6.48,3.99
1.14,Premium,D,SI2,59.2,61,5047,6.84,6.82,4.04
1.06,Very Good,H,SI1,59.1,58,5048,6.66,6.71,3.95
1.08,Ideal,H,SI2,61.4,57,5049,6.6,6.66,4.07
1.2,Good,G,SI2,63.6,54,5049,6.71,6.75,4.28
1.08,Ideal,I,SI1,62.6,53.9,5049,6.51,6.56,4.09
1.01,Very Good,G,SI1,62.8,56,5049,6.35,6.43,4.01
1.01,Ideal,G,SI1,60.6,59,5049,6.45,6.49,3.92
1.03,Very Good,H,SI1,60.4,60,5050,6.41,6.53,3.91
1.01,Premium,H,VS2,62.6,61,5050,6.33,6.29,3.95
1.2,Ideal,I,SI2,60.5,58,5050,6.92,6.83,4.16
1.01,Very Good,H,VS2,61,63,5050,6.41,6.38,3.9
1.01,Very Good,H,VS2,63.5,61,5050,6.32,6.24,3.99
1.13,Premium,H,SI1,60.1,60,5050,6.77,6.73,4.06
1.13,Premium,H,SI1,60.9,59,5050,6.79,6.7,4.11
1.01,Good,D,VS1,56.8,61,5050,6.5,6.45,3.68
1.13,Premium,H,SI1,62,58,5050,6.67,6.63,4.12
1.01,Good,G,VS2,60.2,65,5050,6.55,6.48,3.92
1.13,Ideal,H,SI1,62,57,5050,6.73,6.66,4.15
1,Very Good,E,SI1,63.3,57,5051,6.3,6.36,4.01
1,Very Good,E,SI1,63.1,57,5051,6.36,6.39,4.02
1.01,Very Good,G,SI1,63.4,58,5051,6.29,6.4,4.02
2,Premium,J,I1,61.5,59,5051,8.11,8.06,4.97
1.11,Ideal,J,VS2,61.7,54,5051,6.64,6.69,4.11
0.92,Ideal,D,SI2,61.9,55,5051,6.24,6.27,3.87
1.01,Ideal,D,SI2,61.6,57,5051,6.32,6.45,3.93
1.01,Good,G,SI1,58.4,61,5051,6.51,6.61,3.83
1,Good,E,SI1,57.5,62,5051,6.5,6.58,3.76
0.72,Ideal,F,VVS1,60.8,56,5051,5.83,5.81,3.54
0.88,Very Good,F,VVS2,62,59,5052,6.09,6.13,3.79
1.13,Very Good,E,SI2,60.3,58,5052,6.78,6.86,4.11
0.65,Ideal,D,VVS1,60.9,57,5052,5.58,5.61,3.41
1.2,Good,J,VS2,63.7,56,5053,6.67,6.62,4.23
1.14,Very Good,H,VS2,59.9,57,5053,6.78,6.81,4.07
1.2,Premium,J,VS2,62.6,57,5053,6.8,6.72,4.23
1.11,Good,I,VS2,63.6,58,5054,6.57,6.52,4.16
1.01,Good,D,SI1,63.9,62,5055,6.25,6.31,4.01
1.01,Good,D,SI1,63.9,61,5055,6.28,6.31,4.02
1.01,Very Good,D,SI1,58.1,61,5055,6.59,6.66,3.85
1.01,Very Good,H,VS1,59.6,58,5055,6.46,6.5,3.86
1.01,Very Good,H,VS1,63,55,5055,6.35,6.41,4.02
1.01,Good,D,SI1,63.9,60,5055,6.29,6.32,4.03
1.02,Ideal,E,SI1,60.7,57,5055,6.55,6.51,3.97
1.02,Good,G,SI1,63.6,58,5055,6.39,6.34,4.05
1.02,Ideal,G,SI1,62.8,57,5055,6.38,6.35,4
1.07,Premium,H,SI1,62.1,58,5055,6.56,6.49,4.05
1.07,Premium,H,SI1,62.2,57,5055,6.57,6.48,4.06
1.24,Ideal,H,VS1,63,55,5055,6.84,6.81,4.3
1.02,Premium,H,SI1,59.6,57,5055,6.63,6.55,3.93
0.91,Premium,E,VS2,62.3,58,5055,6.21,6.15,3.85
1.02,Premium,D,SI2,62.8,55,5055,6.46,6.38,4.03
0.91,Premium,E,VS2,61.1,58,5055,6.28,6.2,3.81
1.12,Premium,H,VS1,59.6,57,5055,6.82,6.77,4.05
1.14,Good,I,VS1,63.3,56,5056,6.6,6.68,4.2
1.01,Good,I,VS1,59,63.5,5056,6.5,6.57,3.86
1.22,Very Good,J,VS1,59,63,5056,7.05,7.02,4.15
1.1,Premium,H,SI1,60.4,60,5056,6.72,6.68,4.05
0.76,Ideal,E,VVS1,62.2,55,5056,5.86,5.82,3.63
0.91,Premium,E,VS1,62.7,59,5057,6.15,6.19,3.87
0.91,Very Good,E,VS1,62.8,60,5057,6.08,6.11,3.83
1.08,Ideal,G,SI2,61.3,57,5057,6.55,6.64,4.04
1.05,Premium,D,SI2,60.4,57,5057,6.6,6.55,3.97
1,Very Good,F,SI1,61.8,58,5058,6.37,6.44,3.96
1,Premium,F,SI1,59.8,59,5058,6.49,6.55,3.9
1.02,Very Good,F,SI1,63.1,55,5058,6.45,6.38,4.05
1.12,Premium,I,VS1,62.2,59,5058,6.66,6.59,4.12
1.26,Premium,E,SI2,60.3,60,5058,7,6.94,4.2
1,Premium,F,SI1,62.1,59,5060,6.36,6.39,3.96
1,Good,E,SI1,64.2,58,5061,6.25,6.28,4.02
1.11,Ideal,G,SI1,62.6,57,5061,6.64,6.59,4.14
1.13,Ideal,G,SI2,61.1,54,5062,6.77,6.74,4.13
1.01,Fair,H,VS1,61.4,66,5062,6.34,6.24,3.87
1.01,Ideal,H,SI1,61,56,5062,6.48,6.43,3.94
1.22,Premium,H,SI1,60.6,58,5063,6.91,6.86,4.17
1.37,Very Good,J,SI2,60.7,60,5063,7.07,7.19,4.33
1.03,Ideal,H,SI1,62,57,5063,6.53,6.47,4.03
1.07,Ideal,H,VS1,60.2,57,5063,6.61,6.55,3.96
1.29,Ideal,D,I1,61.3,56,5065,6.99,7.05,4.3
1.07,Ideal,H,SI1,61.5,56,5065,6.6,6.66,4.08
1.34,Very Good,E,SI2,62.1,63,5065,7.06,7.01,4.37
1.01,Very Good,J,VVS2,63.7,57,5067,6.31,6.35,4.03
1.01,Very Good,I,VS2,62.9,56,5067,6.38,6.43,4.03
1.01,Very Good,I,VS2,60.9,59,5067,6.42,6.45,3.92
1.01,Very Good,F,SI2,61,60,5067,6.42,6.46,3.93
1.25,Ideal,J,VS2,62.6,54,5067,6.94,6.9,4.33
1.04,Ideal,E,SI2,61.1,56,5067,6.55,6.51,3.99
0.9,Good,E,VS1,62.2,60,5068,6.12,6.16,3.82
1.29,Very Good,J,VS2,61.3,60,5068,6.96,6.98,4.27
0.34,Premium,E,SI1,60.7,60,596,4.48,4.51,2.73
0.34,Premium,G,VS2,61.3,58,596,4.51,4.53,2.77
0.34,Premium,G,VS2,61.1,60,596,4.51,4.53,2.76
0.34,Premium,H,VS1,61.6,59,596,4.49,4.54,2.78
0.34,Ideal,G,VS2,61.3,55,596,4.49,4.51,2.76
0.34,Premium,E,SI1,59.3,58,596,4.55,4.59,2.71
0.34,Premium,G,VS2,61,58,596,4.46,4.49,2.73
0.34,Ideal,G,VS2,61.5,57,596,4.47,4.51,2.76
0.34,Premium,G,VS2,61.2,58,596,4.46,4.5,2.74
0.34,Premium,G,VS2,62,59,596,4.43,4.47,2.76
0.4,Very Good,J,VS2,62.5,60,596,4.67,4.71,2.93
0.4,Very Good,J,VS2,60.9,62,596,4.73,4.76,2.89
0.34,Ideal,E,SI1,61.4,55,596,4.48,4.54,2.77
0.34,Ideal,G,VS2,61.8,56,596,4.48,4.52,2.78
0.34,Ideal,G,VS2,62,55,596,4.46,4.48,2.77
0.34,Premium,G,VS2,62.4,59,596,4.41,4.47,2.77
0.34,Ideal,G,VS2,62,56,596,4.47,4.5,2.78
0.4,Good,I,SI1,63.2,55,596,4.68,4.72,2.97
0.34,Premium,E,SI1,61.9,59,596,4.44,4.48,2.76
0.34,Ideal,E,SI1,61.4,54,596,4.5,4.53,2.77
0.34,Ideal,G,VS2,62.2,57,596,4.44,4.47,2.77
0.34,Ideal,E,SI1,61.8,56,596,4.45,4.48,2.76
0.34,Very Good,H,VS1,61.3,56,596,4.48,4.53,2.76
0.34,Ideal,G,VS2,61.1,55,596,4.52,4.55,2.77
0.34,Good,H,VS1,63.1,57,596,4.4,4.44,2.79
0.34,Good,G,VS2,63.1,57,596,4.43,4.47,2.81
0.34,Ideal,G,VS2,61.4,57,596,4.48,4.51,2.76
0.34,Ideal,G,VS2,61.7,56,596,4.48,4.53,2.78
0.34,Ideal,G,VS2,61.9,55,596,4.49,4.53,2.79
0.34,Premium,H,VS1,60.8,59,596,4.48,4.53,2.74
1.44,Very Good,E,I1,61.1,62,5068,7.15,7.23,4.39
1,Good,G,VS2,62.7,58,5068,6.24,6.33,3.94
1.01,Ideal,E,SI1,62.2,56,5068,6.43,6.4,3.99
1,Premium,H,VS2,59.6,59,5069,6.54,6.47,3.88
1.04,Very Good,G,SI1,61.8,59,5070,6.49,6.55,4.03
1.2,Ideal,J,SI1,61.9,57,5071,6.8,6.87,4.23
1.54,Premium,H,I1,62,60,5071,7.4,7.32,4.56
1.09,Very Good,I,VS2,62.6,57,5072,6.55,6.62,4.12
1.16,Premium,F,SI2,62.1,59,5072,6.71,6.76,4.18
1.22,Very Good,I,SI2,62.9,56,5072,6.79,6.84,4.29
1.05,Very Good,H,SI1,63.2,59,5072,6.39,6.46,4.06
1.25,Premium,J,SI1,62,58,5073,6.88,6.9,4.27
1.1,Very Good,E,SI2,63,56,5073,6.59,6.55,4.14
1.11,Ideal,I,VS2,62.2,56,5073,6.69,6.62,4.14
1.51,Fair,I,I1,65.7,61,5074,7.08,7.02,4.63
1.14,Ideal,I,VS2,62.9,56,5075,6.71,6.67,4.21
1.06,Premium,H,SI1,61,58,5075,6.61,6.57,4.02
1.03,Premium,D,SI2,60.6,60,5076,6.52,6.46,3.93
1.02,Very Good,F,SI1,60.2,60,5077,6.55,6.61,3.96
1.07,Ideal,F,SI2,62,56,5077,6.51,6.55,4.09
1.01,Very Good,E,SI1,63.3,58,5077,6.39,6.37,4.04
1.01,Premium,E,SI1,63,61,5077,6.42,6.37,4.03
1.16,Ideal,G,SI2,61.6,55,5078,6.78,6.8,4.18
1.08,Premium,H,SI1,62.6,58,5078,6.53,6.56,4.1
1.01,Very Good,F,SI1,62.4,60,5078,6.35,6.4,3.98
1.01,Very Good,F,SI1,62.7,56,5078,6.39,6.36,4
1.03,Premium,H,VS2,62.4,58,5078,6.47,6.39,4.01
0.93,Fair,D,VS2,56.3,67,5078,6.52,6.45,3.65
1.02,Ideal,H,SI1,59.9,56,5079,6.54,6.51,3.91
1.26,Premium,I,SI2,60.1,59,5080,7.03,6.99,4.21
1.26,Premium,J,SI1,61.8,58,5080,6.91,6.88,4.26
1.2,Premium,I,SI2,60,58,5080,6.93,6.91,4.15
1.08,Ideal,E,SI2,61.7,57,5080,6.6,6.55,4.06
0.9,Ideal,G,VS1,62.5,57,5080,6.18,6.13,3.84
0.9,Ideal,D,SI1,61.6,55,5081,6.23,6.27,3.85
1.1,Ideal,E,SI2,61.6,56,5082,6.61,6.64,4.08
1.1,Very Good,I,VS1,60.2,59,5082,6.67,6.71,4.03
1.2,Good,H,SI2,62.2,62,5082,6.69,6.75,4.18
1,Very Good,E,SI1,61.1,60,5082,6.42,6.47,3.94
1,Very Good,E,SI1,60.9,59,5082,6.38,6.43,3.9
1,Good,E,SI1,63.7,60,5082,6.24,6.29,3.99
1.2,Very Good,J,SI1,62.5,58,5082,6.74,6.79,4.23
1.21,Premium,H,SI2,58.2,59,5082,7.05,7.03,4.1
1.21,Premium,H,SI2,61.1,60,5082,6.91,6.86,4.21
1.21,Premium,H,SI2,62.1,56,5082,6.8,6.76,4.21
1.02,Ideal,G,SI1,62.2,56,5082,6.44,6.46,4.01
1.21,Premium,H,SI2,60,61,5082,6.88,6.79,4.1
1.2,Very Good,J,SI1,61.8,57.7,5083,6.78,6.91,4.23
1.83,Fair,J,I1,70,58,5083,7.34,7.28,5.12
1.23,Ideal,J,SI2,63.2,58,5083,6.82,6.74,4.29
1.02,Premium,H,SI1,61.1,58,5084,6.51,6.46,3.96
1.01,Very Good,E,SI1,63.1,57,5085,6.33,6.44,4.03
1.2,Good,H,SI2,59.7,63,5085,6.84,6.87,4.09
1.09,Fair,H,SI1,64.4,60,5085,6.49,6.42,4.16
1.13,Very Good,E,SI1,60.8,58,5086,6.71,6.77,4.1
0.92,Very Good,D,SI1,62,58,5086,6.18,6.21,3.84
0.72,Ideal,F,VVS1,61.8,57,5086,5.73,5.76,3.55
1.04,Premium,G,SI1,61.4,57,5086,6.56,6.5,4.01
1.03,Premium,F,SI1,61.5,59,5087,6.49,6.42,3.97
1.03,Premium,F,SI1,58.6,62,5087,6.65,6.6,3.88
1.03,Premium,F,SI1,61.5,57,5087,6.53,6.44,3.99
1.03,Premium,F,SI1,60.9,61,5087,6.54,6.5,3.97
0.9,Premium,F,VS1,62.7,58,5088,6.14,6.17,3.86
1.12,Very Good,G,SI1,62.5,58,5088,6.6,6.64,4.14
1.12,Very Good,G,SI1,59.5,62,5088,6.76,6.81,4.04
1.18,Very Good,E,SI2,62.5,60,5088,6.7,6.74,4.2
1.03,Good,D,SI1,60.1,62,5088,6.55,6.53,3.93
1.1,Premium,G,SI1,62.3,58,5088,6.61,6.55,4.1
1,Premium,G,SI1,59.6,60,5088,6.49,6.43,3.85
1.18,Ideal,I,SI1,62.2,56,5088,6.85,6.75,4.23
1.18,Premium,I,SI1,62.8,56,5088,6.74,6.71,4.22
1.1,Premium,D,SI2,61.5,60,5088,6.64,6.58,4.06
1,Ideal,G,SI1,61.9,56,5088,6.45,6.37,3.97
1.02,Premium,F,SI1,62.2,58,5089,6.4,6.46,4
1.01,Fair,F,VS2,65.2,52,5090,6.31,6.29,4.11
1.06,Very Good,E,SI1,61.4,58,5090,6.53,6.62,4.04
1.01,Premium,H,SI1,62.3,58,5090,6.44,6.4,4
1.04,Premium,H,SI1,61,58,5090,6.6,6.54,4.01
1.01,Premium,F,SI1,62.9,58,5090,6.43,6.35,4.02
1.01,Premium,G,SI1,60.8,60,5090,6.47,6.39,3.91
1.16,Premium,H,SI1,61.9,59,5091,6.73,6.74,4.17
1.21,Ideal,I,SI2,60.6,56,5091,6.92,6.94,4.2
1.16,Ideal,I,SI1,62.6,57,5091,6.71,6.67,4.19
1.07,Premium,G,SI1,63,55,5091,6.55,6.47,4.1
1.07,Premium,G,SI1,61,58,5091,6.66,6.59,4.04
1.11,Premium,F,SI1,60.4,61,5091,6.72,6.65,4.04
1.17,Ideal,I,SI1,60,59,5092,6.82,6.87,4.11
1.03,Ideal,H,SI1,62,56,5093,6.44,6.49,4.01
1,Good,D,SI1,64.2,60,5093,6.22,6.28,4.01
1.16,Ideal,E,SI2,59.9,57,5093,6.82,6.8,4.08
1.16,Ideal,E,SI2,62.7,56,5093,6.73,6.69,4.21
1.07,Ideal,I,SI1,61.7,56,5093,6.59,6.57,4.06
1.12,Good,H,SI1,59.8,61,5094,6.72,6.85,4.06
1.33,Premium,I,SI2,59.7,59,5094,7.21,7.15,4.29
1.05,Ideal,H,SI1,61.4,57,5095,6.49,6.54,4
1.08,Good,E,SI1,63.1,59,5096,6.49,6.53,4.11
1.08,Ideal,E,SI1,62.6,57,5096,6.53,6.56,4.1
1,Fair,D,SI1,67.3,57,5096,6.15,6.04,4.1
1,Premium,D,SI1,61.4,58,5096,6.4,6.34,3.91
1.14,Ideal,I,SI1,60.8,58,5096,6.71,6.74,4.09
1.21,Good,J,VS2,61,64,5096,6.89,6.79,4.17
1.01,Premium,F,SI2,62.2,59,5096,6.41,6.38,3.98
1.3,Premium,H,SI2,61.3,58,5096,6.99,6.95,4.27
1,Premium,H,VS2,61.3,61,5096,6.44,6.38,3.93
1.21,Premium,J,VS2,61.9,59,5096,6.84,6.77,4.21
1,Premium,D,SI1,62.2,58,5096,6.28,6.23,3.89
1,Good,D,SI1,60.4,64,5096,6.39,6.3,3.83
1,Ideal,G,SI1,63,55,5096,6.42,6.41,4.04
1.2,Premium,I,SI1,61.4,57,5098,6.87,6.8,4.2
1.09,Premium,G,VS2,62.1,57,5098,6.6,6.55,4.08
1.22,Ideal,H,SI2,61,57,5099,6.89,6.95,4.22
1.01,Ideal,I,VS2,62,54,5099,6.43,6.47,4
1.02,Premium,H,VS2,61.8,58,5100,6.49,6.43,3.99
1.31,Very Good,J,SI2,61.8,59,5100,6.96,7.02,4.32
1.13,Premium,H,SI1,62.3,58,5101,6.67,6.68,4.16
0.95,Very Good,D,SI1,63.7,55,5101,6.2,6.24,3.96
1.05,Ideal,I,VS1,61.5,55,5101,6.56,6.61,4.05
1.03,Premium,E,SI1,61.3,60,5101,6.53,6.51,4
0.91,Premium,E,VS1,60.6,58,5101,6.32,6.25,3.81
1.04,Premium,H,VVS1,60.4,58,5102,6.58,6.53,3.96
0.9,Very Good,G,VVS2,59.8,60,5102,6.23,6.28,3.74
0.9,Very Good,E,VS1,60.7,61,5102,6.21,6.24,3.78
1.04,Ideal,H,SI1,62.3,57,5102,6.45,6.48,4.03
1.11,Ideal,H,SI1,62,56,5102,6.65,6.61,4.11
1.11,Premium,H,SI1,62.1,58,5102,6.6,6.57,4.09
1.07,Ideal,I,VS1,62.2,58,5103,6.52,6.57,4.07
1.36,Premium,H,SI2,60.1,56,5103,7.23,7.18,4.38
1.03,Premium,I,VS1,60.4,59,5104,6.57,6.51,3.95
1.05,Ideal,D,SI1,60,55,5104,6.66,6.61,3.98
1.04,Ideal,I,VS2,61.5,57,5105,6.49,6.52,4
1.03,Premium,G,SI1,60.5,60,5105,6.52,6.48,3.93
1.03,Ideal,D,SI2,61.8,54,5105,6.52,6.46,4.01
1.03,Premium,H,SI1,59.2,60,5105,6.62,6.58,3.91
1.08,Ideal,F,SI1,62.9,57,5106,6.54,6.53,4.11
1.34,Fair,G,SI2,64.7,55,5106,7.03,6.97,4.53
1.01,Very Good,F,SI1,63.2,56,5107,6.32,6.37,4.01
1.01,Very Good,F,SI1,62,56,5107,6.41,6.47,3.99
1.12,Premium,D,SI2,58.2,60,5107,6.9,6.81,3.99
1.16,Ideal,I,SI1,62.4,57,5107,6.71,6.75,4.2
1.01,Ideal,G,SI1,62.9,56,5107,6.39,6.43,4.03
1.26,Premium,J,VS2,62.5,58,5107,6.92,6.9,4.32
1.2,Premium,J,VS1,59.1,61,5107,7,6.94,4.12
1.2,Ideal,I,SI1,62.5,57,5107,6.77,6.71,4.21
1.2,Very Good,I,VVS2,61.7,63,5107,6.72,6.7,4.13
1.5,Good,J,SI2,63.7,58,5107,7.19,7.13,4.56
1.07,Ideal,H,VS2,61.8,56,5108,6.52,6.55,4.04
1.05,Ideal,D,SI2,61.9,56,5110,6.5,6.53,4.03
1.25,Good,J,SI1,63.6,57,5110,6.86,6.81,4.35
0.95,Very Good,G,VS1,61.7,58,5111,6.26,6.34,3.89
1.21,Very Good,I,SI2,62,56,5111,6.79,6.86,4.23
1.03,Ideal,G,SI1,60.1,59,5111,6.6,6.57,3.96
1.08,Premium,H,VS1,62.5,60,5111,6.55,6.51,4.08
1.17,Ideal,H,SI2,62.3,57,5111,6.78,6.74,4.21
0.99,Very Good,F,SI1,62.5,58,5112,6.36,6.38,3.98
0.87,Ideal,E,SI1,61.5,57,5112,6.12,6.15,3.77
1.06,Premium,G,SI1,62.2,57,5113,6.53,6.47,4.04
1,Very Good,E,SI1,63.3,57,5113,6.28,6.32,3.99
1.01,Good,G,SI1,63.7,60,5113,6.32,6.28,4.01
1.01,Very Good,G,SI1,63.2,59,5113,6.36,6.32,4.01
1.06,Premium,G,SI1,61.5,59,5113,6.57,6.53,4.03
1.26,Premium,J,SI1,61.7,58,5114,6.91,6.99,4.29
1.2,Very Good,H,SI1,63.3,57,5114,6.75,6.7,4.26
1.02,Ideal,F,SI2,62.9,58,5115,6.34,6.42,4.01
1.2,Very Good,G,SI2,62.6,60,5116,6.68,6.74,4.2
1.2,Very Good,G,SI2,59.7,59,5116,6.89,6.94,4.13
1.06,Ideal,I,VS2,61.4,55,5116,6.59,6.61,4.05
0.9,Premium,E,VS1,62.1,59,5116,6.15,6.09,3.8
1.01,Very Good,G,VS2,62.8,58,5119,6.35,6.42,4.01
1,Very Good,F,SI1,60.5,60,5119,6.38,6.45,3.88
1.12,Premium,I,VS2,61.9,58,5119,6.68,6.63,4.12
1.13,Ideal,E,SI2,61.8,57,5120,6.68,6.65,4.12
1.01,Premium,H,VS2,62.1,57,5120,6.45,6.39,3.99
1.15,Premium,I,VS2,62.6,56,5120,6.74,6.67,4.2
1.15,Premium,F,SI2,61.1,57,5120,6.82,6.77,4.15
1,Very Good,H,VS2,62.9,57,5121,6.31,6.35,3.98
1.27,Premium,J,SI1,61.8,58,5121,6.97,6.91,4.29
0.9,Very Good,F,SI1,62.3,57,5122,6.13,6.16,3.83
1,Very Good,F,SI1,63.5,56,5122,6.28,6.35,4.01
1.01,Very Good,D,SI1,62.2,58,5122,6.36,6.4,3.97
0.9,Ideal,F,SI1,61,56,5122,6.17,6.19,3.77
1.01,Fair,D,SI1,66.2,56,5122,6.05,6.1,4.02
1.15,Premium,I,SI2,61.3,57.3,5123,6.71,6.78,4.13
0.9,Very Good,D,SI1,62.3,53,5123,6.2,6.22,3.87
1.07,Premium,H,SI1,60,60,5123,6.65,6.61,3.98
1.07,Premium,H,SI1,61.5,57,5123,6.63,6.55,4.05
1.07,Premium,H,SI1,60.4,59,5123,6.65,6.62,4.01
1.07,Ideal,H,SI1,60.9,57,5123,6.68,6.61,4.05
1.21,Ideal,I,SI1,62.4,55,5124,6.78,6.81,4.24
1.16,Ideal,J,SI1,61.8,55,5124,6.75,6.78,4.18
1.3,Good,J,SI2,62.9,56,5124,6.9,6.94,4.35
1.22,Ideal,I,SI1,62.5,56,5124,6.82,6.79,4.25
1.09,Ideal,H,SI1,62.3,55,5125,6.58,6.61,4.11
1.09,Ideal,H,SI1,61.1,57,5125,6.6,6.69,4.1
1.09,Ideal,H,SI1,62.5,56,5125,6.53,6.58,4.1
1.09,Ideal,H,SI1,61.1,57,5125,6.62,6.71,4.07
1.15,Ideal,J,VS2,60.7,55,5125,6.77,6.83,4.13
1.04,Ideal,E,SI2,61.9,57,5125,6.48,6.51,4.02
1.24,Ideal,J,SI1,61.9,56,5125,6.95,6.88,4.28
1.01,Ideal,H,SI1,62.6,55,5126,6.41,6.44,4.02
0.93,Ideal,G,SI1,60.1,57,5126,6.33,6.41,3.83
1.05,Ideal,G,SI2,62.7,57,5127,6.45,6.51,4.06
1.11,Ideal,G,SI1,62,57,5127,6.69,6.61,4.12
1.09,Premium,E,SI2,60.9,59,5127,6.75,6.61,4.07
1.09,Ideal,E,SI2,61.6,55,5127,6.64,6.6,4.08
1.09,Ideal,E,SI2,61.9,55,5127,6.64,6.6,4.1
1.09,Premium,E,SI2,61.4,58,5127,6.67,6.63,4.08
1.24,Premium,J,VS2,62,58,5128,6.87,6.91,4.27
1.05,Ideal,H,SI1,62.4,57,5128,6.49,6.52,4.06
1.03,Premium,H,SI1,62.5,59,5129,6.46,6.41,4.02
1.09,Very Good,H,SI1,60.6,60,5131,6.61,6.68,4.03
1.02,Very Good,H,SI1,59.9,58,5131,6.57,6.66,3.96
1.01,Premium,G,VS2,61.2,59,5131,6.43,6.37,3.92
1.01,Fair,F,SI1,65,61,5131,6.29,6.23,4.07
1.1,Good,H,SI1,63.6,58,5131,6.55,6.5,4.15
1.01,Good,E,SI1,63.6,60,5132,6.32,6.38,4.04
1.01,Good,E,SI1,63.7,58,5132,6.32,6.36,4.04
1.01,Very Good,D,SI1,61.5,54,5132,6.4,6.47,3.96
1.01,Good,E,SI1,63.4,60,5132,6.3,6.34,4.01
1.01,Very Good,E,SI1,58.2,59,5132,6.54,6.59,3.82
1.01,Very Good,E,SI1,62.8,60,5132,6.38,6.39,4.01
1.01,Ideal,E,SI1,61.8,56,5132,6.46,6.51,4.01
1.13,Premium,D,SI2,60.9,59,5133,6.65,6.72,4.07
1.11,Premium,D,SI2,61.3,60,5134,6.6,6.54,4.03
1.05,Premium,D,SI2,58.9,58,5134,6.74,6.67,3.95
1.03,Premium,H,SI1,59.5,58,5134,6.64,6.58,3.93
1.11,Premium,D,SI2,59.9,57,5134,6.74,6.72,4.03
1.14,Premium,F,SI1,62.5,59,5135,6.65,6.67,4.16
0.9,Very Good,G,VS1,61.4,57,5135,6.2,6.24,3.82
1.21,Very Good,J,VS2,62.2,59,5136,6.79,6.84,4.24
1.16,Premium,D,SI2,62.5,60,5136,6.7,6.64,4.17
1.04,Very Good,F,SI1,63.4,59,5137,6.44,6.4,4.07
1.08,Premium,D,SI2,62.1,58,5138,6.62,6.59,4.1
1.01,Premium,G,SI1,62.3,59,5139,6.38,6.3,3.95
1,Very Good,H,VS2,63.3,53,5139,0,0,0
1.15,Premium,H,SI1,60.9,57,5139,6.8,6.72,4.12
1,Premium,H,VS2,59.7,59,5139,6.57,6.52,3.91
1,Ideal,H,VS2,62.5,56,5139,6.41,6.33,3.98
1.33,Fair,F,SI2,64.5,58,5139,6.97,6.86,4.46
1.05,Premium,H,SI1,60.2,62,5139,6.57,6.52,3.94
1.14,Premium,G,SI2,60.9,56,5139,6.8,6.73,4.12
1.2,Very Good,J,VS2,59.9,60,5140,6.98,6.95,4.17
1.01,Ideal,F,SI1,62.3,55,5140,6.37,6.44,3.99
1.21,Premium,H,SI2,60.6,56,5140,6.92,6.84,4.17
1.3,Premium,J,SI2,61.1,61,5140,7,6.95,4.26
1.5,Very Good,J,I1,63.3,58,5141,7.27,7.23,4.59
1.2,Good,G,SI2,63.6,54,5141,6.75,6.71,4.28
1.2,Premium,I,SI2,62.7,58,5141,6.82,6.76,4.26
0.9,Ideal,F,VS2,61.6,57,5141,6.21,6.16,3.81
1.08,Ideal,H,SI2,61.4,57,5141,6.66,6.6,4.07
1.08,Ideal,I,SI1,62.6,54,5141,6.56,6.51,4.09
1.01,Ideal,G,SI1,61.8,55,5141,6.46,6.43,3.98
1.06,Premium,F,SI1,61,58,5142,6.6,6.65,4.04
1.06,Premium,F,SI1,62.1,58,5142,6.5,6.52,4.04
1.06,Very Good,F,SI1,61.2,57,5142,6.58,6.68,4.06
1.2,Very Good,J,SI1,61.2,55,5142,6.84,6.88,4.2
1.07,Very Good,H,SI1,59.2,61,5143,6.65,6.67,3.94
1.09,Ideal,F,SI2,61.6,55,5143,6.59,6.65,4.08
1.03,Ideal,G,SI1,60.3,58,5143,6.57,6.62,3.98
1.06,Ideal,H,SI1,62.2,57,5143,6.56,6.49,4.06
1.01,Fair,F,SI1,57.9,57,5144,6.53,6.57,3.79
0.91,Very Good,E,VS2,61.1,58,5145,6.2,6.28,3.81
1.04,Ideal,F,SI1,61.2,56,5145,6.54,6.6,4.02
1.14,Ideal,H,SI1,61.6,57,5146,6.68,6.73,4.13
1.24,Good,H,SI1,62,65,5146,6.88,6.84,4.25
1.01,Ideal,D,SI1,62.4,54,5147,6.52,6.38,4.03
1.03,Ideal,G,SI1,61.1,57,5147,6.54,6.58,4.01
1.13,Very Good,E,SI2,63.4,59,5147,6.53,6.59,4.16
1.06,Ideal,E,SI2,60.9,57,5147,6.58,6.62,4.02
1.01,Good,D,SI1,63.9,60,5147,6.32,6.29,4.03
1.01,Good,D,SI1,63.9,62,5147,6.31,6.25,4.01
1.01,Good,D,SI1,63.9,61,5147,6.31,6.28,4.02
1.01,Premium,H,VS1,61.6,57,5147,6.47,6.38,3.96
1.01,Premium,D,SI1,59.8,54,5147,6.6,6.5,3.93
1.01,Premium,D,SI1,59.2,61,5147,6.4,6.34,3.77
1.01,Premium,D,SI1,58.1,61,5147,6.66,6.59,3.85
1.01,Fair,D,SI1,64.4,61,5147,6.17,6.13,3.96
1,Good,G,VS2,63.8,59,5148,6.26,6.34,4.02
0.9,Very Good,G,VS1,61.5,56,5148,6.2,6.23,3.82
1.14,Very Good,I,VS1,63.3,56,5148,6.68,6.6,4.2
1.14,Premium,I,VS1,60.3,57,5148,6.83,6.81,4.11
1.13,Ideal,I,SI1,61.9,57,5149,6.68,6.66,4.13
1.09,Ideal,H,SI1,61.4,57,5149,6.66,6.6,4.07
1.09,Premium,H,SI1,60.5,60,5149,6.72,6.67,4.05
1.09,Ideal,H,SI1,62.3,57,5149,6.58,6.54,4.09
0.9,Very Good,E,VS1,61.1,59,5151,6.14,6.2,3.77
0.83,Ideal,E,VS1,62.2,56,5151,5.99,6.03,3.74
1.26,Premium,I,SI2,60.1,59,5151,7,6.91,4.18
1,Premium,F,SI1,59.8,59,5151,6.55,6.49,3.9
1,Premium,F,SI1,61.8,58,5151,6.44,6.37,3.96
1.04,Very Good,F,SI1,59.7,59,5152,6.67,6.56,3.95
1,Premium,F,SI1,62.5,59,5152,6.39,6.34,3.98
1.06,Premium,H,VS2,61.1,59,5152,6.58,6.51,4
1.15,Ideal,J,VS1,61.5,55,5152,6.81,6.76,4.17
1.11,Ideal,I,VS1,63,56,5152,6.61,6.57,4.15
1,Premium,F,SI1,62.1,59,5152,6.39,6.36,3.96
1.11,Premium,E,SI2,62.6,59,5152,6.71,6.65,4.18
1,Premium,G,SI1,60.5,61,5152,6.51,6.45,3.92
1.27,Ideal,I,SI2,62.1,56,5154,6.92,6.96,4.31
1.18,Ideal,I,SI1,62.1,56,5154,6.79,6.77,4.21
0.73,Ideal,F,VVS1,61.9,56,5154,5.75,5.79,3.57
0.34,Ideal,G,VS2,62.2,55,596,4.47,4.5,2.79
0.4,Good,I,SI1,63.9,57,596,4.66,4.7,2.99
0.34,Ideal,G,VS2,61,57,596,4.48,4.5,2.74
0.34,Premium,G,VS2,61.8,58,596,4.47,4.5,2.77
0.34,Ideal,G,VS2,62.1,57,596,4.46,4.5,2.78
0.34,Premium,G,VS2,61.6,60,596,4.47,4.49,2.76
0.34,Ideal,G,VS2,62.7,55,596,4.48,4.49,2.81
0.4,Very Good,I,SI1,59.8,57,596,4.8,4.83,2.88
0.34,Very Good,E,SI1,62.9,55,596,4.47,4.5,2.82
0.34,Premium,G,VS2,60.2,58,596,4.52,4.55,2.73
0.34,Very Good,E,SI1,63,55,596,4.42,4.47,2.8
0.4,Good,G,SI2,63.2,56,596,4.7,4.73,2.98
0.4,Good,I,SI1,63.2,54,596,4.67,4.69,2.96
0.34,Ideal,G,VS2,62.1,55,596,4.46,4.49,2.78
0.4,Good,G,SI2,63.4,59,596,4.64,4.66,2.95
0.34,Premium,H,VS1,62.2,58,596,4.43,4.48,2.77
0.34,Good,E,SI1,63.3,56,596,4.41,4.44,2.8
0.34,Very Good,E,SI1,59,60,596,4.56,4.62,2.71
0.34,Ideal,G,VS2,62,54,596,4.47,4.5,2.78
0.4,Ideal,I,SI1,61.6,56,596,4.68,4.74,2.9
0.34,Good,I,VVS2,63.1,56,596,4.43,4.47,2.81
0.34,Ideal,H,VS1,62.3,55,596,4.45,4.48,2.78
0.34,Premium,H,VS1,62.1,58,596,4.46,4.49,2.78
0.34,Premium,G,VS2,61.6,58,596,4.45,4.51,2.76
0.34,Very Good,G,VS2,60.3,54,596,4.53,4.56,2.74
0.34,Premium,I,VVS2,61.5,60,596,4.45,4.49,2.75
0.26,Very Good,F,VVS2,60,59,597,4.11,4.15,2.48
0.26,Very Good,F,VVS2,63.2,54,597,4.05,4.08,2.57
0.26,Very Good,F,VVS2,59.9,59,597,4.12,4.2,2.49
0.26,Very Good,E,VVS2,63,58,597,4.08,4.11,2.58
0.73,Ideal,F,VVS1,61.4,56,5154,5.8,5.81,3.56
1.01,Ideal,F,SI2,62.4,54,5154,6.41,6.44,4.01
1.01,Ideal,F,SI2,61.7,56,5154,6.43,6.47,3.98
1.08,Ideal,H,SI1,59.7,60,5154,6.71,6.69,4
1.04,Premium,D,SI2,59.8,58,5154,6.61,6.56,3.94
1.04,Premium,H,SI1,61.6,58,5154,6.53,6.48,4.01
1,Premium,G,SI1,61.9,62,5154,6.22,6.18,3.84
1.2,Premium,G,SI1,62.2,58,5154,6.8,6.7,4.2
1.08,Very Good,H,VS2,62.2,57,5155,6.5,6.55,4.06
1.02,Very Good,F,SI1,60.7,59,5155,6.49,6.55,3.96
0.94,Ideal,D,SI2,62.2,56,5155,6.24,6.27,3.89
1.25,Premium,J,VS1,60.9,59,5156,6.9,6.92,4.21
1.05,Ideal,D,SI2,62.1,56,5156,6.48,6.54,4.04
1.37,Premium,J,SI2,60.7,60,5156,7.19,7.07,4.33
1.62,Premium,J,SI2,61.8,59,5157,7.48,7.44,4.61
1.01,Ideal,H,SI1,61.8,54,5158,6.48,6.44,3.99
1.09,Ideal,I,VS2,62,57,5158,6.64,6.58,4.1
1.23,Ideal,J,SI2,62.4,58,5158,6.79,6.86,4.26
1.29,Ideal,D,I1,61.3,56,5158,7.05,6.99,4.3
0.94,Ideal,F,SI2,60.6,54,5159,6.39,6.34,3.86
1.06,Ideal,D,SI2,62.3,55,5159,6.5,6.54,4.06
1.06,Ideal,G,SI1,62,56,5159,6.52,6.55,4.05
1.22,Very Good,J,VS2,60.8,56,5160,6.95,6.91,4.21
0.9,Very Good,F,VS2,62.7,58,5160,6.12,6.19,3.86
0.9,Ideal,F,VS2,62.3,57,5160,6.18,6.21,3.86
1,Fair,G,VS2,64.5,58,5161,6.26,6.2,4.02
1.44,Premium,E,I1,61.1,62,5161,7.23,7.15,4.39
1.05,Premium,H,SI1,59.3,58,5161,6.65,6.61,3.93
1.28,Premium,H,SI2,62.5,62,5161,6.89,6.84,4.3
1.23,Ideal,F,SI2,61.9,56,5163,6.89,6.93,4.28
1.06,Very Good,G,SI1,63.4,58,5163,6.44,6.47,4.09
1.17,Very Good,E,SI2,62.5,59,5163,6.65,6.7,4.17
1.18,Ideal,I,SI2,61.9,54,5163,6.77,6.84,4.21
1.04,Ideal,E,SI2,61.6,55,5163,6.51,6.54,4.02
1.09,Ideal,D,SI2,62.1,56,5164,6.56,6.59,4.08
1.09,Premium,D,SI2,61.2,60,5164,6.6,6.64,4.05
1.08,Ideal,F,SI2,61.3,55,5164,6.59,6.62,4.05
1.13,Ideal,G,SI2,62.9,54,5164,6.72,6.67,4.21
1.16,Premium,F,SI2,62.1,59,5164,6.76,6.71,4.18
1.16,Premium,F,SI2,62.4,59,5164,6.72,6.64,4.17
1.01,Very Good,I,VS1,61.7,59,5165,6.45,6.51,4
1.09,Very Good,E,SI2,62.2,58,5165,6.54,6.61,4.09
1.13,Ideal,I,VS2,62.2,55,5165,6.69,6.67,4.15
1.22,Premium,I,SI2,62.9,56,5165,6.84,6.79,4.29
1.1,Premium,D,SI1,60.4,59,5166,6.66,6.69,4.03
1.01,Premium,H,VS2,59.1,58,5166,6.58,6.59,3.89
1.01,Ideal,H,VS2,62.7,56,5166,6.35,6.4,4
1.01,Good,H,VS2,63.1,59,5166,6.3,6.34,3.99
1.01,Premium,H,VS2,61.6,59,5166,6.45,6.47,3.98
1.01,Premium,H,VS2,61.6,59,5166,6.39,6.41,3.94
1.01,Premium,H,VS2,61.3,59,5166,6.41,6.45,3.94
1.01,Very Good,D,SI2,64,56,5166,6.3,6.38,4.06
1.01,Ideal,G,SI1,62.2,55,5166,6.44,6.46,4.01
1.25,Premium,J,SI1,62,58,5166,6.9,6.88,4.27
1.25,Premium,I,SI2,60.5,58,5166,7,6.96,4.22
1.05,Premium,H,VS2,62.3,57,5166,6.49,6.45,4.03
0.9,Very Good,F,VS1,61.5,55,5167,6.25,6.28,3.85
1.07,Ideal,I,VS2,60.6,59,5167,6.64,6.62,4.02
1.09,Good,F,SI2,60.8,61.4,5167,6.59,6.64,4.02
0.91,Premium,G,VVS2,61.8,58,5167,6.24,6.16,3.83
0.91,Premium,D,VS2,62,58,5167,6.2,6.15,3.83
1.35,Premium,G,SI2,60.5,60,5167,7.16,7.11,4.32
0.91,Premium,E,VS1,61.9,59,5167,6.23,6.17,3.84
1.18,Good,D,SI2,60.7,63,5168,6.77,6.81,4.12
1,Very Good,D,VS2,63.4,59,5169,6.35,6.3,4.01
1.02,Premium,G,SI1,61.7,58,5169,6.47,6.37,3.96
1.3,Ideal,G,SI2,61.9,57,5169,7.01,6.95,4.32
1,Premium,H,VS1,61.8,61,5169,6.4,6.31,3.93
1.25,Premium,J,VS2,62,59,5170,6.87,6.9,4.27
1.57,Ideal,H,I1,62.8,56,5170,7.42,7.36,4.64
0.93,Ideal,H,VS1,61.8,57,5171,6.23,6.27,3.86
1.08,Fair,H,VVS2,55.9,63,5171,6.9,6.8,3.83
1.08,Premium,H,SI1,62.6,58,5171,6.56,6.53,4.1
1.02,Premium,H,VS2,61.9,57,5171,6.5,6.4,3.99
1.16,Ideal,G,SI2,61.6,55,5171,6.8,6.78,4.18
1.01,Very Good,H,SI1,63,57,5172,6.34,6.36,4
1.08,Ideal,I,VS2,61.9,57,5172,6.54,6.61,4.07
1.26,Premium,J,VS2,62,60,5173,7,6.86,4.3
1.2,Very Good,D,SI2,63.2,60,5174,6.65,6.54,4.17
1,Very Good,E,SI1,63.5,61,5174,6.33,6.24,3.99
1.2,Premium,H,SI2,62.4,61,5174,6.81,6.78,4.24
1.2,Ideal,I,SI1,62.1,55,5174,6.83,6.79,4.23
1.01,Very Good,F,SI1,62.7,57,5174,6.32,6.38,3.98
1.01,Very Good,F,SI1,61,57,5174,6.44,6.54,3.96
1.2,Ideal,I,SI1,62.2,56,5174,6.75,6.73,4.19
1.14,Ideal,J,SI1,61.5,56,5174,6.7,6.74,4.13
1,Good,E,SI1,63.7,60,5174,6.29,6.24,3.99
1,Good,D,VS2,62.1,64,5174,6.38,6.35,3.95
1,Premium,D,VS2,62.9,57,5174,6.37,6.32,3.99
1.2,Premium,H,VVS2,60,60,5174,6.86,6.78,4.09
1,Premium,E,SI1,61.1,60,5174,6.47,6.42,3.94
1.1,Ideal,E,SI2,61.6,56,5174,6.64,6.61,4.08
1.1,Premium,E,SI2,61.7,59,5174,6.64,6.59,4.08
1.23,Ideal,I,SI2,62.1,56,5175,6.84,6.88,4.26
1.3,Good,J,VS2,63.6,59,5175,6.87,6.9,4.38
1,Very Good,E,SI1,63.1,59,5175,6.34,6.4,4.02
1.31,Premium,E,SI2,61.2,60,5176,7.02,6.93,4.27
0.91,Ideal,F,SI1,62,55,5176,6.21,6.24,3.86
1.3,Premium,J,SI1,61.5,58,5176,7.02,6.97,4.3
1.08,Ideal,D,SI2,59.1,60,5177,6.7,6.76,3.98
1.07,Premium,G,VS2,59.8,58,5177,6.67,6.63,3.98
1.12,Ideal,H,SI2,62.4,54,5178,6.65,6.68,4.16
1.11,Fair,H,SI1,65.7,61,5178,6.42,6.39,4.21
1.13,Very Good,H,SI2,62,58,5179,6.67,6.71,4.15
1.13,Premium,E,SI1,60.8,58,5179,6.77,6.71,4.1
1.04,Premium,H,SI1,60.7,58,5179,6.55,6.53,3.97
1.03,Ideal,I,VS1,61.3,53,5181,6.54,6.57,4.01
1.23,Ideal,J,SI1,61.3,54,5181,6.92,6.97,4.26
1.18,Premium,E,SI2,62.5,60,5181,6.74,6.7,4.2
1.12,Premium,G,SI1,59.5,62,5181,6.81,6.76,4.04
1.69,Very Good,J,I1,60.2,61,5182,7.7,7.79,4.66
1.18,Ideal,J,VS1,61.4,56,5182,6.79,6.82,4.18
1.18,Ideal,J,VS1,61.7,56,5182,6.79,6.82,4.2
1.01,Ideal,I,VS1,61.1,54,5182,6.46,6.48,3.95
1.18,Ideal,H,SI2,61.2,57,5182,6.81,6.86,4.18
0.92,Very Good,G,VVS2,62.3,57,5183,6.19,6.27,3.88
1.02,Premium,E,SI1,62.6,58,5183,6.44,6.47,4.05
1.2,Very Good,G,SI2,62.1,56,5183,6.79,6.87,4.24
1.02,Premium,E,SI1,61.5,58,5183,6.46,6.51,3.99
1.02,Good,E,SI1,63.2,61,5183,6.31,6.37,4.01
1.06,Premium,G,SI1,62.7,56,5183,6.55,6.46,4.08
1.23,Premium,H,SI1,62.1,58,5183,6.85,6.78,4.23
1.01,Ideal,F,SI1,62,57,5184,6.38,6.42,3.97
1.21,Premium,I,SI2,62.7,55,5184,6.84,6.79,4.27
1.21,Premium,G,SI2,59.1,55,5184,7.04,6.98,4.14
1.21,Ideal,I,SI2,60.6,56,5184,6.94,6.92,4.2
1.01,Fair,E,SI1,56.8,61,5185,6.59,6.62,3.75
1.01,Very Good,H,VS2,62,59,5186,6.45,6.48,4.01
1.15,Very Good,D,SI2,61.8,61,5186,6.62,6.69,4.11
1.09,Premium,D,SI2,60.3,60,5186,6.68,6.61,4.01
1.05,Fair,F,SI1,64.6,57,5186,6.39,6.33,4.11
1.31,Very Good,I,SI2,59.6,60,5187,7.09,7.17,4.25
1.06,Ideal,H,SI1,61.7,56,5188,6.58,6.55,4.05
1.01,Ideal,H,SI1,62.1,59,5189,6.38,6.43,3.98
1.08,Very Good,E,SI1,63.1,59,5189,6.53,6.49,4.11
1.04,Ideal,H,VS2,61,57,5189,6.56,6.53,3.99
1.08,Ideal,E,SI1,62.6,57,5189,6.56,6.53,4.1
1.01,Premium,H,VS2,61,61,5190,6.47,6.39,3.92
1.21,Very Good,H,SI2,62.1,60,5190,6.77,6.82,4.22
1.21,Very Good,I,SI1,61.2,62,5190,6.81,6.84,4.18
1.18,Premium,G,SI2,61.4,58,5190,6.82,6.77,4.17
1.18,Premium,G,SI2,62.5,54,5190,6.81,6.78,4.25
1.23,Very Good,I,SI2,62.6,59,5191,6.78,6.86,4.27
1.15,Premium,H,VS2,60.2,58,5191,6.86,6.8,4.11
1.01,Very Good,G,SI1,63.7,60,5192,6.31,6.35,4.03
1.11,Very Good,H,SI1,60.8,60,5192,6.62,6.77,4.07
1.11,Very Good,H,SI1,63.2,58,5192,6.53,6.61,4.15
1.05,Ideal,G,SI1,61.8,56,5192,6.5,6.54,4.03
1.22,Ideal,J,SI1,62.3,55,5192,6.91,6.83,4.28
1.22,Very Good,H,SI2,63.1,59,5192,6.81,6.75,4.28
1.22,Premium,H,SI2,61.6,59,5192,6.82,6.75,4.18
1.15,Very Good,E,SI2,63.1,63,5193,6.63,6.53,4.15
1.15,Premium,E,SI2,61.7,59,5193,6.7,6.66,4.12
1.13,Premium,H,SI1,62.3,58,5194,6.68,6.67,4.16
1.06,Ideal,H,SI1,61.4,55,5194,6.62,6.58,4.05
0.9,Very Good,D,VS1,58.9,59,5195,6.22,6.31,3.69
1.02,Ideal,F,SI1,60.3,60,5195,6.55,6.51,3.94
1.1,Very Good,I,VS1,60.8,58.3,5196,6.63,6.68,4.04
1,Premium,F,SI1,62.3,59,5197,6.37,6.43,3.99
1,Premium,F,SI1,61.2,58,5197,6.4,6.44,3.93
1,Premium,F,SI1,60.3,58,5197,6.43,6.47,3.89
1,Ideal,F,SI1,62,57,5197,6.37,6.43,3.97
1,Ideal,F,SI1,61.5,57,5197,6.41,6.46,3.96
1,Premium,F,SI1,60.7,60,5197,6.36,6.4,3.87
1,Premium,F,SI1,61.6,60,5197,6.31,6.41,3.9
1,Ideal,F,SI1,61.9,56,5197,6.36,6.41,3.95
1.25,Good,I,SI2,63.3,55.8,5197,6.83,6.87,4.34
1,Premium,F,SI1,62.7,59,5197,6.36,6.4,4
1,Premium,F,SI1,62.6,60,5197,6.3,6.32,3.95
1,Very Good,F,SI1,61.6,61,5197,6.3,6.37,3.9
1.05,Very Good,G,SI1,61.6,57,5197,6.51,6.54,4.02
1.01,Good,H,SI1,59.5,62,5197,6.49,6.55,3.88
1.02,Good,D,SI1,57.2,54,5198,6.66,6.62,3.8
1.19,Fair,I,SI1,64.9,58,5198,6.64,6.55,4.28
1.02,Premium,D,SI2,59.7,60,5198,6.58,6.55,3.92
1.02,Very Good,D,SI1,63.2,58,5198,6.41,6.35,4.03
1.01,Good,G,VS2,63.1,55,5199,6.36,6.38,4.02
1.01,Premium,H,VS1,62.7,58,5199,6.37,6.39,4
1.04,Ideal,I,VS1,62.4,57,5199,6.44,6.48,4.03
1.1,Ideal,I,SI1,61.6,55,5199,6.66,6.68,4.11
1.05,Ideal,H,SI1,61.1,56,5200,6.52,6.58,4
1.01,Ideal,H,SI1,60.4,58,5200,6.47,6.5,3.92
0.9,Good,E,VS1,62.7,58,5201,6.07,6.12,3.82
0.92,Very Good,D,VS1,60.6,61,5202,6.21,6.29,3.79
1.01,Premium,F,SI1,62.6,58,5202,6.37,6.32,3.97
1.01,Premium,F,SI1,61.7,58,5202,6.44,6.39,3.96
2.06,Premium,J,I1,61.2,58,5203,8.1,8.07,4.95
1.01,Premium,H,SI1,61.8,59,5204,6.38,6.33,3.93
1.01,Very Good,H,VS2,61.6,60,5204,6.46,6.39,3.96
1.05,Ideal,G,SI1,59.7,56,5204,6.67,6.64,3.97
1.01,Ideal,G,SI1,60.8,56,5204,6.53,6.49,3.96
1.01,Premium,G,SI1,60,58,5204,6.54,6.5,3.91
1.05,Ideal,D,SI2,61.9,56,5204,6.53,6.5,4.03
1.06,Premium,H,VS2,60.8,59,5205,6.55,6.58,3.99
1.01,Premium,D,SI2,59.3,59,5206,6.57,6.54,3.89
1.16,Ideal,G,SI2,61.5,54,5206,6.75,6.78,4.16
1.01,Ideal,E,SI1,61.6,57,5206,6.44,6.49,3.98
1.03,Ideal,I,VS1,60.9,56,5206,6.52,6.59,3.99
1.01,Ideal,D,SI2,62.5,57,5206,6.39,6.35,3.98
1.26,Premium,I,SI2,60.1,59,5207,7.03,6.99,4.21
1.07,Ideal,I,VS1,62,57,5207,6.5,6.56,4.05
1.16,Ideal,I,VS2,61.5,57,5207,6.75,6.78,4.16
0.77,Ideal,D,VVS2,62.3,57,5207,5.83,5.85,3.64
1.26,Premium,J,SI1,61.7,58,5207,6.99,6.91,4.29
1,Premium,H,VS2,59.3,61,5208,6.47,6.45,3.83
1.5,Good,H,SI2,64,61,5208,7.18,7.14,4.58
1.5,Good,H,SI2,64,61,5208,7.18,7.14,4.58
1.24,Fair,H,SI2,65,54,5208,6.76,6.73,4.38
1.24,Premium,I,SI1,62.9,60,5208,6.8,6.74,4.26
1,Good,H,VS2,56.9,63,5208,6.6,6.57,3.75
1.23,Premium,J,VS1,60.1,60,5209,6.9,6.95,4.16
1.29,Very Good,J,SI1,61.2,58,5209,6.97,7.02,4.28
1.01,Premium,D,SI1,61.7,59,5210,6.4,6.43,3.96
0.92,Very Good,E,VS1,61.3,57,5210,6.22,6.27,3.83
1.21,Very Good,J,VS2,61.5,58,5211,6.85,6.9,4.23
1.26,Good,J,VS2,63.2,57.3,5211,6.81,6.86,4.32
1.2,Very Good,H,SI2,58.8,61,5211,6.94,6.98,4.09
1.2,Very Good,I,SI1,62.9,57,5211,6.73,6.78,4.25
1.2,Good,I,SI1,62.3,58,5211,6.66,6.72,4.17
1.2,Good,I,SI1,63.9,56,5211,6.62,6.69,4.25
1,Fair,E,SI1,57.4,62,5212,6.54,6.59,3.77
0.91,Ideal,F,VS2,62.8,57,5214,6.18,6.2,3.89
1.33,Premium,H,SI2,61.9,58,5214,7.07,7.01,4.36
1.36,Very Good,J,SI2,62.6,58,5215,7,7.12,4.42
1.01,Ideal,F,SI1,59.9,60,5215,6.59,6.53,3.93
1.01,Very Good,E,SI1,62,61,5216,6.38,6.42,3.97
1.15,Ideal,I,SI2,61.3,57,5216,6.78,6.71,4.13
1.23,Very Good,J,VS2,62.9,58,5217,6.75,6.83,4.27
1.02,Very Good,H,VS2,62.5,56,5217,6.42,6.45,4.02
1.02,Premium,H,VS2,62.5,60,5217,6.38,6.43,4
1.02,Premium,H,VS2,61.2,58,5217,6.47,6.5,3.97
1.23,Ideal,J,VS2,61.5,57,5217,6.9,6.95,4.26
1.21,Premium,H,SI2,61.9,55,5218,6.84,6.79,4.22
1.21,Premium,H,SI2,61.9,55,5218,6.84,6.79,4.22
0.9,Very Good,F,VS2,61.8,57,5218,6.16,6.23,3.83
1.1,Very Good,F,VS2,63.5,55,5218,6.58,6.52,4.16
1.21,Premium,H,SI2,60.9,61,5218,6.88,6.82,4.17
1.21,Ideal,I,SI1,62.4,55,5218,6.81,6.78,4.24
1.21,Premium,I,SI1,62.8,57,5218,6.74,6.67,4.21
1.09,Premium,H,SI1,61.6,57,5219,6.63,6.59,4.07
1.09,Premium,H,SI1,62.4,59,5219,6.53,6.48,4.06
1,Good,H,VS1,61.8,61,5219,6.4,6.31,3.93
1.02,Good,D,SI1,61,63,5219,6.48,6.54,3.97
1.09,Ideal,H,SI1,62.3,55,5219,6.61,6.58,4.11
1.09,Ideal,H,SI1,61.1,57,5219,6.71,6.62,4.07
1.09,Ideal,H,SI1,61.1,57,5219,6.69,6.6,4.1
1.09,Ideal,H,SI1,62.5,56,5219,6.58,6.53,4.1
1.13,Premium,E,SI2,60.4,59,5220,6.7,6.75,4.06
1.13,Very Good,I,VS1,61.7,54,5220,6.71,6.74,4.15
1.07,Ideal,H,SI1,62.1,57,5220,6.5,6.55,4.05
1.04,Ideal,F,SI1,61.4,59,5220,6.46,6.5,3.98
1.2,Very Good,H,SI2,63.5,57,5221,6.67,6.71,4.25
1.24,Ideal,I,SI2,61.9,57,5221,6.87,6.92,4.27
1,Premium,F,SI1,62.3,59,5221,6.44,6.36,3.99
1,Ideal,F,SI1,62.7,57,5221,6.44,6.38,4.02
1.11,Good,I,VVS2,60.1,64,5221,6.73,6.62,4.02
1.02,Very Good,F,SI1,62.2,56,5222,6.39,6.43,3.99
0.9,Ideal,H,VS1,62.2,56,5222,6.16,6.18,3.84
1.28,Very Good,F,SI2,62.5,55,5223,6.91,7,4.35
1.06,Ideal,E,SI2,62.2,55,5223,6.51,6.54,4.06
1.04,Premium,G,SI1,62.7,59,5223,6.47,6.41,4.04
1.15,Ideal,G,SI1,61.7,56,5224,6.72,6.76,4.16
1.01,Very Good,E,SI1,59.5,60,5224,6.49,6.55,3.88
1.01,Very Good,E,SI1,62.3,60,5224,6.36,6.39,3.97
1.01,Very Good,E,SI1,59.9,59,5224,6.46,6.49,3.88
1.27,Very Good,J,SI1,60.9,59,5224,6.96,7.04,4.26
0.91,Good,F,VVS2,62.6,61,5225,6.12,6.19,3.85
1.2,Very Good,J,VS1,62.9,60,5226,6.64,6.69,4.19
1.21,Ideal,G,SI2,62.1,57,5226,6.8,6.85,4.24
1.1,Very Good,D,SI2,61.6,57,5226,6.61,6.67,4.09
1.2,Very Good,I,SI1,61.2,62,5226,6.75,6.84,4.16
1.01,Good,E,SI1,63.6,60,5226,6.38,6.32,4.04
1.01,Very Good,E,SI1,63.4,60,5226,6.34,6.3,4.01
1.01,Good,E,SI1,63.7,58,5226,6.36,6.32,4.04
1.01,Premium,E,SI1,59,59,5226,6.6,6.56,3.88
1.22,Premium,I,SI2,62.5,58,5226,6.8,6.76,4.24
1.1,Ideal,G,SI1,62.3,56,5226,6.64,6.58,4.12
1.22,Premium,G,SI2,61.6,62,5226,6.79,6.75,4.17
1.22,Ideal,I,SI2,61.3,57,5226,6.91,6.85,4.22
1.02,Premium,G,SI1,58.9,59,5226,6.59,6.55,3.87
1.01,Premium,E,SI1,60.5,62,5226,6.5,6.46,3.92
0.9,Ideal,D,SI1,61.2,55,5226,6.25,6.21,3.81
1.01,Premium,E,SI1,62.8,60,5226,6.39,6.38,4.01
1.01,Very Good,F,VS2,63.1,57,5226,6.39,6.29,4
1.01,Fair,F,VS2,64.5,58,5226,6.28,6.18,4.02
1.01,Very Good,E,SI1,63.1,58,5226,6.4,6.31,4.01
1,Very Good,G,VS2,62.8,57,5227,6.33,6.37,3.99
1,Very Good,D,SI2,60.5,60,5227,6.41,6.44,3.89
1.05,Premium,H,SI1,61.3,58,5228,6.52,6.47,3.98
1.14,Premium,F,SI1,62.5,59,5228,6.67,6.65,4.16
0.91,Premium,E,VS1,62.9,56,5228,6.21,6.13,3.88
1.01,Very Good,E,SI1,62.4,58,5229,6.36,6.4,3.99
1.04,Ideal,I,VS1,61.8,56,5229,6.49,6.51,4.02
1.01,Good,H,VS2,60.8,61,5229,6.43,6.5,3.93
1.24,Very Good,H,SI2,61,59,5231,6.93,7,4.25
1.04,Very Good,E,SI1,60.8,60,5231,6.49,6.56,3.97
1.01,Very Good,G,SI1,62.7,58,5231,6.35,6.4,4
1.24,Very Good,J,SI1,60,59,5231,6.99,7.04,4.21
1.01,Ideal,I,VS1,60.3,57,5231,6.51,6.53,3.93
1.11,Ideal,G,SI2,60.7,59,5231,6.72,6.76,4.09
0.26,Very Good,E,VVS2,63,58,597,4,4.03,2.53
0.26,Very Good,E,VVS2,61.5,58,597,4.08,4.12,2.52
0.26,Very Good,E,VVS2,62.6,58,597,4.07,4.11,2.56
0.26,Very Good,D,VVS2,59.1,59,597,4.21,4.28,2.51
0.26,Very Good,D,VVS2,60.4,59,597,4.15,4.19,2.52
0.26,Very Good,F,VVS1,58.7,58,597,4.24,4.25,2.49
0.26,Very Good,F,VVS1,62,59,597,4.08,4.15,2.55
0.26,Very Good,E,VVS1,61.4,58,597,4.12,4.15,2.54
0.26,Very Good,E,VVS1,59.9,58,597,4.17,4.18,2.5
0.26,Ideal,E,VVS2,61.6,57,597,4.13,4.18,2.56
0.26,Ideal,E,VVS2,60.7,56,597,4.13,4.17,2.52
0.4,Ideal,F,SI2,62.5,53,597,4.71,4.76,2.96
0.4,Ideal,F,SI2,62,57,597,4.7,4.72,2.92
0.4,Ideal,F,SI2,62.8,55,597,4.7,4.73,2.96
0.4,Ideal,F,SI2,62.1,53,597,4.76,4.78,2.96
0.36,Ideal,E,SI1,60.9,57,597,4.58,4.62,2.8
0.26,Good,E,VVS1,59.4,61,597,4.13,4.15,2.46
0.26,Good,E,IF,59.6,61,597,4.13,4.16,2.47
0.36,Ideal,J,SI1,61.6,56,597,4.61,4.58,2.83
0.39,Very Good,G,SI2,63.2,57,597,4.65,4.57,2.92
0.3,Very Good,G,VVS2,60.4,59,598,4.33,4.35,2.62
0.35,Ideal,I,VVS2,62,54,598,4.54,4.56,2.82
0.35,Ideal,I,VVS2,61.5,55,598,4.56,4.58,2.81
0.35,Ideal,I,VVS2,61.5,55,598,4.53,4.57,2.8
0.4,Ideal,J,VS2,62.3,55,598,4.72,4.75,2.95
0.33,Ideal,G,VS2,61.3,57,598,4.45,4.49,2.74
0.28,Ideal,E,VS2,61.5,56,598,4.22,4.24,2.6
0.33,Ideal,H,VS1,61.9,55,598,4.46,4.49,2.77
0.28,Ideal,F,VS1,60.2,56,598,4.3,4.31,2.59
0.28,Ideal,F,VS1,62,57,598,4.19,4.23,2.61
1.02,Very Good,E,SI1,58.9,58,5232,6.51,6.54,3.84
1.01,Premium,G,SI1,60.2,59,5232,6.54,6.49,3.92
1.21,Ideal,J,SI1,60.4,54,5232,6.86,6.89,4.15
1.07,Ideal,G,SI1,62.1,57,5232,6.59,6.52,4.07
1.01,Good,E,SI1,64.2,59,5232,6.27,6.19,4
1.13,Ideal,F,SI2,61.8,57,5232,6.71,6.68,4.14
1.22,Premium,I,SI1,62.3,58,5233,6.77,6.81,4.23
1.22,Very Good,H,SI2,62.9,59,5233,6.66,6.76,4.22
1.22,Ideal,I,SI1,62.3,57,5233,6.77,6.87,4.25
1.12,Premium,G,SI1,60.1,58,5233,6.78,6.83,4.09
1.12,Premium,D,SI2,60.5,59,5233,6.72,6.76,4.08
1.12,Very Good,D,SI2,61.2,60,5233,6.63,6.67,4.07
1.01,Good,E,SI1,58.6,62,5233,6.58,6.6,3.86
1.01,Good,E,SI1,57.9,57,5233,6.6,6.67,3.84
1.2,Very Good,J,VS2,58.7,60,5234,6.93,6.96,4.08
1.03,Ideal,E,SI1,62.2,57,5234,6.42,6.48,4.01
1.03,Ideal,E,SI1,62,57,5234,6.44,6.47,4
1.01,Ideal,D,SI1,61.6,56,5234,6.45,6.48,3.98
1.02,Ideal,D,SI2,62,58,5235,6.4,6.51,4
1.01,Ideal,E,SI1,62,57,5235,6.38,6.45,3.98
1.05,Very Good,H,VS2,63.3,58,5236,6.42,6.48,4.08
1.19,Good,I,SI1,63.7,57.2,5236,6.69,6.73,4.28
1.14,Very Good,E,SI2,61.5,58,5236,6.66,6.73,4.12
1.12,Very Good,H,SI1,62.3,55,5236,6.64,6.69,4.15
1.06,Premium,H,VS1,60,58,5236,6.65,6.61,3.98
1.06,Premium,F,SI1,61,58,5236,6.65,6.6,4.04
1.29,Ideal,J,SI1,61.6,57,5237,7,7.06,4.33
1.07,Premium,H,SI1,59.2,61,5237,6.67,6.65,3.94
1.09,Premium,E,SI1,62.7,58,5237,6.6,6.55,4.12
1.01,Ideal,H,VS2,61,59,5238,6.51,6.47,3.96
1.09,Ideal,H,SI1,62.3,55,5238,6.58,6.62,4.11
1,Very Good,E,SI1,61.7,57,5239,6.34,6.47,3.95
1,Ideal,F,SI1,62,55,5239,6.39,6.44,3.98
1.72,Fair,J,I1,68.5,59,5240,7.31,7.24,4.98
1.07,Ideal,F,SI2,61.5,55,5240,6.56,6.62,4.05
1.02,Premium,H,VS2,61.8,58,5241,6.49,6.43,3.99
1.03,Very Good,F,SI1,60.6,63,5241,6.47,6.5,3.93
1.03,Very Good,F,SI1,58,60,5241,6.68,6.74,3.89
1.03,Ideal,G,SI1,61.1,57,5241,6.58,6.54,4.01
1.03,Ideal,G,SI1,61.7,56,5241,6.5,6.47,4
1,Premium,G,VS2,62.3,58,5242,6.35,6.29,3.94
1,Good,G,VS2,63.8,58,5242,6.37,6.29,4.04
1,Premium,G,VS2,62.1,58,5242,6.43,6.39,3.98
0.9,Very Good,F,VS1,60.7,57,5242,6.16,6.23,3.76
1.04,Ideal,J,VVS2,61.1,58,5242,6.49,6.57,3.99
1.3,Good,J,SI1,64,58,5242,6.91,6.84,4.4
1.04,Ideal,I,VS2,61.8,55,5242,6.5,6.54,4.03
1,Good,G,VS2,58.6,65,5242,6.61,6.53,3.85
1,Fair,H,VS1,64.6,59,5242,6.3,6.26,4.06
1.2,Ideal,H,VS1,61.9,57,5242,6.77,6.73,4.18
1,Premium,G,VS2,60.8,58,5242,6.44,6.4,3.9
0.9,Ideal,E,VS1,61.3,57,5242,6.24,6.2,3.81
0.9,Ideal,G,VVS2,61.9,56,5242,6.22,6.15,3.83
0.9,Premium,E,VS1,60.1,56,5242,6.38,6.3,3.81
1,Premium,G,VS1,61.9,60,5242,6.39,6.31,3.93
1.17,Ideal,J,VS1,62.5,57,5242,6.68,6.63,4.16
1.3,Premium,I,VS2,60.3,60,5242,7.01,6.99,4.22
1.12,Very Good,D,SI2,59.3,59,5243,6.76,6.8,4.02
0.92,Ideal,G,VS1,62,57,5243,6.24,6.28,3.88
1.21,Premium,F,SI2,58.9,60,5243,6.81,6.74,3.99
1.02,Very Good,E,SI1,63.5,55,5245,6.3,6.37,4.02
1.21,Very Good,I,SI1,62.9,56,5245,6.73,6.79,4.25
1.34,Very Good,G,SI2,63.2,57,5245,6.98,6.95,4.4
1,Ideal,D,SI2,62.7,58,5246,6.34,6.39,3.99
1.2,Very Good,F,SI2,62.2,62,5247,6.7,6.77,4.19
1,Very Good,H,SI1,62.1,58,5247,6.44,6.45,4
1.08,Ideal,D,SI2,60.2,57,5247,6.63,6.67,4
1.06,Premium,H,VS1,62.1,60,5247,6.52,6.5,4.04
1.01,Very Good,F,SI1,60.7,58,5248,6.4,6.51,3.92
1.12,Very Good,I,VS2,62.9,55.9,5249,6.59,6.62,4.16
1.01,Premium,F,SI1,59.8,60,5249,6.53,6.57,3.92
1.01,Premium,F,SI1,62.2,59,5249,6.36,6.41,3.97
1.27,Premium,I,SI2,61.4,59,5249,6.98,6.94,4.27
1.03,Premium,G,SI1,58.4,58,5249,6.66,6.62,3.88
1.27,Ideal,I,SI2,62.1,56,5249,6.96,6.92,4.31
1.03,Ideal,D,SI1,62.3,56,5249,6.51,6.45,4.04
1.06,Ideal,E,SI1,59.6,54,5250,6.64,6.62,3.95
1.02,Premium,G,VS2,61.5,59,5250,6.4,6.45,3.95
1.2,Premium,G,SI2,59.9,59,5250,6.92,6.98,4.16
1.2,Very Good,G,SI2,62.5,57,5250,6.73,6.84,4.24
1.08,Premium,H,VS2,62.1,58,5250,6.63,6.51,4.08
1.25,Premium,I,SI1,62.5,59,5250,6.89,6.81,4.28
1.08,Premium,H,VS2,62.4,58,5250,6.56,6.49,4.07
0.77,Ideal,E,VVS1,61.6,55,5251,5.87,5.95,3.64
1.02,Ideal,H,SI1,60.8,58,5251,6.47,6.49,3.94
1.01,Good,E,SI1,63.6,57,5251,6.27,6.3,4
1.33,Good,J,VS2,57.4,62,5251,7.3,7.23,4.17
1.01,Very Good,D,SI2,59.9,61,5252,6.46,6.5,3.88
1.25,Ideal,J,SI1,62.4,57,5252,6.86,6.92,4.3
1.25,Ideal,J,SI1,62.1,58,5252,6.86,6.89,4.27
0.91,Ideal,E,SI1,61.4,54,5252,6.26,6.24,3.84
1.21,Good,I,SI1,62.7,59,5252,6.63,6.71,4.18
1.06,Ideal,G,SI1,62,56,5253,6.55,6.52,4.05
1.06,Ideal,D,SI2,62.3,55,5253,6.54,6.5,4.06
1.07,Very Good,H,VS2,61.5,57,5254,6.57,6.63,4.06
1,Good,H,VS2,60.9,61,5254,6.38,6.42,3.9
1.05,Very Good,D,SI1,61.6,61,5255,6.5,6.55,4.02
1.06,Ideal,H,SI1,61.7,60,5255,6.48,6.52,4.01
1.02,Very Good,H,VS2,63.3,60,5255,6.42,6.38,4.05
1.02,Premium,G,SI1,61.1,58,5255,6.52,6.48,3.97
1.02,Fair,F,SI1,64.8,59,5255,6.33,6.23,4.07
1.08,Ideal,G,SI1,61.8,56,5256,6.55,6.58,4.06
1.08,Ideal,D,SI2,61.6,57,5256,6.58,6.62,4.07
1.08,Very Good,F,SI1,58.2,63,5256,6.69,6.78,3.92
1.2,Very Good,J,VS1,63.6,59,5257,6.67,6.72,4.26
1.2,Very Good,H,SI2,62.9,56,5257,6.74,6.77,4.25
1,Very Good,E,SI1,59.6,60,5257,6.58,6.51,3.9
1.15,Very Good,E,SI2,60,59,5257,6.78,6.82,4.08
1.2,Very Good,I,SI1,63.2,58,5257,6.71,6.75,4.25
1.02,Ideal,H,SI1,61.2,56,5257,6.49,6.51,3.98
1.02,Premium,D,SI2,60.2,58,5257,6.56,6.53,3.94
1.06,Very Good,F,SI2,61.8,56.4,5258,6.51,6.56,4.04
1.09,Premium,D,SI2,61.2,60,5258,6.64,6.6,4.05
1.09,Ideal,D,SI2,62.1,56,5258,6.59,6.56,4.08
0.91,Premium,G,VVS2,61.8,58,5259,6.16,6.24,3.83
0.91,Very Good,E,VS1,61.9,59,5259,6.17,6.23,3.84
0.91,Premium,D,VS2,62,58,5259,6.15,6.2,3.83
1.25,Ideal,I,SI2,62,57,5259,6.85,6.92,4.27
1.25,Ideal,I,SI2,61.8,56,5259,6.92,6.94,4.28
1.25,Ideal,G,SI2,61.6,57,5259,6.91,6.98,4.28
0.92,Good,D,SI1,60.2,56,5259,6.28,6.32,3.79
1.01,Premium,H,VS2,61.9,57,5260,6.42,6.35,3.95
1.01,Very Good,H,VS2,63.2,58,5260,6.34,6.26,3.98
1.16,Ideal,H,SI2,62.2,55.7,5260,6.68,6.74,4.18
1.01,Premium,H,VS2,61.6,59,5260,6.41,6.39,3.94
1.01,Premium,H,VS2,61.3,59,5260,6.45,6.41,3.94
1.01,Very Good,H,VS2,63.1,59,5260,6.34,6.3,3.99
1.01,Ideal,H,VS2,62.7,56,5260,6.4,6.35,4
1.01,Premium,H,VS2,60.6,60,5260,6.51,6.49,3.94
1.22,Ideal,I,SI1,61.9,56,5261,6.87,6.83,4.24
0.91,Ideal,F,VS2,62.6,55,5261,6.2,6.23,3.89
1.09,Ideal,H,SI1,61.9,57,5262,6.58,6.63,4.09
1.11,Ideal,E,SI2,61.2,55,5262,6.68,6.72,4.1
1.01,Ideal,E,SI1,61.8,57,5262,6.39,6.49,3.98
1.1,Ideal,E,SI2,61.6,56,5263,6.63,6.66,4.09
1.07,Very Good,H,VS2,62.7,57,5264,6.48,6.53,4.08
1.07,Ideal,F,SI1,61.9,56,5264,6.55,6.61,4.07
1.25,Premium,J,VS2,62,59,5264,6.9,6.87,4.27
1.24,Premium,J,VS2,61.8,57.6,5265,6.84,6.88,4.24
1.04,Very Good,D,SI2,62.9,58,5265,6.41,6.47,4.05
1.21,Premium,J,SI1,62.2,57,5266,6.84,6.76,4.23
1.03,Very Good,H,VS2,62,58,5266,6.45,6.51,4.02
1.12,Premium,H,SI1,62.2,60,5266,6.59,6.65,4.12
1.12,Premium,H,SI1,61.6,59,5266,6.63,6.67,4.1
1.02,Ideal,D,SI1,62.3,56,5266,6.49,6.45,4.03
1.21,Very Good,J,VS1,60.9,60,5267,6.87,6.9,4.19
1.09,Ideal,D,SI2,61.3,57,5267,6.64,6.67,4.08
1.1,Premium,H,SI1,62,58,5267,6.68,6.6,4.12
1.2,Premium,E,SI2,58.2,59,5268,6.98,6.9,4.04
1.5,Fair,J,SI2,65.5,60,5268,7.07,7.03,4.62
1.2,Ideal,E,SI2,61.3,56,5268,6.8,6.71,4.14
1.5,Premium,J,SI2,62.6,56,5268,7.24,7.11,4.51
1.3,Good,J,VS2,63.6,59,5269,6.9,6.87,4.38
1.23,Premium,I,SI2,62.4,58,5269,6.86,6.82,4.27
1.23,Ideal,I,SI2,62.1,56,5269,6.88,6.84,4.26
1.23,Premium,I,SI2,62.5,60,5269,6.82,6.75,4.24
1.15,Very Good,H,SI1,62.4,57,5270,6.68,6.71,4.18
1.01,Good,D,SI1,58.5,64,5271,6.4,6.45,3.76
0.95,Good,E,VS2,57.7,58,5272,6.47,6.52,3.75
1.1,Ideal,I,VS2,61.8,55.4,5273,6.62,6.65,4.1
1.34,Ideal,J,SI2,62.5,57,5273,7,7.08,4.4
1.14,Premium,G,SI1,63,59,5273,6.68,6.62,4.19
1.01,Premium,G,SI1,62.9,61,5273,6.35,6.33,3.99
1.01,Ideal,G,SI1,61.6,57,5273,6.4,6.32,3.92
1.01,Ideal,F,SI1,60,56,5274,6.55,6.49,3.91
1.21,Ideal,J,VS2,62.6,54.2,5275,6.79,6.81,4.26
1.21,Premium,I,SI1,61.8,59,5276,6.85,6.81,4.22
1.06,Ideal,H,VS2,61.2,55,5277,6.57,6.61,4.03
1.12,Ideal,F,SI2,61.8,56,5277,6.65,6.68,4.12
1.01,Good,G,SI1,59.8,61,5277,6.45,6.49,3.87
1.69,Premium,J,I1,60.2,61,5277,7.79,7.7,4.66
1.24,Premium,H,SI2,60.4,59,5277,6.99,6.92,4.2
1.52,Ideal,H,SI2,59.9,55,5277,7.54,7.45,4.49
1.02,Ideal,E,SI1,60.4,55,5278,6.54,6.48,3.93
1.06,Ideal,H,SI1,63,55,5278,6.49,6.44,4.08
1.1,Ideal,H,SI1,61.6,57,5278,6.63,6.61,4.08
1.02,Premium,E,SI1,61.5,58,5278,6.51,6.46,3.99
1.02,Very Good,E,SI1,63.2,61,5278,6.37,6.31,4.01
1.2,Premium,G,SI2,59.2,60,5278,6.92,6.9,4.09
1.02,Premium,E,SI1,62.6,58,5278,6.47,6.44,4.05
1.01,Good,G,VS2,63.8,57,5279,6.27,6.34,4.02
1.01,Premium,E,SI1,61.8,60,5279,6.36,6.4,3.94
0.9,Very Good,F,VS1,62.5,58,5279,6.12,6.17,3.84
1.2,Good,I,SI1,63.5,60.7,5280,6.71,6.75,4.27
1.13,Premium,D,SI2,62,58,5280,6.64,6.68,4.13
1.13,Very Good,G,SI1,60.9,60,5280,6.67,6.76,4.09
1.2,Very Good,H,SI2,62.1,59,5280,6.75,6.8,4.21
1.2,Premium,H,SI2,62.5,58,5280,6.76,6.81,4.24
1.2,Very Good,H,SI2,62,58,5280,6.76,6.91,4.24
1.2,Premium,H,SI2,62.3,58,5280,6.76,6.81,4.23
1.2,Very Good,I,SI1,62.6,58.2,5280,6.71,6.74,4.21
1.07,Ideal,E,SI2,62.4,60,5280,6.49,6.52,4.06
1.07,Ideal,J,SI1,61.5,55,5281,6.58,6.62,4.06
1.07,Ideal,H,SI1,61,56,5281,6.6,6.68,4.05
1.11,Premium,G,SI1,60.1,60,5281,6.73,6.68,4.03
1.31,Premium,I,SI1,62,58,5282,7.01,6.98,4.34
1.23,Premium,D,SI2,58.9,58,5283,6.99,6.97,4.11
1.04,Premium,F,SI1,59.8,59,5284,6.61,6.56,3.94
1.37,Premium,J,SI2,61.9,59,5284,7.1,7.05,4.38
1.11,Premium,F,SI2,62.2,57,5284,6.67,6.61,4.13
1.04,Good,E,SI1,63.5,56,5285,6.37,6.41,4.06
1.04,Very Good,H,SI1,62,58,5285,6.42,6.48,4
1.27,Ideal,J,VS2,61.8,54,5285,6.95,6.98,4.31
1.21,Premium,H,SI2,60,60,5285,6.96,6.91,4.16
1.21,Premium,I,SI1,62,56,5285,6.89,6.83,4.25
1,Premium,D,SI2,60.9,59,5286,6.46,6.41,3.92
1.08,Very Good,H,SI1,63.4,57,5286,6.54,6.51,4.14
1.09,Premium,F,SI1,60.9,59,5287,6.59,6.64,4.03
1.09,Premium,F,SI1,62.7,58,5287,6.51,6.56,4.1
1.02,Very Good,F,SI1,60.9,57,5287,6.52,6.56,3.98
1,Very Good,H,SI1,60.9,58,5287,6.43,6.46,3.93
0.99,Ideal,H,SI1,61.1,56,5287,6.44,6.47,3.94
0.75,Ideal,F,VVS1,60.6,57,5288,5.88,5.94,3.59
1.33,Premium,F,SI2,60.7,62,5288,7.12,7.07,4.31
1.01,Premium,G,VS2,60.9,55,5288,6.5,6.48,3.95
1.01,Premium,F,SI1,62.9,59,5288,6.38,6.31,3.99
1.23,Good,J,VS2,63.6,57,5290,6.74,6.79,4.3
1.21,Good,I,VS2,63.4,57,5290,6.72,6.79,4.28
1.21,Very Good,F,SI2,61.5,61,5290,6.77,6.82,4.18
1.21,Very Good,F,SI2,62.7,57,5290,6.74,6.81,4.25
1.04,Very Good,F,SI1,60.1,62,5290,6.54,6.6,3.95
1.28,Premium,J,SI1,61.9,56,5290,7.13,7,4.37
1.02,Very Good,G,SI1,61.3,56,5291,6.43,6.53,3.97
1.14,Premium,I,VS1,62.3,59,5291,6.69,6.64,4.15
1.12,Ideal,H,SI1,62.3,56,5291,6.7,6.65,4.16
1.12,Premium,H,SI1,62,56,5291,6.68,6.61,4.12
1.12,Premium,H,SI1,61.9,59,5291,6.66,6.52,4.08
1.1,Ideal,I,VS1,60.8,58,5291,6.68,6.63,4.04
1.5,Fair,H,I1,68.9,56,5292,7,6.9,4.79
1,Premium,F,SI1,58.6,58,5292,6.56,6.52,3.83
1,Premium,G,SI1,62.2,58,5292,6.45,6.37,3.99
1,Premium,G,SI1,62.7,59,5292,6.36,6.31,3.97
1,Premium,F,SI1,60.5,56,5292,6.48,6.45,3.91
1.04,Premium,D,SI2,62.4,56,5292,6.5,6.45,4.04
1,Fair,F,SI1,64.8,59,5292,6.29,6.24,4.06
1.05,Very Good,H,VS2,63.2,58,5292,6.46,6.39,4.06
1.25,Ideal,I,SI2,63.3,56,5292,6.87,6.83,4.34
1.26,Premium,I,SI1,60.5,62,5292,6.97,6.92,4.2
1,Premium,F,SI1,62.6,60,5292,6.32,6.3,3.95
1,Ideal,F,SI1,62,57,5292,6.43,6.37,3.97
1,Premium,F,SI1,61.6,60,5292,6.41,6.31,3.9
1,Premium,F,SI1,62.3,59,5292,6.43,6.37,3.99
1,Premium,F,SI1,60.3,58,5292,6.47,6.43,3.89
1,Premium,F,SI1,61.6,61,5292,6.37,6.3,3.9
1,Premium,F,SI1,60.7,60,5292,6.4,6.36,3.87
1,Premium,F,SI1,62.7,59,5292,6.4,6.36,4
1,Premium,F,SI1,61.2,58,5292,6.44,6.4,3.93
1,Ideal,F,SI1,61.9,56,5292,6.41,6.36,3.95
1.06,Very Good,I,VS1,58.5,58.3,5293,6.66,6.79,3.94
1.25,Premium,I,SI1,59.7,59,5293,6.97,7.03,4.18
1.06,Very Good,D,SI2,60.1,58,5293,6.6,6.64,3.98
1.06,Good,I,VS1,57.5,62,5293,6.71,6.83,3.9
1.01,Premium,H,VS1,61.2,61,5294,6.44,6.41,3.93
1.01,Very Good,G,VS2,63.1,55,5294,6.38,6.36,4.02
1.01,Premium,H,VS1,61.2,61,5294,6.44,6.41,3.93
1.01,Fair,G,VS2,68.9,60,5294,6.06,6.02,4.17
1.01,Ideal,G,VS1,61.3,56,5294,6.49,6.44,3.96
1.01,Premium,H,VS1,62.7,58,5294,6.39,6.37,4
1.01,Very Good,G,VS1,63.1,59,5294,6.32,6.23,3.96
1.15,Ideal,H,SI1,61.9,55,5296,6.74,6.77,4.18
1.22,Ideal,G,SI2,62.3,57,5296,6.85,6.8,4.25
1.22,Ideal,J,VS2,62.1,58,5297,6.82,6.84,4.24
1,Ideal,E,SI1,62.3,55,5299,6.34,6.41,3.97
1,Good,E,SI1,63.2,57,5299,6.36,6.39,4.03
1,Premium,E,SI1,60.5,59,5299,6.4,6.45,3.89
1.11,Ideal,G,SI2,61.7,57,5299,6.65,6.69,4.12
1.25,Premium,J,VS2,62.2,59,5299,6.86,6.88,4.27
1.04,Premium,F,SI1,62.2,60,5300,6.48,6.44,4.02
1.02,Premium,F,SI1,62.3,58,5301,6.38,6.46,4
1.02,Good,F,SI1,63.2,59,5301,6.35,6.38,4.02
1.02,Very Good,F,SI1,62.8,55,5301,6.4,6.43,4.03
1.26,Ideal,J,SI1,62,56,5301,6.9,6.93,4.29
1.01,Premium,E,SI1,59.5,60,5301,6.54,6.46,3.87
1.16,Ideal,G,SI2,61.5,54,5301,6.78,6.75,4.16
1.07,Ideal,I,VS1,62,57,5302,6.56,6.5,4.05
1.02,Very Good,I,VS1,62.2,60,5302,6.4,6.43,3.99
0.91,Very Good,F,VS1,62.4,59,5302,6.15,6.16,3.84
1.16,Ideal,I,VS2,61.5,57,5302,6.78,6.75,4.16
1.01,Premium,H,VS2,61.5,59,5303,6.48,6.49,3.99
1.07,Ideal,G,SI1,62.2,57,5303,6.59,6.56,4.09
1.07,Very Good,E,SI2,61.7,58,5304,6.54,6.56,4.04
1.23,Premium,J,VS1,60.1,60,5304,6.95,6.9,4.16
1.01,Very Good,H,VS1,64,54,5305,6.3,6.38,4.06
0.9,Very Good,E,VS2,62.5,58,5305,6.14,6.18,3.85
1.09,Very Good,G,SI1,60.2,60,5305,6.66,6.7,4.02
1.01,Premium,D,SI1,58.3,58,5305,6.65,6.59,3.86
1.24,Premium,H,VS2,62.8,57,5305,6.83,6.79,4.28
1.09,Premium,I,VS2,60.1,59,5306,6.74,6.67,4.03
1.01,Ideal,H,VS2,62.7,57,5306,6.41,6.39,4.01
1.15,Ideal,H,SI2,62.5,58,5306,6.65,6.69,4.17
1.09,Ideal,F,SI2,62,56,5306,6.62,6.58,4.09
1.26,Ideal,J,VS2,63.2,57,5306,6.86,6.81,4.32
1.27,Ideal,F,SI2,62,55,5308,6.9,6.95,4.3
1.21,Very Good,G,SI2,62.7,59,5308,6.66,6.74,4.2
1.01,Good,F,SI1,63.9,59,5309,6.29,6.32,4.03
1.2,Good,G,SI2,62.1,60,5310,6.72,6.78,4.19
1.66,Premium,I,SI2,60,59,5310,7.63,7.56,4.56
1.36,Premium,J,SI2,62.6,58,5310,7.12,7,4.42
1.04,Premium,H,SI1,60.7,62,5311,6.57,6.51,3.97
1.01,Premium,E,SI1,62,61,5311,6.42,6.38,3.97
0.28,Ideal,E,VS1,62,57,598,4.17,4.2,2.59
0.26,Very Good,E,VVS2,61.7,60,599,4.11,4.12,2.54
0.38,Very Good,G,SI1,57.5,60,599,4.83,4.88,2.79
0.4,Ideal,J,VS2,62.6,57,599,4.68,4.71,2.94
0.4,Ideal,J,VS2,62.2,54,599,4.75,4.8,2.97
0.27,Ideal,H,VS2,61.8,56,599,4.15,4.17,2.57
0.36,Ideal,H,VS2,62,55,599,4.58,4.63,2.86
0.38,Ideal,D,SI2,62,53,599,4.68,4.71,2.91
0.3,Fair,F,SI1,64.6,56,599,4.27,4.25,2.75
0.26,Ideal,E,VVS2,62.2,56,599,4.12,4.15,2.57
0.26,Good,E,VVS2,63.1,59,599,4.04,4.08,2.56
0.26,Ideal,F,VVS2,62.5,56,599,4.1,4.12,2.57
0.26,Very Good,E,VVS1,62.9,58,599,4.06,4.08,2.56
0.26,Ideal,E,VVS1,62,56,599,4.09,4.13,2.55
0.26,Ideal,E,VVS1,61.7,57,599,4.07,4.1,2.52
0.26,Premium,E,VVS1,61.7,59,599,4.1,4.14,2.54
0.26,Premium,E,VVS1,62.3,60,599,4.07,4.09,2.54
0.26,Ideal,F,VVS1,61.6,57,599,4.08,4.1,2.52
0.26,Premium,E,VVS1,61.8,58,599,4.11,4.14,2.55
0.26,Ideal,F,VVS1,62.4,56,599,4.1,4.11,2.56
0.26,Ideal,D,VVS2,62.5,56,599,4.08,4.11,2.56
0.26,Ideal,D,VVS2,61.4,56,599,4.12,4.15,2.54
0.26,Ideal,E,VVS2,61.5,56,599,4.08,4.11,2.52
0.26,Ideal,E,VVS2,62.3,57,599,4.06,4.09,2.54
0.26,Ideal,E,VVS2,62,56,599,4.1,4.13,2.55
0.26,Ideal,F,VVS2,61.6,57,599,4.08,4.1,2.52
0.4,Good,D,SI2,64,56,599,4.64,4.7,2.99
0.32,Ideal,E,VS2,61.8,54,599,4.4,4.43,2.73
0.32,Ideal,E,VS2,61.4,56,599,4.41,4.45,2.72
0.29,Very Good,D,VVS2,59.1,61,600,4.33,4.37,2.57
1.24,Premium,D,SI2,61,59,5311,6.93,6.97,4.24
1.04,Ideal,G,SI1,61.9,56,5311,6.46,6.5,4.01
1.02,Premium,H,VS2,61.2,58,5312,6.5,6.47,3.97
1.02,Premium,H,VS2,62.5,56,5312,6.45,6.42,4.02
0.9,Premium,E,VS2,62.6,60,5312,6.15,6.08,3.83
0.9,Premium,E,VS2,59.5,58,5312,6.33,6.28,3.75
1.02,Ideal,H,VS2,61.2,56,5312,6.53,6.48,3.98
1.02,Premium,H,VS2,62.5,60,5312,6.43,6.38,4
1.5,Good,F,I1,60.6,62,5313,7.22,7.24,4.38
1.03,Very Good,D,SI1,60.5,61,5313,6.43,6.47,3.9
1.07,Ideal,F,SI2,61.4,56,5313,6.57,6.63,4.05
1.16,Good,H,SI1,64.2,58.6,5314,6.61,6.66,4.26
1.23,Ideal,I,SI2,61.2,58,5315,6.86,6.9,4.21
1.18,Good,D,SI2,61.7,63,5315,6.67,6.72,4.13
1.11,Premium,H,SI1,62.8,61,5315,6.63,6.56,4.14
1.11,Premium,H,SI1,61.5,59,5315,6.69,6.64,4.1
1.11,Ideal,H,SI1,61,56,5315,6.74,6.7,4.1
1.11,Ideal,H,SI1,60.2,54,5315,6.82,6.7,4.07
1.13,Premium,I,VS1,62.2,58,5316,6.68,6.63,4.14
1.13,Premium,I,VS1,61.7,54,5316,6.74,6.71,4.15
1.13,Premium,E,SI2,60.4,59,5316,6.75,6.7,4.06
1.01,Ideal,H,VS2,60.6,57,5317,6.54,6.49,3.95
0.91,Good,F,VVS2,64,61,5317,6.06,6.13,3.9
1.19,Ideal,H,SI1,62.3,55,5318,6.84,6.8,4.25
1.2,Ideal,J,VS2,61.8,55,5318,6.84,6.86,4.23
1.33,Premium,G,SI2,59.2,62,5318,7.22,7.16,4.26
1.28,Good,I,VS2,58.2,64,5319,7.09,7.03,4.11
1.06,Ideal,E,SI2,62.2,55,5319,6.54,6.51,4.06
1.25,Premium,H,SI1,59.4,62,5320,7.07,7,4.18
1.1,Very Good,D,SI2,61.1,58,5320,6.61,6.69,4.06
1,Very Good,D,SI1,63.2,59,5320,6.29,6.4,4.01
1,Premium,H,VS2,62.6,59,5320,6.37,6.31,3.97
1.2,Very Good,G,SI2,62.9,54,5321,6.76,6.79,4.26
1.22,Ideal,H,SI2,62.3,55.3,5321,6.8,6.87,4.26
1.04,Ideal,F,SI1,61.3,55,5321,6.51,6.53,4
1,Premium,E,SI1,59.7,57,5322,6.56,6.48,3.89
1,Very Good,E,SI1,59.4,63,5322,6.47,6.42,3.83
1.2,Very Good,I,VS1,63.1,58,5322,6.7,6.62,4.2
1,Premium,G,VS2,60.8,60,5322,6.39,6.33,3.87
1.05,Premium,H,VS2,61.1,58,5323,6.57,6.53,4
1.21,Premium,H,SI2,62.7,59,5324,6.75,6.78,4.24
1.21,Very Good,H,SI2,62.6,61,5324,6.7,6.75,4.21
1.21,Very Good,I,SI1,62.1,56,5324,6.76,6.92,4.25
1.21,Ideal,J,VS1,62.3,55,5324,6.81,6.86,4.26
0.9,Very Good,F,VS1,61.2,56,5324,6.18,6.23,3.8
1.07,Ideal,E,SI2,62.2,55,5325,6.54,6.58,4.08
1.11,Ideal,H,SI1,60.6,59,5325,6.75,6.71,4.08
1.14,Premium,G,SI1,62.2,58,5326,6.64,6.7,4.15
1.07,Premium,H,VS2,62.1,59,5327,6.52,6.56,4.06
1.33,Very Good,J,SI1,64,53,5327,6.93,7.01,4.46
1.08,Ideal,F,SI1,62.7,57,5327,6.52,6.49,4.08
1.51,Premium,J,SI2,59.7,62,5327,7.46,7.42,4.44
1.06,Very Good,E,SI1,59.6,57,5328,6.62,6.67,3.96
1.11,Ideal,I,SI1,61.9,55,5329,6.65,6.66,4.12
1.12,Premium,D,SI2,61.2,60,5329,6.67,6.63,4.07
1.12,Premium,G,SI1,59.8,58,5329,6.79,6.76,4.05
1.22,Ideal,I,SI1,62.1,56,5329,6.83,6.79,4.23
1.22,Very Good,F,SI1,63.5,56,5329,6.79,6.75,4.3
1.27,Very Good,F,SI2,61,61,5330,6.95,7.01,4.26
1,Good,E,SI1,58.2,61,5330,6.53,6.57,3.81
1.03,Ideal,E,SI1,62,57,5330,6.47,6.44,4
1.03,Premium,F,VS2,60.5,59,5330,6.6,6.52,3.97
1.03,Ideal,E,SI1,62.2,57,5330,6.48,6.42,4.01
0.9,Very Good,D,VS1,60.3,58,5331,6.23,6.28,3.77
1,Ideal,E,SI1,61.6,57,5331,6.37,6.45,3.95
1.01,Good,H,VS2,64.4,58,5331,6.18,6.24,4
1,Fair,D,SI1,65.5,60,5331,6.18,6.12,4.03
1,Good,D,SI1,58.5,64,5331,6.53,6.49,3.81
1.19,Ideal,I,SI1,63.7,57,5331,6.73,6.69,4.28
1.12,Ideal,H,SI2,63.6,56,5331,6.68,6.54,4.19
1.25,Premium,I,VS1,59.4,60,5331,7.1,7.03,4.2
1.2,Premium,F,SI2,62.5,59,5332,6.74,6.68,4.2
1.27,Fair,H,SI2,65.2,54,5334,6.78,6.71,4.41
1.02,Very Good,H,VS2,60.2,62,5335,6.46,6.54,3.91
0.9,Ideal,G,VVS2,61.9,56,5335,6.15,6.22,3.83
0.9,Ideal,E,VS1,61.3,57,5335,6.2,6.24,3.81
1.11,Very Good,H,SI1,62.5,58,5335,6.61,6.64,4.14
1.34,Very Good,J,SI2,62.7,56,5335,7.05,7.08,4.43
1.09,Premium,H,SI1,59.8,60,5335,6.72,6.66,4
1.03,Ideal,G,SI1,62.5,57,5337,6.4,6.49,4.03
0.7,Ideal,E,VVS1,61.9,56,5338,5.66,5.69,3.51
0.7,Ideal,E,VVS1,61.8,55,5338,5.69,5.73,3.53
1.13,Premium,H,SI1,61.4,59,5338,6.73,6.68,4.12
1.01,Very Good,E,SI1,62.3,56,5339,6.36,6.42,3.98
1.01,Very Good,E,SI1,61.1,57,5339,6.43,6.46,3.94
1.14,Ideal,J,VS1,61.6,56,5339,6.71,6.73,4.14
1.01,Very Good,E,SI2,60.2,60,5340,6.46,6.5,3.9
1.21,Ideal,J,SI1,61.9,54,5341,6.85,6.88,4.25
1,Very Good,D,SI1,62.3,59,5342,6.26,6.29,3.91
0.91,Very Good,D,SI1,62,59,5342,6.19,6.16,3.83
1.06,Ideal,G,SI1,62,57,5342,6.54,6.5,4.04
1.05,Ideal,H,SI1,61.9,57,5342,6.54,6.57,4.06
1.13,Ideal,F,SI1,59.7,57,5342,6.82,6.79,4.06
1.04,Premium,H,VS2,59.6,58,5344,6.63,6.55,3.93
1,Good,E,SI1,57.2,62,5345,6.59,6.56,3.76
1.01,Premium,F,SI1,62.3,58,5345,6.44,6.41,4
1.01,Premium,F,SI1,59.8,60,5345,6.57,6.53,3.92
1.01,Premium,F,SI1,62.2,59,5345,6.41,6.36,3.97
1.01,Premium,F,SI1,60.6,59,5345,6.52,6.49,3.94
1.01,Ideal,F,SI1,60.9,55,5345,6.5,6.48,3.95
1.02,Ideal,G,VS2,62.4,57,5346,6.47,6.36,4
1.21,Very Good,I,SI1,62.8,57,5346,6.73,6.8,4.25
1.02,Premium,G,VS2,61.5,59,5346,6.45,6.4,3.95
1.11,Premium,G,VS2,61,59,5346,6.7,6.67,4.08
1.1,Ideal,H,VS2,60.5,57,5347,6.73,6.7,4.06
1.07,Ideal,G,SI1,61.9,55,5347,6.57,6.62,4.08
1.05,Ideal,I,VS2,60.2,57,5347,6.6,6.65,3.99
1.05,Ideal,F,SI2,61.9,56,5347,6.48,6.5,4.02
1,Premium,F,VS2,61.3,59,5347,6.39,6.35,3.9
1.02,Fair,E,VS2,66.6,57,5350,6.09,6.14,4.07
1,Very Good,E,SI1,59.6,60,5351,6.43,6.48,3.85
1,Very Good,E,SI1,61.2,60,5351,6.39,6.42,3.92
1.05,Premium,D,SI1,61.6,61,5351,6.55,6.5,4.02
1.5,Premium,J,SI2,61.3,59,5351,7.38,7.33,4.51
1.2,Very Good,H,SI2,62,58,5352,6.73,6.79,4.19
1.2,Very Good,I,SI1,63.8,57,5352,6.64,6.72,4.26
1.05,Ideal,I,VVS2,61.8,54,5352,6.55,6.57,4.05
1.08,Ideal,G,SI1,61.8,56,5352,6.58,6.55,4.06
1.08,Ideal,D,SI2,61.6,57,5352,6.62,6.58,4.07
1.04,Very Good,G,VS2,61.4,63,5353,6.51,6.55,4.01
1.03,Very Good,G,SI1,59.4,60,5353,6.61,6.66,3.94
1.21,Premium,I,SI1,61.6,58,5353,6.89,6.84,4.23
1.06,Ideal,F,SI2,61.8,56,5354,6.56,6.51,4.04
1.25,Ideal,I,SI2,62,57,5355,6.92,6.85,4.27
1.25,Ideal,G,SI2,61.6,57,5355,6.98,6.91,4.28
1.02,Premium,H,VS2,62.4,58,5356,6.39,6.43,4
1.03,Ideal,F,SI1,62.8,56,5356,6.38,6.46,4.03
1.22,Good,J,VS1,58.5,61,5356,6.94,7,4.08
0.9,Good,E,VS1,59.3,56,5356,6.27,6.32,3.73
1.08,Ideal,I,VS2,61.8,54.2,5357,6.57,6.6,4.07
1.34,Ideal,G,SI2,62,55,5358,7.06,7.03,4.37
1.34,Ideal,J,SI2,62,56,5358,7.09,7.03,4.38
1.11,Ideal,H,SI1,61.6,56,5358,6.65,6.69,4.11
1.09,Ideal,H,SI1,61.9,57,5358,6.63,6.58,4.09
0.92,Premium,E,VS1,60.9,61,5358,6.25,6.22,3.8
1.11,Ideal,E,SI2,61.2,55,5358,6.72,6.68,4.1
1.1,Ideal,E,SI2,61.6,56,5359,6.66,6.63,4.09
1.12,Very Good,G,SI1,61.1,59,5361,6.69,6.73,4.1
1.1,Ideal,G,SI2,62.1,58,5361,6.61,6.63,4.11
1.05,Ideal,G,SI1,61.9,56,5361,6.51,6.55,4.04
1.05,Ideal,G,SI1,62.3,55,5361,6.47,6.54,4.05
1.11,Good,J,IF,58.3,62,5361,6.77,6.84,3.97
1.24,Ideal,J,VS2,61.8,58,5361,6.88,6.84,4.24
1.25,Very Good,H,SI2,62.7,57,5362,6.82,6.86,4.29
1.06,Ideal,I,VS2,61,57,5362,6.55,6.59,4.01
1.12,Ideal,H,SI1,62,57,5363,6.69,6.64,4.13
1.12,Premium,H,SI1,62.2,60,5363,6.65,6.59,4.12
1.12,Premium,H,SI1,61.6,59,5363,6.67,6.63,4.1
1.26,Ideal,I,SI2,62,56,5363,7,6.94,4.32
1.21,Very Good,G,SI2,59.3,59,5364,6.97,7,4.14
1.09,Ideal,D,SI2,62.4,57,5364,6.55,6.6,4.1
1.03,Premium,H,VS2,63,59,5364,6.47,6.36,4.04
1.03,Ideal,H,VS2,62.3,56,5364,6.46,6.44,4.02
1.03,Premium,H,VS2,60.9,58,5364,6.55,6.48,3.97
1.03,Premium,H,VS2,61.6,61,5364,6.51,6.44,3.99
1.03,Premium,H,VS2,62.6,56,5364,6.43,6.38,4.01
1.03,Ideal,F,SI1,62.6,57,5366,6.42,6.46,4.03
1.01,Premium,E,SI1,58.2,59,5366,6.59,6.54,3.82
1.17,Premium,F,SI1,61.9,60,5366,6.72,6.66,4.14
1.16,Premium,G,SI1,63,58,5366,6.7,6.66,4.21
1.14,Very Good,H,SI1,62.9,59,5367,6.62,6.64,4.17
1.07,Very Good,H,SI1,60.4,58,5367,6.67,6.73,4.05
1.02,Ideal,G,SI1,60.6,57,5367,6.49,6.52,3.94
1.22,Premium,I,SI1,62.1,59,5368,6.8,6.86,4.24
1.22,Premium,I,SI1,61.2,59,5368,6.86,6.9,4.21
1.02,Premium,F,SI1,61.4,58,5369,6.48,6.41,3.96
1.13,Very Good,J,VS1,62.1,59,5370,6.64,6.71,4.14
1.05,Premium,H,VS2,62.7,59,5370,6.43,6.49,4.05
1.05,Very Good,H,VS2,59,59,5370,6.68,6.71,3.95
1.1,Ideal,H,SI1,62,57,5370,6.66,6.7,4.14
1.37,Premium,J,VS1,60,62,5370,7.24,7.21,4.33
1.27,Very Good,I,SI2,59.7,57,5371,6.99,7.04,4.19
1.01,Very Good,E,SI1,61.5,60,5372,6.39,6.42,3.94
1.16,Very Good,G,SI1,60.5,60,5372,6.86,6.77,4.12
1.01,Ideal,E,SI1,62.1,57,5372,6.4,6.45,3.99
1.2,Very Good,D,SI2,63.1,57,5373,6.68,6.75,4.24
0.81,Ideal,E,VVS2,62.2,53.7,5373,5.97,5.99,3.72
1.07,Ideal,I,VS1,62,53,5373,6.61,6.62,4.1
1.2,Ideal,I,SI2,61.1,57,5373,6.86,6.89,4.2
0.9,Ideal,E,SI1,61.9,54,5373,6.19,6.22,3.84
1.06,Ideal,H,VS2,61.2,55,5373,6.61,6.57,4.03
1.17,Ideal,H,SI2,61.4,56,5373,6.83,6.76,4.17
1.23,Premium,H,SI2,61.2,57,5373,6.89,6.86,4.21
1.12,Very Good,F,SI1,61.4,63,5374,6.7,6.68,4.11
1.12,Very Good,H,SI2,61.7,59,5375,6.67,6.71,4.13
1.08,Very Good,H,SI1,61.8,53,5375,6.62,6.63,4.09
0.93,Ideal,H,VS1,61.8,55,5375,6.28,6.26,3.88
1.01,Ideal,E,SI1,62.9,56,5375,6.41,6.38,4.02
1.2,Premium,I,VVS2,63,60,5376,6.71,6.63,4.2
1.2,Very Good,J,VS1,63.1,59,5376,6.75,6.65,4.23
1.09,Ideal,H,SI1,62.1,55,5376,6.6,6.64,4.11
1,Fair,E,VS2,65,58,5376,6.21,6.16,4.02
1.13,Premium,D,SI2,62,58,5376,6.68,6.64,4.13
1.13,Premium,G,SI1,60.9,60,5376,6.76,6.67,4.09
1.2,Premium,H,SI2,62.2,58,5376,6.79,6.74,4.21
1.2,Ideal,I,SI1,63.5,61,5376,6.75,6.71,4.27
1.2,Ideal,I,SI1,62.6,58,5376,6.74,6.71,4.21
1.28,Premium,H,SI2,60.2,60,5376,6.97,6.93,4.31
1.2,Premium,H,SI2,62.5,58,5376,6.81,6.76,4.24
1.2,Premium,H,SI2,62.3,58,5376,6.81,6.76,4.23
1.2,Premium,H,SI2,62,58,5376,6.91,6.76,4.24
1,Good,E,VS2,64,58,5376,6.24,6.2,3.99
1.03,Ideal,I,VS2,61.2,56,5378,6.5,6.51,3.98
1.13,Ideal,I,SI2,62,55,5378,6.68,6.7,4.15
1.18,Ideal,I,SI1,61.5,56,5378,6.77,6.82,4.18
1.01,Good,F,SI1,62.4,59,5378,6.29,6.33,3.94
1.03,Ideal,F,SI1,61.3,57,5378,6.58,6.51,4.01
1.01,Good,E,SI1,64.3,59,5379,6.23,6.28,4.02
1.04,Very Good,E,SI1,63.5,56,5381,6.41,6.37,4.06
1.24,Premium,D,SI2,59.9,59,5382,7.01,6.95,4.18
1.31,Very Good,J,SI1,62.5,55,5382,6.97,7.05,4.38
1.14,Ideal,H,SI1,62.3,56,5382,6.69,6.77,4.19
1.02,Very Good,H,VS2,62.4,57,5383,6.43,6.35,3.99
1.01,Very Good,F,SI1,61.9,58,5383,6.41,6.44,3.98
1.11,Very Good,F,SI1,60.1,61,5384,6.64,6.74,4.06
1.13,Ideal,H,SI1,62.3,56,5384,6.66,6.69,4.16
1,Good,E,SI1,58,60,5384,6.48,6.52,3.77
1.09,Premium,F,SI1,60.9,59,5384,6.64,6.59,4.03
1.15,Premium,G,SI1,63,59,5384,6.68,6.63,4.19
1.09,Premium,F,SI1,62.7,58,5384,6.56,6.51,4.1
1,Very Good,G,VS2,60,55,5385,6.41,6.52,3.88
1.2,Ideal,G,SI2,62.2,56,5385,6.74,6.84,4.22
1,Ideal,I,VS1,60.4,55,5385,6.49,6.52,3.93
1.01,Fair,D,SI1,66,57,5385,6.29,6.22,4.13
1.01,Fair,D,SI1,65,57,5385,6.3,6.22,4.07
1.01,Very Good,D,SI1,60.8,57,5386,6.58,6.54,3.99
0.9,Ideal,F,VS1,61.6,56,5386,6.2,6.23,3.83
1.11,Ideal,H,SI1,62.7,56,5386,6.65,6.59,4.15
1.23,Good,J,VS2,63.6,57,5386,6.79,6.74,4.3
0.9,Very Good,E,SI1,61.4,56,5387,6.19,6.23,3.81
1.01,Ideal,H,SI1,61.7,57,5387,6.37,6.44,3.96
1.01,Ideal,H,SI1,61.2,57,5387,6.42,6.47,3.95
1.01,Ideal,G,SI1,61.2,57,5387,6.44,6.5,3.96
1.3,Ideal,H,VS2,62.9,56,5387,7,6.96,4.39
1.21,Premium,F,SI2,61.5,61,5387,6.82,6.77,4.18
1.21,Very Good,I,VS2,63.4,57,5387,6.79,6.72,4.28
1,Premium,H,VS1,61.5,57,5387,6.44,6.37,3.94
1,Premium,H,VS1,60.7,59,5387,6.44,6.4,3.9
1.21,Ideal,I,VS2,62.3,58,5387,6.79,6.75,4.22
1.16,Ideal,H,SI2,60.9,59,5388,6.72,6.78,4.11
1.21,Ideal,J,SI1,62.7,55.2,5390,6.79,6.84,4.27
1,Very Good,D,SI1,62.1,58,5390,6.34,6.45,3.97
1,Very Good,D,SI1,62.1,61,5390,6.3,6.32,3.92
1,Very Good,D,SI1,61.3,54,5390,6.37,6.39,3.91
1,Premium,D,SI1,61.5,60,5390,6.34,6.38,3.91
1.19,Very Good,J,SI1,60,57,5390,6.93,6.89,4.15
0.92,Good,G,VVS2,58.8,57,5390,6.32,6.37,3.73
1.25,Premium,I,SI1,59.7,59,5390,7.03,6.97,4.18
1.12,Ideal,I,VS2,61.2,54,5392,6.74,6.77,4.13
1.14,Ideal,J,VS1,61.5,57,5392,6.7,6.73,4.13
1.06,Ideal,G,SI1,60.5,57,5393,6.64,6.59,4
1.02,Very Good,H,VS2,60.6,60,5393,6.55,6.48,3.95
1.01,Very Good,H,VS2,61.6,57,5393,6.41,6.44,3.96
1.03,Very Good,E,SI2,61.7,54.9,5393,6.46,6.52,4.01
1.03,Very Good,D,SI1,61.8,57,5393,6.49,6.53,4.02
1.07,Ideal,E,SI2,61.4,57,5393,6.62,6.57,4.05
1.06,Premium,D,SI2,62.5,56,5393,6.61,6.47,4.09
0.91,Good,G,SI1,57.7,58,5394,6.33,6.4,3.67
1.01,Very Good,D,SI1,59.8,56,5394,6.57,6.6,3.94
1.25,Ideal,I,SI2,61.4,55,5395,6.92,6.99,4.27
1.11,Ideal,H,SI1,62.5,56,5395,6.65,6.63,4.15
1.11,Premium,H,VS2,60.9,57,5395,6.77,6.69,4.1
1.11,Premium,H,VS2,62,59,5395,6.66,6.59,4.11
1.11,Ideal,G,SI2,61.7,57,5395,6.69,6.65,4.12
1.25,Premium,J,VS2,62.2,59,5396,6.88,6.86,4.27
1,Premium,E,SI1,60.5,59,5396,6.45,6.4,3.89
1,Very Good,E,SI1,63.2,57,5396,6.39,6.36,4.03
1,Ideal,E,SI1,62.3,55,5396,6.41,6.34,3.97
1,Premium,E,SI1,61.7,58,5396,6.42,6.35,3.94
1.22,Very Good,E,SI1,63.4,56,5397,6.79,6.76,4.29
1.02,Ideal,G,SI1,61.5,57,5398,6.54,6.44,3.99
1.02,Very Good,F,SI1,63.2,59,5398,6.38,6.35,4.02
1.26,Premium,I,SI2,62.2,58,5398,6.98,6.92,4.32
1.02,Premium,F,SI1,62.3,58,5398,6.46,6.38,4
1.02,Ideal,F,SI1,62.8,55,5398,6.43,6.4,4.03
1.26,Ideal,J,SI1,62,56,5398,6.93,6.9,4.29
1.01,Premium,H,VS2,61.5,59,5400,6.49,6.48,3.99
1.05,Premium,E,SI2,60.3,61,5400,6.62,6.57,3.98
1.09,Ideal,I,VS1,62.7,54,5401,6.6,6.54,4.12
1.09,Premium,G,SI1,60.2,60,5402,6.7,6.66,4.02
1,Premium,H,VS2,62.4,59,5404,6.75,6.72,4.2
1.22,Premium,I,VS2,60.1,58,5405,6.92,7,4.18
2.14,Fair,J,I1,69.4,57,5405,7.74,7.7,5.36
1.07,Ideal,F,SI2,61.6,57,5405,6.56,6.53,4.03
1.21,Premium,G,SI2,62.7,59,5405,6.74,6.66,4.2
1.27,Ideal,F,SI2,62,55,5405,6.95,6.9,4.3
1.19,Ideal,D,SI2,60.4,55,5406,6.89,6.91,4.17
1.05,Very Good,H,SI1,60.5,58,5406,6.55,6.6,3.98
1.21,Good,H,SI1,63.8,64,5407,6.72,6.63,4.26
1.02,Premium,G,VS2,62.7,58,5407,6.44,6.36,4.01
1.49,Good,I,SI2,64.3,59,5407,7.2,7.1,4.6
1.23,Ideal,J,SI1,62.2,57,5407,6.89,6.81,4.26
1.1,Ideal,G,SI2,62.5,55,5407,6.61,6.66,4.15
1,Good,F,VS2,64.4,56,5407,6.23,6.28,4.03
1.2,Very Good,H,SI2,60.2,58,5408,6.88,6.94,4.16
1.13,Very Good,D,SI2,62.3,60,5408,6.59,6.7,4.14
1.2,Very Good,I,SI1,62.2,55,5408,6.75,6.92,4.25
1.2,Very Good,I,SI1,60,60,5408,6.81,6.89,4.11
1.2,Very Good,I,SI1,62.8,57,5408,6.7,6.74,4.22
1.11,Ideal,G,SI1,61.9,57,5408,6.63,6.66,4.11
0.3,Very Good,E,VS2,61.6,54,600,4.29,4.32,2.65
0.29,Ideal,G,VVS2,61.3,56,600,4.23,4.25,2.6
0.31,Ideal,G,VS1,62.3,54,600,4.35,4.38,2.72
0.31,Good,E,VS1,59,63,600,4.44,4.47,2.63
0.26,Very Good,H,VVS2,63.3,58,600,4.08,4.04,2.57
0.26,Premium,H,VVS1,62.5,58,600,4.11,4.08,2.56
0.26,Ideal,H,VVS1,61.2,56,600,4.16,4.11,2.53
0.26,Premium,H,VVS2,62.4,58,600,4.07,4.04,2.53
0.26,Ideal,H,IF,61.1,57,600,4.16,4.12,2.53
0.23,Very Good,F,VVS2,58.1,63,600,4.08,4.04,2.36
0.26,Premium,H,VVS1,59.8,59,600,4.17,4.12,2.48
0.41,Good,G,I1,63.8,56,600,4.74,4.7,3.01
0.41,Premium,I,SI2,60.6,59,600,4.84,4.8,2.92
0.38,Premium,J,VS1,62.1,60,600,4.6,4.64,2.87
0.36,Premium,F,SI1,61.1,59,600,4.58,4.62,2.81
0.38,Very Good,F,SI2,61,61,600,4.61,4.67,2.83
0.36,Very Good,F,SI1,60.3,58,600,4.6,4.65,2.79
0.36,Premium,F,SI1,61.1,59,600,4.55,4.59,2.79
0.36,Premium,F,SI1,62.3,59,600,4.5,4.56,2.82
0.36,Ideal,F,SI1,61.5,56,600,4.59,4.62,2.83
0.36,Ideal,F,SI1,62,56,600,4.54,4.59,2.83
0.36,Very Good,F,SI1,61.9,59,600,4.51,4.54,2.8
0.36,Premium,F,SI1,61.5,58,600,4.54,4.6,2.81
0.36,Ideal,F,SI1,60.1,56,600,4.62,4.67,2.79
0.36,Premium,F,SI1,61.6,60,600,4.54,4.61,2.82
0.36,Ideal,F,SI1,61.5,57,600,4.55,4.59,2.81
0.26,Very Good,E,VS2,62.8,58,601,4,4.06,2.53
0.38,Very Good,I,SI1,59.7,62,601,4.7,4.74,2.82
0.3,Ideal,F,VS2,62.1,53.3,601,4.3,4.32,2.68
0.3,Ideal,F,VS2,62.1,53.6,601,4.28,4.31,2.67
1.11,Premium,G,SI1,62.7,57,5408,6.62,6.5,4.11
1.11,Premium,G,SI1,62.3,58,5408,6.61,6.52,4.09
1.09,Ideal,D,SI2,61.7,59,5410,6.64,6.62,4.09
1.5,Premium,F,I1,60.6,62,5410,7.24,7.22,4.38
1.03,Premium,D,SI1,60.5,61,5410,6.47,6.43,3.9
1.13,Premium,H,SI1,62.1,58,5410,6.7,6.66,4.15
1,Premium,F,SI1,60.6,62,5410,6.43,6.4,3.89
1.01,Very Good,E,SI1,59.6,61,5411,6.47,6.51,3.87
1.01,Very Good,E,SI1,62.8,57,5411,6.35,6.39,4
0.91,Ideal,H,VVS2,61.7,57,5411,6.21,6.23,3.84
0.93,Ideal,E,VS2,62.4,56,5411,6.26,6.3,3.92
1.03,Ideal,E,SI1,62,55,5411,6.46,6.5,4.02
1.01,Good,E,SI1,63.2,59,5411,6.27,6.35,3.99
1.16,Fair,H,SI1,65.8,58,5411,6.54,6.46,4.28
1.16,Ideal,H,SI1,64.2,59,5411,6.66,6.61,4.26
1.23,Good,H,SI2,63.8,57.4,5412,6.72,6.78,4.31
1.5,Ideal,I,I1,61.8,57,5412,7.31,7.39,4.54
1.2,Ideal,I,SI1,61.8,56,5412,6.77,6.8,4.19
1.23,Premium,I,SI1,62.5,59,5412,6.8,6.84,4.26
1.23,Premium,J,VS1,62.7,58,5412,6.79,6.82,4.27
1.24,Ideal,J,VS2,61.7,55,5412,6.91,6.96,4.28
1.13,Ideal,D,SI2,60.1,55,5412,6.79,6.85,4.1
1.18,Ideal,I,SI1,61.3,55.6,5412,6.79,6.84,4.18
1.17,Ideal,D,SI2,62.5,56,5412,6.77,6.7,4.21
1.26,Ideal,D,SI2,61.6,56,5412,6.99,6.95,4.3
1.26,Premium,D,SI2,61.9,58,5412,6.88,6.81,4.24
1,Very Good,E,SI1,63.7,55,5413,6.35,6.4,4.06
1.06,Very Good,H,VS2,60.7,59,5415,6.56,6.63,4
1.01,Good,H,VS1,63.8,59,5416,6.3,6.34,4.03
1.01,Very Good,E,SI1,62.8,59,5416,6.41,6.45,4.04
1.01,Premium,H,VS1,61.1,58,5416,6.45,6.48,3.95
1.01,Ideal,F,SI1,62.7,55,5416,6.45,6.4,4.03
1.5,Good,H,SI2,63.8,57,5416,7.21,7.14,4.58
1.04,Premium,H,VS2,62.7,61,5416,6.48,6.44,4.05
1.04,Ideal,H,VS2,59.3,57,5416,6.64,6.58,3.92
1.03,Ideal,H,SI1,61.1,56,5418,6.5,6.53,3.98
1.03,Ideal,H,SI1,61.7,57,5418,6.47,6.53,4.01
1.01,Good,G,VS2,64.4,58,5418,6.23,6.31,4.04
1.29,Premium,H,SI2,61,57,5418,7.13,6.95,4.31
1.28,Ideal,I,SI2,61.7,59,5419,6.96,6.92,4.28
1.08,Premium,D,SI1,61.6,56,5419,6.64,6.57,4.07
1,Good,F,VS2,63.1,56,5420,6.27,6.31,3.97
1.46,Premium,G,SI2,62.8,52,5421,7.31,7.27,4.58
1.3,Premium,G,SI2,61.8,57,5421,7.02,6.94,4.32
1.09,Ideal,I,VS2,61.9,56,5421,6.62,6.67,4.09
1.21,Premium,H,SI2,62.6,61,5421,6.75,6.7,4.21
1.21,Premium,I,SI1,59.3,59,5421,6.98,6.95,4.13
1.21,Ideal,J,VS1,62.3,55,5421,6.86,6.81,4.26
1.21,Premium,I,SI1,62.1,56,5421,6.92,6.76,4.25
1.01,Very Good,D,SI1,60.7,58,5422,6.49,6.45,3.93
0.81,Very Good,D,VVS2,63.9,56,5423,5.79,5.91,3.74
1.17,Ideal,H,SI2,62.4,53,5423,6.74,6.76,4.21
1.02,Very Good,E,SI1,60.6,59,5424,6.47,6.49,3.93
1.1,Ideal,H,SI1,61.4,55,5424,6.68,6.7,4.11
1.07,Premium,H,VS2,62.1,59,5424,6.56,6.52,4.06
1.14,Premium,G,SI1,62.7,58,5424,6.68,6.63,4.17
1.02,Ideal,D,SI2,61.7,58,5426,6.41,6.49,3.98
1.02,Ideal,G,SI1,62.1,55,5426,6.46,6.49,4.02
1.02,Ideal,H,VS2,62,57,5426,6.43,6.4,3.98
1.02,Premium,H,VS2,61.7,58,5426,6.45,6.41,3.97
1.24,Very Good,J,VS1,59.1,62,5427,7.06,7.04,4.17
1.27,Premium,F,SI2,61,61,5428,7.01,6.95,4.26
1.11,Ideal,G,SI1,62.6,57,5428,6.64,6.56,4.13
1.09,Ideal,H,SI1,60.9,55,5428,6.72,6.69,4.08
1.02,Premium,E,SI1,62.8,58,5429,6.45,6.39,4.03
1.31,Good,H,SI2,64.1,57,5429,6.9,6.84,4.41
1.21,Premium,G,SI2,60.3,58,5430,6.9,6.96,4.18
1.02,Very Good,F,SI1,59.4,60,5430,6.48,6.59,3.88
2.15,Fair,J,I1,65.5,57,5430,8.01,7.95,5.23
1.01,Ideal,G,SI1,63.1,53,5430,6.36,6.42,4.03
0.91,Fair,E,VVS2,63.1,55,5430,6.13,6,3.83
1.01,Premium,E,SI1,62.4,59,5430,6.38,6.35,3.97
1.01,Fair,D,SI1,64.7,57,5430,6.33,6.25,4.07
1.01,Premium,E,VS2,62.3,59,5430,6.38,6.33,3.96
1.01,Good,E,VS2,63.8,59,5430,6.26,6.22,3.98
1.22,Good,I,VS2,57.2,60,5431,7.07,7.01,4.03
1.21,Premium,J,VVS2,61.7,60,5431,6.82,6.85,4.22
0.91,Ideal,E,SI1,62.3,55,5431,6.2,6.23,3.87
1.02,Premium,H,VS2,60.2,62,5432,6.54,6.46,3.91
1.01,Very Good,H,SI1,62.9,56,5433,6.34,6.41,4.01
1.01,Very Good,H,SI1,61.2,60,5433,6.41,6.44,3.93
1.05,Premium,E,SI1,61.2,58,5433,6.57,6.53,4.01
1.15,Premium,H,SI1,62,58,5433,6.77,6.71,4.18
1.11,Premium,H,SI1,62.5,58,5433,6.64,6.61,4.14
1.11,Premium,H,SI1,61.1,60,5433,6.68,6.62,4.06
1.26,Premium,H,SI2,60.9,57,5434,7.03,6.96,4.26
1.06,Very Good,G,SI1,61.3,60,5435,6.53,6.55,4.01
1.07,Ideal,F,SI1,59.4,57,5436,6.73,6.67,3.98
1.05,Ideal,E,SI1,62.1,57,5436,6.48,6.5,4.03
1.07,Premium,F,SI1,62.5,59,5436,6.57,6.52,4.09
1.22,Ideal,G,SI2,62.9,56,5436,6.86,6.78,4.29
1.22,Premium,G,SI2,58.3,61,5436,7,6.92,4.06
1.01,Ideal,E,SI2,61.5,55,5437,6.44,6.51,3.98
1.33,Premium,H,SI2,61,59,5437,7.1,7.06,4.32
1.05,Very Good,G,SI1,60.2,58,5438,6.57,6.61,3.97
1.3,Premium,J,SI1,61.8,59,5438,6.99,6.95,4.31
1.11,Good,G,SI2,59.7,61,5438,6.72,6.69,4
0.9,Premium,E,VS1,59.4,59,5438,6.31,6.28,3.74
1.01,Ideal,G,VS2,61.7,57,5439,6.44,6.49,3.99
0.9,Ideal,E,VS2,62,59,5439,6.17,6.21,3.84
1.08,Ideal,G,SI1,61.7,56,5439,6.6,6.63,4.08
1.19,Premium,I,VS2,61.7,57,5439,6.84,6.77,4.2
1.11,Premium,H,SI1,58.8,59,5439,6.79,6.74,3.98
1.27,Ideal,J,VS2,61.5,57,5442,6.93,6.98,4.28
1.01,Good,D,SI1,63.8,58,5443,6.34,6.38,4.06
1.01,Premium,D,SI1,62.6,58,5443,6.33,6.44,4
1.01,Good,D,SI1,61.7,62,5443,6.3,6.34,3.9
1.01,Ideal,D,SI1,61.2,57,5443,6.44,6.47,3.95
1.01,Very Good,D,SI1,62.9,59,5443,6.39,6.43,4.03
1.01,Good,D,SI1,63.1,60,5443,6.32,6.39,4.01
1.01,Good,D,SI1,61.8,60,5443,6.35,6.37,3.93
1.01,Very Good,D,SI1,61.6,60,5443,6.43,6.47,3.97
1.2,Very Good,H,SI1,63.5,58,5443,6.69,6.73,4.26
1.24,Ideal,J,VS2,62.3,56,5443,6.84,6.91,4.28
1.24,Ideal,E,SI2,59.2,55,5444,7.05,7.03,4.17
1.24,Very Good,I,VS1,61.4,63,5444,6.89,6.88,4.23
1.07,Ideal,G,SI1,61.9,55,5444,6.62,6.57,4.08
1,Premium,E,SI1,60.7,59,5445,6.38,6.41,3.88
1,Premium,E,SI1,62.6,60,5445,6.3,6.35,3.97
1,Premium,E,SI1,61.9,60,5445,6.37,6.46,3.97
1.06,Very Good,E,SI1,63.7,55,5445,6.45,6.49,4.12
1.2,Fair,F,SI2,63.4,60,5445,6.56,6.65,4.19
1.03,Ideal,G,SI1,60.5,55,5445,6.59,6.54,3.97
1.31,Premium,J,SI1,59.4,60,5446,7.06,7.12,4.21
1.31,Good,I,SI2,63.6,55.1,5446,6.92,6.98,4.42
1.04,Very Good,H,VS2,60.9,58,5447,6.5,6.6,3.99
1.12,Very Good,E,SI1,58.8,61,5447,6.74,6.8,3.98
1.37,Good,I,VS2,64.1,58,5449,6.92,6.9,4.43
1.11,Premium,H,VS2,61.7,58,5450,6.64,6.69,4.11
1.11,Very Good,H,VS2,62.4,58,5450,6.57,6.69,4.14
1.31,Very Good,J,SI1,62.3,55,5450,6.98,7.02,4.36
0.9,Ideal,E,SI1,62,56,5450,6.18,6.2,3.84
1.2,Very Good,D,SI2,62.6,57,5451,6.74,6.84,4.25
1.18,Very Good,I,VS1,62.2,57,5451,6.72,6.76,4.19
1.12,Ideal,G,SI1,62,55,5451,6.65,6.68,4.13
1.04,Very Good,G,VS2,61.4,63,5451,6.55,6.51,4.01
1.24,Ideal,J,VS2,62.8,56,5451,6.83,6.8,4.28
1.21,Very Good,J,VS1,62.6,57,5452,6.71,6.8,4.23
1.21,Very Good,I,SI1,62.9,55,5452,6.69,6.76,4.23
1.18,Ideal,G,SI2,60.5,55,5452,6.9,6.85,4.16
0.92,Very Good,E,VS1,60.9,61,5453,6.22,6.25,3.8
1.07,Premium,G,SI1,61.6,58,5453,6.6,6.56,4.05
1.07,Ideal,G,SI1,60.2,57,5453,6.7,6.59,4
1.16,Premium,H,SI1,61.2,58,5454,6.76,6.81,4.15
1.02,Premium,H,VS2,62.4,58,5454,6.43,6.39,4
1.27,Very Good,J,VS2,61.8,60,5455,6.9,6.94,4.28
1.03,Very Good,I,VS1,62.9,53,5455,6.45,6.5,4.07
1.02,Very Good,H,SI1,61,59,5455,6.48,6.53,3.97
1.27,Ideal,J,SI1,61.4,57,5455,6.97,7,4.29
1.02,Premium,F,SI1,61,59,5455,6.58,6.47,3.98
1.08,Ideal,I,VS2,61.8,54,5455,6.6,6.57,4.07
1.24,Very Good,I,SI1,60.4,58,5456,6.95,7.02,4.22
1.06,Very Good,H,VS1,62.2,59,5456,6.47,6.52,4.04
1.02,Very Good,E,SI1,63.2,60,5456,6.33,6.42,4.03
1.12,Ideal,D,SI2,62.6,57,5456,6.61,6.65,4.15
1.11,Ideal,H,SI1,62.3,55,5456,6.7,6.65,4.16
1.11,Ideal,H,SI1,61.6,56,5456,6.69,6.65,4.11
1.21,Very Good,I,SI1,60.6,56,5457,6.89,6.97,4.2
1.05,Ideal,F,SI1,62,55,5457,6.5,6.54,4.04
1.12,Ideal,H,SI1,60.7,56,5457,6.74,6.7,4.08
1.13,Ideal,E,SI2,62.2,56,5457,6.7,6.66,4.16
1.01,Ideal,H,SI1,62.7,56,5457,6.37,6.42,4.01
1.16,Premium,I,VS1,60.4,59,5457,6.89,6.82,4.14
1.14,Premium,H,SI1,59.3,59,5458,6.8,6.76,4.02
1,Ideal,E,SI1,61.9,56,5458,6.37,6.45,3.97
0.91,Ideal,E,SI1,61.9,55,5458,6.21,6.23,3.85
1.2,Good,I,SI1,64.4,61,5458,6.52,6.59,4.22
1.18,Premium,G,SI1,62.1,59,5458,6.75,6.71,4.18
1.14,Premium,H,SI1,61.9,58,5458,6.71,6.67,4.14
1.14,Very Good,H,SI1,63.1,58,5458,6.69,6.6,4.19
1.06,Ideal,J,VS2,61.4,56,5459,6.55,6.6,4.04
1,Fair,H,VS1,55.8,60,5460,6.66,6.61,3.7
1.5,Fair,D,I1,64.7,62,5460,7.19,7.04,4.6
1.5,Premium,G,SI2,61.7,55,5460,7.39,7.32,4.54
1.01,Very Good,E,SI1,60,60,5461,6.43,6.51,3.88
1.01,Very Good,E,SI1,62.1,56,5461,6.43,6.48,4.01
1.06,Ideal,G,SI1,62.9,56,5461,6.52,6.49,4.09
1.06,Premium,H,SI1,61,60,5461,6.59,6.56,4.01
1.21,Premium,H,VS2,60.8,62,5461,6.82,6.78,4.13
1.29,Very Good,I,SI1,62.2,58,5463,6.94,6.99,4.33
1.29,Premium,J,VS1,61.7,59,5463,6.93,6.97,4.29
1.19,Premium,I,SI1,61.3,59,5464,6.84,6.79,4.18
1.07,Premium,H,SI1,63,57,5465,6.55,6.44,4.09
1.22,Premium,I,SI1,59,61,5466,7.02,6.98,4.13
1.22,Premium,I,SI1,62.2,57,5466,6.87,6.79,4.25
1.22,Premium,I,SI1,62.1,59,5466,6.86,6.8,4.24
1.22,Premium,H,SI2,60.2,56,5466,6.96,6.93,4.18
1.05,Premium,H,VS2,62.7,59,5468,6.49,6.43,4.05
1.05,Premium,H,VS2,59,59,5468,6.71,6.68,3.95
1.02,Premium,H,VS1,62.1,59,5469,6.38,6.43,3.98
1.14,Ideal,I,SI1,62.3,58,5469,6.65,6.7,4.16
1.04,Ideal,H,SI1,61.7,56,5469,6.51,6.55,4.03
1,Good,D,SI1,64.9,53,5469,6.27,6.3,4.08
1,Premium,E,SI1,60.8,60,5470,6.45,6.42,3.91
1.14,Ideal,E,SI2,62.4,57,5473,6.64,6.7,4.16
1.2,Very Good,G,SI2,60.2,63,5474,6.81,6.84,4.11
1.2,Premium,I,VS2,62.1,59,5474,6.77,6.72,4.19
1.01,Fair,G,VS2,66.6,55,5475,6.27,6.22,4.16
0.9,Very Good,D,VS2,62.3,56,5476,6.14,6.18,3.84
1.2,Very Good,I,SI1,62.6,57,5476,6.74,6.77,4.23
1.03,Ideal,E,SI1,62.1,56,5476,6.43,6.48,4.01
1.03,Ideal,E,SI1,61.3,57,5476,6.48,6.51,3.98
1.1,Premium,H,SI1,60.7,59,5476,6.72,6.7,4.07
1.18,Premium,I,VS1,62.6,59,5477,6.73,6.71,4.21
1.01,Ideal,I,VVS1,61.7,56,5478,6.42,6.47,3.98
1.01,Very Good,E,SI1,64.1,56,5479,6.29,6.35,4.05
1.06,Very Good,H,VS2,62.4,56,5480,6.49,6.56,4.07
1.05,Very Good,G,SI1,62,56,5480,6.47,6.55,4.04
0.9,Good,F,VVS2,61.8,63,5480,6.14,6.19,3.81
1.16,Premium,H,SI1,60.2,59,5480,6.84,6.77,4.1
1.31,Premium,J,SI1,62.5,55,5480,7.05,6.97,4.38
1.13,Very Good,F,SI1,60.6,60,5481,6.67,6.76,4.07
1,Good,G,SI1,62.2,63,5483,6.36,6.41,3.97
1.11,Premium,F,SI1,60.1,61,5483,6.74,6.64,4.06
1.13,Ideal,H,SI1,62.3,56,5483,6.69,6.66,4.16
1,Good,G,VS2,63.7,59,5484,6.38,6.33,4.05
1.02,Premium,F,SI1,62.9,55,5484,6.47,6.41,4.05
0.91,Very Good,G,VS2,62.3,59,5484,6.13,6.17,3.83
1,Good,G,VS2,63.7,57,5484,6.32,6.28,4.01
1,Good,G,VS2,56.6,61,5484,6.65,6.61,3.75
1,Fair,G,VS2,67.6,57,5484,6.2,6.13,4.17
1,Fair,G,VS2,63.7,55,5484,6.28,6.21,3.98
1.2,Ideal,G,SI2,62.2,56,5484,6.84,6.74,4.22
1.06,Premium,E,SI1,62,61,5485,6.55,6.51,4.05
1.06,Premium,E,SI1,60.8,58,5485,6.59,6.54,3.99
1.24,Very Good,H,SI2,63.2,55,5486,6.88,6.83,4.33
1.09,Ideal,I,SI1,61.9,55,5486,6.66,6.62,4.11
1.01,Ideal,F,SI1,62,56,5486,6.44,6.39,3.98
1.01,Good,F,VS2,57.3,62,5487,6.63,6.59,3.79
1.14,Good,H,SI1,62.8,58,5487,6.62,6.67,4.17
1.12,Fair,G,VS1,64.8,56,5487,6.48,6.52,4.21
1.38,Premium,G,SI2,58.3,59,5487,7.34,7.27,4.26
1.08,Premium,F,SI1,61,59,5487,6.67,6.57,4.04
1.3,Fair,J,SI1,66,57.1,5488,6.73,6.82,4.45
1,Premium,D,SI1,61.3,54,5488,6.39,6.37,3.91
1,Premium,D,SI1,59.5,60,5488,6.49,6.42,3.84
1,Premium,D,SI1,62.1,58,5488,6.45,6.34,3.97
1,Premium,D,SI1,61.5,60,5488,6.38,6.34,3.91
1,Premium,D,SI1,62.1,61,5488,6.32,6.3,3.92
1,Ideal,D,SI1,61.7,57,5489,6.39,6.42,3.95
1.21,Ideal,J,SI1,62.7,55,5489,6.84,6.79,4.27
1.21,Premium,J,VS1,60,60,5489,6.95,6.88,4.15
1.2,Very Good,I,SI2,63.7,56,5490,6.66,6.71,4.26
1.23,Good,H,SI1,63.7,59,5490,6.76,6.71,4.29
1.06,Very Good,F,SI1,59.6,60,5491,6.61,6.68,3.96
1.06,Very Good,F,SI1,58.8,57,5491,6.67,6.76,3.95
1.03,Ideal,D,SI2,60.5,58,5491,6.52,6.58,3.96
1.03,Premium,D,SI1,61.8,57,5491,6.53,6.49,4.02
1.03,Ideal,E,SI2,61.7,55,5491,6.52,6.46,4.01
1.05,Good,H,VS2,63.7,58,5492,6.4,6.45,4.09
1.02,Ideal,E,SI1,60.5,56,5493,6.57,6.53,3.96
1.05,Very Good,E,SI1,62.2,56,5494,6.49,6.56,4.06
1.2,Ideal,E,SI2,61.1,55,5494,6.9,6.87,4.21
1.04,Ideal,F,SI1,61.3,56,5495,6.51,6.55,4
1.11,Ideal,H,SI2,61.2,56,5496,6.7,6.69,4.1
1.09,Ideal,G,SI1,62.4,56,5496,6.57,6.61,4.11
1.02,Good,D,SI1,63.3,58,5497,6.35,6.39,4.03
1.19,Ideal,E,SI2,61.9,56,5497,6.8,6.84,4.22
1.02,Good,D,SI1,63.5,61,5497,6.27,6.35,4.01
1.24,Very Good,I,SI2,61.6,59,5497,6.87,6.9,4.24
1.01,Very Good,G,SI1,62.9,58,5497,6.35,6.4,4.01
1.01,Ideal,G,SI1,61.1,58,5497,6.43,6.49,3.95
1.01,Good,G,VS2,62,61,5497,6.29,6.38,3.93
1.03,Very Good,D,SI1,62.6,58,5498,6.44,6.49,4.05
1.07,Ideal,H,SI1,62.1,56,5498,6.53,6.58,4.07
1.07,Premium,H,VS2,62.4,59,5498,6.53,6.46,4.05
1.01,Very Good,E,SI1,62.9,60,5499,6.35,6.43,4.02
1.01,Good,E,SI1,63.3,55,5499,6.37,6.42,4.05
1.01,Very Good,E,SI1,62.8,57,5499,6.37,6.41,4.01
1.01,Very Good,E,SI1,62.9,58,5499,6.35,6.41,4.01
1.25,Premium,J,VS1,62,58,5500,6.89,6.92,4.28
1,Premium,E,SI1,61.6,59,5500,6.38,6.41,3.94
1,Good,G,VS2,63.3,60,5500,6.29,6.37,4.01
1.25,Very Good,I,SI1,58.9,58,5500,7.04,7.08,4.16
1.02,Very Good,F,SI1,59.8,58,5500,6.49,6.55,3.9
1.14,Ideal,H,SI1,62.3,56,5501,6.72,6.69,4.18
1.01,Good,D,SI1,57.6,60,5501,6.59,6.64,3.81
1.01,Fair,F,VS2,65.5,62,5501,6.19,6.23,4.07
1.11,Ideal,D,SI2,62.2,57,5501,6.66,6.62,4.12
0.9,Very Good,H,VS2,62.6,59,5502,6.07,6.16,3.83
1.21,Premium,I,VS2,62.2,59,5502,6.79,6.85,4.24
1.22,Ideal,H,SI2,61,57,5502,6.88,6.93,4.2
1.22,Ideal,H,SI2,61.7,56,5502,6.87,6.93,4.26
1.04,Premium,F,SI1,61.5,59,5504,6.54,6.46,4
1.12,Very Good,G,SI2,61.2,58,5504,6.65,6.69,4.08
0.9,Very Good,F,VVS2,61,63,5504,6.13,6.09,3.73
1.22,Ideal,J,VS1,60.8,57,5504,6.85,6.89,4.18
1.23,Premium,J,VS2,61.9,55,5504,6.94,6.88,4.28
1.19,Premium,D,SI2,58.8,58,5504,7.04,6.9,4.1
1.19,Ideal,D,SI2,60.4,55,5504,6.91,6.89,4.17
1.05,Ideal,G,VS2,61.1,57,5504,6.55,6.52,3.99
1.46,Fair,G,SI2,64.6,54,5504,7.11,7.03,4.57
1.26,Premium,I,SI1,60.9,58,5504,6.99,6.94,4.24
1,Good,F,VS2,63.4,56,5505,6.27,6.35,4
1,Very Good,F,VS2,61.9,59,5505,6.34,6.38,3.94
1.02,Ideal,H,SI1,59.8,58,5505,6.56,6.58,3.93
1.02,Premium,G,VS2,62.7,58,5506,6.44,6.36,4.01
1.11,Ideal,I,VS2,61.7,55,5506,6.66,6.69,4.12
1.15,Premium,H,SI1,62,58,5506,6.77,6.66,4.16
1.02,Very Good,E,SI1,63.1,61,5508,6.42,6.35,4.03
0.24,Very Good,D,VS2,60.2,59,419,4.03,4.04,2.43
0.27,Very Good,D,VS2,63,57,419,4.06,4.1,2.57
0.24,Very Good,E,VS2,60.1,58,419,4.01,4.04,2.42
0.24,Very Good,E,VS2,63.5,53,419,3.96,3.98,2.52
0.24,Very Good,E,VS2,62.1,58,419,4,4.02,2.49
0.24,Very Good,E,VS2,63.1,56,419,3.95,3.98,2.5
0.24,Very Good,E,VS2,63,58,419,3.94,3.97,2.49
0.24,Very Good,E,VS2,61.5,58,419,4.02,4.05,2.48
0.24,Very Good,E,VS2,62.1,59,419,3.98,4.01,2.48
0.24,Very Good,F,VS2,61.4,58,419,3.99,4.05,2.47
0.24,Very Good,F,VS2,62.4,58,419,3.98,4,2.49
0.24,Very Good,F,VS2,62.9,58,419,3.94,4.01,2.5
0.24,Very Good,F,VS2,59.6,58,419,4.08,4.11,2.44
0.24,Very Good,F,VS2,61.9,59,419,3.98,4,2.47
0.24,Very Good,F,VS1,59.9,58,419,4.02,4.06,2.42
0.24,Very Good,F,VS1,63,58,419,3.92,3.95,2.48
0.24,Very Good,F,VS1,62.5,58,419,3.95,3.96,2.47
0.24,Very Good,F,VS1,63,59,419,3.93,3.97,2.49
0.24,Very Good,E,VS1,62.4,59,419,3.94,3.98,2.47
0.24,Very Good,E,VS1,59.8,58,419,4.02,4.11,2.43
0.24,Very Good,D,VS1,61.4,58,419,3.99,4.02,2.46
0.24,Very Good,D,VS1,62.2,58,419,3.95,3.99,2.47
0.24,Very Good,D,VS1,62.9,56,419,3.96,3.99,2.5
0.24,Ideal,F,VS2,62.2,57,419,3.96,4.01,2.48
0.24,Ideal,F,VS2,61.2,57,419,4.04,4.06,2.48
0.24,Ideal,F,VS1,61.3,56,419,4,4.03,2.46
0.26,Very Good,D,VS2,59.6,63,420,4.13,4.16,2.47
0.26,Very Good,D,VS1,63.3,57,420,4.03,4.06,2.56
0.32,Ideal,H,SI2,61.5,56,420,4.43,4.45,2.73
0.32,Ideal,H,SI2,61.9,54,420,4.42,4.46,2.75
0.3,Ideal,F,VS2,62,53.7,601,4.31,4.33,2.68
0.3,Ideal,F,VS2,62.3,53.5,601,4.27,4.32,2.68
0.3,Ideal,F,VS2,62.5,53.3,601,4.28,4.31,2.69
0.3,Ideal,D,VS1,61,58,601,4.3,4.36,2.64
0.31,Ideal,E,SI1,60.1,57,601,4.36,4.39,2.63
0.37,Ideal,J,IF,61.9,54,601,4.63,4.68,2.88
0.39,Fair,E,SI1,65.6,60,601,4.5,4.56,2.97
0.35,Good,D,SI1,63.3,56,601,4.5,4.53,2.86
0.35,Premium,D,SI1,61.5,58,601,4.53,4.55,2.79
0.35,Ideal,D,SI1,62.1,57,601,4.47,4.49,2.78
0.38,Ideal,G,SI2,61.6,55,602,4.64,4.68,2.87
0.38,Ideal,G,SI2,61.2,56,602,4.7,4.74,2.89
0.38,Ideal,F,SI2,62.1,56,602,4.62,4.65,2.88
0.32,Very Good,F,VS2,59.7,62,602,4.38,4.43,2.63
0.32,Good,F,VS2,63.3,57,602,4.34,4.38,2.76
0.32,Ideal,G,VS1,61.9,55,602,4.4,4.42,2.73
0.32,Very Good,F,VS2,58.8,62,602,4.43,4.48,2.62
0.32,Ideal,F,VS2,61.9,55,602,4.41,4.45,2.74
0.32,Ideal,G,VS1,60.7,56,602,4.43,4.46,2.7
0.32,Very Good,F,VS2,63,57,602,4.33,4.37,2.74
0.32,Ideal,F,VS2,62.4,57,602,4.37,4.44,2.75
0.32,Very Good,G,VS1,61.2,62,602,4.41,4.45,2.71
0.32,Premium,H,VVS2,62.2,58,602,4.33,4.38,2.71
0.32,Very Good,F,VS2,61.2,58,602,4.38,4.41,2.69
0.32,Premium,F,VS2,59.5,60,602,4.46,4.48,2.66
0.35,Very Good,H,VS1,60,57,603,4.57,4.6,2.75
0.3,Very Good,E,VS2,62.7,53,603,4.32,4.35,2.72
0.3,Very Good,F,VS1,63.1,59,603,4.2,4.27,2.67
0.4,Very Good,J,SI1,58.9,59,603,4.84,4.87,2.86
0.37,Ideal,I,VS2,61.2,56,603,4.62,4.66,2.84
1.18,Very Good,H,SI1,60.1,59,5508,6.83,6.88,4.11
1.16,Ideal,H,SI2,61.1,56,5509,6.78,6.79,4.15
1.02,Ideal,E,SI1,62.3,54,5509,6.45,6.49,4.03
1.2,Ideal,H,SI1,62.9,57,5510,6.79,6.76,4.26
1.2,Premium,I,SI1,60.7,59,5510,6.9,6.87,4.18
1.2,Premium,H,SI2,62.4,57,5510,6.83,6.75,4.24
1.23,Ideal,H,SI2,63.8,57,5510,6.78,6.72,4.31
1.5,Ideal,I,I1,61.8,57,5510,7.39,7.31,4.54
1.2,Ideal,I,SI1,61.8,56,5510,6.8,6.77,4.19
1.23,Premium,J,VS1,62.7,58,5510,6.82,6.79,4.27
1.2,Premium,I,SI1,61.1,58,5510,6.88,6.8,4.18
1,Very Good,G,SI1,62.3,62,5511,6.34,6.38,3.96
0.9,Very Good,D,VS1,63.4,58,5511,6.15,6.09,3.88
1.32,Very Good,J,SI2,61.7,60,5513,6.95,7.01,4.31
1.2,Good,F,SI2,59,60,5514,6.9,6.97,4.09
1.08,Very Good,H,VS2,62.9,59,5515,6.47,6.56,4.1
1.01,Premium,H,VS1,61.1,58,5515,6.48,6.45,3.95
1.01,Good,H,VS1,63.8,59,5515,6.34,6.3,4.03
1.01,Premium,E,SI1,62.8,59,5515,6.45,6.41,4.04
1.08,Very Good,H,SI1,63.2,58,5516,6.57,6.49,4.13
1.06,Ideal,I,VS2,60.3,57,5516,6.61,6.66,4.01
0.92,Ideal,E,SI1,62.1,56,5516,6.22,6.24,3.87
1.08,Ideal,H,SI1,61.8,54,5517,6.6,6.61,4.09
1.27,Premium,J,VS1,62.6,59,5518,6.88,6.92,4.32
1.2,Very Good,G,SI2,61.7,59,5518,6.81,6.86,4.22
1.03,Ideal,G,SI1,61.6,55,5518,6.48,6.52,4
1.01,Very Good,G,VS2,62.5,60,5519,6.31,6.37,3.96
1.16,Ideal,J,IF,60.6,56,5519,6.79,6.86,4.14
1.16,Ideal,G,SI1,60.9,57,5519,6.79,6.75,4.12
1.46,Premium,I,SI2,62.4,59,5519,7.21,7.16,4.49
1.06,Very Good,F,SI1,63.4,58,5520,6.51,6.42,4.1
1.06,Premium,H,VS2,60.7,59,5520,6.61,6.57,4
1.24,Ideal,G,SI2,61.4,56,5520,6.98,6.92,4.27
1.23,Premium,I,VS2,61.7,58,5521,6.85,6.87,4.23
1,Very Good,F,SI1,63.3,58,5521,6.34,6.36,4.02
1.1,Very Good,H,SI1,62.9,57,5521,6.54,6.59,4.13
1.12,Ideal,H,SI1,61.9,57,5521,6.64,6.68,4.12
1,Very Good,G,SI1,61,56.7,5522,6.44,6.47,3.94
1.2,Very Good,I,SI1,62.6,59,5522,6.75,6.71,4.21
1.02,Ideal,H,SI1,60.9,57,5522,6.51,6.55,3.98
1.03,Premium,H,VS1,62.5,59,5523,6.43,6.47,4.03
1.03,Premium,H,VS1,62,59,5523,6.45,6.48,4.01
1.1,Very Good,I,VS2,61.8,58,5524,6.59,6.62,4.08
1.08,Very Good,H,VS2,58.1,62,5524,6.72,6.74,3.91
1.35,Fair,J,SI1,65.2,56,5524,6.9,7.02,4.54
1.04,Very Good,F,SI1,62.9,54,5525,6.46,6.49,4.07
1.01,Premium,E,SI1,60.7,58,5525,6.5,6.48,3.94
1.15,Ideal,E,SI1,62.7,56,5526,6.73,6.7,4.21
1.03,Good,D,SI1,57.7,62,5526,6.63,6.65,3.83
1.13,Very Good,G,SI1,63.1,58,5526,6.65,6.59,4.18
1.01,Ideal,F,SI1,62,54,5527,6.41,6.49,4
1.09,Ideal,F,SI1,62.5,57,5527,6.59,6.54,4.1
1,Very Good,F,SI1,63.3,58,5528,6.28,6.39,4.01
1.04,Ideal,E,SI1,62.4,57,5528,6.48,6.53,4.06
1.21,Premium,G,SI2,60.3,58,5529,6.96,6.9,4.18
1.27,Very Good,J,VS2,62.7,58,5530,6.88,6.91,4.32
0.91,Very Good,E,VS1,61.8,60,5530,6.17,6.2,3.82
1.13,Very Good,I,VS2,60.7,58,5531,6.72,6.75,4.09
1.04,Ideal,E,SI2,62.3,55,5531,6.46,6.49,4.03
1.21,Premium,J,VVS2,61.7,60,5531,6.85,6.82,4.22
1.01,Premium,D,SI1,58.9,58,5532,6.57,6.54,3.86
1.07,Ideal,G,SI1,61.7,54,5532,6.59,6.61,4.07
1.01,Very Good,D,SI1,59.7,57,5533,6.53,6.56,3.91
1.52,Fair,G,SI2,64.9,59,5533,7.19,7.15,4.65
1.01,Very Good,E,SI1,59.5,57,5534,6.56,6.62,3.92
1.22,Premium,G,SI2,60.2,58,5534,6.92,6.9,4.16
1.15,Ideal,I,VS2,61.7,57,5534,6.72,6.74,4.15
1.2,Ideal,J,VS1,61.3,56,5534,6.83,6.87,4.2
1.08,Ideal,F,SI1,62.7,57,5534,6.53,6.57,4.11
1.01,Ideal,E,SI1,62,56,5534,6.41,6.47,3.99
1.01,Ideal,E,SI1,60.8,56,5534,6.48,6.51,3.95
1.06,Premium,F,SI1,58.4,61,5535,6.73,6.69,3.92
0.9,Premium,E,VS1,59.4,59,5535,6.28,6.31,3.74
1.1,Ideal,G,SI2,62.6,56,5535,6.64,6.58,4.14
1.2,Ideal,I,SI1,62.4,57,5535,6.75,6.8,4.23
0.91,Ideal,D,SI1,62.1,55,5535,6.2,6.24,3.86
1.04,Good,G,VS2,61.4,65,5535,6.53,6.47,3.99
1.5,Premium,J,SI1,62.1,57,5536,7.42,7.26,4.56
1.07,Ideal,E,SI1,61.4,57,5537,6.59,6.53,4.03
1.16,Very Good,H,VS2,63,57,5537,6.64,6.66,4.19
1.15,Very Good,G,SI1,61.3,62,5538,6.68,6.72,4.11
1.01,Good,G,VS2,63.2,64,5538,6.34,6.28,3.99
1.01,Fair,G,VS2,64.5,57,5538,6.26,6.2,4.02
1.01,Premium,G,VS2,58.1,59,5538,6.61,6.53,3.82
1.09,Very Good,E,SI1,62.5,57,5539,6.55,6.61,4.11
0.7,Ideal,D,VVS2,61.4,56,5539,5.72,5.75,3.53
0.7,Ideal,D,VVS2,61.7,55,5539,5.73,5.75,3.54
0.7,Ideal,D,VVS2,60.7,57,5539,5.75,5.78,3.5
0.7,Ideal,D,VVS2,61.3,56,5539,5.72,5.76,3.52
0.7,Ideal,D,VVS2,61.1,55,5539,5.75,5.78,3.52
0.9,Ideal,G,VS1,62.1,56,5540,6.15,6.19,3.83
1.21,Premium,I,VS1,61.2,59,5540,6.86,6.84,4.19
1.21,Premium,J,VS2,60.2,57,5541,6.97,6.91,4.18
1.01,Very Good,D,SI1,61.5,61,5542,6.37,6.47,3.95
1.01,Ideal,D,SI1,61.2,57,5543,6.47,6.44,3.95
1.01,Premium,D,SI1,61.6,60,5543,6.47,6.43,3.97
1.01,Premium,D,SI1,61.7,62,5543,6.34,6.3,3.9
1.01,Premium,D,SI1,61.8,60,5543,6.37,6.35,3.93
1.01,Good,D,SI1,63.8,58,5543,6.38,6.34,4.06
1.01,Very Good,D,SI1,63.1,60,5543,6.39,6.32,4.01
1.06,Premium,G,VS2,62.5,58,5543,6.52,6.47,4.06
1.01,Premium,D,SI1,60,60,5543,6.51,6.45,3.89
1.01,Premium,D,SI1,62.9,59,5543,6.43,6.39,4.03
1.01,Premium,D,SI1,62.6,58,5543,6.44,6.33,4
1.01,Premium,E,SI1,59.8,59,5543,6.52,6.48,3.89
1,Premium,E,SI1,60.3,62,5544,6.33,6.25,3.79
1,Very Good,E,VS2,62.4,62,5544,6.33,6.39,3.97
1,Premium,F,SI1,61.9,60,5544,6.34,6.39,3.94
1,Good,G,VS2,62.9,56,5544,6.33,6.39,4
1,Very Good,G,VS2,62.7,58,5544,6.34,6.42,4
1.2,Good,E,SI2,63.3,55,5544,6.73,6.77,4.27
1.01,Good,H,SI1,60.1,61,5544,6.5,6.47,3.9
1.01,Good,D,SI1,65.1,57,5544,6.3,6.32,4.11
1,Good,H,VS1,61.3,64,5544,6.39,6.33,3.9
1.32,Ideal,I,SI1,61.7,56,5544,7.11,7.05,4.37
1,Premium,E,SI1,61.9,60,5544,6.46,6.37,3.97
1,Premium,E,SI1,60.7,59,5544,6.41,6.38,3.88
1,Premium,E,SI1,62.6,60,5544,6.35,6.3,3.97
1.1,Ideal,I,VS1,61.7,57,5544,6.65,6.62,4.09
1.1,Premium,H,SI1,59.6,58,5544,6.79,6.74,4.03
1.1,Ideal,G,SI1,61.9,55,5545,6.62,6.66,4.11
1.35,Premium,J,SI1,60.9,59,5546,7.07,7.12,4.32
1.12,Ideal,E,SI2,62,57,5546,6.61,6.63,4.11
1,Good,D,SI1,60.5,60,5546,6.37,6.42,3.87
1.31,Premium,J,SI1,59.4,60,5546,7.12,7.06,4.21
1.31,Ideal,I,SI2,63.6,55,5546,6.98,6.92,4.42
1.27,Premium,I,SI1,62.3,56,5547,6.93,6.85,4.29
1.11,Ideal,D,SI2,61.6,55,5547,6.62,6.66,4.09
0.9,Very Good,D,VS1,63,58,5547,6.11,6.14,3.86
1.12,Premium,E,SI1,58.8,61,5547,6.8,6.74,3.98
1.14,Ideal,G,SI1,62.2,56,5548,6.66,6.69,4.15
1.14,Ideal,D,SI2,61.4,56,5548,6.69,6.77,4.13
1.14,Premium,G,SI1,62.3,59,5548,6.66,6.69,4.16
1.13,Very Good,H,VS2,61.4,61,5548,6.67,6.71,4.11
0.96,Very Good,D,SI1,59.9,58,5548,6.4,6.46,3.85
1.02,Ideal,F,SI1,60.1,59,5549,6.59,6.56,3.95
1.06,Premium,H,VS1,62.5,58,5549,6.5,6.47,4.05
1.11,Premium,H,VS2,62.4,58,5550,6.69,6.57,4.14
1.23,Very Good,G,SI2,63.4,58,5550,6.8,6.77,4.3
1.06,Premium,I,VS1,61.2,57.1,5550,6.56,6.59,4.03
1.01,Ideal,H,VS1,59.8,59,5550,6.52,6.56,3.91
1.09,Very Good,H,VS2,63,54,5551,6.61,6.54,4.14
1.03,Very Good,D,SI1,63,59,5551,6.39,6.44,4.04
1.03,Ideal,D,SI1,62.4,57,5551,6.44,6.47,4.03
1.07,Ideal,G,SI1,62.2,56,5551,6.52,6.56,4.07
0.9,Fair,E,VVS2,58.1,59,5551,6.21,6.26,3.62
1.18,Ideal,I,VS1,62.2,57,5551,6.76,6.72,4.19
1.2,Premium,D,SI2,62,58,5551,6.84,6.77,4.22
1.2,Premium,D,SI2,62.6,57,5551,6.84,6.74,4.25
1.12,Ideal,G,SI1,62,55,5551,6.68,6.65,4.13
1.02,Ideal,E,SI1,62.2,57,5553,6.41,6.45,4
1.02,Very Good,E,SI1,59.2,56,5553,6.57,6.63,3.91
1.96,Fair,F,I1,66.6,60,5554,7.59,7.56,5.04
1.16,Premium,H,SI1,61.2,57,5554,6.84,6.76,4.16
1.16,Ideal,H,SI1,62.2,55,5554,6.79,6.74,4.21
1.16,Premium,H,SI1,61.2,58,5554,6.81,6.76,4.15
1.05,Good,H,VS1,63.3,57,5555,6.4,6.45,4.07
1.01,Ideal,G,SI1,62.7,57,5555,6.3,6.34,3.96
1.01,Ideal,G,SI1,63,57,5555,6.37,6.4,4.02
1,Ideal,E,SI1,61.4,57,5555,6.43,6.5,3.97
1,Ideal,E,SI1,61.7,57,5555,6.39,6.42,3.95
1,Ideal,E,SI1,61.4,58,5555,6.41,6.43,3.94
1.24,Premium,I,SI1,60.4,58,5555,7.02,6.95,4.22
1.21,Very Good,G,SI2,59.6,60,5556,6.92,6.94,4.13
1.01,Very Good,E,SI1,60,60,5556,6.45,6.49,3.88
1.21,Ideal,I,SI1,60.6,55,5556,6.92,6.87,4.18
1.21,Premium,I,SI1,62.3,59,5556,6.81,6.77,4.23
1.21,Premium,G,SI1,59.5,62,5556,6.65,6.57,3.84
1.21,Premium,J,VS1,59.5,60,5556,6.99,6.9,4.13
1.17,Ideal,F,SI2,62.2,55,5556,6.73,6.7,4.18
1.21,Premium,I,SI1,60.6,56,5556,6.97,6.89,4.2
1,Very Good,I,VS1,60.8,59,5557,6.39,6.44,3.9
1.04,Very Good,D,SI1,63.4,55,5557,6.41,6.46,4.08
1.05,Premium,F,SI1,61.8,56,5557,6.55,6.45,4.02
1.05,Premium,F,SI1,60.3,60,5557,6.66,6.54,3.98
1.05,Ideal,F,SI1,62,55,5557,6.54,6.5,4.04
1.05,Premium,F,SI1,61.6,57,5557,6.56,6.53,4.03
1.21,Very Good,G,SI2,62.8,60,5558,6.7,6.77,4.23
1.01,Very Good,H,VS2,62.8,59,5559,6.33,6.38,3.99
1.08,Ideal,G,VS2,62.1,57,5559,6.54,6.57,4.07
1.01,Premium,F,SI1,60.6,58,5559,6.54,6.49,3.95
1.01,Good,F,VS2,63.1,56,5560,6.28,6.37,3.99
1.01,Very Good,F,VS2,61,59,5560,6.39,6.46,3.92
1.07,Premium,F,SI1,59.6,58,5561,6.68,6.72,3.99
1.07,Good,F,SI1,63.4,56,5561,6.51,6.52,4.13
1.04,Premium,H,VS2,61.2,59,5561,6.57,6.51,4
1.29,Very Good,I,VS1,61.1,58,5562,6.98,7.03,4.28
1.18,Very Good,G,SI2,62.4,56,5562,6.8,6.83,4.25
1.19,Very Good,D,SI2,63.5,57,5562,6.67,6.75,4.26
1.2,Ideal,G,SI2,58.9,60,5562,6.98,6.94,4.1
0.9,Ideal,G,VVS1,61.6,57,5564,6.24,6.16,3.82
1.15,Ideal,G,VS2,59.2,56,5564,6.88,6.83,0
1.02,Very Good,H,VS2,62.4,57,5565,6.35,6.4,3.98
1.02,Very Good,E,VS2,62.8,59,5565,6.39,6.44,4.03
1.2,Very Good,H,SI1,62.8,58,5567,6.73,6.8,4.25
1.17,Good,D,SI2,60.4,65,5567,6.81,6.77,4.1
1.3,Premium,J,SI1,61,59,5569,7.09,7.01,4.3
1.3,Premium,J,SI1,61.9,56,5569,7.07,7.04,4.37
1.02,Premium,H,VS1,58.5,57,5569,6.65,6.61,3.88
1.02,Premium,H,VS1,62.1,59,5569,6.43,6.38,3.98
1.02,Ideal,H,VS1,62.2,56,5569,6.48,6.42,4.01
1.09,Very Good,F,SI1,62.3,57,5570,6.55,6.61,4.1
1.2,Good,I,VS1,57.8,61,5570,7.02,6.96,4.04
1.04,Ideal,G,SI1,61.9,53,5570,6.53,6.54,4.05
1,Very Good,E,SI1,62.4,59,5571,6.36,6.42,3.99
1.01,Ideal,E,SI1,61.9,56,5571,6.43,6.47,3.99
1.13,Premium,H,VS2,62.8,59,5571,6.63,6.58,4.15
1,Premium,H,VS2,59.4,61,5572,6.51,6.46,3.85
1.21,Premium,J,VVS2,60.8,60,5572,6.86,6.88,4.18
0.95,Very Good,G,VS1,59.9,58,5572,6.37,6.41,3.83
1.04,Ideal,I,VS1,61.4,58,5572,6.46,6.54,3.99
1.07,Premium,H,VS2,62.4,57,5573,6.58,6.52,4.09
1,Premium,F,SI1,62,60,5574,6.42,6.36,3.96
1.08,Good,E,SI1,58.4,60,5575,6.71,6.74,3.93
1.11,Very Good,J,VS1,59.9,56,5576,6.8,6.77,4.07
1.16,Good,H,SI1,64,58,5576,6.56,6.63,4.22
1.01,Ideal,G,SI1,62.6,56,5576,6.41,6.44,4.02
1.04,Ideal,H,VS1,62.7,55,5577,6.43,6.49,4.05
1.04,Ideal,H,VS1,62.7,57,5577,6.42,6.46,4.04
1.06,Ideal,I,VS1,62,55,5577,6.55,6.58,4.07
1.2,Ideal,I,SI1,60.1,56,5578,6.9,6.84,4.13
1.2,Ideal,H,SI2,62.7,55,5578,6.74,6.69,4.21
1.35,Very Good,I,SI2,58.6,63,5579,7.28,7.19,4.24
1.03,Premium,H,VS2,61,58,5579,6.53,6.46,3.96
1.05,Premium,H,VS1,60.9,60,5580,6.58,6.53,3.99
1.06,Premium,F,SI1,60.4,62,5580,6.62,6.59,3.99
1.03,Premium,G,SI1,60.1,60,5581,6.55,6.52,3.93
1.02,Premium,G,VS2,62,57,5581,6.48,6.43,4
1.13,Premium,F,SI1,60.6,60,5581,6.76,6.67,4.07
1.31,Very Good,I,SI2,60.8,57,5582,7.06,7.12,4.31
1.08,Premium,H,VS1,59.6,59,5582,6.72,6.66,3.99
1.1,Ideal,H,SI1,62.7,57,5583,6.6,6.63,4.15
1.24,Premium,F,SI2,62.8,60,5583,6.84,6.82,4.29
1.37,Very Good,I,SI2,63,57,5584,6.98,7.05,4.42
1.13,Very Good,F,SI1,63.2,56,5584,6.66,6.69,4.22
1.24,Very Good,I,SI1,60,59,5584,6.98,7.01,4.2
1.17,Very Good,H,VS2,59.6,59,5585,6.84,6.88,4.09
1.22,Ideal,J,SI1,60.6,56,5586,6.96,6.95,4.22
1.05,Ideal,F,SI1,60.6,59,5586,6.51,6.56,3.96
1.33,Very Good,H,SI2,63.5,57,5586,6.99,6.88,4.4
1.15,Very Good,G,SI1,62.2,59,5587,6.66,6.71,4.16
1.16,Ideal,I,VS2,60.1,62,5587,6.83,6.78,4.09
1.16,Ideal,I,VS2,60.8,56,5587,6.85,6.81,4.15
1.09,Very Good,J,VVS1,63.9,56,5588,6.47,6.51,4.15
1.27,Good,J,VS1,63.4,60,5588,6.8,6.85,4.33
1.27,Premium,I,SI1,60.9,59,5588,6.94,6.99,4.24
1.32,Premium,I,SI2,61.3,59,5588,7.01,6.95,4.28
1.01,Ideal,H,SI1,62.5,56,5589,6.38,6.45,4.01
1.01,Ideal,E,SI1,61.6,59,5590,6.43,6.4,3.95
1.24,Very Good,H,SI2,61.2,57,5592,6.87,7.02,4.25
1,Good,F,VS2,62.5,57,5592,6.34,6.42,3.99
1.2,Premium,H,SI1,62.4,59,5592,6.72,6.68,4.18
1.05,Good,H,VS2,63.7,58,5592,6.45,6.4,4.09
1.01,Very Good,H,VS1,62,60,5593,6.43,6.38,3.97
1.5,Ideal,I,I1,61.3,57,5593,7.36,7.39,4.52
1.14,Very Good,E,SI2,60,54,5593,6.74,6.97,4.11
1.02,Premium,G,VS2,62.9,58,5593,6.41,6.37,4.02
1.19,Very Good,H,SI1,60.8,59,5595,6.84,6.87,4.17
1.19,Very Good,H,SI1,62.7,61,5595,6.66,6.73,4.2
1.19,Premium,H,SI1,61.4,58,5595,6.79,6.83,4.18
1.17,Very Good,G,SI2,61.2,58,5595,6.84,6.86,4.19
0.88,Ideal,E,VS2,61.4,56,5595,6.15,6.17,3.78
1.03,Ideal,F,SI1,61.3,56,5595,6.55,6.51,4
1.1,Ideal,F,SI2,62.4,56,5596,6.58,6.62,4.12
0.91,Very Good,D,VS1,62.5,56,5597,6.14,6.18,3.85
1.21,Good,G,SI1,63.8,58,5597,6.75,6.64,4.27
1.02,Very Good,H,VS1,62.8,59,5598,6.34,6.47,4.02
1.02,Good,H,VS1,59.8,63,5598,6.54,6.61,3.93
1.02,Very Good,D,SI1,63.3,58,5598,6.39,6.35,4.03
1.02,Very Good,D,SI1,63.5,61,5598,6.35,6.27,4.01
1.19,Ideal,E,SI2,61.9,56,5598,6.84,6.8,4.22
1.01,Premium,E,SI1,62.6,58,5599,6.32,6.3,3.95
1.01,Good,G,VS2,63.6,60,5599,6.3,6.35,4.02
1.01,Premium,D,SI1,60.7,58,5599,6.42,6.49,3.92
1.01,Good,G,VS2,63.2,57,5599,6.3,6.35,4
1.01,Good,G,VS2,63.9,54,5599,6.31,6.37,4.05
1.01,Ideal,E,SI1,62.4,56,5599,6.43,6.39,4
1.01,Premium,E,SI1,62.9,58,5599,6.41,6.35,4.01
1.01,Ideal,E,SI1,62.6,57,5599,6.43,6.38,4.01
1.01,Ideal,E,SI1,62.1,54,5599,6.5,6.41,4.01
1.01,Premium,E,SI1,62.8,57,5599,6.41,6.37,4.01
1.01,Premium,F,SI1,61.9,56,5599,6.53,6.45,4.02
1.01,Premium,E,SI1,62.8,59,5599,6.31,6.27,3.95
1.01,Premium,E,SI1,62.9,60,5599,6.43,6.35,4.02
1,Very Good,G,VS2,63.3,60,5600,6.37,6.29,4.01
1,Very Good,G,VS2,61.8,59,5600,6.29,6.37,3.91
1.01,Very Good,D,SI1,59,59,5600,6.57,6.59,3.88
1.23,Ideal,I,SI1,62.1,58,5600,6.82,6.86,4.25
1,Good,G,VS2,63.4,61,5600,6.23,6.29,3.97
1.2,Good,I,VS1,64.8,58,5600,6.6,6.65,4.29
1.13,Premium,G,SI1,60.9,58,5600,6.75,6.72,4.1
1,Premium,E,SI1,61.6,59,5600,6.41,6.38,3.94
1.04,Good,G,VS2,61.4,65,5601,6.53,6.47,3.99
1.29,Very Good,H,SI2,63.8,57,5601,6.8,6.87,4.36
1.51,Good,E,I1,57.5,59,5601,7.56,7.51,4.33
1.2,Good,J,VS1,64.1,57,5601,6.68,6.74,4.3
1.09,Premium,H,VS2,62.6,56,5601,6.62,6.55,4.12
1.07,Ideal,E,SI2,61.5,56,5602,6.58,6.61,4.06
1.11,Good,F,SI1,62.1,61,5602,6.58,6.62,4.1
1.22,Premium,I,SI1,61.3,58,5602,6.94,6.9,4.24
0.37,Ideal,H,VS2,60.7,58,603,4.64,4.68,2.83
0.37,Ideal,H,VS2,62,54,603,4.64,4.65,2.88
0.37,Ideal,H,VS2,61.7,55,603,4.64,4.67,2.87
0.3,Ideal,E,VS2,62.3,56,603,4.27,4.3,2.67
0.3,Ideal,E,VS2,62,57,603,4.26,4.29,2.65
0.3,Ideal,E,VS2,61.8,57,603,4.28,4.3,2.65
0.3,Ideal,E,VS2,62,53,603,4.31,4.33,2.68
0.3,Ideal,E,VS2,60.6,59,603,4.3,4.34,2.62
0.37,Ideal,I,VS1,60.8,56,603,4.67,4.71,2.85
0.3,Ideal,F,VS1,62.3,56,603,4.26,4.28,2.66
0.39,Ideal,G,SI2,61.2,56,603,4.71,4.73,2.89
0.41,Ideal,F,SI2,62.6,57,603,4.68,4.77,2.96
0.38,Ideal,E,SI2,61.5,55,603,4.69,4.72,2.89
0.32,Good,G,VS2,56.7,64,603,4.52,4.55,2.57
0.3,Good,E,VS2,59.7,63,603,4.32,4.35,2.59
0.27,Premium,E,VS1,60.2,59,603,4.24,4.2,2.54
0.27,Ideal,E,VS2,62.7,55,603,4.18,4.15,2.61
0.27,Ideal,E,VS1,61.6,57,603,4.16,4.12,2.55
0.27,Ideal,E,VS1,61.6,56,603,4.17,4.14,2.56
0.27,Premium,E,VS1,61.5,58,603,4.22,4.17,2.58
0.27,Ideal,E,VS1,61.6,55,603,4.18,4.16,2.57
0.27,Premium,D,VS2,62,57,603,4.15,4.11,2.56
0.3,Premium,F,SI1,60.9,58,603,4.37,4.3,2.64
0.28,Very Good,E,VVS2,60.2,58,604,4.24,4.27,2.56
0.27,Very Good,F,VVS1,61.8,55,604,4.13,4.16,2.56
0.33,Ideal,G,VS2,61.7,55.9,604,4.45,4.49,2.75
0.33,Ideal,G,VS2,61.4,56.1,604,4.42,4.45,2.73
0.32,Ideal,F,SI1,60.6,57,604,4.45,4.49,2.71
0.41,Premium,F,SI2,59,58,604,4.87,4.89,2.88
0.41,Ideal,J,VS1,62.2,55,604,4.76,4.79,2.97
1.22,Premium,I,SI1,62.7,58,5602,6.83,6.8,4.27
1.22,Ideal,I,SI1,60.8,57,5602,6.95,6.89,4.21
1.22,Ideal,H,SI2,61.7,56,5602,6.93,6.87,4.26
1.22,Ideal,H,SI2,61,57,5602,6.93,6.88,4.2
1.22,Ideal,I,SI1,61.7,57,5602,6.91,6.86,4.25
1.21,Very Good,J,VS1,59.3,57,5604,6.98,7.04,4.16
1.21,Ideal,J,VS1,61.8,56.2,5604,6.78,6.86,4.2
1.04,Very Good,D,SI1,61.5,58,5605,6.48,6.53,4
1.04,Good,D,SI1,63.7,58,5605,6.39,6.43,4.08
1.01,Good,F,VS1,62.9,64,5606,6.38,6.28,3.98
1.1,Premium,D,SI1,58.8,61,5606,6.73,6.67,3.94
1.27,Ideal,J,VS2,61.6,56.1,5606,6.94,7,4.29
1,Premium,F,VS2,59.9,60,5606,6.11,6.07,3.65
1,Premium,F,VS2,61.9,59,5606,6.38,6.34,3.94
1,Good,F,VS2,64.2,58,5606,6.32,6.26,4.04
1.25,Premium,J,SI1,61.8,55,5607,6.91,6.82,4.24
1.2,Very Good,G,SI1,63,57,5607,6.7,6.75,4.24
2.22,Fair,J,I1,66.7,56,5607,8.04,8.02,5.36
1.29,Ideal,J,SI1,61.6,58,5607,6.96,6.99,4.3
1.03,Ideal,E,SI1,62,53,5608,6.47,6.5,4.02
1.2,Very Good,G,SI2,63.1,57,5609,6.68,6.79,4.25
1.2,Ideal,H,SI2,61,57,5610,6.84,6.9,4.19
1.1,Ideal,G,SI1,61.6,56,5610,6.59,6.68,4.09
1.35,Good,I,VS2,59.2,65,5610,7.18,7.13,4.23
1.01,Premium,H,VS2,62.5,58,5611,6.41,6.33,3.98
1.31,Very Good,I,SI2,63.5,55,5612,6.97,6.89,4.4
1.04,Premium,E,SI1,62.2,56,5612,6.56,6.49,4.06
1.31,Premium,I,SI2,63,58,5612,6.97,6.93,4.38
1.35,Very Good,J,SI1,61.1,61,5613,7.1,7.13,4.35
1.2,Ideal,H,SI2,62.6,58,5613,6.74,6.81,4.24
1.06,Ideal,F,SI1,62.2,57,5613,6.52,6.5,4.05
1.05,Very Good,H,VS2,63.3,56,5614,6.48,6.41,4.08
1.16,Ideal,D,SI2,62.5,56,5615,6.7,6.8,4.23
0.93,Very Good,E,VS2,61.4,58,5616,6.22,6.29,3.84
1.01,Good,F,VS2,64.2,54,5616,6.24,6.31,4.03
1.7,Fair,D,I1,64.7,56,5617,7.46,7.37,4.8
1.18,Premium,I,SI1,61.8,58,5617,6.78,6.74,4.18
1.27,Premium,J,VS1,62.6,59,5618,6.92,6.88,4.32
1.52,Premium,J,SI1,60.4,59,5618,7.44,7.39,4.48
1.27,Premium,D,SI2,58.9,59,5618,7.14,7.02,4.17
1,Very Good,H,VS1,64.2,53,5619,6.27,6.34,4.05
1.01,Very Good,D,SI1,61.1,58,5619,6.46,6.51,3.96
1.01,Premium,G,VS2,62.5,60,5620,6.37,6.31,3.96
1.28,Premium,E,SI2,62.5,58,5620,6.93,6.89,4.32
1.03,Very Good,H,VS2,59.9,59,5620,6.5,6.52,3.9
1.12,Premium,E,SI2,61.1,58,5620,6.73,6.69,4.1
1.01,Premium,G,VS2,59.8,61,5620,6.53,6.44,3.88
1.04,Premium,F,SI1,62.5,60,5621,6.43,6.46,4.03
1,Very Good,D,SI1,59.2,62,5621,6.49,6.54,3.86
1,Very Good,D,SI1,62.2,58,5621,6.34,6.45,3.98
1,Good,G,VS2,63.1,58,5621,6.31,6.39,4.01
1.19,Very Good,F,SI2,58.8,60,5622,6.93,6.98,4.09
1.01,Very Good,D,SI1,63.3,57,5622,6.33,6.37,4.02
1,Ideal,E,SI1,62.7,57,5622,6.39,6.49,4.04
1.23,Premium,I,VS2,61.7,58,5622,6.87,6.85,4.23
1.19,Premium,H,SI1,61.2,60,5622,6.85,6.8,4.18
1.19,Fair,H,SI1,64.4,58,5622,6.69,6.64,4.29
1,Ideal,G,SI1,61,57,5622,6.47,6.44,3.94
1,Very Good,G,VS2,60.6,60,5623,6.4,6.5,3.91
1.64,Premium,J,SI2,63,58,5624,7.54,7.49,4.74
1.03,Premium,H,VS1,62.5,59,5624,6.47,6.43,4.03
1.03,Premium,H,VS1,62,59,5624,6.48,6.45,4.01
1.21,Ideal,H,SI2,62.6,56,5624,6.84,6.77,4.26
1.03,Fair,E,SI1,65.1,58,5624,6.35,6.24,4.1
1.21,Ideal,I,SI1,62.4,57,5624,6.84,6.78,4.25
1.13,Very Good,H,VS2,61.7,56,5625,6.65,6.73,4.13
1.08,Ideal,H,VS2,61.8,56,5625,6.59,6.55,4.06
1.35,Fair,H,VS2,64.5,58,5625,6.98,6.93,4.48
1.15,Ideal,I,VS1,62.1,55,5626,6.76,6.67,4.18
1.04,Ideal,F,SI1,62.9,54,5626,6.49,6.46,4.07
1.06,Very Good,H,VS1,61.9,58,5627,6.57,6.49,4.04
1.01,Very Good,E,SI1,63,57,5627,6.28,6.36,3.98
1.01,Good,E,SI1,58.1,59,5627,6.57,6.65,3.84
1.25,Very Good,J,VS1,60.4,60,5628,6.99,7.08,4.25
1.25,Very Good,J,VS1,61.8,58,5628,6.89,6.93,4.27
1.01,Fair,D,SI1,62.6,57,5628,6.14,6.22,3.87
1.09,Premium,E,SI1,62.5,59,5628,6.58,6.53,4.1
1,Ideal,E,SI1,60.1,62,5629,6.46,6.48,3.89
1.12,Good,E,SI1,64.3,57,5630,6.56,6.5,4.2
1.53,Ideal,H,SI2,59.6,57,5631,7.46,7.38,4.42
1.26,Premium,H,SI1,61,55,5631,7,6.97,4.26
1.01,Premium,G,VS1,59.3,59,5632,6.49,6.52,3.86
1.23,Premium,I,VS1,61.6,58,5632,6.9,6.84,4.23
1.11,Ideal,H,VS2,64,58,5632,6.52,6.46,4.16
1.04,Fair,G,VS1,64.9,58,5633,6.36,6.33,4.12
1,Very Good,E,VS2,63.5,56,5633,6.37,6.32,4.03
1.2,Ideal,I,VS2,62.5,56,5634,6.77,6.74,4.22
1.15,Ideal,F,SI2,60.6,58,5635,6.75,6.79,4.1
1.1,Ideal,H,SI1,62.2,55,5636,6.66,6.62,4.13
1.25,Very Good,H,SI2,61.6,54,5637,6.85,6.95,4.25
1.25,Very Good,H,SI2,61.2,62,5637,6.84,6.95,4.22
1.25,Premium,J,VS1,62.2,58,5637,6.88,6.92,4.29
1.01,Very Good,H,VS2,60.7,58,5638,6.47,6.51,3.94
1.24,Ideal,I,VS2,62.4,57,5638,6.82,6.9,4.28
1.2,Very Good,F,SI1,63.1,58,5638,6.75,6.68,4.24
1,Ideal,D,SI1,62.8,55,5639,6.3,6.38,3.98
0.9,Very Good,G,VVS2,61.4,60,5640,6.18,6.23,3.81
0.87,Ideal,F,VS1,62,55,5640,6.1,6.13,3.79
1.09,Premium,E,SI1,62.5,57,5640,6.61,6.55,4.11
1.23,Premium,F,SI1,62.5,58,5641,6.83,6.76,4.25
1.38,Premium,H,SI2,60.2,60,5641,7.31,7.24,4.37
1.23,Ideal,H,SI2,61.4,54,5641,6.95,6.94,4.26
1,Good,D,SI1,64.2,56,5642,6.23,6.29,4.02
1.06,Premium,E,SI1,58.5,60,5642,6.81,6.7,3.95
1.22,Premium,D,SI2,61.8,58,5643,6.86,6.8,4.22
1.19,Very Good,I,VS1,59.9,61,5644,6.85,6.91,4.12
1.01,Premium,D,SI1,61.5,61,5644,6.47,6.37,3.95
1,Good,G,VS2,63.7,59,5645,6.38,6.33,4.05
1.5,Fair,H,I1,65.5,58,5645,7.02,6.96,4.58
1.2,Very Good,E,SI2,63.3,55,5645,6.77,6.73,4.27
1,Good,G,VS2,64,56,5645,6.33,6.25,4.03
1,Very Good,G,VS2,63.2,58,5645,6.33,6.27,3.98
1,Good,D,VS2,63.6,56,5645,6.38,6.27,4.02
1.05,Premium,E,VS2,62.6,59,5645,6.5,6.43,4.05
1.26,Ideal,I,SI1,62.4,56,5645,6.93,6.85,4.3
1,Premium,G,VS2,62,62,5645,6.41,6.36,3.96
1,Premium,F,SI1,61.9,60,5645,6.39,6.34,3.94
1,Premium,D,SI1,60.3,60,5645,6.31,6.26,3.79
1.2,Premium,I,VS2,62.6,61,5645,6.76,6.68,4.21
1,Very Good,D,SI1,63.1,56,5645,6.34,6.3,3.99
1,Very Good,D,SI1,63.1,56,5645,6.34,6.3,3.99
1.15,Very Good,H,VS2,62.4,56,5646,6.66,6.68,4.16
1.15,Good,H,VS2,63.1,56,5646,6.62,6.7,4.2
1.01,Good,E,SI1,64,56,5646,6.33,6.36,4.06
1.01,Premium,E,SI1,61,59,5646,6.44,6.47,3.94
1.29,Ideal,J,VS2,60.9,58,5646,7.05,7,4.28
1.01,Ideal,F,SI1,62.3,58,5646,6.35,6.42,3.98
1.51,Good,E,I1,63.6,60,5647,7.3,7.26,4.63
1.23,Premium,H,SI2,62.1,61,5648,6.86,6.79,4.24
1.23,Premium,I,SI1,59.6,60,5648,6.96,6.93,4.14
1.11,Ideal,D,SI2,61.6,55,5648,6.66,6.62,4.09
1.22,Ideal,J,VS1,61.5,55,5649,6.86,6.87,4.22
1.22,Premium,I,VS2,62.9,58,5649,6.8,6.75,4.26
1.14,Premium,G,SI1,62.3,59,5650,6.69,6.66,4.16
1.13,Premium,H,VS2,61.4,61,5650,6.71,6.67,4.11
1.13,Premium,H,VS2,62,57,5650,6.68,6.62,4.12
1.04,Premium,F,SI1,62.8,57,5650,6.5,6.43,4.06
1.01,Very Good,F,VS2,63.5,58,5650,6.35,6.32,4.02
1.14,Ideal,D,SI2,61.4,56,5650,6.77,6.69,4.13
1.14,Ideal,G,SI1,62.2,56,5650,6.69,6.66,4.15
1.06,Ideal,I,VS1,61.2,57,5651,6.59,6.56,4.03
1.31,Very Good,I,SI2,60.9,58,5652,7.03,7.07,4.29
1.1,Premium,H,VS2,61.4,58,5652,6.68,6.62,4.08
0.9,Very Good,G,VVS2,62.1,57,5653,6.14,6.2,3.84
1.21,Ideal,J,VS2,62.1,57,5653,6.81,6.82,4.23
1.03,Premium,D,SI1,63,59,5653,6.44,6.39,4.04
1.03,Ideal,D,SI1,62.4,57,5653,6.47,6.44,4.03
1.03,Ideal,G,SI1,60.8,57,5653,6.52,6.47,3.95
1.28,Very Good,I,SI2,62.6,58,5654,6.87,6.89,4.32
1.01,Very Good,D,SI1,63.2,58,5654,6.28,6.34,3.99
1.23,Premium,G,VS2,61.6,58,5654,6.91,6.85,4.24
1.06,Ideal,F,SI1,62.1,57,5655,6.51,6.53,4.05
1.2,Ideal,I,SI1,61.5,60,5655,6.85,6.8,4.2
1.01,Good,G,VS2,60.3,57,5655,6.46,6.51,3.91
1.02,Ideal,E,SI1,62.2,57,5655,6.45,6.41,4
1.02,Premium,E,SI1,59.2,56,5655,6.63,6.57,3.91
1.01,Very Good,D,SI2,62,57,5656,6.41,6.46,3.99
1.01,Premium,D,SI1,62.2,53,5656,6.47,6.43,4.01
0.9,Ideal,D,SI1,62.4,55,5656,6.15,6.19,3.85
1.01,Premium,E,SI1,59.2,60,5656,6.56,6.51,3.87
1,Ideal,F,SI1,63,56,5656,6.41,6.38,4.03
1.18,Ideal,H,SI2,62.2,56,5657,6.74,6.76,4.2
1.05,Very Good,H,VS1,63.3,57,5657,6.45,6.4,4.07
1.05,Premium,D,SI1,60.5,60,5659,6.53,6.62,3.98
1.07,Very Good,J,VVS2,60,60,5661,6.57,6.59,3.95
1.07,Very Good,H,VS1,62.5,56,5661,6.52,6.6,4.1
1.08,Ideal,G,VS2,62.1,57,5661,6.57,6.54,4.07
1.04,Very Good,E,SI1,59.6,59,5662,6.56,6.59,3.92
1.01,Very Good,F,VS2,63.3,56,5662,6.36,6.34,4.02
1.01,Ideal,F,VS2,61,56,5662,6.44,6.4,3.94
1.07,Premium,F,SI1,59.6,58,5662,6.72,6.68,3.99
1.04,Ideal,F,SI1,61.4,56,5663,6.52,6.58,4.02
1.06,Very Good,H,SI1,59.3,59,5664,6.66,6.7,3.96
1.01,Ideal,H,SI1,61.3,57,5664,6.44,6.46,3.95
1.01,Ideal,H,SI1,61.2,56,5664,6.44,6.47,3.95
1.29,Premium,I,VS1,61.1,58,5664,7.03,6.98,4.28
1.19,Premium,I,SI1,62.1,59,5664,6.84,6.78,4.23
1.23,Very Good,H,SI1,63,55,5665,6.72,6.78,4.27
1.09,Ideal,F,SI1,62,56,5665,6.56,6.61,4.08
1.23,Very Good,J,VVS2,61.2,57,5665,6.86,6.92,4.22
1.2,Very Good,G,SI1,63.2,59,5665,6.77,6.74,4.27
1.02,Ideal,H,VS2,62.4,57,5666,6.4,6.35,3.98
1.01,Fair,G,VS2,67.8,59,5666,6.07,6.02,4.1
1.05,Very Good,F,SI1,59.7,60,5666,6.63,6.71,3.98
1.02,Ideal,H,VS2,60.4,57,5666,6.58,6.54,3.96
1.02,Premium,E,VS2,62.8,59,5666,6.44,6.39,4.03
1.02,Premium,H,VS2,61,58,5666,6.56,6.49,3.98
0.96,Ideal,F,VS1,61.2,56,5666,6.38,6.34,3.89
1.1,Very Good,F,SI1,60.5,60,5667,6.65,6.67,4.03
2,Fair,I,I1,66,60,5667,7.78,7.74,5.1
1,Good,G,VS2,59.9,57,5667,6.45,6.51,3.88
1,Good,H,VS1,60.2,63,5668,6.43,6.47,3.88
1.27,Very Good,J,SI1,63.2,55,5669,6.89,6.87,4.35
1.2,Premium,H,SI1,61.8,58,5669,6.8,6.72,4.18
1.06,Ideal,H,VS2,60.5,57,5669,6.63,6.6,4
1.25,Ideal,H,SI2,62.7,56,5670,6.92,6.87,4.32
0.9,Very Good,G,IF,63.1,58,5670,6.18,6.09,3.87
1.35,Ideal,H,SI2,60,57,5670,7.19,7.15,4.3
1,Very Good,D,SI1,59.8,59,5671,6.47,6.51,3.88
0.99,Very Good,D,SI1,62.6,57,5671,6.34,6.37,3.98
1.22,Premium,I,SI1,62.1,58,5671,6.89,6.8,4.25
1.22,Premium,H,SI2,60.7,59,5671,6.91,6.87,4.18
1.3,Premium,H,SI1,62.9,60,5671,6.95,6.88,4.35
1.21,Very Good,I,SI1,61.8,59,5672,6.75,6.78,4.18
1.05,Fair,G,VS2,65.5,57,5673,6.38,6.34,4.17
1.1,Premium,H,VS1,61.3,58,5673,6.66,6.61,4.07
1.04,Premium,H,VS2,60.4,59,5674,6.51,6.66,3.98
1.18,Very Good,H,SI1,62.6,55,5674,6.76,6.79,4.24
1.21,Premium,J,VVS2,60.8,60,5674,6.88,6.86,4.18
1.14,Ideal,G,SI2,61.5,55,5675,6.78,6.71,4.15
1.28,Ideal,H,SI2,61.8,57,5676,7,6.97,4.32
1.29,Ideal,J,VS1,62,57,5676,6.92,6.98,4.31
1.09,Premium,H,VS2,61.4,58,5677,6.64,6.58,4.06
1.09,Premium,H,VS2,59.7,58,5677,6.73,6.66,4
1.09,Premium,H,VS2,60,56,5677,6.73,6.68,4.02
1.16,Very Good,G,SI1,60.7,59,5678,6.74,6.87,4.13
1.2,Premium,H,VS1,62.6,59,5678,6.78,6.74,4.23
1.16,Good,H,SI1,64,58,5678,6.63,6.56,4.22
1.01,Very Good,G,VS2,62.5,57,5679,6.37,6.4,3.99
1.02,Fair,E,SI1,65.7,58,5681,6.23,6.31,4.12
1.51,Premium,I,SI2,61.2,62,5682,7.28,7.19,4.43
1.02,Ideal,H,VS2,62,55,5683,6.47,6.44,4
1.24,Ideal,H,VS2,61.4,57,5683,6.92,6.88,4.24
1.01,Very Good,E,SI1,63.4,58,5684,6.32,6.37,4.02
1.03,Ideal,G,SI1,62.2,59,5684,6.41,6.45,4
1.01,Very Good,H,VVS2,59.6,63,5684,6.55,6.47,3.88
1.02,Premium,F,SI1,60.1,60,5686,6.58,6.53,3.94
1.02,Premium,F,SI1,61.8,59,5686,6.45,6.39,3.97
1.01,Very Good,H,VS1,60.9,55,5687,6.53,6.57,3.99
1.11,Ideal,H,SI1,62.6,57,5688,6.64,6.59,4.14
1.85,Very Good,H,I1,63.3,56,5688,7.8,7.75,4.92
1.04,Very Good,E,SI1,62.8,59,5689,6.46,6.41,4.04
1.2,Premium,G,SI2,60.2,60,5689,6.9,6.83,4.13
1.23,Good,D,SI2,60.5,64,5689,6.94,6.88,4.18
1.27,Premium,I,SI1,62.3,56,5690,6.93,6.85,4.29
1.19,Ideal,I,SI1,62.3,55,5690,6.8,6.82,4.24
1.27,Premium,I,SI1,60.9,59,5690,6.99,6.94,4.24
1.27,Ideal,I,SI1,62.4,56,5690,6.95,6.9,4.32
1.27,Very Good,J,VS1,63.4,60,5690,6.85,6.8,4.33
1.21,Ideal,H,SI2,62.1,55,5692,6.87,6.82,4.25
1.1,Ideal,F,VS2,58.6,57,5692,6.82,6.8,3.99
1.2,Ideal,I,SI1,62.3,53,5694,6.8,6.85,4.25
1.01,Ideal,D,SI1,62.1,56,5694,6.36,6.43,3.97
1.24,Premium,H,SI2,59.9,60,5694,7.02,7,4.2
1.24,Premium,H,SI2,61.2,57,5694,7.02,6.87,4.25
1.16,Very Good,D,SI1,61.8,58,5695,6.72,6.78,4.17
1.16,Ideal,G,SI2,61.6,55,5695,6.74,6.77,4.16
1.23,Premium,F,SI2,61.7,57,5695,6.89,6.86,4.24
1.5,Ideal,I,I1,61.3,57,5695,7.39,7.36,4.52
1.01,Very Good,G,VS2,62.4,58,5696,6.37,6.41,3.99
1.18,Premium,H,SI1,61.8,58,5696,6.74,6.79,4.18
2.01,Fair,I,I1,67.4,58,5696,7.71,7.64,5.17
2.01,Fair,I,I1,55.9,64,5696,8.48,8.39,4.71
1.05,Ideal,I,VS2,60.3,57,5697,6.57,6.63,3.98
1.06,Ideal,I,SI1,61.8,55,5697,6.54,6.57,4.04
1.2,Very Good,G,SI2,62,60,5698,6.78,6.76,4.2
1.19,Very Good,H,SI1,63.3,55,5698,6.76,6.69,4.26
1.01,Ideal,G,SI1,62.6,56,5698,6.37,6.41,4
1.07,Ideal,H,VS2,63.6,59,5698,6.46,6.42,4.09
1.19,Premium,H,SI1,60.8,59,5698,6.87,6.84,4.17
1.19,Premium,H,SI1,62.7,61,5698,6.73,6.66,4.2
1.2,Premium,I,VS2,62.6,58,5699,6.77,6.72,4.22
1.2,Premium,I,VS2,62.6,58,5699,6.77,6.72,4.22
1.25,Very Good,I,SI1,62.1,58,5699,6.86,6.9,4.27
1.2,Premium,I,VS2,61.8,55,5699,6.93,6.8,4.24
1.2,Premium,F,SI2,61.9,59,5699,6.86,6.74,4.21
1.2,Ideal,I,VS2,63.2,59,5699,6.73,6.68,4.24
1.14,Premium,H,VS2,61.3,59,5700,6.76,6.72,4.13
1.01,Good,F,VS2,65.2,57,5700,6.19,6.23,4.05
1.01,Good,D,SI1,58.4,62,5700,6.48,6.5,3.79
1.01,Premium,G,VS2,61.2,57,5701,6.46,6.41,3.94
1.02,Very Good,F,SI1,63.7,56,5701,6.34,6.41,4.06
1.01,Very Good,G,VS2,63.2,57,5701,6.35,6.3,4
1.01,Good,G,VS2,63.6,60,5701,6.35,6.3,4.02
1.01,Good,G,VS2,63.9,54,5701,6.37,6.31,4.05
1.01,Very Good,G,VS2,63.2,55,5701,6.39,6.34,4.02
1.01,Good,G,VS2,63.7,56,5701,6.4,6.32,4.05
1.01,Good,G,VS2,57.5,62,5701,6.58,6.53,3.77
1.01,Premium,G,VS2,61.1,60,5701,6.46,6.37,3.92
1.01,Premium,D,SI1,61.6,62,5701,6.44,6.38,3.95
1,Good,G,VS2,63.1,61,5702,6.33,6.38,4.01
1,Good,G,VS2,63.4,57,5702,6.27,6.31,3.99
1,Very Good,G,VS2,63,59,5702,6.36,6.4,4.02
1,Very Good,G,VS2,62.9,56,5702,6.27,6.42,3.99
1.02,Ideal,E,SI1,61.9,55,5702,6.46,6.49,4.01
1.06,Ideal,I,VS1,61.1,56,5702,6.59,6.61,4.03
1.05,Ideal,D,SI2,62.1,58,5702,6.49,6.52,4.04
1.01,Ideal,D,SI1,62,55,5702,6.39,6.45,3.98
1.16,Premium,H,SI1,62.8,57,5702,6.73,6.67,4.21
1.22,Ideal,H,SI2,61.1,57,5703,6.9,5.92,4.22
1.22,Ideal,H,SI2,61.7,56,5703,6.83,6.91,4.24
1.01,Very Good,D,SI2,63.1,54,5703,6.39,6.35,4.02
1.02,Premium,F,VS2,63,60,5704,6.41,6.35,4.02
1.07,Premium,D,SI1,61.9,58,5704,6.57,6.53,4.05
1.07,Ideal,E,SI2,61.5,56,5704,6.61,6.58,4.06
1.05,Ideal,H,SI1,60.8,56,5704,6.62,6.58,4.01
1.25,Ideal,H,SI2,61.2,57,5706,6.89,6.93,4.23
1.09,Premium,H,SI1,59.5,58,5706,6.73,6.71,4
1.02,Good,G,VS1,57.3,59,5706,6.71,6.65,3.83
1.21,Ideal,J,VS2,62.5,57,5707,6.79,6.74,4.23
0.31,Very Good,F,VS2,61.1,58.1,605,4.33,4.37,2.66
0.26,Ideal,G,VVS1,62.8,54,605,4.07,4.09,2.56
0.26,Ideal,G,VVS1,62.4,56,605,4.11,4.14,2.57
0.38,Ideal,J,VS1,62.2,55.7,605,4.63,4.65,2.89
0.41,Ideal,G,SI2,61.3,56,605,4.78,4.81,2.94
0.26,Ideal,G,IF,62.2,55,605,4.09,4.13,2.55
0.26,Ideal,G,IF,62.5,57,605,4.06,4.1,2.55
0.36,Premium,E,SI2,62.4,58,605,4.56,4.54,2.84
0.32,Ideal,I,VS1,62.1,57,605,4.42,4.37,2.73
0.32,Ideal,I,VS1,62.3,56,605,4.4,4.37,2.73
0.32,Premium,H,VS2,62.7,58,605,4.35,4.33,2.72
0.31,Premium,G,VS2,58.8,62,605,4.41,4.4,2.59
0.31,Premium,G,VS2,61.2,59,605,4.4,4.36,2.68
0.31,Premium,E,SI1,62.7,58,605,4.35,4.32,2.72
0.3,Premium,F,VS2,61.1,59,605,4.29,4.32,2.63
0.3,Very Good,G,VS1,62.3,59,605,4.27,4.3,2.67
0.3,Premium,F,VS2,61.4,60,605,4.29,4.34,2.65
0.3,Very Good,F,VS2,62.7,58,605,4.25,4.3,2.68
0.3,Premium,G,VS1,61.8,59,605,4.34,4.37,2.69
0.3,Ideal,F,VS2,61.1,56,605,4.31,4.33,2.64
0.3,Ideal,F,VS2,60.4,56,605,4.34,4.37,2.63
0.3,Good,H,VVS2,63.5,55,605,4.25,4.28,2.71
0.3,Ideal,H,VVS2,62.6,55,605,4.25,4.28,2.67
0.3,Good,G,VS1,63.4,58,605,4.23,4.25,2.69
0.3,Ideal,F,VS2,61.8,57,605,4.31,4.33,2.67
0.3,Ideal,H,VVS2,61.2,57,605,4.31,4.32,2.64
0.3,Ideal,F,VS2,62.5,55,605,4.27,4.31,2.68
0.3,Ideal,G,VS1,62.6,57,605,4.27,4.29,2.68
0.3,Very Good,F,VS2,62.8,56,605,4.29,4.31,2.7
0.3,Good,H,VVS2,63.6,56,605,4.26,4.29,2.72
1.04,Premium,D,SI1,61.5,58,5708,6.53,6.48,4
1.04,Good,D,SI1,63.7,58,5708,6.43,6.39,4.08
0.91,Premium,F,VVS2,63,56,5708,6.17,6.12,3.87
1.02,Very Good,D,SI1,62.7,60,5709,6.34,6.39,3.99
1.03,Ideal,E,SI1,62,53,5710,6.5,6.47,4.02
1.03,Premium,E,SI1,62.9,56,5710,6.49,6.39,4.05
1.2,Ideal,H,SI2,61.6,57,5712,6.84,6.79,4.2
1.01,Very Good,I,SI1,60.1,59,5712,6.44,6.47,3.88
1.2,Premium,I,SI1,62.6,59,5712,6.85,6.79,4.27
1.2,Premium,F,SI2,62.9,57,5712,6.8,6.72,4.25
1.2,Ideal,H,SI2,61,57,5712,6.9,6.84,4.19
1.01,Very Good,F,SI1,63.5,57,5713,6.38,6.31,4.03
1.06,Very Good,D,SI1,59.4,57,5713,6.65,6.72,3.97
1.01,Premium,F,SI1,58.9,60,5713,6.57,6.5,3.85
1.01,Premium,G,VS2,62.6,56,5713,6.41,6.34,3.99
1.24,Ideal,I,SI1,61.3,56,5714,6.9,6.93,4.24
1.22,Ideal,G,SI2,59.6,56,5714,7.05,7.02,4.19
1.27,Very Good,H,SI2,60.6,59,5715,6.97,7,4.23
1.35,Premium,J,SI1,61.1,61,5715,7.13,7.1,4.35
1.23,Ideal,F,SI2,62.8,57,5715,6.74,6.86,4.27
1.35,Premium,I,SI2,59.8,59,5715,7.26,7.2,4.32
1.1,Premium,F,SI1,59.5,59,5717,6.7,6.77,4.01
1.19,Ideal,E,SI2,60.2,57,5717,6.84,6.87,4.13
1.32,Very Good,H,SI1,63.5,57,5717,6.88,6.92,4.38
0.91,Ideal,D,SI1,60.6,56,5717,6.27,6.3,3.81
1.23,Premium,I,SI1,60.3,58,5717,6.95,6.92,4.18
1.23,Premium,I,SI1,62,57,5717,6.91,6.83,4.26
1.23,Premium,H,SI2,62,59,5717,6.92,6.88,4.28
1.2,Premium,H,SI1,62.4,58,5718,6.76,6.79,4.23
1,Very Good,E,SI1,59.2,59,5718,6.49,6.55,3.86
1,Premium,F,VS2,60.6,59,5718,6.5,6.46,3.93
1.28,Ideal,I,SI2,62.5,59,5719,6.88,6.95,4.32
1,Very Good,E,VS2,62.8,63,5720,6.28,6.33,3.96
1.21,Premium,F,SI1,61.1,61,5720,6.78,6.74,4.13
1.22,Very Good,D,SI2,62.2,58,5721,6.85,6.91,4.28
1.32,Ideal,I,SI2,61.7,55,5721,7.07,7.03,4.35
1.03,Premium,H,VS2,61.8,58,5722,6.48,6.43,3.99
1.2,Ideal,G,SI2,61.1,57,5722,6.83,6.86,4.18
1.2,Ideal,J,VS1,61,57,5722,6.81,6.89,4.18
1.31,Premium,H,VS1,62.1,58,5722,6.98,6.97,4.33
1.36,Very Good,J,SI1,62,59,5723,7.01,7.06,4.36
1,Good,G,VS2,63,58,5723,6.25,6.35,3.97
1.4,Premium,G,SI2,60.6,58,5723,7.26,7.22,4.39
1.46,Fair,H,SI2,56.3,60,5723,7.61,7.55,4.27
1,Very Good,G,VS2,63.1,58,5723,6.39,6.31,4.01
1,Premium,D,SI1,59.2,62,5723,6.54,6.49,3.86
1,Premium,D,SI1,62.2,58,5723,6.45,6.34,3.98
1.2,Very Good,I,VS2,62.5,59,5724,6.73,6.77,4.22
1.01,Good,E,SI1,63.9,56,5724,6.37,6.31,4.05
1.04,Premium,F,SI1,62.5,60,5724,6.46,6.43,4.03
1.24,Very Good,H,SI2,64,56,5725,6.79,6.83,4.36
1.21,Very Good,I,VS1,60.6,60,5726,6.89,6.85,4.16
1.05,Ideal,H,VS2,61.7,57,5728,6.52,6.55,4.03
1.3,Ideal,J,SI1,61.5,55,5728,7.03,7.06,4.33
0.99,Ideal,F,SI1,62.8,57,5728,6.3,6.38,3.98
1,Ideal,E,SI1,62.2,53.9,5728,6.4,6.5,4
1,Ideal,E,SI1,62.8,54.2,5728,6.32,6.4,4.01
1.13,Premium,H,VS2,61.7,56,5728,6.73,6.65,4.13
1,Fair,E,VS2,67,54,5729,6.23,6.18,4.16
0.93,Premium,F,SI1,62.3,59,5729,6.25,6.21,3.88
1.1,Very Good,H,VS2,63.1,57,5729,6.6,6.52,4.14
1.1,Premium,H,VS2,62.5,58,5729,6.59,6.54,4.1
1.01,Good,F,VS2,63.3,55,5731,6.32,6.39,4.02
1.01,Very Good,D,SI1,62.9,58,5731,6.33,6.38,4
1.01,Very Good,D,SI1,62.6,56,5731,6.36,6.39,3.99
1.09,Ideal,H,VS2,61.5,54,5732,6.64,6.65,4.09
0.91,Very Good,F,VVS2,62.6,59,5733,6.1,6.16,3.84
1.02,Very Good,D,SI1,62.8,58,5733,6.37,6.41,4.01
2.27,Fair,J,I1,67.6,55,5733,8.05,8,5.43
1.2,Ideal,I,VS2,62.3,57,5736,6.74,6.8,4.22
1.26,Very Good,H,SI2,62.2,57,5736,6.86,6.9,4.28
1.04,Very Good,H,VS2,60.4,56,5738,6.55,6.59,3.97
1.22,Premium,G,SI2,60.5,58,5739,6.96,6.92,4.2
1.21,Premium,I,VS1,61.9,58,5739,6.76,6.81,4.2
1.22,Premium,G,SI2,61.9,58,5739,6.88,6.79,4.23
1.22,Very Good,E,SI2,63.3,56,5739,6.78,6.75,4.28
1.22,Premium,D,SI1,62.3,60,5739,6.84,6.8,4.25
1.25,Premium,I,SI1,62.4,58,5740,6.89,6.85,4.29
1.25,Premium,H,SI2,61.2,62,5740,6.95,6.84,4.22
1.25,Premium,J,VS1,62.2,58,5740,6.92,6.88,4.29
1.25,Premium,H,SI2,61.6,54,5740,6.95,6.85,4.25
1.01,Premium,G,VS2,63,58,5741,6.42,6.37,4.03
1.24,Premium,F,SI2,62.2,58,5741,6.86,6.8,4.25
1.01,Premium,E,SI1,62.8,58,5741,6.38,6.33,3.99
1.01,Very Good,F,SI1,60.6,60,5743,6.37,6.43,3.88
1.17,Ideal,G,SI2,62.6,55,5743,6.74,6.78,4.23
1,Good,H,VS1,60.1,62,5743,6.38,6.47,3.86
1.03,Premium,H,VS1,61.2,58,5744,6.52,6.55,4
1.31,Premium,I,SI2,59.1,59,5744,7.2,7.15,4.24
1.31,Premium,I,SI2,60.5,59,5744,7.11,7.04,4.28
1.08,Ideal,H,VS2,61.9,54,5745,6.61,6.64,4.1
1.21,Premium,F,SI2,59.9,62,5746,6.92,6.88,4.13
1.2,Premium,H,SI1,62.2,58,5746,6.78,6.72,4.2
1.2,Premium,H,SI1,62.1,55,5746,6.79,6.74,4.2
1.2,Premium,H,SI1,62.7,56,5746,6.78,6.75,4.24
1.01,Very Good,G,VS2,62.7,61,5747,6.32,6.35,3.97
1.01,Good,D,SI1,58.3,59,5747,6.59,6.61,3.85
1.19,Premium,I,VS1,59.9,61,5747,6.91,6.85,4.12
1.34,Ideal,J,VS1,62,57,5748,7.04,7.12,4.39
1.06,Ideal,I,VS2,61.6,57,5748,6.53,6.58,4.04
1.07,Ideal,I,SI1,61.5,57,5748,6.57,6.59,4.05
1.01,Premium,E,SI1,61,59,5749,6.47,6.44,3.94
1.51,Fair,I,I1,65.1,57,5750,7.16,7.12,4.65
1.15,Very Good,H,VS2,63.1,56,5750,6.7,6.62,4.2
1.11,Premium,G,SI1,62.4,58,5750,6.65,6.61,4.14
1.01,Ideal,E,SI1,59.8,60,5751,6.56,6.48,3.9
1.17,Premium,H,SI1,62.5,57,5751,6.79,6.75,4.23
1.17,Ideal,H,SI1,62.1,54,5751,6.83,6.77,4.22
1.3,Premium,E,SI2,61.5,59,5751,7.05,7,4.32
1.07,Very Good,H,SI1,62.3,57,5752,6.53,6.64,4.1
0.81,Ideal,E,VVS1,62.5,54,5752,5.95,5.98,3.73
0.9,Very Good,G,IF,60.1,59,5754,6.22,6.26,3.75
1,Very Good,D,SI1,60.5,58,5755,6.42,6.48,3.9
1,Ideal,D,SI1,62.7,56,5755,6.39,6.43,4.02
1.34,Premium,D,SI2,60.3,59,5756,7.16,7.11,4.3
1.08,Ideal,H,SI1,60.6,59,5756,6.61,6.65,4.02
1.01,Good,G,VS2,58.9,61,5756,6.46,6.55,3.83
0.9,Very Good,D,VS1,63,58,5757,6.11,6.15,3.86
0.9,Very Good,D,VS1,63,56,5757,6.13,6.18,3.88
1.07,Good,H,VS2,63.8,57,5758,6.54,6.47,4.15
1.02,Very Good,G,VS2,63.5,56,5758,6.43,6.38,4.07
0.92,Ideal,H,IF,62.5,55,5758,6.25,6.3,3.92
1.08,Premium,D,SI1,62.6,56,5758,6.62,6.57,4.13
1.35,Premium,E,SI2,61.5,58,5758,7.11,7.06,4.36
1.06,Ideal,F,SI1,62.1,57,5758,6.53,6.51,4.05
1.35,Very Good,J,VS1,62.1,56,5759,7.04,7.1,4.39
1.01,Very Good,G,VS2,60.7,61,5759,6.42,6.46,3.91
1.01,Very Good,G,VS2,61.9,59,5759,6.34,6.38,3.94
1.01,Very Good,G,VS2,61.5,56,5759,6.41,6.47,3.96
1,Very Good,F,VS2,62.7,56,5759,6.29,6.34,3.96
1.01,Very Good,G,VS2,61.6,61,5759,6.36,6.46,3.95
1.01,Premium,G,VS2,60.2,59,5759,6.48,6.55,3.92
1.01,Premium,G,VS2,61.2,58,5759,6.46,6.49,3.96
1.01,Very Good,G,VS2,59.9,60,5759,6.46,6.52,3.89
1.01,Very Good,G,VS2,63,56,5759,6.35,6.41,4.02
1.01,Very Good,E,SI1,61.9,56,5759,6.33,6.41,3.94
1.31,Premium,I,VS1,61.9,56,5759,7.07,6.98,4.35
1.31,Premium,I,VS1,62.8,57,5759,6.98,6.9,4.36
1.13,Ideal,G,SI1,61.8,55,5759,6.71,6.75,4.16
1.28,Good,J,VS1,59.1,62,5759,7.06,7.16,4.2
1.01,Very Good,E,VS2,59.3,59,5760,6.5,6.56,3.87
1.21,Premium,I,SI1,61.6,56,5760,6.89,6.85,4.23
1.22,Ideal,I,VS2,59.5,57,5761,6.91,6.97,4.13
1.27,Ideal,F,SI1,61.8,57,5761,6.96,6.89,4.28
1.27,Premium,J,VVS1,60.1,58,5761,7.06,6.99,4.22
1.35,Ideal,F,SI2,62.9,56,5761,7.05,7.03,4.43
1.05,Premium,D,SI1,60.5,60,5762,6.62,6.53,3.98
1.23,Ideal,J,VS2,61.7,57,5763,6.87,6.8,4.22
1.23,Very Good,I,SI1,60.5,58,5763,6.9,6.94,4.19
1.2,Ideal,I,SI1,60.3,56,5763,6.87,6.97,4.17
1.14,Ideal,H,SI1,62.2,54,5763,6.69,6.74,4.18
1.07,Premium,H,VS1,62.5,56,5764,6.6,6.52,4.1
1.68,Good,E,I1,64.3,60,5765,7.44,7.48,4.8
1.2,Ideal,I,VS1,59.3,57,5765,6.95,7.04,4.15
1.38,Ideal,J,SI2,61,56,5765,7.22,7.26,4.42
1.33,Premium,I,SI2,62.3,59,5765,7.01,6.98,4.36
1,Very Good,G,VS2,59,62,5766,6.49,6.56,3.85
1,Good,G,VS2,59.3,61,5766,6.51,6.57,3.88
1.04,Premium,E,SI1,59.6,59,5766,6.59,6.56,3.92
1.2,Ideal,G,VS1,61.7,56,5766,6.84,6.77,4.2
1.56,Ideal,J,SI2,62.1,55,5766,7.45,7.41,4.62
1.04,Good,E,SI1,63.8,58,5766,6.46,6.39,4.1
1.07,Very Good,D,SI1,61.8,61,5767,6.54,6.57,4.05
1.07,Ideal,D,SI1,61.8,55,5767,6.54,6.59,4.06
0.96,Ideal,F,VS1,61.2,56,5767,6.34,6.38,3.89
1.02,Ideal,I,VVS2,62.1,54,5767,6.47,6.51,4.03
1.51,Premium,H,SI2,60.7,59,5767,7.42,7.37,4.49
1.23,Ideal,H,SI1,63,55,5768,6.78,6.72,4.27
1.03,Good,H,SI2,63.8,63,5768,6.36,6.3,4.04
1.09,Ideal,F,SI1,62,56,5768,6.61,6.56,4.08
1.23,Premium,J,VVS2,61.2,57,5768,6.92,6.86,4.22
1.11,Good,F,SI1,63.1,56,5769,6.59,6.63,4.17
1.1,Very Good,F,SI1,58.9,63,5769,6.73,6.78,3.98
1.05,Very Good,E,SI1,60.7,56,5770,6.54,6.6,3.99
1.13,Fair,H,SI1,65.3,59,5771,6.52,6.44,4.23
0.9,Good,G,IF,63.1,58,5771,6.09,6.18,3.87
1.09,Very Good,E,SI1,62.8,56,5771,6.53,6.6,4.12
1.29,Very Good,I,SI1,63.6,57,5771,6.88,6.92,4.39
1.29,Ideal,J,VS2,62.1,59,5771,6.92,6.96,4.31
1.22,Premium,H,VS1,62.2,58,5773,6.84,6.76,4.23
1.02,Ideal,F,SI1,62.3,56,5773,6.41,6.44,4
1.1,Premium,E,SI1,62.9,58,5773,6.62,6.55,4.14
1.22,Ideal,H,VS1,62.7,55,5773,6.82,6.73,4.25
1.03,Premium,F,VS2,62.6,58,5774,6.45,6.4,4.02
1,Premium,D,SI1,60.3,59,5775,6.44,6.47,3.89
1,Ideal,D,SI1,60.6,56,5775,6.5,6.54,3.95
1,Ideal,D,SI1,60.5,57,5775,6.48,6.52,3.93
1,Premium,D,SI1,62.5,59,5775,6.32,6.38,3.97
1.25,Very Good,H,SI2,62.8,55,5775,6.82,6.87,4.3
1,Premium,D,SI1,61.4,58,5775,6.37,6.43,3.93
1.08,Premium,H,VS2,62.9,55,5775,6.59,6.54,4.13
1.24,Premium,E,SI1,58.5,60,5775,7.08,7.01,4.11
1.04,Premium,H,VS2,60.4,59,5777,6.66,6.51,3.98
1.01,Very Good,E,VS2,61.7,56,5777,6.41,6.45,3.97
1.01,Ideal,H,VS1,62.6,57,5777,6.37,6.4,4
1.02,Very Good,D,SI1,63.3,60,5778,6.33,6.38,4.02
1.34,Ideal,I,SI2,61.3,55,5778,7.16,7.12,4.38
1.34,Premium,J,VS2,62.6,58,5778,7.08,7.01,4.41
1.01,Very Good,G,VS2,62.9,60,5779,6.28,6.35,3.97
1.13,Premium,H,VS2,62.4,58,5779,6.61,6.66,4.14
0.92,Very Good,D,SI1,60.8,58,5779,6.24,6.27,3.8
1.2,Good,H,SI1,63.7,58,5779,6.72,6.68,4.27
1.2,Premium,H,SI2,61.4,58,5779,6.81,6.77,4.17
0.92,Ideal,D,SI1,62.3,56,5779,6.2,6.23,3.87
1.29,Ideal,J,VS1,62,57,5779,6.98,6.92,4.31
1.2,Premium,E,SI2,60.4,58,5779,6.95,6.89,4.18
1.11,Very Good,H,SI1,61.9,58,5780,6.63,6.65,4.11
1.01,Premium,D,SI1,60,59,5780,6.51,6.45,3.89
1.01,Premium,D,SI1,61.2,60,5780,6.47,6.41,3.94
1.11,Premium,H,VS2,62.6,58,5781,6.63,6.59,4.14
1.16,Premium,F,VS2,60.5,59,5781,6.86,6.8,4.13
1.24,Very Good,J,VS1,62.1,58,5783,6.85,6.96,4.29
1.24,Very Good,J,VS1,62.4,59.4,5783,6.81,6.89,4.27
1.24,Very Good,I,VS2,60.1,59,5783,6.95,7.02,4.2
1.06,Premium,H,VS2,62.6,58,5783,6.49,6.54,4.08
1.06,Premium,H,VS2,62,58,5783,6.5,6.57,4.05
1.06,Very Good,H,VS2,62.5,57,5783,6.47,6.49,4.05
1.09,Very Good,G,VS2,59.9,56,5783,6.59,6.73,3.99
1,Good,E,SI1,61.6,62,5784,6.35,6.42,3.93
1.01,Fair,F,VS2,65.1,59,5784,6.17,6.21,4.03
1.33,Very Good,J,VS2,62.7,59,5785,6.97,7.01,4.38
1.01,Good,F,VS1,64,56,5786,6.37,6.32,4.06
1.23,Premium,G,VS1,62.2,58,5786,6.78,6.74,4.27
1.34,Very Good,J,SI2,62.3,61,5787,6.97,7.05,4.37
1.01,Premium,G,VS2,62.4,59,5787,6.45,6.41,4.01
1.21,Good,E,SI2,64,62,5787,6.65,6.59,4.24
1.3,Premium,F,SI2,61.6,58,5788,7.07,6.92,4.33
1.23,Very Good,I,VS2,59.7,58,5789,6.94,7.02,4.17
1.01,Very Good,F,SI1,62.3,55,5789,6.38,6.42,3.99
1.08,Ideal,H,VS1,61.9,57,5791,6.58,6.64,4.09
1.03,Premium,G,SI1,59.5,60,5791,6.6,6.54,3.91
1.26,Ideal,G,VS2,61.5,57,5792,6.94,6.89,4.25
1.16,Ideal,D,SI2,62.1,54,5793,6.74,6.79,4.2
1.21,Premium,H,SI1,62.8,59,5793,6.72,6.68,4.21
1.22,Premium,F,SI2,62.5,57,5794,6.78,6.73,4.22
0.9,Very Good,D,VS1,59.1,60,5795,6.24,6.28,3.7
0.91,Ideal,G,VS1,62.1,57,5795,6.17,6.2,3.84
1.28,Ideal,J,VS2,62.8,57,5795,6.93,6.87,4.33
1.04,Ideal,F,SI1,60.9,56,5795,6.61,6.56,4.01
1.38,Ideal,I,SI2,61.8,57,5796,7.14,7.1,4.4
1.24,Ideal,H,SI2,62,56,5797,6.87,6.9,4.27
1.24,Ideal,I,SI1,62.1,56,5797,6.84,6.88,4.26
1.01,Fair,D,VS2,59.1,68,5797,6.56,6.44,3.84
1,Ideal,F,SI2,62.4,57,5798,6.37,6.42,3.99
1.06,Ideal,E,SI1,61.6,56,5798,6.55,6.59,4.05
1.16,Very Good,H,SI2,62.8,59,5799,6.7,6.64,4.19
1.09,Premium,D,SI1,61.6,58,5799,6.61,6.57,4.06
1.35,Premium,G,SI1,62.4,58,5799,7.07,6.97,4.38
1.32,Premium,J,VS2,60.4,58,5800,7.11,7.14,4.3
1.03,Very Good,E,VS2,61.3,61,5800,6.46,6.53,3.98
1.18,Premium,H,SI1,61.8,58,5801,6.79,6.74,4.18
1.51,Fair,J,SI2,65.1,59,5801,7.13,7.09,4.63
1.14,Premium,G,SI1,60,55,5801,6.85,6.79,4.09
1.19,Premium,H,SI1,62.7,56,5802,6.76,6.7,4.22
1.11,Premium,E,SI1,61.3,58,5802,6.61,6.66,4.07
1.02,Very Good,D,SI1,64.2,58,5803,6.32,6.35,4.07
1,Very Good,F,SI1,61,60,5804,6.38,6.43,3.91
1.03,Ideal,D,SI1,61.2,55,5804,6.51,6.57,4
1.03,Ideal,D,SI1,61.6,55,5804,6.49,6.53,4.01
1.03,Ideal,D,SI1,61,57,5804,6.48,6.53,3.97
1,Ideal,D,SI1,61.9,57,5804,6.39,6.41,3.96
1.16,Ideal,D,SI1,62,56,5805,6.73,6.76,4.18
1.08,Very Good,E,SI2,63,56,5805,6.5,6.52,4.1
1.04,Ideal,H,VS2,60.7,56,5805,6.56,6.61,4
0.92,Ideal,F,VS2,61.2,56,5805,6.25,6.3,3.84
1.1,Premium,H,VS2,61.2,58,5805,6.75,6.64,4.1
1,Premium,G,VS2,63,59,5806,6.4,6.36,4.02
1,Premium,G,VS2,62.9,56,5806,6.42,6.27,3.99
1,Very Good,G,VS2,63.4,57,5806,6.31,6.27,3.99
1,Very Good,G,VS2,63.1,61,5806,6.38,6.33,4.01
1,Premium,G,VS2,62.1,57,5806,6.43,6.39,3.98
1.02,Ideal,E,SI1,61.9,55,5806,6.49,6.46,4.01
1.22,Ideal,I,SI1,60.2,58,5807,6.96,6.9,4.17
1.22,Ideal,I,SI1,60.2,57,5807,6.99,6.93,4.19
1.22,Ideal,H,SI2,61.1,57,5807,6.9,5.92,4.22
1.22,Ideal,H,SI2,61.7,56,5807,6.91,6.83,4.24
1.22,Ideal,I,SI1,62.6,57,5807,6.8,6.77,4.25
1.5,Very Good,G,I1,60.3,61,5808,7.34,7.39,4.44
1.32,Ideal,J,VS1,62.5,57,5808,7,7.04,4.39
1.14,Premium,H,VS1,62,62,5809,6.74,6.65,4.15
1.24,Good,E,SI2,58.5,57,5809,7.03,7.1,4.13
1.14,Premium,D,SI1,60.5,59,5809,6.79,6.73,4.09
1.25,Ideal,H,SI2,61.2,57,5810,6.93,6.89,4.23
1.01,Very Good,D,SI1,61.8,58,5812,6.33,6.38,3.93
1.01,Ideal,D,SI1,61.4,59,5812,6.4,6.44,3.94
1.06,Premium,G,VS2,62.3,59,5813,6.52,6.49,4.05
1.13,Ideal,I,VS1,61.6,54,5813,6.72,6.74,4.15
1.07,Premium,F,SI1,61.7,56,5813,6.66,6.5,4.06
1.02,Very Good,E,SI1,62.6,58,5814,6.4,6.45,4.02
1.21,Ideal,H,SI2,62,54.5,5814,6.81,6.87,4.25
1.03,Premium,G,VS2,62.2,56,5814,6.51,6.48,4.04
1.01,Very Good,D,SI1,61.6,59,5815,6.42,6.47,3.97
1.29,Premium,J,VS2,60.5,58,5815,7.07,6.99,4.25
1.18,Very Good,H,SI1,63.3,55,5815,6.75,6.72,4.26
1.02,Good,G,VS2,63.6,57,5816,6.38,6.41,4.07
1.02,Ideal,G,VS2,62.6,57,5816,6.41,6.43,4.02
1.02,Ideal,G,VS2,62,57,5816,6.38,6.46,3.98
1.09,Ideal,F,SI1,62,56,5816,6.56,6.61,4.08
1.09,Ideal,F,SI1,62,56,5816,6.59,6.61,4.09
1.2,Very Good,I,SI1,62.4,59,5816,6.73,6.79,4.22
0.3,Ideal,H,VVS2,61.3,57,605,4.31,4.33,2.65
0.3,Good,H,VVS2,63.6,55,605,4.24,4.28,2.71
0.3,Ideal,F,VS2,62.7,57,605,4.27,4.31,2.69
0.3,Premium,G,VS1,60,60,605,4.3,4.33,2.59
0.3,Very Good,H,VVS2,61,61,605,4.3,4.32,2.63
0.3,Ideal,H,VVS2,61.5,56,605,4.33,4.35,2.67
0.3,Premium,F,VS2,60.7,58,605,4.32,4.35,2.63
0.3,Ideal,G,VS1,61.8,54,605,4.29,4.32,2.66
0.3,Ideal,H,VVS2,62.2,57,605,4.26,4.29,2.66
0.3,Very Good,G,VS1,62.2,59,605,4.24,4.28,2.65
0.3,Premium,F,VS2,61.4,60,605,4.27,4.3,2.63
0.3,Premium,F,VS2,62.2,58,605,4.28,4.31,2.67
0.3,Very Good,G,VS1,62.8,58,605,4.26,4.28,2.68
0.3,Very Good,G,VS1,62.8,59,605,4.23,4.27,2.67
0.3,Ideal,H,VVS2,61.7,54,605,4.31,4.34,2.67
0.3,Premium,H,VVS2,62.4,58,605,4.26,4.3,2.67
0.3,Ideal,F,VS2,61.8,56,605,4.3,4.31,2.66
0.3,Very Good,G,VS1,60.3,62,605,4.3,4.33,2.6
0.3,Good,H,VVS2,63.7,55,605,4.24,4.27,2.71
0.3,Good,G,VS1,63.1,58,605,4.24,4.28,2.69
0.3,Very Good,H,VVS2,62.8,57,605,4.22,4.25,2.66
0.3,Very Good,G,VS1,62.8,57,605,4.25,4.29,2.68
0.3,Very Good,G,VS1,62.9,58,605,4.27,4.32,2.7
0.3,Very Good,G,VS1,62.5,55,605,4.25,4.32,2.68
0.3,Very Good,G,VS1,62.9,60,605,4.26,4.29,2.69
0.3,Good,H,VVS2,63.4,57,605,4.21,4.24,2.68
0.3,Ideal,H,VVS2,61.5,57,605,4.31,4.34,2.66
0.3,Very Good,G,VS1,62.8,57,605,4.24,4.26,2.67
0.3,Good,G,VS1,63.6,55,605,4.26,4.29,2.72
0.3,Premium,F,VS2,62.2,60,605,4.22,4.27,2.64
1.01,Good,F,VS2,63.1,59,5817,6.31,6.37,4
0.95,Good,G,VVS2,57.7,59.7,5817,6.5,6.58,3.77
1.06,Premium,D,SI1,59.4,57,5817,6.72,6.65,3.97
1.08,Premium,H,VS1,58.6,60,5818,6.84,6.78,3.99
1.12,Ideal,H,SI1,60.9,57,5818,6.7,6.73,4.09
1.2,Good,I,VS1,61.7,62,5818,6.65,6.74,4.13
1.2,Good,I,VS1,59.6,61,5818,6.84,6.89,4.09
1.14,Very Good,F,SI1,61,60,5819,6.67,6.74,4.09
1,Good,E,VS2,63.7,56,5819,6.37,6.34,4.05
1.07,Very Good,H,VS2,61.3,58,5820,6.59,6.62,4.05
1.07,Ideal,H,VS2,62,57,5820,6.55,6.58,4.07
1.23,Ideal,I,SI2,61.8,55,5820,6.87,6.91,4.26
1.31,Ideal,I,SI2,61,59,5820,7.05,7.01,4.29
1.05,Very Good,D,SI1,60.5,56,5821,6.59,6.7,4
1.08,Good,D,SI1,63.8,59,5821,6.39,6.47,4.1
1.05,Premium,G,VS2,61.9,59,5821,6.56,6.52,4.05
1.05,Premium,D,SI1,58.6,60,5821,6.73,6.66,3.92
1.05,Premium,E,SI1,61.8,56,5821,6.57,6.5,4.04
1.1,Premium,F,SI1,59.5,59,5821,6.77,6.7,4.01
1.2,Premium,H,SI1,59.3,60,5822,7,6.92,4.13
1.2,Premium,H,SI1,60.8,60,5822,6.87,6.79,4.15
1.2,Ideal,H,SI1,61.7,55,5822,6.86,6.82,4.22
1.2,Premium,H,SI1,62.2,59,5822,6.79,6.71,4.2
1.19,Ideal,E,SI2,60.2,57,5822,6.87,6.84,4.13
1.01,Good,E,SI1,64,60,5823,6.38,6.28,4.05
1.3,Premium,H,VS2,62.7,58,5824,7.01,6.97,4.38
1,Ideal,G,VS2,62.3,56,5824,6.38,6.36,3.97
0.91,Very Good,D,VS2,59.6,58,5825,6.32,6.34,3.77
1.19,Good,F,SI1,57.6,60,5825,6.98,7.02,4.03
1.21,Very Good,H,SI1,62.4,58,5826,6.83,6.79,4.25
1.01,Premium,H,VS1,62.1,62,5826,6.36,6.32,3.94
1.03,Premium,G,VS2,63,59,5826,6.45,6.4,4.05
1.2,Ideal,G,SI2,61.1,57,5826,6.86,6.83,4.18
0.9,Ideal,F,VS2,60.8,57,5828,6.22,6.24,3.79
1.01,Ideal,H,SI2,59.1,59,5828,6.58,6.61,3.9
1.13,Ideal,D,SI1,61.8,56,5829,6.68,6.74,4.15
1.01,Good,E,VS2,65.6,55,5829,6.16,6.22,4.06
1,Good,F,VS1,64.8,59,5829,6.17,6.23,4.02
1.15,Very Good,H,VS2,60.3,59,5831,6.75,6.79,4.08
1.14,Ideal,H,VS2,61.6,56,5831,6.68,6.72,4.13
1.16,Good,J,VVS2,61.6,57,5831,6.79,6.85,4.2
1.37,Ideal,J,VS2,63,57,5831,7.11,7.05,4.46
1.17,Premium,H,SI1,58.5,62,5831,6.95,6.9,4.05
1.27,Premium,H,VS2,58.9,61,5832,7.09,7.03,4.16
1.3,Very Good,J,VS2,61.6,56,5832,7.02,7.07,4.34
1.22,Premium,I,VS2,62.3,59,5832,6.79,6.83,4.24
1.01,Ideal,D,SI1,62,57,5832,6.37,6.44,3.97
1.01,Very Good,D,SI1,62.5,61,5832,6.34,6.4,3.98
1.01,Very Good,D,SI1,62.8,60,5832,6.36,6.42,4.01
1.31,Premium,I,VS2,60.4,59,5832,7.16,7.05,4.29
1.33,Premium,I,SI2,62.4,58,5832,7.04,7.02,4.39
1.2,Ideal,H,VS2,63,56,5833,6.74,6.65,4.22
1.2,Very Good,H,VS2,63.2,55,5833,6.74,6.67,4.24
1.05,Ideal,H,VS2,61.7,57,5833,6.55,6.52,4.03
1,Fair,F,VS1,65.3,56,5833,6.28,6.25,4.09
1.5,Good,H,SI2,57.3,62,5833,7.55,7.5,4.31
1.23,Good,I,VS1,63.6,59,5834,6.76,6.85,4.33
1.37,Very Good,I,SI2,62.2,59,5834,7.07,7.17,4.43
1.06,Ideal,F,SI1,61.9,57,5834,6.57,6.54,4.06
1.24,Very Good,I,VS2,62.7,55,5836,6.82,6.87,4.29
1.03,Ideal,D,SI2,60.7,58,5836,6.51,6.53,3.96
1.08,Premium,F,SI1,61.3,57,5836,6.63,6.58,4.05
1.17,Ideal,F,SI1,62.2,56,5837,6.71,6.73,4.18
1.03,Ideal,E,SI1,60.3,55,5837,6.62,6.57,3.98
1.12,Ideal,H,SI1,61.8,56,5838,6.67,6.69,4.13
1.01,Premium,G,VS2,62.1,60,5839,6.35,6.37,3.95
1.01,Very Good,G,VS2,61.6,56,5839,6.4,6.46,3.96
1.02,Very Good,D,SI1,62.7,57,5839,6.42,6.5,4.05
1.08,Ideal,H,VS2,62.1,56,5839,6.59,6.56,4.08
1.02,Ideal,E,SI1,62.2,54.7,5840,6.44,6.47,4.01
1,Fair,F,VS2,64.9,56,5840,6.26,6.31,4.08
0.74,Ideal,D,VVS2,61.4,56,5841,5.82,5.87,3.58
1.23,Premium,F,SI2,59.9,58,5841,7.02,6.96,4.19
1.17,Ideal,D,SI2,62.7,57,5842,6.7,6.72,4.21
1.05,Ideal,F,SI1,61.3,54,5842,6.58,6.61,4.04
1,Ideal,F,VS2,62,55,5844,6.43,6.48,4
1.09,Very Good,H,VS1,60.2,61,5845,6.66,6.7,4.02
1.12,Premium,H,VS1,62.1,58,5845,6.6,6.64,4.11
1.5,Fair,J,VS2,64.5,59,5846,7.2,7.07,4.6
1.2,Premium,G,SI2,62.4,58,5846,6.77,6.73,4.21
1.2,Premium,H,SI2,62.3,59,5846,6.82,6.75,4.23
1.2,Premium,F,SI2,62.6,58,5846,6.79,6.73,4.23
1.03,Premium,H,VS1,61.2,58,5849,6.55,6.52,4
1.26,Very Good,H,VS2,63.1,58,5849,6.91,6.81,4.34
1.08,Ideal,H,VS2,61.9,54,5850,6.64,6.61,4.1
1.25,Very Good,F,SI2,58,63,5851,7.16,7.06,4.13
1,Very Good,D,SI1,63.2,60,5851,6.31,6.35,4
1.15,Premium,G,SI1,62.2,56,5851,6.76,6.68,4.18
1.15,Premium,G,SI1,62.6,58,5851,6.71,6.65,4.18
1.33,Ideal,J,VS1,61.3,57,5852,7.08,7.11,4.35
1.16,Ideal,H,SI1,60,60,5852,6.87,6.84,4.11
1,Fair,G,VS1,58.7,67,5853,6.47,6.45,3.79
1.2,Very Good,H,VS1,63.1,57,5853,6.69,6.65,4.2
1,Very Good,H,VS2,61.3,63,5854,6.38,6.4,3.92
1.11,Ideal,H,SI1,61.6,56,5854,6.69,6.73,4.07
1.01,Premium,F,SI1,59.1,56,5854,6.65,6.52,3.89
1.01,Ideal,I,VS2,62.5,56,5855,6.38,6.41,4
0.9,Good,G,IF,61.8,61,5855,6.12,6.17,3.8
1.23,Very Good,I,SI1,63.1,56,5855,6.91,6.79,4.32
1.23,Ideal,I,SI1,62,57,5855,6.91,6.87,4.27
1.36,Premium,I,SI2,62.7,58,5856,7.01,7.08,4.42
1.33,Ideal,J,SI1,62.4,54,5857,7.04,7.07,4.4
1.14,Premium,H,VS2,61.3,59,5858,6.76,6.72,4.13
1.24,Very Good,H,SI2,60,58,5858,6.99,7.05,4.21
1.81,Fair,J,I1,68,57,5859,7.43,7.39,5.04
1,Very Good,G,VS2,61.5,58,5860,6.36,6.39,3.92
1,Good,G,VS2,63.5,59,5860,6.23,6.33,3.99
1.09,Premium,H,VS1,60.2,59,5860,6.71,6.67,4.03
1.01,Premium,D,SI1,61.5,59,5860,6.46,6.39,3.95
1.01,Very Good,H,VS2,61.2,57,5861,6.49,6.41,3.95
1.01,Very Good,F,SI1,62.4,59,5861,6.37,6.42,3.99
1.14,Ideal,H,SI1,60.4,57,5861,6.78,6.83,4.11
1.35,Ideal,J,VS2,61.4,57,5862,7.1,7.13,4.37
1.12,Ideal,H,SI1,62.8,55,5863,6.66,6.61,4.17
1.14,Ideal,I,VS1,61.7,53,5863,6.75,6.77,4.17
1,Good,G,VS1,64.2,61,5863,6.23,6.29,4.02
1.01,Premium,G,VS2,60.7,61,5864,6.46,6.42,3.91
1.01,Premium,G,VS2,61.2,58,5864,6.49,6.46,3.96
1.01,Premium,G,VS2,63,56,5864,6.41,6.35,4.02
1.01,Premium,G,VS2,61.9,59,5864,6.38,6.34,3.94
1.01,Premium,G,VS2,61.6,61,5864,6.46,6.36,3.95
1.01,Premium,G,VS2,61.5,56,5864,6.47,6.41,3.96
1,Good,F,VS2,64,59,5864,6.29,6.25,4.03
1,Premium,F,VS2,62.8,55,5864,6.38,6.35,4
1,Premium,F,VS2,59.9,59,5864,6.46,6.42,3.86
1.01,Premium,G,VS2,60.7,60,5864,6.49,6.45,3.93
1.01,Premium,G,VS2,62.1,59,5864,6.43,6.38,3.98
1.01,Premium,G,VS2,60.2,59,5864,6.55,6.48,3.92
1.1,Ideal,I,VS1,62.3,55,5864,6.64,6.6,4.12
1.21,Very Good,I,VS1,59.4,60,5865,6.9,6.97,4.12
1,Very Good,E,SI1,60.1,60,5865,6.45,6.49,3.89
1.21,Very Good,I,VS1,61.2,58,5866,6.85,6.91,4.21
1.24,Ideal,J,VS1,61.6,57,5866,6.89,6.93,4.26
1.24,Ideal,I,SI2,61.8,58,5866,6.85,6.9,4.25
1.08,Ideal,H,SI1,60,58,5867,6.69,6.66,4.01
1.2,Very Good,H,SI1,62.4,57,5868,6.76,6.8,4.23
1.1,Ideal,G,SI1,62.2,56.6,5868,6.56,6.6,4.09
1.2,Premium,G,SI1,62.5,60,5868,6.74,6.68,4.21
1.31,Premium,I,SI1,63,57,5869,6.96,6.91,4.37
1.21,Very Good,H,SI1,63.1,60,5871,6.74,6.69,4.24
1.18,Good,D,SI2,59.7,61,5871,6.83,6.88,4.09
1.68,Good,E,I1,64.3,60,5871,7.48,7.44,4.8
1.21,Premium,H,SI1,62.5,60,5871,6.77,6.7,4.21
1.04,Good,F,SI1,63.6,59,5871,6.4,6.36,4.06
1.07,Premium,D,SI1,61.8,61,5872,6.57,6.54,4.05
1.07,Ideal,D,SI1,61.8,55,5872,6.59,6.54,4.06
1.31,Premium,J,SI1,59.6,59,5876,7.16,7.13,4.26
1.06,Ideal,E,SI1,58.8,57,5877,6.71,6.66,3.93
1.28,Premium,H,VS2,59.4,60,5878,7.07,7.03,4.19
0.93,Ideal,G,IF,62.2,58,5879,6.25,6.22,3.88
0.95,Ideal,E,VS1,61.5,57,5879,6.3,6.28,3.87
1,Premium,D,SI1,61.3,61,5880,6.52,6.39,3.96
1,Premium,D,SI1,59.6,57,5880,6.54,6.44,3.87
1.25,Ideal,H,SI2,62.8,55,5880,6.87,6.82,4.3
1.2,Very Good,F,SI2,62.8,57,5880,6.73,6.78,4.24
1.2,Ideal,I,VS2,61.5,57,5880,6.8,6.75,4.17
1,Ideal,D,SI1,60.6,56,5880,6.54,6.5,3.95
1,Premium,D,SI1,60.3,59,5880,6.47,6.44,3.89
1,Premium,D,SI1,62.5,59,5880,6.38,6.32,3.97
1,Premium,D,SI1,61.4,58,5880,6.43,6.37,3.93
1,Ideal,D,SI1,62.2,56,5880,6.38,6.35,3.96
1,Ideal,E,SI1,61.6,55,5880,6.45,6.43,3.97
1,Ideal,D,SI1,60.5,57,5880,6.52,6.48,3.93
1.01,Ideal,H,VS1,62.6,57,5882,6.4,6.37,4
1.01,Fair,E,VS2,65.3,59,5882,6.15,6.1,4
1.21,Ideal,H,VS2,62.2,55,5882,6.84,6.79,4.24
1.21,Ideal,H,VS2,62.8,55,5882,6.79,6.74,4.25
1.04,Premium,F,SI1,59.5,60,5882,6.62,6.59,3.93
1.04,Ideal,F,SI1,61.3,56,5882,6.55,6.5,4
1.01,Premium,E,VS2,59.3,59,5882,6.59,6.54,3.89
1.04,Premium,H,VS1,59.7,59,5882,6.64,6.59,3.95
1.01,Premium,E,VS2,59.5,60,5882,6.3,6.24,3.73
1,Very Good,H,VS2,64.7,56,5883,6.23,6.29,4.05
1.03,Premium,H,VS1,62.4,60,5883,6.48,6.43,4.03
1.2,Very Good,I,VS2,61.7,59,5884,6.83,6.88,4.23
1.03,Very Good,I,SI2,63.5,58,5884,6.38,6.4,4.06
1.2,Very Good,H,SI2,61.5,58,5884,6.78,6.84,4.19
1.2,Ideal,I,VS2,62.5,56,5884,6.66,6.74,4.19
1.21,Very Good,E,SI1,61,60,5885,6.83,6.88,4.18
1.27,Ideal,J,VS1,61.4,59,5885,6.95,6.97,4.27
1.13,Premium,H,VS2,60.6,58,5885,6.81,6.72,4.1
1.13,Ideal,H,VS2,62,57,5885,6.7,6.66,4.14
1.13,Premium,H,VS2,62.4,58,5885,6.66,6.61,4.14
1.01,Very Good,G,VS2,60,57,5886,6.53,6.6,3.94
0.92,Ideal,H,VVS1,62.1,54,5886,6.26,6.23,3.88
1.05,Premium,H,VS1,60.1,57,5886,6.62,6.59,3.97
0.9,Very Good,E,VS2,61.3,58,5887,6.16,6.23,3.8
1,Ideal,G,VS2,62.3,56,5887,6.37,6.41,3.98
1,Ideal,G,VS2,62.3,56,5887,6.43,6.32,3.97
1,Premium,G,VS2,61,59,5887,6.41,6.37,3.9
1.28,Ideal,G,SI2,61.4,57,5888,6.96,6.99,4.28
1.1,Ideal,H,VS2,61.3,56,5888,6.64,6.67,4.08
1.09,Premium,G,VS2,59.9,56,5889,6.73,6.59,3.99
1.06,Ideal,H,VS2,62.5,57,5889,6.49,6.47,4.05
1.06,Premium,H,VS2,62,58,5889,6.57,6.5,4.05
1.21,Premium,D,SI2,62.2,60,5889,6.8,6.83,4.24
1.24,Premium,I,VS2,60.1,59,5889,7.02,6.95,4.2
1.06,Premium,H,VS2,62.6,58,5889,6.54,6.49,4.08
1.23,Good,H,SI1,63.9,56,5889,6.81,6.77,4.34
1.24,Ideal,F,SI2,61.7,57,5889,6.95,6.88,4.27
1.24,Premium,I,VS2,62.1,55,5889,6.91,6.87,4.28
1.23,Ideal,H,SI1,63,56,5889,6.83,6.79,4.29
1.24,Premium,F,SI2,61.4,58,5889,6.94,6.9,4.25
1.02,Premium,D,SI1,62.3,59,5890,6.38,6.42,3.99
1.15,Ideal,D,SI2,61.7,57,5891,6.72,6.76,4.16
1.17,Ideal,I,VS1,61.5,57,5892,6.74,6.79,4.16
1.21,Premium,J,VVS1,61.3,59,5893,6.81,6.86,4.19
0.99,Premium,F,VS2,62.6,55,5893,6.5,6.35,4.02
1.21,Good,H,SI1,63.6,56,5893,6.63,6.68,4.23
1.23,Ideal,F,SI2,62.3,58,5894,6.8,6.84,4.25
1.04,Premium,E,SI1,61.2,59,5894,6.54,6.47,3.98
1.01,Very Good,H,VS2,60.2,60,5897,6.46,6.5,3.9
0.9,Ideal,D,VS2,63,57,5897,6.14,6.09,3.85
1.29,Good,J,VS2,58.2,61,5898,7.07,7.12,4.13
1.01,Premium,G,VS1,61.7,59,5898,6.38,6.33,3.92
1.16,Ideal,D,SI2,62.1,54,5898,6.79,6.74,4.2
1.14,Good,E,SI1,60.9,64,5899,6.78,6.68,4.09
1.2,Premium,H,SI1,62.4,59,5899,6.73,6.7,4.19
1.26,Premium,G,SI2,59.1,59,5899,7.09,7.05,4.18
1.01,Very Good,F,VS2,62.9,56,5902,6.38,6.41,4.02
1.01,Good,F,VS2,60.1,60,5902,6.46,6.51,3.9
1.5,Very Good,J,SI2,58.7,60,5902,7.46,7.54,4.4
1.21,Ideal,H,VS1,62,57,5902,6.79,6.75,4.19
1.25,Premium,H,VS2,61.9,58,5902,6.9,6.84,4.25
1.24,Ideal,H,SI2,62,56,5902,6.9,6.87,4.27
1.24,Ideal,I,SI1,62.1,56,5902,6.88,6.84,4.26
1.01,Very Good,H,VS1,59.1,59,5904,6.5,6.59,3.87
1.09,Ideal,I,VS2,61.8,57,5904,6.55,6.59,4.06
1,Good,G,VS1,64.4,58,5906,6.23,6.29,4.03
1.03,Premium,E,VS2,61.3,61,5906,6.53,6.46,3.98
0.9,Ideal,H,VS1,60.4,57,5907,6.27,6.29,3.79
1.16,Ideal,G,SI1,61.8,55,5908,6.75,6.78,4.18
1.11,Premium,E,SI1,61.3,58,5908,6.66,6.61,4.07
1.08,Premium,E,SI1,59.6,60,5908,6.73,6.66,3.99
1,Fair,G,VS1,64.4,56,5908,6.31,6.26,4.05
1.07,Ideal,F,SI1,60.6,57,5909,6.62,6.67,1.07
1.22,Premium,J,VS1,61.7,59,5910,6.92,6.85,4.25
1.01,Very Good,H,VS2,59.7,64,5911,6.45,6.48,3.86
1.13,Ideal,H,SI1,61.9,60,5911,6.63,6.65,4.11
1.16,Ideal,D,SI1,62,56,5911,6.76,6.73,4.18
1.38,Premium,J,SI1,59,59,5912,7.38,7.32,4.34
1.33,Very Good,J,VS2,63.9,57,5913,6.91,6.96,4.43
1.2,Good,D,SI1,63.5,55,5913,6.7,6.78,4.28
1,Premium,H,VVS2,61.4,59,5914,6.49,6.45,3.97
1.1,Very Good,H,VS2,61.3,58,5914,6.63,6.74,4.1
2,Fair,H,I1,69.8,54,5914,7.6,7.56,5.29
1.05,Ideal,D,SI1,61.7,56,5914,6.53,6.59,4.05
1.05,Ideal,D,SI1,62.8,57,5914,6.46,6.48,4.06
1,Very Good,G,VVS2,63.5,55,5914,6.36,6.3,4.02
1,Ideal,F,VVS2,61.3,56,5914,6.44,6.41,3.94
1,Very Good,E,VS1,63.2,53,5914,6.4,6.33,4.02
1.2,Good,E,VS2,63.7,57,5914,6.71,6.64,4.25
1.65,Fair,J,SI1,61.6,66,5914,7.61,7.47,4.66
1.2,Ideal,I,VS2,62.1,57,5914,6.78,6.71,4.19
1.5,Premium,G,I1,60.3,61,5914,7.39,7.34,4.44
1.5,Good,J,SI1,64,56,5914,7.21,7.16,4.6
1.11,Very Good,D,SI1,61.6,57,5915,6.66,6.59,4.08
1.02,Ideal,G,VS2,62.6,58,5915,6.43,6.39,4.01
1.31,Very Good,I,SI2,62.7,58,5916,6.88,6.94,4.33
1.52,Fair,J,SI2,65.8,57,5916,7.18,7.11,4.7
1.05,Very Good,G,VS2,61.7,55,5917,6.5,6.56,4.03
1.2,Very Good,G,SI1,62.9,57,5918,6.73,6.79,4.25
1.02,Premium,D,SI1,60.6,59,5918,6.53,6.47,3.94
1.01,Very Good,G,VS2,61.6,58,5919,6.4,6.45,3.96
1.01,Very Good,G,VS2,59.1,58,5919,6.56,6.63,3.9
1.01,Very Good,G,VS2,63,57,5919,6.35,6.42,4.02
1.35,Premium,I,SI2,62.3,59,5919,7.09,7.03,4.4
1.51,Fair,H,SI2,66.9,57,5919,7.13,7.09,4.75
1.51,Fair,F,SI2,65.4,56,5919,7.2,7.08,4.67
1,Good,G,VS1,63.9,55,5920,6.28,6.34,4.03
1.28,Very Good,I,SI1,63.6,54,5920,6.87,6.9,4.38
1.21,Premium,E,SI2,61.7,59,5920,6.83,6.78,4.2
1.32,Premium,I,SI2,58.4,60,5921,7.24,7.15,4.2
1,Good,G,VS1,58.6,62,5921,6.5,6.53,3.82
1.18,Premium,I,VS1,62.1,58,5921,6.76,6.7,4.18
1.21,Very Good,D,SI2,60.9,58,5922,6.83,6.89,4.18
1.02,Good,G,VS2,63.6,57,5922,6.41,6.38,4.07
1.02,Ideal,G,VS2,62.6,57,5922,6.43,6.41,4.02
1.09,Ideal,F,SI1,62,56,5922,6.61,6.59,4.09
1.09,Ideal,F,SI1,62,56,5922,6.61,6.56,4.08
1.27,Good,I,VS2,63.3,63,5923,6.82,6.87,4.33
1.01,Premium,F,VS2,59.7,60,5923,6.41,6.38,3.82
1.03,Very Good,D,SI1,62.5,59,5924,6.45,6.48,4.04
1.29,Premium,H,SI2,60.1,58,5924,7.02,6.95,4.2
1.14,Premium,F,SI1,61.1,59,5925,6.7,6.75,4.11
1.14,Premium,F,SI1,59.6,58,5925,6.78,6.8,4.05
1.27,Ideal,J,VS2,62.9,54,5925,6.87,6.9,4.33
1.25,Premium,I,VS2,62.2,57,5925,6.92,6.84,4.28
1.29,Ideal,H,SI2,62.1,57,5926,6.95,6.93,4.31
1.08,Good,D,SI1,63.8,59,5927,6.47,6.39,4.1
1.05,Premium,G,VS2,62.5,55,5927,6.59,6.54,4.1
1.05,Premium,D,SI1,60.5,56,5927,6.7,6.59,4
1,Ideal,F,VS2,62.1,57,5929,6.34,6.38,3.95
1,Ideal,D,SI1,59.9,56,5929,6.51,6.54,3.91
1,Very Good,H,VVS2,60.3,59,5929,6.41,6.46,3.88
1,Very Good,F,VS2,62.9,59,5929,6.3,6.33,3.97
1,Very Good,F,VS2,58.7,62,5929,6.51,6.6,3.85
1,Good,F,VS2,63.7,59,5929,6.27,6.32,4.01
1.23,Premium,E,SI2,62.5,58,5929,6.86,6.81,4.27
1.02,Very Good,F,SI1,62.9,56,5930,6.39,6.43,4.03
0.3,Ideal,F,VS2,62.3,57,605,4.3,4.33,2.69
0.3,Ideal,G,VS1,61.4,55,605,4.31,4.36,2.66
0.3,Ideal,G,VS1,61.5,57,605,4.31,4.34,2.66
0.3,Premium,G,VS1,61.3,58,605,4.29,4.33,2.64
0.3,Ideal,F,VS2,60.7,57,605,4.29,4.34,2.62
0.3,Ideal,G,VS1,61.8,55,605,4.31,4.33,2.67
0.3,Very Good,G,VS1,62.9,60,605,4.18,4.22,2.64
0.3,Premium,G,VS1,61.8,60,605,4.29,4.32,2.66
0.3,Ideal,H,VVS2,60.4,56,605,4.32,4.36,2.62
0.3,Good,G,VS1,63.8,55,605,4.25,4.28,2.72
0.3,Ideal,F,VS2,61.6,57,605,4.28,4.32,2.65
0.3,Ideal,F,VS2,61.3,55,605,4.3,4.32,2.64
0.3,Premium,G,VS1,61.9,59,605,4.28,4.32,2.66
0.3,Very Good,H,VVS2,63,56,605,4.23,4.28,2.68
0.3,Premium,H,VVS2,61.5,58,605,4.28,4.3,2.64
0.3,Ideal,G,VS1,62.3,56,605,4.29,4.32,2.68
0.3,Premium,F,VS2,62.5,58,605,4.29,4.32,2.69
0.3,Ideal,F,VS2,60.7,56,605,4.32,4.34,2.63
0.3,Good,H,VVS2,63.1,60,605,4.24,4.28,2.69
0.3,Good,G,VS1,63.6,54,605,4.25,4.31,2.72
0.3,Ideal,G,VS1,62.5,57,605,4.29,4.32,2.69
0.3,Very Good,G,VS1,61.2,59,605,4.28,4.32,2.63
0.3,Premium,H,VVS2,62,58,605,4.3,4.35,2.68
0.3,Very Good,G,VS1,61.4,58,605,4.32,4.35,2.66
0.3,Premium,G,VS1,61.4,60,605,4.3,4.33,2.65
0.3,Very Good,H,VVS2,60.6,58,605,4.33,4.35,2.63
0.3,Ideal,G,VS1,62.2,55,605,4.28,4.31,2.67
0.3,Ideal,H,VVS2,61.6,55,605,4.3,4.34,2.66
0.3,Good,G,VS1,63.1,56,605,4.24,4.26,2.68
0.3,Very Good,F,VS2,62.9,57,605,4.27,4.29,2.69
1.15,Ideal,I,VS1,61.3,56,5930,6.74,6.76,4.14
1.22,Premium,H,VS2,62.7,58,5930,6.77,6.73,4.23
1.21,Very Good,I,VS2,62,57,5931,6.78,6.83,4.22
1.15,Very Good,D,SI1,61.7,58,5932,6.69,6.76,4.15
1.05,Ideal,I,VVS2,61.8,53,5932,6.56,6.57,4.06
1.25,Ideal,H,SI2,62.2,55.4,5932,6.89,6.94,4.29
1.01,Ideal,F,SI1,61.7,56,5932,6.45,6.48,3.99
1.09,Ideal,E,SI1,61.1,55,5935,6.66,6.7,4.08
1,Ideal,E,SI1,62.9,56,5935,6.33,6.38,4
1.15,Good,H,VS1,64.3,54,5935,6.66,6.62,4.27
1.01,Ideal,H,VS2,61.7,56,5936,6.45,6.47,3.98
1.13,Ideal,D,SI1,61.8,56,5936,6.74,6.68,4.15
1.21,Ideal,H,SI1,62,56,5936,6.86,6.81,4.24
1.26,Ideal,G,SI2,60.9,55,5937,7,7.05,4.28
1.19,Ideal,F,SI1,62.1,56,5937,6.81,6.84,4.24
1.24,Ideal,H,SI2,59.5,61,5937,6.98,7.03,4.17
1.14,Ideal,H,VS2,61.6,56,5937,6.72,6.68,4.13
1.14,Premium,H,VS2,61.7,60,5937,6.74,6.67,4.14
1.14,Ideal,H,VS2,61.7,57,5937,6.73,6.68,4.14
1.5,Premium,H,SI2,60.2,59,5937,7.43,7.35,4.45
1,Very Good,F,VS2,62.1,58,5938,6.36,6.45,3.96
1.23,Ideal,H,SI1,62.3,57,5938,6.85,6.89,4.28
1.11,Ideal,E,SI2,61.4,58,5938,6.63,6.66,4.08
1,Ideal,E,SI1,61.7,55,5938,6.44,6.49,3.99
1,Very Good,G,VS2,61.2,56,5939,6.47,6.38,3.93
1.01,Premium,D,SI1,62.3,60,5939,6.4,6.35,3.97
1.01,Premium,D,SI1,61.6,58,5939,6.47,6.42,3.97
1.01,Ideal,D,SI1,62,57,5939,6.44,6.37,3.97
1.01,Premium,D,SI1,62.8,60,5939,6.42,6.36,4.01
1.01,Ideal,D,SI1,60.8,56,5939,6.54,6.48,3.96
1.01,Very Good,G,VS2,63.1,57,5939,6.39,6.35,4.02
1,Premium,G,VS2,61.6,58,5940,6.39,6.43,3.95
1,Very Good,G,VS2,63,58,5940,6.33,6.4,4.01
1.23,Good,I,VS1,63.6,59,5940,6.85,6.76,4.33
1,Premium,G,VS1,62.9,55,5940,6.39,6.33,4
1.2,Very Good,I,VS2,60.5,60,5941,6.86,6.93,4.17
1.06,Premium,F,VS2,61.2,57,5942,6.64,6.49,4.02
1.02,Good,G,VS2,63.7,57,5943,6.24,6.31,4
1.01,Very Good,G,VS2,61.4,59,5944,6.42,6.48,3.96
1.22,Premium,H,VS2,61.4,62,5944,6.92,6.76,4.22
1.17,Ideal,F,SI1,62.2,56,5944,6.73,6.71,4.18
1.06,Ideal,D,SI1,62.7,54,5946,6.52,6.55,4.1
1.01,Premium,G,VS2,62.1,60,5946,6.37,6.35,3.95
1.01,Premium,G,VS2,59,61,5946,6.62,6.56,3.89
1.01,Premium,G,VS2,61.8,59,5946,6.45,6.4,3.97
1.01,Ideal,G,VS2,62.4,56,5946,6.42,6.39,4
0.99,Ideal,F,VS1,61,55,5947,6.46,6.52,3.96
1.25,Premium,D,SI2,63,62,5947,6.86,6.82,4.3
1.2,Premium,D,SI2,61.4,60,5947,6.85,6.79,4.19
1.2,Premium,G,SI1,61.5,61,5947,6.84,6.78,4.19
1.03,Very Good,D,SI1,61.2,54,5948,6.53,6.61,4.02
1.21,Ideal,H,SI1,62.4,56,5948,6.85,6.8,4.26
1.21,Premium,H,SI1,62.5,58,5948,6.75,6.72,4.21
1.17,Ideal,D,SI2,62.7,57,5949,6.72,6.7,4.21
1.28,Premium,H,SI2,61.9,56,5949,7.02,6.94,4.32
1.09,Very Good,H,SI1,62.5,57,5950,6.49,6.54,4.07
1.25,Premium,H,SI2,62.1,58,5950,6.93,6.86,4.28
1.25,Premium,H,SI2,60.4,59,5950,7.02,6.95,4.22
1.01,Fair,G,VS2,65.1,56,5950,6.2,6.15,4.02
1.3,Premium,J,VS2,61.5,58,5951,7.05,7,4.32
1.02,Good,G,VS1,64.3,57,5951,6.28,6.34,4.06
1.05,Premium,E,SI1,62.5,59,5951,6.5,6.43,4.04
1.09,Premium,H,VS1,60.2,61,5951,6.7,6.66,4.02
1.23,Ideal,H,SI2,60.6,57,5951,6.98,6.94,4.22
1.05,Very Good,D,SI1,59.3,59,5952,6.63,6.69,3.95
1.12,Premium,H,VS1,62.1,58,5952,6.64,6.6,4.11
1.04,Ideal,D,SI1,61.7,57,5952,6.55,6.51,4.03
1.27,Very Good,I,SI1,63.1,59,5953,6.83,6.87,4.32
1.01,Good,E,VS2,63.4,56,5954,6.35,6.37,4.03
1.2,Very Good,I,VS2,62.3,56,5955,6.76,6.81,4.23
1.2,Very Good,I,SI1,62.9,54,5955,6.75,6.77,4.25
1.02,Premium,E,SI1,61.4,58,5956,6.48,6.45,3.97
1.19,Very Good,E,SI1,58,63,5956,6.9,6.97,4.02
1.1,Premium,G,VS1,62.2,59,5958,6.61,6.57,4.1
1.32,Premium,H,VS1,61.3,58,5958,7.09,7.01,4.32
1.22,Ideal,I,VS2,62.5,57,5960,6.83,6.9,4.29
1.11,Ideal,E,SI2,60.6,56,5962,6.76,6.78,4.1
1.3,Ideal,H,VS1,62.2,57,5962,7.01,6.98,4.35
1.21,Premium,I,VS2,62.3,58,5962,6.82,6.79,4.24
1.36,Premium,I,SI2,62.7,58,5963,7.08,7.01,4.42
1.01,Premium,G,VVS2,61.5,61,5963,6.44,6.38,3.94
1.04,Very Good,G,VS2,61.3,58,5964,6.45,6.53,3.98
1.2,Ideal,E,SI2,62.5,55,5964,6.77,6.84,4.25
1.22,Very Good,I,VS1,61.6,60,5966,6.86,6.8,4.21
1.12,Very Good,D,SI1,62.2,59,5966,6.65,6.67,4.14
1.07,Premium,G,VS1,59.6,58,5967,6.66,6.7,3.98
1,Premium,G,VS2,61.5,58,5967,6.39,6.36,3.92
1,Very Good,G,VS2,63.5,59,5967,6.33,6.23,3.99
1,Premium,G,VS2,60,59,5967,6.52,6.47,3.9
1,Premium,G,VS2,63,59,5967,6.45,6.32,4.02
1,Ideal,G,VS2,62.6,57,5967,6.47,6.4,4.03
1.35,Ideal,J,VS2,61.4,57,5969,7.13,7.1,4.37
1.38,Ideal,J,SI2,62.6,56,5969,7.05,7.16,4.45
1.24,Premium,D,SI2,59.1,59,5969,7.03,6.98,4.14
1.01,Good,E,VS2,61.2,62,5972,6.34,6.38,3.89
1.24,Premium,I,SI1,58.9,59,5972,7.08,7.02,4.15
1.21,Ideal,H,SI1,61.2,57,5973,6.86,6.93,4.22
1.01,Ideal,E,SI1,62.2,57,5973,6.41,6.35,3.97
1.01,Very Good,E,SI1,63.1,57,5973,6.4,6.37,4.03
1.01,Premium,E,SI1,60,59,5973,6.53,6.47,3.9
1.55,Very Good,E,I1,61.6,58,5974,7.42,7.52,4.6
1.03,Ideal,F,SI1,62,56,5974,6.47,6.5,4.02
1.07,Premium,F,VS2,61.6,60,5974,6.56,6.53,4.03
1.25,Premium,I,VS2,61,59,5975,6.89,6.98,4.23
1.25,Very Good,I,VS2,62.7,58,5975,6.74,6.95,4.29
1.25,Ideal,J,VVS2,61.1,57,5975,6.91,6.94,4.23
1.01,Very Good,F,SI1,61.3,60,5975,6.39,6.43,3.93
1.2,Good,H,SI1,63.6,57,5975,6.79,6.74,4.3
1.2,Premium,G,VS1,62.9,59,5975,6.75,6.69,4.23
1.2,Premium,H,SI1,62.9,55,5975,6.77,6.74,4.25
1.26,Very Good,E,SI2,62.9,59,5976,6.82,6.85,4.3
1.24,Ideal,I,SI1,61.1,60,5976,6.94,6.91,4.23
1.24,Ideal,I,SI1,62.4,57,5976,6.89,6.87,4.29
1.02,Very Good,H,VS1,63.1,57,5977,6.38,6.44,4.04
1.02,Premium,G,VS2,62.6,59,5978,6.39,6.43,4.01
0.9,Ideal,G,VVS1,62.8,56,5978,6.12,6.18,3.86
1.22,Very Good,I,VS2,63.3,57,5979,6.74,6.82,4.29
1.51,Good,D,I1,57,64,5979,7.48,7.53,4.28
1.23,Premium,H,VS2,59.3,58,5979,7,6.94,4.13
1.25,Ideal,J,VVS2,62.1,56,5980,6.81,6.84,4.24
0.94,Premium,D,VS1,62.3,58,5980,6.34,6.28,3.93
1.21,Premium,F,SI2,59,60,5982,6.94,6.99,4.11
1.07,Ideal,F,SI1,62.7,56,5982,6.47,6.53,4.08
0.95,Ideal,E,VS1,61.5,57,5983,6.28,6.3,3.87
1.06,Premium,D,SI1,58.9,61,5983,6.69,6.63,3.92
1.26,Premium,I,VS2,61,59,5983,6.97,6.91,4.23
1,Good,E,VS2,63.3,59,5984,6.29,6.34,4
1.28,Very Good,H,SI2,60.2,58,5984,7.03,7.13,4.26
1.22,Ideal,H,SI1,61.9,56,5985,6.86,6.83,4.24
1.2,Very Good,I,VS2,62.1,60,5986,6.78,6.72,4.19
1.14,Premium,H,VS2,60.2,58,5986,6.74,6.81,4.08
1.01,Good,D,VS2,60.1,64,5986,6.36,6.32,3.81
1.44,Good,G,I1,63.2,54.8,5987,7.18,7.21,4.54
1.05,Very Good,G,VS2,63,57,5987,6.48,6.51,4.09
1,Very Good,D,SI1,59.3,61,5987,6.45,6.5,3.84
1.01,Very Good,F,VS2,61.4,54,5988,6.4,6.47,3.95
1.01,Very Good,F,VS2,59.9,61,5988,6.46,6.5,3.88
1.01,Good,H,VVS2,63.3,57,5988,6.35,6.39,4.03
1.01,Premium,F,VS2,62.1,60,5988,6.36,6.43,3.97
1.01,Premium,F,VS2,62.7,58,5988,6.39,6.4,4.01
1.01,Very Good,F,VS2,61.1,56,5988,6.49,6.56,3.99
1.01,Good,F,VS2,63.6,59,5988,6.32,6.36,4.03
1.01,Good,F,VS2,63.2,58,5988,6.33,6.36,4.01
1.2,Premium,F,SI2,62.8,57,5988,6.78,6.73,4.24
1.21,Very Good,H,SI2,61.1,55.7,5989,6.87,6.92,4.21
0.92,Ideal,G,VS2,62,57,5989,6.21,6.24,3.86
1.15,Ideal,H,VS2,62.6,57,5989,6.75,6.69,4.21
1.54,Good,I,SI2,57.9,62,5989,7.63,7.5,4.38
1.16,Ideal,E,SI2,61.9,55,5991,6.71,6.77,4.17
0.93,Ideal,E,SI1,61.9,56,5992,6.24,6.27,3.87
1.09,Premium,H,VS2,62.3,57,5993,6.63,6.53,4.1
1.82,Fair,H,I1,67.3,58,5993,7.5,7.47,5.04
1.05,Ideal,H,VS2,61.4,55,5993,6.53,6.57,4.02
1.04,Ideal,H,VS2,61.8,55,5994,6.51,6.52,4.03
1.54,Ideal,I,SI2,61.4,55,5994,7.52,7.43,4.59
1.01,Ideal,G,VS2,61.7,57,5995,6.48,6.45,3.99
1.28,Ideal,G,SI2,61.4,57,5995,6.99,6.96,4.28
1.01,Very Good,G,VS1,63.1,57,5995,6.38,6.33,4.01
1.21,Ideal,F,SI2,61.8,57,5996,6.82,6.87,4.23
1.2,Ideal,G,SI1,60.5,56,5996,6.84,6.87,4.15
1.33,Ideal,J,SI1,62.5,56,5996,7.05,6.99,4.39
1.29,Premium,G,SI2,62,58,5996,7.03,6.97,4.34
1.22,Premium,H,SI1,62.4,58,5997,6.82,6.77,4.24
0.96,Very Good,E,VS2,58.7,58,5997,6.47,6.51,3.81
1.21,Premium,D,SI2,62.2,60,5997,6.83,6.8,4.24
1.26,Ideal,H,SI2,61,56,5998,6.99,6.95,4.25
1.26,Premium,H,SI2,58.6,59,5998,7.09,7.04,4.14
1.02,Premium,D,SI1,62.5,59,5998,6.4,6.34,3.98
1.7,Very Good,F,I1,63.1,56,5998,7.62,7.51,4.78
1.02,Premium,G,VS2,62.7,61,5998,6.39,6.34,3.99
1.02,Premium,D,SI1,62.3,59,5998,6.42,6.38,3.99
1.26,Very Good,F,SI2,63.4,55,5998,6.92,6.9,4.38
1.02,Premium,D,SI1,60.6,59,5998,6.53,6.47,3.94
1.01,Very Good,G,VS2,59.2,59,5999,6.52,6.59,3.88
1.01,Good,G,VS2,63.1,59,5999,6.37,6.4,4.03
1.01,Premium,G,VS2,62.4,58,5999,6.38,6.41,3.99
1.01,Ideal,G,VS2,61.8,56,5999,6.42,6.45,3.98
1,Premium,G,VS1,60.9,60,6000,6.51,6.41,3.91
1.2,Very Good,H,VS2,63.3,57,6000,6.78,6.68,4.26
1.26,Very Good,G,SI2,61.3,55,6001,6.94,7,4.27
1.21,Premium,J,VVS1,61.3,59,6001,6.86,6.81,4.19
1.07,Very Good,D,SI1,60.2,55,6002,6.64,6.68,4.01
2.03,Fair,H,I1,64.4,59,6002,7.91,7.85,5.07
2.03,Fair,H,I1,66.6,57,6002,7.81,7.75,5.19
0.8,Ideal,D,VVS2,61.9,56,6004,5.91,5.95,3.67
1.01,Good,E,VS2,65.4,56,6004,6.18,6.23,4.06
1.23,Ideal,G,SI2,58.8,60,6005,7.01,7.08,4.14
1.13,Premium,H,VS1,58.9,58,6005,6.81,6.78,4
1,Premium,G,VS1,60.6,59,6006,6.42,6.48,3.91
1.2,Ideal,E,SI2,61.3,56,6006,6.85,6.88,4.21
1.5,Fair,J,SI1,64.9,58,6006,7.09,7.03,4.58
1.5,Good,G,SI2,57.5,63,6006,7.53,7.49,4.32
1.5,Good,G,SI2,57.5,63,6006,7.53,7.49,4.32
1.5,Good,G,SI2,57.9,61,6006,7.52,7.48,4.35
1.02,Very Good,F,VS2,63.3,58,6007,6.36,6.38,4.03
1.27,Very Good,I,VS2,62.6,59,6007,6.86,6.95,4.32
1.73,Fair,H,SI2,65.9,58,6007,7.52,7.45,4.93
1.59,Premium,E,SI2,62.3,58,6010,7.42,7.37,4.61
1.34,Ideal,J,VS1,62,57,6010,7.12,7.04,4.39
1.04,Ideal,G,VS2,62.5,57,6012,6.45,6.54,4.06
1.22,Premium,E,SI2,61.5,58,6012,6.84,6.86,4.21
1.22,Premium,I,VS1,61.1,58,6012,6.84,6.91,4.2
1.22,Ideal,I,SI1,61.7,57,6012,6.85,6.82,4.22
1,Very Good,F,VS2,61.6,56,6013,6.42,6.47,3.97
1.17,Ideal,I,VS1,62.2,53,6013,6.78,6.81,4.23
1.18,Ideal,H,SI1,61.4,55,6013,6.84,6.78,4.18
1.23,Ideal,J,VS2,61.2,57,6015,6.93,6.88,4.23
1.21,Ideal,G,SI2,62,56,6017,6.83,6.81,4.23
1.36,Premium,I,VS2,59.3,58,6017,7.21,7.18,4.27
0.9,Ideal,E,VS2,62.3,57,6018,6.16,6.19,3.85
1.01,Very Good,G,VS2,62.4,58,6019,6.42,6.4,4
1.2,Very Good,H,SI1,58.9,60,6019,6.94,7.02,4.11
1.2,Very Good,H,SI1,62.9,56,6019,6.74,6.8,4.26
1.2,Very Good,H,SI1,62.5,59,6019,6.66,6.72,4.18
1.2,Very Good,H,SI1,61,58,6019,6.84,6.92,4.2
1.2,Very Good,H,SI1,61.2,57,6019,6.78,6.91,4.19
1.2,Very Good,H,SI1,62.1,58,6019,6.72,6.77,4.19
1.01,Ideal,G,VS2,60.8,59,6019,6.52,6.5,3.96
1.01,Ideal,G,VS2,62.5,57,6019,6.43,6.4,4.01
1,Good,D,SI1,64.1,57,6020,6.32,6.29,4.04
1,Very Good,F,VS1,58.4,63,6021,6.58,6.47,3.81
1.2,Premium,I,VS1,62.8,56,6021,6.8,6.74,4.25
1,Very Good,H,VVS1,62.3,60,6022,6.28,6.36,3.94
1.21,Very Good,H,SI1,62.8,56,6022,6.8,6.83,4.28
1.21,Good,H,SI1,58.2,58,6022,6.98,7.01,4.07
1.07,Premium,G,VS2,60.1,60,6022,6.76,6.6,3.99
1.26,Premium,I,VS2,62.4,58,6023,6.88,6.94,4.31
1.01,Ideal,G,VS2,59.7,57,6024,6.49,6.44,3.86
1.21,Ideal,H,SI1,62.6,53,6025,6.87,6.8,4.28
1.66,Good,F,I1,62.1,57.7,6025,7.56,7.6,4.71
1.21,Good,G,VS1,63.7,57,6025,6.73,6.67,4.27
1.21,Ideal,G,VS1,62.5,57,6025,6.77,6.7,4.21
1.21,Premium,H,SI1,59.5,58,6025,7.02,6.96,4.16
1.2,Premium,G,SI1,63,58,6026,6.72,6.68,4.22
1.01,Premium,G,VS2,61.6,58,6027,6.45,6.4,3.96
1.01,Premium,G,VS2,59.1,58,6027,6.63,6.56,3.9
1.01,Ideal,G,VS2,63,57,6027,6.42,6.35,4.02
1.05,Very Good,G,VS2,60.1,55,6028,6.65,6.73,4.02
1.5,Very Good,F,I1,63.2,57,6028,7.29,7.24,4.59
1,Good,G,VS1,63.9,55,6028,6.34,6.28,4.03
1.25,Ideal,H,SI2,61.6,55,6030,6.89,6.94,4.26
1,Good,F,VS2,62.1,61,6030,6.31,6.38,3.94
1.21,Premium,D,SI2,60.9,58,6031,6.89,6.83,4.18
1.57,Premium,J,SI2,59.6,56,6031,7.59,7.5,4.5
1.27,Very Good,I,VS2,63.3,63,6031,6.87,6.82,4.33
1.25,Good,F,SI2,59,61,6032,7.01,7.06,4.15
1.1,Premium,G,VS2,60.3,57,6032,6.73,6.68,4.04
1.02,Premium,E,VS2,60.3,60,6032,6.58,6.48,3.94
1.14,Premium,F,SI1,61.1,59,6033,6.75,6.7,4.11
1.14,Premium,F,SI1,59.6,58,6033,6.8,6.78,4.05
1.03,Very Good,G,VS2,62.1,57,6036,6.41,6.48,4
1.03,Very Good,G,VS2,62.3,57,6036,6.43,6.51,4.03
1.16,Ideal,H,SI1,62.2,54,6036,6.72,6.75,4.19
1.01,Very Good,F,VS2,58.5,60,6037,6.52,6.54,3.82
1.01,Good,F,VS2,64.1,59,6037,6.16,6.23,3.97
1,Good,F,VS2,63.7,59,6037,6.32,6.27,4.01
1,Premium,H,VVS2,60.3,59,6037,6.46,6.41,3.88
1,Premium,F,VS2,58.7,62,6037,6.6,6.51,3.85
1.23,Premium,F,SI2,61.2,58,6038,6.91,6.84,4.21
1.51,Premium,H,I1,61.9,58,6038,7.39,7.34,4.56
0.99,Ideal,F,SI1,62.1,58,6038,6.33,6.4,3.95
1.23,Very Good,H,VS2,58.5,62,6039,6.98,7,4.09
1.01,Ideal,F,SI1,62.7,54,6039,6.38,6.44,4.02
1,Very Good,D,SI1,61.4,63,6040,6.35,6.41,3.92
1.02,Ideal,D,SI1,61.2,56,6040,6.51,6.56,4
1.07,Ideal,G,VS2,62.2,57,6040,6.55,6.5,4.06
1.07,Premium,G,VS2,62.2,58,6040,6.54,6.48,4.05
1.35,Very Good,I,SI2,61,60,6041,7.09,7.15,4.34
1.15,Premium,D,SI1,61.7,58,6041,6.76,6.69,4.15
1.01,Fair,F,VS2,69,61,6041,6.06,5.99,4.16
1.3,Good,H,SI2,63.7,57,6042,6.94,6.87,4.4
1.01,Very Good,E,VS2,62.6,56,6043,6.39,6.43,4.01
1,Ideal,E,VS2,62,55,6043,6.42,6.38,3.97
1.09,Ideal,E,SI1,61.1,55,6043,6.7,6.66,4.08
1.03,Ideal,F,SI1,61.3,57,6044,6.47,6.53,3.98
1.22,Premium,I,VS2,59.3,59,6045,6.96,7.01,4.14
1.13,Ideal,H,VS2,62,57,6045,6.61,6.69,4.12
1.27,Ideal,G,SI2,61.8,56,6045,6.96,6.93,4.29
1.26,Ideal,G,SI2,60.9,55,6046,7.05,7,4.28
1.22,Premium,D,SI2,62,60,6046,6.8,6.74,4.2
1.23,Ideal,H,SI1,62.3,57,6046,6.89,6.85,4.28
1.51,Good,I,SI1,63.8,57,6046,7.21,7.18,4.59
1.51,Good,I,SI1,63.8,57,6046,7.21,7.18,4.59
1.01,Very Good,G,VS2,61.9,58,6047,6.37,6.42,3.96
1.02,Very Good,F,VS2,61.8,57,6047,6.4,6.44,3.97
1.02,Very Good,D,SI1,62.8,56,6047,6.39,6.44,4.03
1,Premium,F,VS2,62.1,58,6047,6.45,6.36,3.96
1,Premium,G,VS2,60.6,60,6048,6.4,6.3,3.85
1,Premium,G,VS2,61.3,62,6048,6.43,6.32,3.91
1.2,Premium,H,VS2,62.4,57,6048,6.73,6.67,4.18
1,Ideal,E,VS2,61.9,56,6048,6.45,6.4,3.98
1,Premium,G,VS2,63,58,6048,6.4,6.33,4.01
1,Premium,G,VS2,62,57,6048,6.43,6.37,3.97
1,Premium,G,VS2,59.3,60,6048,6.55,6.51,3.87
1,Premium,G,VS2,58.6,61,6048,6.61,6.57,3.86
1.5,Premium,J,SI2,61,60,6048,7.34,7.3,4.46
1,Premium,G,VS2,62.2,58,6048,6.54,6.49,3.94
1.35,Ideal,J,VS1,62.3,54,6048,7.17,7.06,4.43
1,Very Good,G,VS2,63.3,58,6048,6.39,6.27,4.01
1,Premium,G,VS2,61.6,58,6048,6.43,6.39,3.95
0.3,Ideal,G,VS1,61.7,57,605,4.3,4.32,2.66
0.3,Premium,G,VS1,62.2,59,605,4.28,4.31,2.67
0.3,Ideal,F,VS2,62,54,605,4.31,4.34,2.68
0.3,Very Good,H,VVS2,62.9,57,605,4.28,4.31,2.7
0.3,Very Good,G,VS1,62.9,57,605,4.28,4.31,2.7
0.3,Ideal,F,VS2,61.9,55,605,4.31,4.32,2.67
0.3,Very Good,F,VS2,62.9,57,605,4.26,4.29,2.69
0.3,Good,G,VS1,63.6,57,605,4.23,4.26,2.7
0.3,Ideal,H,VVS2,61.1,55,605,4.32,4.36,2.65
0.3,Very Good,F,VS2,62.8,55,605,4.27,4.33,2.7
0.3,Premium,G,VS1,61.9,59,605,4.3,4.32,2.67
0.3,Ideal,G,VS1,61.9,56,605,4.29,4.34,2.67
0.3,Very Good,F,VS2,62.9,57,605,4.29,4.33,2.71
0.3,Good,G,VS1,63.1,59,605,4.25,4.27,2.69
0.3,Very Good,F,VS2,62.8,58,605,4.24,4.29,2.68
0.3,Premium,F,VS2,60.4,58,605,4.31,4.33,2.61
0.3,Ideal,F,VS2,62,55,605,4.31,4.33,2.68
0.3,Very Good,H,VVS2,60.8,58,605,4.34,4.37,2.65
0.3,Ideal,G,VS1,62,54,605,4.3,4.35,2.68
0.3,Ideal,H,VVS2,62.1,56,605,4.28,4.32,2.67
0.3,Ideal,F,VS2,61.4,57,605,4.34,4.36,2.67
0.3,Ideal,G,VS1,59.9,56,605,4.37,4.41,2.63
0.3,Premium,F,VS2,61.5,60,605,4.26,4.29,2.63
0.3,Very Good,G,VS1,62.4,58,605,4.22,4.24,2.64
0.3,Very Good,F,VS2,62.8,58,605,4.25,4.28,2.68
0.3,Premium,H,VVS2,60.8,60,605,4.29,4.33,2.62
0.3,Ideal,G,VS1,61.4,57,605,4.29,4.34,2.65
0.3,Ideal,F,VS2,61.6,57,605,4.3,4.33,2.66
0.3,Good,G,VS1,63.3,56,605,4.26,4.3,2.71
0.3,Premium,F,VS2,61.6,58,605,4.29,4.31,2.65
1.07,Ideal,F,SI1,62.3,53,6049,6.57,6.59,4.1
1,Good,E,VS2,57.4,58,6050,6.57,6.61,3.78
1.12,Premium,H,VS2,60.6,59,6052,6.77,6.7,4.08
1.22,Ideal,J,VS2,61,55,6052,6.92,6.96,4.23
1.18,Very Good,F,SI1,59.9,59,6053,6.85,6.87,4.11
1.2,Premium,F,SI2,59.9,58,6055,6.96,6.9,4.15
1.06,Ideal,D,SI1,62.7,54,6055,6.55,6.52,4.1
1.21,Premium,H,VS1,61.2,60,6056,6.77,6.86,4.17
1.03,Premium,D,SI1,61.2,54,6056,6.61,6.53,4.02
1.02,Good,G,VS2,63.2,57,6058,6.38,6.41,4.04
1.02,Premium,G,VS2,62.7,58,6058,6.4,6.45,4.03
1.02,Very Good,G,VS2,60.5,54,6058,6.48,6.57,3.95
1.02,Very Good,G,VS2,62.1,59,6058,6.41,6.47,4
1.21,Very Good,H,SI1,63.3,57,6058,6.77,6.7,4.26
1.03,Ideal,F,SI1,61.3,56,6059,6.51,6.55,4
1.02,Good,G,VS1,64.3,57,6059,6.34,6.28,4.06
1.12,Ideal,I,VS1,60.9,57,6060,6.7,6.73,4.09
1.06,Ideal,I,VS1,61.8,56,6060,6.5,6.57,4.05
1.07,Ideal,E,SI2,62.5,57,6060,6.56,6.5,4.08
1.32,Fair,I,SI1,64.8,58,6061,6.9,6.83,4.45
1.07,Very Good,F,SI1,61.6,58,6061,6.54,6.6,4.05
1.11,Very Good,H,VS1,63.2,57,6061,6.61,6.53,4.15
1.02,Very Good,G,VS2,63,57,6062,6.37,6.39,4.02
1.17,Very Good,D,SI2,60.9,60,6062,6.72,6.78,4.11
1.06,Very Good,D,SI1,59.3,60,6062,6.64,6.71,3.96
1.22,Ideal,I,SI1,61.7,55.2,6062,6.84,6.9,4.24
1.05,Very Good,D,SI1,59.3,58,6063,6.68,6.74,3.98
1.49,Very Good,F,I1,62.6,53.6,6064,7.28,7.31,4.57
1.02,Ideal,H,VS2,61.8,55,6065,6.48,6.51,4.01
1.11,Ideal,G,SI1,60.8,57,6065,6.83,6.77,4.14
1.21,Premium,E,SI2,58.8,58,6065,7.07,6.91,4.11
1.01,Good,G,VS1,62.7,57,6066,6.33,6.42,4
1.01,Premium,F,VS1,62.6,58,6066,6.37,6.48,4.02
1.01,Ideal,G,VS1,62.4,56,6066,6.37,6.42,3.99
1.01,Good,D,VS2,64.2,60,6066,6.32,6.35,4.07
1.01,Premium,D,SI1,62,60,6066,6.37,6.4,3.96
1.25,Ideal,I,SI1,59.6,59,6066,7.01,7.09,4.2
1.26,Premium,I,SI1,62,58,6068,6.9,6.87,4.27
1.21,Ideal,H,SI1,61.1,57,6069,6.83,6.91,4.2
1.06,Ideal,I,VVS2,62.2,55,6069,6.51,6.55,4.06
1.42,Ideal,I,VS2,62.9,57,6069,7.21,7.07,4.49
1.05,Very Good,G,VS2,62.8,58,6070,6.44,6.48,4.06
1.05,Premium,G,VS2,61.8,58,6070,6.52,6.59,4.05
1.14,Ideal,D,SI1,60.9,56,6070,6.75,6.81,4.13
1.33,Very Good,H,SI2,60.8,59,6071,7.07,7.11,4.31
1.22,Very Good,H,SI1,61.2,60,6071,6.83,6.9,4.2
1.21,Premium,E,SI2,61.9,60,6071,6.78,6.73,4.18
1.03,Premium,E,VS2,62.5,59,6072,6.42,6.44,4.02
1.01,Very Good,F,VS2,61,57,6073,6.42,6.5,3.94
1.01,Very Good,F,VS2,62.3,59,6073,6.37,6.44,3.99
1.25,Very Good,E,SI2,60.8,55,6073,6.94,7,4.24
1,Ideal,D,SI1,62.7,57,6073,6.34,6.38,3.99
1,Good,E,VS2,61.5,62,6073,6.37,6.42,3.93
1.01,Very Good,F,SI1,62.9,57,6075,6.35,6.4,4.01
1.24,Very Good,I,SI1,61.4,59,6075,6.86,6.92,4.23
1.13,Ideal,H,SI1,61.5,56,6075,6.69,6.71,4.12
1.01,Premium,D,SI1,61.8,58,6075,6.42,6.37,3.95
1.18,Ideal,H,SI1,61.6,55.5,6076,6.77,6.85,4.19
1.24,Ideal,I,VS2,62,55,6076,6.9,6.87,4.27
1.07,Premium,G,VS1,61.4,56,6076,6.65,6.61,4.07
1.2,Very Good,H,SI1,60.8,58,6077,6.8,6.85,4.15
1.11,Ideal,I,VS1,61,57,6077,6.68,6.72,4.09
1.08,Ideal,D,SI1,61.8,56,6078,6.62,6.69,4.11
1.33,Fair,G,SI2,63,62,6078,6.9,6.87,4.34
1.19,Premium,H,SI1,61.3,58,6078,6.82,6.78,4.17
1.34,Ideal,H,VS2,61.2,56,6078,7.09,7.05,4.33
1.32,Very Good,J,VS2,62.1,57,6079,7.01,7.04,4.36
1.02,Good,G,VS2,63.8,59,6080,6.34,6.27,4.02
1.01,Fair,D,VS2,65.2,57,6081,6.23,6.19,4.05
1.07,Ideal,H,VS1,62.3,55,6082,6.59,6.54,4.09
1.01,Very Good,F,VS2,62.5,56,6083,6.4,6.44,4.01
1.16,Ideal,H,SI1,61.8,54,6084,6.74,6.81,4.19
1.25,Ideal,J,VVS2,61.1,57,6084,6.94,6.91,4.23
1.25,Premium,I,VS2,61,59,6084,6.98,6.89,4.23
1.32,Very Good,H,SI2,63,59,6085,6.91,6.99,4.38
1.2,Very Good,F,SI2,62.8,55,6085,6.74,6.8,4.25
1.26,Premium,E,SI2,62.9,59,6085,6.85,6.82,4.3
1.19,Very Good,H,VS2,61.1,58,6086,6.81,6.83,4.17
1.52,Premium,H,SI2,62.6,60,6086,7.34,7.3,4.58
1.43,Fair,E,SI2,66,57,6086,7.02,7,4.63
1.12,Ideal,F,SI1,61.6,56,6087,6.66,6.72,4.12
1.02,Premium,G,VS2,62.6,59,6087,6.43,6.39,4.01
0.94,Very Good,G,VVS1,63.3,57,6088,6.21,6.14,3.91
1.35,Very Good,H,SI2,62.2,56,6088,7.02,7.06,4.38
1.23,Ideal,H,SI2,62.1,55.9,6088,6.82,6.85,4.24
1.11,Good,D,SI1,57.8,61,6088,6.83,6.78,3.93
1.51,Good,D,I1,57,64,6088,7.53,7.48,4.28
1.52,Ideal,J,SI2,62.7,56,6089,7.28,7.2,4.54
1.01,Good,F,VS2,62.5,62,6089,6.32,6.38,3.97
1.31,Premium,H,SI2,60,57,6089,7.1,7.07,4.25
1.11,Ideal,I,SI1,61.7,57,6090,6.61,6.64,4.09
2.06,Good,H,I1,64.3,58,6091,8.03,7.99,5.15
1.37,Ideal,J,SI2,62.2,55,6091,7.07,7.11,4.41
1.03,Premium,E,SI1,59.5,60,6091,6.64,6.56,3.93
1.21,Premium,F,SI2,59,60,6092,6.99,6.94,4.11
1.35,Premium,H,VS2,60.5,62,6093,7.16,7.11,4.32
1.28,Premium,I,SI1,62.6,55,6093,6.97,6.93,4.35
1.28,Premium,H,SI2,60.2,58,6093,7.13,7.03,4.26
0.99,Very Good,F,VS2,61.8,57,6094,6.37,6.39,3.94
1.04,Very Good,G,VS2,62.3,54,6095,6.49,6.55,4.06
1.14,Ideal,H,VS2,62.6,56,6095,6.68,6.65,4.17
1.14,Premium,H,VS2,60.2,58,6095,6.81,6.74,4.08
1.54,Ideal,H,SI2,61.8,57,6095,7.43,7.35,4.57
1.24,Ideal,H,SI1,62.5,56,6095,6.92,6.88,4.31
1.31,Premium,H,VS2,59.6,58,6095,7.14,7.08,4.24
1.05,Premium,G,VS2,63,57,6096,6.51,6.48,4.09
1.44,Ideal,G,I1,63.2,55,6096,7.21,7.18,4.54
1.08,Very Good,G,VS2,63.2,60,6096,6.53,6.44,4.1
1.01,Ideal,D,SI1,63,57,6097,6.43,6.34,4.02
1,Premium,G,VS1,60.9,60,6097,6.45,6.42,3.92
1.29,Ideal,I,SI2,61.9,57,6097,6.99,7.04,4.34
1.29,Ideal,J,SI1,61.5,57,6097,7,7.06,4.32
1.01,Premium,F,VS2,59.9,61,6097,6.5,6.46,3.88
1.01,Very Good,H,VVS2,63.3,57,6097,6.39,6.35,4.03
1.01,Premium,F,VS2,61.1,59,6097,6.44,6.35,3.91
1.01,Premium,F,VS2,62,59,6097,6.45,6.38,3.98
1.01,Premium,F,VS2,63,58,6097,6.43,6.36,4.03
1.01,Premium,F,VS2,62.4,58,6097,6.43,6.36,3.99
1.01,Premium,F,VS2,62.7,58,6097,6.4,6.39,4.01
1.01,Good,F,VS2,63.6,59,6097,6.36,6.32,4.03
1.01,Premium,F,VS2,62.1,60,6097,6.43,6.36,3.97
1.21,Premium,I,SI1,61.7,56,6098,6.87,6.82,4.22
1,Very Good,F,VS1,58.1,62,6098,6.57,6.62,3.83
1,Good,F,VS2,63.8,58,6098,6.28,6.32,4.02
1,Very Good,F,VS1,58.4,63,6098,6.58,6.47,3.81
1.2,Very Good,E,SI1,62.6,58,6098,6.73,6.78,4.23
1.12,Very Good,E,SI1,61.3,63,6098,6.68,6.73,4.11
1.21,Ideal,H,SI2,61.1,56,6098,6.92,6.87,4.21
1.21,Premium,H,SI2,58.8,60,6098,6.99,6.95,4.1
1.1,Premium,E,SI1,60.7,55,6098,6.75,6.66,4.07
1.29,Very Good,I,VS2,61.3,58,6099,6.98,7.04,4.3
1.23,Ideal,J,VS1,62.2,55,6100,6.83,6.86,4.26
1.31,Very Good,J,VS1,63.7,55,6101,6.94,7.01,4.44
1.07,Very Good,G,VS2,61.9,60,6101,6.48,6.55,4.03
1.02,Very Good,E,VS2,60.3,60,6103,6.58,6.48,3.94
1.02,Very Good,I,VS2,61.5,57,6104,6.4,6.44,3.95
1.51,Good,J,SI2,58.1,64,6104,7.53,7.57,4.39
1.01,Ideal,G,VS2,61.7,57,6104,6.48,6.45,3.99
1.01,Very Good,G,VS2,61.9,56,6105,6.34,6.42,3.95
1.21,Ideal,F,SI2,61.8,57,6105,6.87,6.82,4.23
1.15,Ideal,H,SI1,62.4,54,6106,6.71,6.76,4.2
1.01,Premium,D,VS2,59.2,56,6108,6.48,6.43,3.82
1.01,Premium,G,VS2,60.6,61,6108,6.4,6.33,3.86
1.01,Very Good,G,VS2,63.1,60,6108,6.36,6.31,4
1.01,Premium,G,VS2,62.9,58,6108,6.39,6.3,3.99
1.01,Ideal,G,VS2,62.4,56,6108,6.41,6.37,3.99
1.01,Premium,G,VS2,58.5,61,6108,6.57,6.52,3.83
1.01,Very Good,G,VS2,63.1,59,6108,6.4,6.37,4.03
1.01,Premium,G,VS2,62.4,58,6108,6.41,6.38,3.99
1.01,Ideal,G,VS2,61.8,56,6108,6.45,6.42,3.98
1.01,Ideal,G,VS2,62.7,56,6108,6.43,6.39,4.02
1.01,Ideal,G,VS2,61.9,55,6108,6.49,6.46,4.01
1.01,Premium,G,VS2,62,59,6108,6.41,6.36,3.96
1.01,Premium,G,VS2,61.6,60,6108,6.51,6.42,3.98
1.47,Fair,F,SI2,65.9,59,6108,6.99,6.94,4.59
1.01,Premium,G,VS2,62.1,54,6108,6.5,6.36,3.99
1.01,Premium,G,VS2,61.5,60,6108,6.45,6.42,3.96
1.01,Premium,G,VS2,59.2,59,6108,6.59,6.52,3.88
1.01,Good,G,VS2,64,59,6109,6.27,6.33,4.03
1.12,Ideal,H,VS2,61.8,55,6110,6.64,6.7,4.12
1.15,Very Good,F,SI1,62.5,59,6110,6.62,6.69,4.16
1.24,Ideal,F,SI2,61.7,57,6111,6.91,6.86,4.25
1.07,Premium,D,SI1,60.2,55,6112,6.68,6.64,4.01
1.62,Good,J,SI2,64.2,62,6112,7.33,7.41,4.73
1.04,Ideal,D,SI1,61.9,57,6112,6.51,6.54,4.04
1.18,Ideal,G,SI1,62.5,55,6112,6.77,6.74,4.22
1.25,Very Good,H,SI1,62.4,55,6113,6.85,6.89,4.29
1.01,Good,D,VS2,67,57,6113,6.11,6.22,4.13
1.06,Ideal,E,SI1,61.8,56,6114,6.59,6.52,4.05
1,Very Good,D,VS2,63.4,57,6115,6.36,6.32,4.02
1.5,Very Good,I,SI2,63.2,52,6115,7.28,7.24,4.59
1,Premium,G,VS1,62,62,6115,6.38,6.33,3.94
1,Premium,G,VS1,59.2,60,6115,6.6,6.54,3.89
1,Fair,F,VS1,64.8,61,6115,6.26,6.21,4.04
1,Fair,F,VS1,65,59,6115,6.19,6.14,4.01
1.12,Premium,H,VS1,61.6,58,6115,6.64,4.11,3.7
1.04,Premium,D,SI1,59.9,56,6115,6.65,6.6,3.97
1,Premium,G,VS1,60.6,59,6115,6.48,6.42,3.91
1.27,Premium,I,VS2,62.6,59,6116,6.95,6.86,4.32
1.29,Premium,G,SI2,61.1,59,6116,7.03,6.95,4.27
1.33,Ideal,J,VS1,61.3,57,6118,7.11,7.08,4.35
1.07,Very Good,E,VS2,62.5,57,6120,6.53,6.6,4.1
1.22,Premium,E,SI2,61.5,58,6121,6.86,6.84,4.21
1.22,Premium,E,SI2,62.5,55,6121,6.9,6.82,4.29
1.1,Premium,G,VS2,59.6,60,6121,6.72,6.7,4
1.22,Premium,I,VS1,61.1,58,6121,6.91,6.84,4.2
1.04,Premium,G,VS2,60,58,6122,6.62,6.54,3.95
1.04,Premium,G,VS2,62.2,58,6122,6.49,6.4,4.01
1.03,Ideal,H,VS2,61.2,56,6123,6.5,6.53,3.98
1.07,Premium,D,SI1,63,57,6124,6.57,6.47,4.11
0.9,Good,F,VVS1,64.2,56,6124,6.07,6.02,3.88
1.35,Ideal,J,SI1,61.9,56,6124,7.1,7.08,4.39
1.24,Premium,F,SI1,62.6,59,6125,6.86,6.76,4.26
1.21,Very Good,D,SI2,62.3,59,6125,6.74,6.78,4.21
1.24,Premium,F,SI1,61.4,62,6125,6.94,6.88,4.24
1.02,Very Good,G,VS1,62,59,6126,6.39,6.45,3.98
1.29,Very Good,D,SI2,61.9,58,6126,6.99,7.03,4.34
1.01,Good,G,VS2,62.7,60,6126,6.27,6.32,3.95
1.53,Premium,J,SI1,60.1,59,6126,7.52,7.5,4.51
1.19,Very Good,G,SI1,62.8,57,6127,6.71,6.77,4.23
1.01,Very Good,E,VS2,62.7,60,6128,6.31,6.38,3.98
1.06,Ideal,G,VS2,61.8,57,6128,6.52,6.56,4.04
1.11,Ideal,D,SI2,61.3,56,6129,6.68,6.74,4.12
1.52,Fair,H,SI2,64.9,58,6129,7.16,7.13,4.64
1.2,Premium,H,SI1,58.9,60,6129,7.02,6.94,4.11
1.2,Premium,H,SI1,61,58,6129,6.92,6.84,4.2
1.2,Premium,H,SI1,61.2,57,6129,6.91,6.78,4.19
1.2,Premium,H,SI1,62.9,56,6129,6.8,6.74,4.26
1.2,Premium,H,SI1,62.1,58,6129,6.77,6.72,4.19
1.2,Very Good,E,SI2,61.4,58,6130,6.81,6.88,4.2
1.05,Very Good,H,VS1,59.5,56,6132,6.62,6.68,3.96
1.01,Very Good,E,SI1,63.6,56,6132,6.3,6.37,4.03
1.12,Very Good,D,SI1,59.9,57,6132,6.76,6.8,4.06
1.5,Premium,H,SI2,61.5,58,6132,7.38,7.32,4.52
1.01,Ideal,G,VS2,59.8,61,6132,6.51,6.54,3.9
1.01,Ideal,G,VS2,60.4,61,6132,6.45,6.5,3.91
1.22,Ideal,F,SI2,61.7,54.9,6132,6.84,6.9,4.24
1.01,Ideal,E,SI1,61.1,55,6132,6.47,6.52,3.97
1,Premium,H,VVS1,62.3,60,6132,6.36,6.28,3.94
1.5,Premium,I,SI2,62.9,57,6132,7.28,7.26,4.57
1.16,Premium,G,SI1,62.5,58,6132,6.73,6.68,4.19
1.04,Ideal,H,VS2,62.2,57,6133,6.46,6.49,4.03
1,Ideal,H,VS2,61.2,60,6133,6.4,6.45,3.93
1.13,Ideal,G,SI1,62,55,6133,6.68,6.71,4.15
1.09,Ideal,D,SI1,61.9,57,6133,6.57,6.61,4.08
1.09,Ideal,D,SI1,62.7,56,6133,6.55,6.59,4.12
1.24,Very Good,I,VS2,60,58,6134,6.98,7.03,4.2
1.21,Ideal,H,VS2,63,57,6134,6.73,6.7,4.23
1.21,Ideal,I,VS2,62,60,6135,6.77,6.84,4.22
1.66,Ideal,F,I1,62.1,58,6135,7.6,7.56,4.71
1.31,Premium,J,VS2,60.7,58,6137,7.1,7.07,4.3
1.04,Very Good,D,SI1,58.9,58,6138,6.66,6.69,3.93
1.51,Very Good,E,I1,62,58,6139,7.31,7.37,4.55
1.17,Ideal,G,VS2,61.5,57,6139,6.86,6.8,4.2
1.4,Ideal,J,SI1,62.7,57,6139,7.13,7.09,4.46
1.3,Very Good,H,SI2,62.8,58,6140,6.93,7.01,4.38
1.2,Ideal,D,SI2,60.2,57,6140,6.88,6.93,4.16
1.29,Premium,I,SI1,62.1,57,6140,7.03,6.92,4.33
1.29,Premium,I,SI1,62.1,58,6140,7.07,6.91,4.34
1.29,Premium,I,SI1,62.2,58,6140,7.03,6.96,4.35
1.29,Premium,I,SI1,62,59,6140,7.03,6.98,4.34
1.29,Good,D,SI2,57.9,59,6140,7.22,7.18,4.17
1.04,Very Good,H,VS1,61.2,55,6141,6.54,6.56,4.01
1.12,Ideal,I,SI1,60.3,57,6143,6.74,6.79,4.08
1.14,Premium,G,VS2,61.9,58,6144,6.68,6.72,4.15
1.4,Very Good,J,SI1,63.5,58,6145,7.05,7.09,4.49
1.24,Premium,G,SI1,58.9,58,6145,7.08,6.98,4.14
1.03,Ideal,G,VS2,59.6,57,6146,6.65,6.6,3.95
1.05,Premium,G,VS1,61.8,58,6146,6.54,6.51,4.03
1.1,Ideal,F,SI1,61.4,55,6146,6.65,6.68,4.09
1.03,Premium,G,VS2,62.1,57,6146,6.48,6.41,4
1.03,Premium,G,VS2,62.3,57,6146,6.51,6.43,4.03
1.4,Premium,E,SI2,62.4,57,6147,7.17,7.12,4.46
1.96,Fair,I,I1,66.8,55,6147,7.62,7.6,5.08
1.32,Good,J,VS1,62.6,62,6147,6.92,7.01,4.36
1.37,Very Good,G,SI2,62.4,58,6148,7,7.1,4.4
1.3,Very Good,F,SI2,61.1,58,6149,6.98,7.02,4.28
1.3,Very Good,F,SI2,61.1,58,6149,6.98,7.02,4.28
1.22,Premium,I,VS2,60.6,58,6149,6.93,6.89,4.19
2.08,Premium,H,I1,61.7,57,6150,8.23,8.18,5.06
1.23,Premium,H,VS2,58.5,62,6150,7,6.98,4.09
1.04,Good,G,VS1,58.9,64,6151,6.6,6.64,3.9
1.01,Very Good,G,VS1,62.8,58,6152,6.34,6.37,3.99
1.01,Very Good,G,VS1,61.9,58,6152,6.42,6.5,4
1.23,Ideal,H,SI2,62.4,57,6152,6.79,6.84,4.25
1.33,Good,D,SI2,59,64,6152,7.22,7.12,4.23
1.22,Premium,H,SI1,62.4,58,6153,6.82,6.77,4.24
1.03,Very Good,F,VS2,62.3,59,6153,6.39,6.45,4
1.09,Premium,G,VS2,60.6,62,6153,6.68,6.58,4.02
1,Premium,F,VS2,62.5,54,6154,6.33,6.3,3.95
1.22,Premium,I,VS2,59.3,59,6156,7.01,6.96,4.14
1.51,Fair,I,SI2,66,57,6156,7.14,7,4.7
1.19,Very Good,D,SI2,61.1,58,6157,6.84,6.88,4.19
1.02,Ideal,D,SI1,61.3,56,6157,6.48,6.53,3.99
1.36,Premium,J,VS2,58.4,59,6157,7.4,7.27,4.28
1.02,Ideal,D,SI1,62.8,56,6158,6.44,6.39,4.03
1.01,Ideal,G,VS2,61.6,57,6159,6.41,6.44,3.96
1.01,Very Good,F,VS2,62.7,56,6159,6.37,6.43,4.01
1.01,Very Good,F,VS2,62.5,59,6159,6.38,6.42,4
1.01,Very Good,F,VS2,62,59,6159,6.38,6.42,3.97
1.01,Very Good,F,VS2,61.5,57,6159,6.4,6.48,3.96
1.01,Good,F,VS2,63.1,60,6159,6.29,6.39,4
1.01,Very Good,F,VS2,61.3,61,6159,6.34,6.38,3.9
1.01,Very Good,F,VS2,61.7,57,6159,6.39,6.44,3.96
1.01,Premium,F,VS2,60.7,60,6159,6.51,6.58,3.97
1.01,Good,E,VS1,65.8,55,6159,6.2,6.23,4.09
1.18,Premium,H,SI1,61.6,59,6159,6.82,6.72,4.17
1,Premium,G,VS2,61.9,58,6160,6.45,6.41,3.98
1.2,Ideal,G,SI1,61.5,54,6160,6.85,6.87,4.22
1,Good,E,VS2,57.4,58,6160,6.61,6.57,3.78
1.27,Very Good,H,SI1,63.2,56,6162,6.92,6.88,4.36
1,Good,D,VS2,65.7,55,6163,6.17,6.22,4.07
1.01,Premium,G,VS1,62.4,59,6163,6.38,6.35,3.97
1.17,Premium,H,VS2,62.4,57,6163,6.74,6.69,4.19
1.03,Very Good,G,VS2,62.9,56,6164,6.43,6.45,4.05
1.28,Premium,I,SI1,60,60,6164,7.08,6.99,4.22
1.28,Premium,H,SI2,62,57,6164,7,6.94,4.32
1.01,Premium,F,VS2,63,58,6165,6.4,6.34,4.01
1.05,Ideal,H,VS2,62.6,56,6165,6.45,6.5,4.05
1.23,Good,I,SI1,60.7,61,6165,6.91,6.93,4.2
0.3,Ideal,H,VVS2,61.3,56,605,4.33,4.35,2.66
0.3,Premium,G,VS1,59.6,59,605,4.34,4.38,2.6
0.3,Very Good,G,VS1,61.7,60,605,4.24,4.28,2.63
0.3,Ideal,G,VS1,61.5,56,605,4.28,4.34,2.65
0.3,Good,G,VS1,63.6,55,605,4.27,4.31,2.73
0.3,Very Good,G,VS1,61.7,56,605,4.29,4.33,2.66
0.3,Very Good,G,VS1,62,60,605,4.23,4.28,2.64
0.3,Ideal,F,VS2,60.9,56,605,4.32,4.35,2.64
0.3,Very Good,G,VS1,62.1,60,605,4.24,4.3,2.65
0.3,Premium,F,VS2,62.5,58,605,4.26,4.28,2.67
0.3,Premium,F,VS2,60.6,60,605,4.36,4.39,2.65
0.3,Ideal,F,VS2,62.1,55,605,4.26,4.31,2.66
0.27,Very Good,E,VVS2,61.2,60,606,4.16,4.17,2.55
0.4,Very Good,J,VS1,62.1,57,606,4.69,4.72,2.92
0.36,Very Good,G,SI1,61.8,57.8,606,4.52,4.58,2.81
0.4,Ideal,J,VS1,61.3,56,606,4.77,4.79,2.93
0.35,Premium,I,SI1,62.5,58,606,4.53,4.49,2.82
0.35,Ideal,I,SI1,61.3,54,606,4.56,4.51,2.78
0.35,Good,I,SI1,63.6,56,606,4.53,4.5,2.87
0.38,Very Good,I,VS1,60.1,60,606,4.66,4.72,2.82
0.3,Ideal,D,VS2,61.8,55,606,4.32,4.35,2.68
0.3,Ideal,D,VS2,59.5,56,606,4.37,4.41,2.61
0.41,Good,J,VS2,64.3,55,606,4.66,4.7,3.01
0.37,Ideal,E,SI1,61.4,56,606,4.6,4.65,2.84
0.32,Very Good,G,VVS2,64,55,607,4.31,4.35,2.77
0.29,Very Good,G,VVS1,61.6,56,607,4.24,4.27,2.62
0.29,Very Good,G,VVS1,62,55,607,4.27,4.29,2.65
0.29,Very Good,G,VVS1,61.5,57,607,4.24,4.27,2.62
0.29,Very Good,G,VVS1,61.4,56,607,4.25,4.28,2.62
0.29,Ideal,H,VVS2,61.6,55,607,4.27,4.29,2.64
1.29,Very Good,I,VS2,62.8,58,6166,6.89,6.93,4.34
1.04,Very Good,F,VS2,59.6,62,6166,6.56,6.62,3.93
1.04,Very Good,H,VVS2,59.1,60,6166,6.6,6.66,3.92
1.1,Ideal,F,VS2,60,57,6166,6.76,6.71,4.04
1.2,Very Good,I,VS1,62.4,56,6167,6.78,6.74,4.22
1.08,Very Good,G,VS2,62,57,6168,6.52,6.55,4.05
1.12,Ideal,E,SI2,61.6,56,6168,6.69,6.71,4.13
1.02,Very Good,G,VS2,63.4,59,6169,6.32,6.3,4
1.2,Ideal,H,SI1,61.9,54,6169,6.8,6.86,4.23
1.06,Very Good,E,SI1,59.8,56,6169,6.63,6.67,3.98
1.02,Premium,G,VS2,62.7,58,6169,6.45,6.4,4.03
1.02,Very Good,G,VS2,63.2,57,6169,6.41,6.38,4.04
1.02,Ideal,G,VS2,62.8,57,6169,6.46,6.41,4.04
1.02,Premium,G,VS2,59.2,59,6169,6.66,6.58,3.92
1.02,Premium,G,VS2,62.1,59,6169,6.47,6.41,4
1.02,Premium,G,VS2,60.5,54,6169,6.57,6.48,3.95
1.02,Premium,G,VS2,59.8,58,6169,6.58,6.54,3.92
1.02,Ideal,G,VS2,61.9,53,6169,6.5,6.48,4.02
1.32,Premium,I,SI1,62.3,58,6171,6.98,7.01,4.36
1.32,Premium,I,SI1,62.2,58,6171,6.99,7.04,4.36
1.51,Very Good,J,SI2,63.2,58,6171,7.28,7.25,4.59
1.23,Premium,E,SI2,62.4,60,6172,6.82,6.78,4.24
1.51,Premium,I,SI2,61.3,55,6173,7.41,7.36,4.53
1.04,Ideal,G,VVS2,61.4,57,6173,6.52,6.44,3.98
1.05,Good,D,SI1,63.7,59,6174,6.42,6.38,4.08
1.05,Premium,D,SI1,59.3,58,6174,6.74,6.68,3.98
1.28,Good,G,SI1,57.6,62,6175,7.17,7.13,4.12
1.49,Ideal,F,I1,62.6,54,6175,7.31,7.28,4.57
1.38,Premium,J,VS2,60.2,59,6175,7.29,7.19,4.36
1.01,Good,D,VS2,64.2,60,6176,6.35,6.32,4.07
1.01,Fair,D,VS2,65.6,61,6176,6.21,6.16,4.06
1.01,Premium,F,VS1,62.6,58,6176,6.48,6.37,4.02
1.01,Ideal,G,VS1,62.9,57,6176,6.43,6.39,4.03
1.01,Good,D,VS2,64,58,6176,6.3,6.24,4.01
1.01,Premium,D,SI1,62,60,6176,6.4,6.37,3.96
1.04,Ideal,G,VS2,62.6,55,6177,6.45,6.49,4.05
1.04,Ideal,G,VS2,61.4,57,6177,6.5,6.53,4
1.04,Very Good,G,VS2,61.9,57,6177,6.46,6.5,4.01
1.04,Premium,G,VS2,62.5,58,6177,6.43,6.47,4.03
1.2,Very Good,H,VS1,62,57,6177,6.77,6.81,4.21
1.04,Very Good,G,VS2,61.8,56,6177,6.47,6.5,4.01
1,Good,G,VS1,62.4,62,6177,6.33,6.37,3.96
1.11,Good,E,SI1,61.4,57.5,6178,6.62,6.66,4.08
1.03,Ideal,F,SI1,62.4,57,6178,6.48,6.44,4.03
1.21,Ideal,H,SI1,61.1,57,6180,6.91,6.83,4.2
1.21,Premium,H,SI1,61.8,58,6180,6.83,6.79,4.21
1.05,Premium,G,VS2,62.8,58,6181,6.48,6.44,4.06
1.37,Premium,F,SI2,62.8,57,6181,7.12,7.08,4.46
1.05,Premium,G,VS2,61.8,58,6181,6.59,6.52,4.05
1.2,Premium,F,VS2,61.4,58,6182,6.8,6.75,4.16
1.2,Good,H,SI1,64.2,60,6182,6.68,6.62,4.27
1,Good,F,VS2,63.2,59,6183,6.3,6.35,4
1,Very Good,F,VS2,62.2,57,6183,6.4,6.43,3.99
1,Good,H,VVS1,63.5,60,6183,6.3,6.36,4.02
1,Very Good,F,VS2,62.9,59,6183,6.4,6.47,4.02
1.53,Premium,G,I1,62.8,58,6183,7.39,7.28,4.61
1.23,Ideal,I,SI1,61.1,58,6183,6.86,6.91,4.21
1.03,Premium,E,VS2,62.5,59,6183,6.44,6.42,4.02
1.03,Ideal,F,SI1,62.1,56,6183,6.5,6.46,4.03
1.22,Premium,H,VS2,62.7,59,6184,6.82,6.81,4.27
1.54,Ideal,G,I1,61.6,55,6186,7.4,7.43,4.57
1.26,Ideal,J,VVS1,61.4,60,6186,6.92,6.95,4.26
1,Good,G,VS1,63.9,60,6187,6.3,6.35,4.04
1.3,Premium,I,SI1,58.1,59,6188,7.19,7.16,4.17
1.21,Very Good,H,VS2,62.9,57,6189,6.75,6.8,4.26
1.21,Very Good,H,VS2,62.9,57,6189,6.75,6.8,4.26
1,Good,D,VS2,60.8,61,6189,6.33,6.4,3.87
1,Good,D,VS2,62.8,61,6189,6.31,6.34,3.97
1,Very Good,D,VS2,61.2,61,6190,6.35,6.39,3.9
1.21,Very Good,G,SI1,62.2,60,6190,6.71,6.73,4.18
1.33,Ideal,J,VS1,62.4,55,6190,7.02,7.05,4.39
1.21,Ideal,D,SI2,62,57,6190,6.81,6.83,4.23
1.18,Ideal,I,VS2,62.3,55.6,6191,6.73,6.76,4.21
1.02,Ideal,D,SI1,62.3,57,6191,6.41,6.44,4
1.2,Very Good,I,VS1,62.6,59,6192,6.69,6.73,4.2
1,Good,F,VS2,62.4,60,6192,6.27,6.29,3.92
1.14,Very Good,F,SI1,61.3,62,6194,6.71,6.77,4.13
1.21,Very Good,H,SI1,62.2,56,6194,6.75,6.79,4.21
1,Good,H,VVS2,63.7,52,6194,6.41,6.36,4.07
1.54,Premium,J,VS1,60.9,61,6194,7.49,7.45,4.55
1.58,Premium,F,SI2,59.1,59,6194,7.68,7.59,4.51
1.02,Very Good,F,SI1,60.2,58,6195,6.49,6.54,3.92
1.01,Very Good,F,VS2,59.1,59,6196,6.58,6.65,3.91
1,Very Good,D,SI1,60.3,58,6196,6.44,6.49,3.9
1.05,Ideal,D,SI1,60.7,60,6196,6.52,6.56,3.97
1.19,Premium,H,VS2,62.6,56,6198,6.81,6.76,4.25
1.2,Very Good,H,SI1,62.4,60,6199,6.75,6.71,4.2
1.23,Premium,I,VS2,59.3,59,6199,7.13,6.97,4.18
1.23,Ideal,H,SI2,60.6,56,6199,6.94,6.92,4.2
1.35,Ideal,I,SI1,62.3,57,6199,7.11,7.05,4.41
1.23,Ideal,H,SI2,62.1,56,6199,6.85,6.82,4.24
1.07,Ideal,F,SI1,62.3,56,6200,6.51,6.53,4.06
1.22,Ideal,J,VS1,61.4,58,6201,6.85,6.87,4.21
1.54,Premium,J,VS2,59.3,59,6202,7.54,7.5,4.46
1.16,Premium,H,VS2,62.3,56,6202,6.77,6.68,4.19
1.33,Very Good,I,VS2,62.5,61,6203,6.99,7.02,4.38
1.08,Ideal,D,SI1,61.3,56,6203,6.63,6.72,4.09
1.01,Very Good,G,VS2,62.5,59,6204,6.34,6.37,3.97
1.01,Very Good,F,VS2,59.2,60,6204,6.46,6.51,3.84
1.02,Very Good,H,VS1,61.4,56.5,6204,6.44,6.47,3.97
1.04,Premium,G,VS2,62.3,54,6206,6.55,6.49,4.06
1.23,Premium,I,VS2,61.1,60,6206,6.95,6.89,4.23
1,Very Good,E,SI1,61.4,60,6207,6.4,6.44,3.94
1,Very Good,G,VS2,62.7,59,6208,6.32,6.38,3.98
0.9,Very Good,D,VS1,62.2,58,6208,6.14,6.18,3.83
1,Premium,G,VVS2,62.8,57,6209,6.38,6.29,3.98
1.12,Ideal,G,VS2,62.1,57,6209,6.6,6.63,4.11
1,Ideal,F,VS2,62.8,57,6209,6.35,6.3,3.97
1,Premium,F,VS2,61.6,55,6209,6.42,6.34,3.93
1.1,Premium,D,VS2,60,59,6209,6.67,6.6,3.98
1,Good,F,VS2,63.8,58,6209,6.32,6.28,4.02
1,Premium,G,VS2,62.9,56,6209,6.42,6.34,4.01
1.2,Good,F,VS1,64,56,6209,6.63,6.58,4.23
1.5,Fair,I,SI2,68.1,59,6209,7.12,6.84,4.75
1.2,Ideal,I,VS1,62.1,56.5,6210,6.8,6.84,4.23
1.28,Premium,H,SI1,62.1,62,6210,6.88,6.83,4.26
1,Fair,F,VS2,64.9,52,6210,6.24,6.33,4.08
1.06,Very Good,G,VS2,60.1,58,6212,6.64,6.67,4
1.06,Good,G,VS2,63.1,59,6212,6.45,6.48,4.08
1.01,Very Good,G,VS2,60.2,58,6213,6.51,6.54,3.93
1.07,Premium,G,VS2,61.9,60,6213,6.55,6.48,4.03
1.03,Premium,G,VS2,62.3,59,6214,6.38,6.42,3.99
1.52,Premium,I,SI2,62.2,59,6214,7.36,7.27,4.56
1.24,Premium,H,SI1,60.1,58,6215,7.04,7.01,4.22
1.02,Premium,E,VS2,61.9,62,6215,6.47,6.38,3.98
1.51,Good,J,SI2,58.1,64,6215,7.57,7.53,4.39
1.48,Premium,H,SI2,59.7,59,6216,7.46,7.42,4.44
1,Premium,G,VS2,61.6,54,6216,6.49,6.46,3.99
1.22,Premium,I,VS2,60.3,59,6217,6.93,6.87,4.16
1.06,Very Good,G,VS2,59.4,59,6217,6.68,6.63,3.95
1.03,Very Good,F,VS2,63.4,62,6218,6.34,6.31,4.01
1.02,Premium,F,VS2,62.7,59,6220,6.41,6.44,4.03
1.01,Premium,G,VS1,62.7,58,6221,6.31,6.36,3.97
1.01,Very Good,E,VS2,62.9,58,6221,6.37,6.47,4.04
1.01,Very Good,E,VS2,63,60,6221,6.32,6.35,3.99
1.01,Good,E,VS2,62.5,58,6221,6.32,6.36,3.96
1.01,Good,E,VS2,63.7,56,6221,6.27,6.29,4
1.01,Good,E,VS2,62.6,58,6221,6.33,6.36,3.97
1.32,Fair,E,SI2,65.2,58,6221,6.86,6.79,4.45
1.12,Ideal,H,VS2,61.8,55,6222,6.7,6.64,4.12
1,Good,F,VS2,63.1,57,6223,6.32,6.36,4
1.62,Good,J,SI2,64.2,62,6223,7.41,7.33,4.73
1.21,Premium,E,SI2,61.5,58,6223,6.86,6.79,4.2
1.47,Premium,J,SI2,60,58,6223,7.36,7.31,4.4
1.05,Very Good,E,SI1,59.7,57,6224,6.63,6.71,3.98
1.5,Premium,G,SI2,61.8,60,6224,7.28,7.25,4.49
1.5,Good,I,SI1,63.8,56,6224,7.26,7.15,4.59
1.09,Ideal,I,VS1,61.8,55,6225,6.59,6.62,4.08
1.09,Ideal,I,VS1,61.4,56,6225,6.61,6.66,4.07
1.31,Ideal,H,SI2,62.3,56,6225,7,6.97,4.35
1.21,Very Good,H,SI1,60.2,58,6229,6.89,6.93,4.16
1.03,Premium,G,VS2,58.9,59,6229,6.65,6.59,3.9
1.03,Ideal,G,VS2,60.3,56,6229,6.59,6.55,3.96
1.25,Premium,H,SI2,62.2,60,6230,6.83,6.8,4.24
0.9,Ideal,E,VS1,61.7,56,6230,6.19,6.22,3.83
1.24,Ideal,I,SI1,62,58,6232,6.83,6.88,4.25
1.07,Premium,E,VS2,62.5,57,6232,6.6,6.53,4.1
1.04,Very Good,G,VS2,63.4,55,6232,6.48,6.42,4.09
1.23,Very Good,F,SI2,61.9,58,6233,6.77,6.79,4.2
1,Ideal,G,VS2,58.9,60,6235,6.53,6.58,3.86
1.31,Premium,J,VS1,62.3,56,6236,7.06,6.99,4.38
1.31,Premium,H,SI2,61.4,60,6236,7.04,7,4.31
1.28,Premium,G,SI2,62.6,58,6236,6.94,6.89,4.33
1.34,Very Good,J,VS1,61.7,59,6237,7.03,7.14,4.37
1.34,Very Good,J,VS1,63,57,6237,6.9,7.01,4.38
1.22,Premium,E,SI2,61.5,58,6237,6.81,6.85,4.2
0.9,Ideal,G,VVS1,62.9,56,6237,6.11,6.19,3.87
1.53,Good,I,SI2,63.9,59,6238,7.31,7.17,4.64
1.02,Premium,G,VS1,62,59,6238,6.45,6.39,3.98
1.02,Premium,F,VS1,61.4,59,6238,6.48,6.42,3.96
1.01,Very Good,G,VS1,60.5,60,6239,6.44,6.52,3.92
1.01,Very Good,G,VS1,60.7,63,6239,6.38,6.4,3.88
1.01,Premium,G,VS1,59.9,59,6239,6.48,6.51,3.89
1.01,Ideal,G,VS2,61.6,56,6239,6.43,6.46,3.97
1.26,Ideal,H,SI2,62,55,6239,6.9,6.97,4.29
1.06,Ideal,G,VS2,61.8,57,6240,6.56,6.52,4.04
1.03,Ideal,G,VS2,61.8,56,6241,6.54,6.48,4.02
1.11,Ideal,D,SI2,61.3,56,6241,6.74,6.68,4.12
1.01,Premium,F,VS2,62.3,58,6244,6.34,6.4,3.97
1.01,Premium,F,VS2,61.5,58,6244,6.41,6.46,3.96
1,Very Good,E,VS2,62.9,59,6245,6.27,6.38,3.98
1.56,Good,I,SI1,64,57,6246,7.32,7.28,4.67
1.56,Good,G,SI2,63.7,54,6246,7.35,7.31,4.67
1.3,Premium,I,VS2,62.7,58,6246,6.97,6.9,4.35
1.01,Good,G,VS1,58.7,62,6247,6.49,6.55,3.83
1,Good,E,VS2,62.4,58,6248,6.33,6.4,3.97
1.21,Very Good,D,SI2,62.4,58,6248,6.77,6.83,4.24
1,Very Good,H,VVS2,62.6,56,6249,6.36,6.39,3.99
1.06,Ideal,F,SI1,61.7,55.1,6249,6.56,6.58,4.06
1.03,Ideal,D,SI1,61.9,57,6250,6.52,6.54,4.04
1.01,Good,E,VS2,60.8,63,6250,6.44,6.46,3.92
1.22,Good,H,SI2,63.5,56,6250,6.84,6.77,4.32
1.2,Premium,H,VS2,60.7,60,6250,6.88,6.82,4.16
1.2,Premium,F,SI1,62.4,58,6250,6.81,6.75,4.23
1.2,Premium,I,VS1,59.9,59,6250,6.96,6.87,4.14
1,Good,D,VS1,64,58,6250,6.27,6.21,3.99
1.5,Premium,H,SI2,61.1,59,6250,7.41,7.35,4.51
1.5,Fair,H,SI2,64.6,59,6250,7.2,7.11,4.62
1.39,Ideal,J,VS2,60.3,57,6252,7.24,7.26,4.37
1.35,Premium,J,VS2,60.5,56,6254,7.19,7.12,4.33
1.24,Ideal,H,SI1,61.3,57,6254,6.95,6.89,4.24
1.04,Ideal,H,VS1,62.2,56.6,6255,6.43,6.49,4.02
1.05,Ideal,H,SI1,61.3,57,6255,6.51,6.54,4
1.53,Ideal,I,SI2,61.8,56,6255,7.4,7.35,4.56
1.14,Premium,G,VS2,61.9,58,6256,6.72,6.68,4.15
1.14,Premium,D,SI1,58.9,59,6256,6.84,6.78,4.01
1.33,Premium,E,SI2,61,60,6256,7.13,7.05,4.33
1.24,Premium,I,VS2,60.2,58,6257,6.98,6.93,4.19
1.01,Very Good,F,VS2,58.8,63,6257,6.51,6.56,3.84
1.01,Very Good,F,VS2,59.2,59,6257,6.49,6.61,3.88
1.01,Very Good,G,VVS2,61.9,58,6257,6.38,6.48,3.98
1.01,Ideal,D,SI1,62.2,54,6257,6.42,6.45,4
1.09,Ideal,D,SI1,62.8,54,6259,6.6,6.62,4.15
1.04,Ideal,E,SI1,62.6,53,6260,6.49,6.52,4.07
1.38,Ideal,J,SI1,61.8,56,6260,7.17,7.14,4.42
1.37,Premium,G,SI2,62.4,58,6260,7.1,7,4.4
1.3,Premium,F,SI2,61.1,58,6261,7.02,6.98,4.28
1.21,Premium,E,SI1,60,60,6261,7.01,6.92,4.18
1.21,Premium,E,SI1,63,57,6261,6.75,6.7,4.24
1.54,Good,E,I1,63.3,60,6261,7.26,7.3,4.61
1.21,Ideal,F,VS2,62.6,55,6261,6.81,6.74,4.24
1,Ideal,E,VS2,62,56,6261,6.42,6.36,3.96
1.07,Very Good,H,VS1,62.5,56,6262,6.52,6.55,4.08
1.12,Very Good,F,SI1,62.9,57,6262,6.6,6.62,4.16
1,Very Good,G,VS1,62.4,60,6263,6.37,6.39,3.98
1.31,Very Good,H,SI2,61.7,59,6263,6.96,7.01,4.31
1.02,Ideal,H,SI1,61.8,57,6264,6.43,6.46,3.98
1.01,Very Good,E,VS2,61.7,60,6265,6.36,6.45,3.95
1.51,Good,I,SI1,63.8,59,6266,7.27,7.21,4.62
1.51,Premium,G,SI2,60,60,6266,7.45,7.4,4.48
1,Good,F,VS2,63.3,55,6267,6.29,6.34,4
1.01,Very Good,F,VS2,63.1,56,6267,6.41,6.37,4.03
1.01,Very Good,E,SI1,60.8,59,6268,6.43,6.5,3.93
1,Fair,E,VS2,57.4,58,6268,6.57,6.64,3.79
1.01,Very Good,D,SI1,61.4,59,6270,6.37,6.43,3.93
1.01,Very Good,D,SI1,63.6,59,6270,6.33,6.37,4.04
1.01,Fair,G,VS2,59.1,56,6271,6.55,6.52,3.86
1.01,Premium,F,VS2,62.4,56,6271,6.43,6.35,3.99
1.01,Premium,F,VS2,58.9,58,6271,6.59,6.51,3.86
1.01,Premium,F,VS2,62.7,58,6271,6.37,6.3,3.97
1.01,Premium,F,VS2,62.3,58,6271,6.34,6.3,3.94
1.01,Good,F,VS2,60.8,61,6271,6.42,6.45,3.91
1.01,Very Good,F,VS2,63.1,60,6271,6.39,6.29,4
1.01,Premium,F,VS2,61.3,61,6271,6.38,6.34,3.9
1.01,Fair,F,VS2,61.1,60,6271,6.49,6.4,3.94
1.01,Premium,D,VS2,61.6,59,6271,6.38,6.32,3.91
1.01,Premium,F,VS2,62.5,58,6271,6.43,6.4,4.01
1.01,Ideal,G,VS2,61.6,57,6271,6.44,6.41,3.96
1.01,Premium,F,VS2,60.4,59,6271,6.52,6.46,3.92
1,Premium,E,VS2,62.8,62,6272,6.29,6.26,3.94
1.18,Ideal,I,VS1,62.2,55,6272,6.8,6.77,4.22
1,Premium,G,VS2,61.6,58,6272,6.44,6.42,3.96
1.6,Fair,F,SI2,65,56,6272,7.35,7.26,4.8
1,Good,E,VS2,57.4,62,6272,6.56,6.53,3.76
1,Ideal,G,VS2,62.3,54,6272,6.42,6.38,3.99
1,Premium,G,VS2,60.1,57,6272,6.42,6.35,3.84
1,Good,E,VS2,63.8,58,6272,6.31,6.19,3.99
1,Premium,E,VS2,59.9,59,6272,6.45,6.38,3.84
1.07,Very Good,G,VS2,62.3,57,6274,6.56,6.47,4.06
1.07,Premium,F,VS2,62.4,57,6274,6.55,6.5,4.07
1.19,Ideal,H,SI1,62,56.4,6275,6.77,6.81,4.2
1,Good,E,SI1,61.1,58,6275,6.43,6.41,3.92
1.26,Ideal,F,SI2,62.7,58,6277,6.91,6.87,4.32
1.54,Premium,I,SI2,61.5,61,6278,7.41,7.31,4.53
1.22,Very Good,G,SI1,63.4,57,6278,6.74,6.77,4.28
1.04,Premium,F,VS2,59.6,62,6278,6.62,6.56,3.93
1.04,Premium,H,VVS2,59.1,60,6278,6.66,6.6,3.92
1.36,Very Good,H,SI2,61.5,58,6279,7.09,7.16,4.38
1.05,Ideal,I,VS2,62.2,55.8,6279,6.49,6.52,4.04
1.21,Ideal,I,VS1,60.3,60,6279,6.89,6.93,4.17
1,Good,E,VS2,60.7,62,6279,6.33,6.46,3.88
1.29,Premium,I,VS2,62.2,57,6279,7.01,6.97,4.35
1.35,Ideal,J,SI1,62.3,57,6281,7.02,7.08,4.39
1.2,Premium,H,SI1,60.8,60,6282,6.9,6.85,4.18
1,Very Good,F,VS2,62.5,58,6283,6.32,6.36,3.96
1.32,Premium,I,SI1,62.2,58,6283,7.04,6.99,4.36
1.01,Good,G,VS1,63.8,56,6283,6.27,6.34,4.02
1.1,Premium,G,VS2,60.5,60,6284,6.67,6.58,4.01
1,Very Good,E,VS2,64,59,6285,6.22,6.31,4.01
1,Fair,E,VS2,57.3,64,6285,6.59,6.46,3.79
1.18,Very Good,G,SI1,60.8,58,6286,6.81,6.85,4.15
1.04,Ideal,G,VS2,62,59,6286,6.43,6.5,4.01
1.04,Ideal,G,VS2,59.4,58,6286,6.63,6.67,3.95
1.01,Very Good,F,VS2,58.8,59,6288,6.55,6.59,3.86
1.01,Very Good,F,VS2,60.8,58,6288,6.44,6.49,3.93
1.01,Very Good,F,VS2,59.4,61,6288,6.48,6.51,3.86
1.23,Ideal,E,SI2,61.2,55,6288,6.92,7.01,4.26
1.32,Ideal,J,VS2,62.3,57,6288,6.96,7,4.35
1.09,Ideal,H,VS2,61.3,56,6288,6.57,6.63,4.05
1.01,Good,F,VS2,61.7,58,6288,6.3,6.34,3.9
1.01,Good,F,VS2,62.1,58,6288,6.28,6.35,3.92
1.22,Premium,G,SI1,62.3,58,6288,6.83,6.76,4.23
0.9,Very Good,E,VVS2,62.2,60,6289,6.04,6.12,3.78
1.01,Very Good,F,VS2,63.7,56,6289,6.29,6.34,4.02
2.49,Fair,J,I1,66.3,58,6289,8.26,8.18,5.45
1.23,Ideal,D,SI2,60.6,54,6289,6.97,7.02,4.24
1.23,Ideal,D,SI2,62.4,56,6289,6.81,6.87,4.27
1.3,Very Good,I,VS2,62.7,57,6290,6.88,6.9,4.32
1.04,Ideal,G,VS2,61.4,57,6290,6.53,6.5,4
1.04,Premium,G,VS2,62.5,58,6290,6.47,6.43,4.03
0.29,Ideal,G,VVS2,61.4,57,607,4.27,4.3,2.63
0.29,Ideal,G,VVS2,60.7,54,607,4.33,4.37,2.64
0.29,Ideal,G,VVS2,61.9,56,607,4.24,4.25,2.62
0.36,Ideal,I,VVS1,61.6,56,607,4.58,4.61,2.83
0.29,Ideal,H,VVS1,62.1,55,607,4.28,4.3,2.66
0.29,Ideal,G,VVS1,62.3,55,607,4.25,4.29,2.66
0.29,Ideal,G,VVS1,62.8,54,607,4.21,4.24,2.65
0.35,Ideal,F,SI1,61.5,54,607,4.57,4.6,2.82
0.29,Ideal,H,IF,62.2,55,607,4.25,4.28,2.65
0.29,Ideal,H,IF,60.7,57,607,4.3,4.33,2.62
0.29,Ideal,H,IF,62.1,55,607,4.26,4.29,2.65
0.34,Ideal,G,SI1,62.7,57,607,4.51,4.48,2.82
0.31,Good,F,VS1,63.9,55,607,4.27,4.3,2.74
0.24,Very Good,F,VVS2,61.8,56,608,4.01,4.04,2.48
0.24,Very Good,F,VVS2,61.7,56,608,3.98,4,2.45
0.24,Very Good,F,VVS2,60.6,59,608,4.04,4.06,2.45
0.24,Very Good,E,VVS2,62.2,56,608,3.96,3.98,2.47
0.24,Very Good,E,VVS2,62.4,54,608,3.96,3.99,2.48
0.24,Very Good,F,VVS1,62.2,57,608,3.97,4,2.48
0.24,Very Good,F,VVS1,62.3,56,608,3.97,4.01,2.49
0.24,Very Good,F,VVS1,60.4,56,608,4.05,4.07,2.45
0.24,Very Good,F,VVS1,62.5,55,608,3.98,4.02,2.49
0.37,Very Good,H,VS2,63.5,59,608,4.51,4.55,2.88
0.37,Ideal,G,SI1,61,56,608,4.61,4.68,2.84
0.36,Premium,G,SI2,59.3,59,608,4.66,4.62,2.75
0.36,Premium,G,SI2,62.4,58,608,4.58,4.56,2.85
0.36,Premium,G,SI2,60.8,58,608,4.61,4.57,2.79
0.36,Premium,G,SI2,61.9,56,608,4.59,4.55,2.83
0.3,Premium,H,VS2,61.1,59,608,4.37,4.3,2.65
0.3,Ideal,I,VS1,61.6,56,608,4.36,4.31,2.67
1.04,Ideal,G,VS2,61.8,56,6290,6.5,6.47,4.01
1.04,Ideal,G,VS2,61.9,57,6290,6.5,6.46,4.01
1,Premium,G,VS1,62.4,62,6290,6.37,6.33,3.96
1.04,Ideal,G,VS2,62.6,55,6290,6.49,6.45,4.05
1.04,Premium,G,VS2,62.6,56,6290,6.44,6.41,4.02
1,Ideal,G,VS1,62.9,57,6290,6.36,6.32,3.99
1,Premium,G,VS1,62.3,58,6290,6.39,6.3,3.95
1.01,Very Good,G,VS2,63.5,57,6291,6.36,6.39,4.05
1.23,Premium,H,VS2,61.4,59,6291,6.85,6.87,4.21
1.51,Fair,H,SI2,65.4,60,6291,7.06,6.96,4.6
0.95,Ideal,F,SI1,61.7,56,6291,6.31,6.34,3.9
1.51,Fair,H,SI2,64.5,59,6291,7.21,7.15,4.63
1.11,Ideal,E,SI1,61.4,58,6291,6.66,6.62,4.08
1.21,Ideal,I,VS1,60.5,58,6292,6.95,6.89,4.19
1.03,Very Good,H,VS1,61.9,59,6294,6.44,6.49,4
1.32,Very Good,G,SI2,62.9,57,6294,6.94,6.98,4.38
1.01,Ideal,G,VS2,62,54.9,6295,6.41,6.44,3.99
1.01,Ideal,G,VS2,59.6,59,6295,6.52,6.57,3.9
1.01,Ideal,G,VS2,62,57,6295,6.4,6.44,3.98
1.01,Ideal,G,VS2,60.6,58,6295,6.44,6.5,3.92
1,Very Good,G,VS2,60.8,55,6296,6.46,6.49,3.94
1.06,Premium,G,VS2,60.4,58,6296,6.64,6.68,4.02
1,Very Good,H,VVS1,63.5,60,6296,6.36,6.3,4.02
1,Premium,F,VS2,62.9,59,6296,6.47,6.4,4.02
1,Premium,F,VS2,62.2,57,6296,6.43,6.4,3.99
1,Very Good,F,VS2,63.2,59,6296,6.35,6.3,4
1.21,Good,J,IF,62.1,60,6299,6.81,6.87,4.25
1.03,Ideal,D,SI1,62.2,56,6299,6.48,6.45,4.02
1.54,Ideal,G,I1,61.6,55,6299,7.43,7.4,4.57
1.25,Premium,G,SI2,60.4,59,6300,6.98,6.96,4.21
1.25,Premium,I,VS2,61.2,58,6300,6.94,6.89,4.23
1.32,Very Good,I,SI2,61.2,58,6300,7.12,7.06,4.34
1.5,Very Good,E,SI2,63.5,60,6300,7.19,7.12,4.54
1.29,Ideal,H,SI2,61.6,54,6300,7,7.02,4.32
1.15,Ideal,I,SI1,61.9,56,6300,6.68,6.72,4.15
1.15,Ideal,I,SI1,61.8,55,6300,6.73,6.76,4.17
1.5,Premium,D,I1,61.7,62,6300,7.28,7.24,4.48
1.5,Good,E,SI2,61.5,65,6300,7.21,7.17,4.42
1.25,Ideal,G,SI2,61.5,56,6300,7,6.92,4.28
1.02,Premium,G,VS2,62.5,58,6301,6.41,6.46,4.02
1.02,Very Good,G,VS1,62.6,58,6301,6.36,6.46,4.01
1.16,Very Good,F,SI1,63.4,55,6301,6.73,6.65,4.24
1.21,Ideal,H,VS2,62.9,57,6302,6.8,6.75,4.26
1.3,Very Good,I,SI1,62.3,58,6302,6.93,6.96,4.33
0.9,Ideal,G,VVS2,61.6,56,6302,6.2,6.23,3.83
1.2,Ideal,I,VS2,61.1,58,6303,6.83,6.86,4.18
1,Premium,D,VS2,61.2,61,6303,6.39,6.35,3.9
1.34,Ideal,D,I1,61.7,55,6303,7.12,7.08,4.38
1.18,Ideal,I,VS2,62.3,56,6304,6.76,6.73,4.21
1.02,Ideal,F,VS2,61.5,57,6306,6.48,6.5,3.99
1.5,Good,J,SI2,63.6,58,6306,7.18,7.25,4.59
1.56,Premium,J,SI2,61.4,58,6306,7.38,7.43,4.55
1.3,Very Good,H,SI1,63.4,57,6307,6.93,6.88,4.38
1.03,Premium,F,VS2,62.4,58,6307,6.47,6.42,4.02
1.28,Ideal,I,VS2,61.4,57,6308,7.04,6.97,4.3
1.12,Ideal,H,VS1,61.9,57,6309,6.66,6.69,4.13
1.01,Very Good,E,VS2,62.3,58,6310,6.39,6.45,4
1.11,Very Good,G,VS2,62.3,58,6311,6.59,6.61,4.11
1.83,Premium,G,I1,62,58,6313,7.84,7.8,4.85
1.15,Ideal,G,SI1,62,55,6313,6.72,6.76,4.18
1,Very Good,E,VS2,63.8,59,6315,6.25,6.32,4.01
2.01,Fair,G,I1,70.2,57,6315,7.53,7.5,5.27
1,Good,E,VS2,64.1,54,6315,6.26,6.31,4.03
1.45,Very Good,J,SI1,62.4,57,6316,7.16,7.23,4.49
1.05,Ideal,E,SI1,60.7,55,6316,6.62,6.67,4.03
1.33,Premium,I,VS2,62.5,61,6316,7.02,6.99,4.38
1.12,Ideal,I,VVS2,61.6,54,6317,6.72,6.74,4.14
1.02,Ideal,H,VS1,61.4,57,6317,6.47,6.44,3.97
1.26,Very Good,I,SI1,61.9,58,6318,6.97,6.92,4.3
1,Very Good,F,VS2,62.7,58,6319,6.38,6.41,4.01
1.08,Very Good,F,VS2,63.1,57,6319,6.56,6.5,4.12
1.24,Premium,D,SI1,59.3,60,6319,7.05,7.01,4.16
1.26,Very Good,H,SI1,62.1,57,6320,6.88,6.94,4.29
1.69,Premium,I,I1,62.4,60,6320,7.56,7.59,4.73
1.71,Ideal,J,SI1,62.8,57,6320,7.58,7.55,4.75
1.14,Premium,F,SI1,60.4,58,6320,6.82,6.79,4.11
1.29,Premium,I,VS2,60.4,58,6321,7.12,7.03,4.27
1.29,Ideal,G,SI2,61.5,55,6321,7.03,6.99,4.31
1.17,Ideal,G,VS2,62.2,57,6321,6.75,6.72,4.19
1.12,Ideal,G,VS2,62.1,57,6322,6.63,6.6,4.11
1.31,Premium,I,VS2,61.9,59,6323,7.02,6.98,4.33
1.22,Very Good,H,SI1,62.4,57,6323,6.78,6.82,4.24
1.22,Very Good,H,SI1,62.5,59,6323,6.79,6.82,4.25
1.21,Very Good,E,SI1,62.9,58,6324,6.78,6.79,4.27
1.17,Ideal,H,VS2,60.3,61,6324,6.84,6.8,4.11
1.07,Ideal,G,VS2,61.1,59,6324,6.62,6.57,4.03
1,Ideal,E,SI1,62.4,55,6324,6.34,6.42,3.98
1.2,Ideal,I,VS1,62.1,57,6324,6.84,6.8,4.23
1.06,Premium,G,VS2,60.1,58,6325,6.67,6.64,4
1.06,Very Good,G,VS2,63.1,59,6325,6.48,6.45,4.08
1.01,Very Good,G,VS1,62.7,56,6326,6.36,6.46,4.02
1.3,Good,D,SI2,57.1,63,6327,7.22,7.27,4.14
1.24,Premium,H,SI1,60.1,58,6327,7.04,7.01,4.22
1.29,Ideal,J,SI1,61.6,57,6327,6.98,7.01,4.32
1.03,Premium,G,VS2,62.3,59,6327,6.42,6.38,3.99
2.14,Fair,H,I1,66.4,56,6328,8,7.92,5.29
1.18,Ideal,E,SI2,60.9,57,6328,6.86,6.89,4.19
1,Good,D,SI1,64.1,56,6328,6.28,6.24,4.01
1,Premium,F,VS2,62.8,59,6328,6.35,6.32,3.98
1,Ideal,G,VS2,60.5,56,6328,6.54,6.49,3.94
1,Premium,F,VS2,62.2,59,6328,6.37,6.29,3.94
1.01,Premium,F,VS2,60.8,58,6330,6.44,6.49,3.93
1.01,Good,F,VS2,63.9,58,6330,6.32,6.39,4.06
1.26,Ideal,J,VS1,62.2,58,6332,6.88,6.92,4.29
1.01,Good,F,VS2,60.6,62,6332,6.52,6.49,3.94
1.02,Premium,F,VS2,62.7,59,6333,6.44,6.41,4.03
1.2,Premium,H,VS2,61.4,59,6333,6.79,6.75,4.16
1.02,Ideal,G,VS2,60.6,56,6333,6.56,6.52,3.96
1.04,Very Good,G,VS2,61.1,56,6334,6.54,6.56,4.01
1.22,Very Good,G,SI1,62.1,58,6334,6.84,6.89,4.26
1.3,Premium,J,VS1,61.6,56,6334,7.06,7,4.33
1.3,Ideal,J,VS1,62.3,57,6334,7.06,6.97,4.37
1.01,Premium,G,VS1,62.7,58,6335,6.36,6.31,3.97
1.19,Ideal,G,SI1,62.3,55,6335,6.76,6.81,4.23
1.01,Good,E,VS2,63.7,56,6335,6.29,6.27,4
1.01,Premium,E,VS2,63,60,6335,6.35,6.32,3.99
1.01,Premium,E,VS2,62.9,58,6335,6.47,6.37,4.04
1.01,Premium,E,VS2,60.2,58,6335,6.56,6.52,3.94
1.01,Very Good,E,VS2,63.1,60,6335,6.3,6.26,3.96
1.01,Premium,G,VS1,61.2,58,6335,6.47,6.33,3.92
1.17,Very Good,H,SI1,59.6,62,6336,6.88,6.82,4.08
1.31,Ideal,J,SI1,62.5,56,6337,6.95,7.04,4.37
1.37,Premium,H,VS2,60.9,59,6337,7.22,7.17,4.38
1.31,Ideal,I,VS2,62.4,57,6338,6.93,6.97,4.34
0.81,Ideal,F,IF,61.5,55,6338,5.98,6.05,3.7
1.37,Ideal,J,SI1,62.1,55,6339,7.13,7.16,4.44
1,Very Good,F,VS2,62.2,55,6340,6.39,6.44,3.99
1.01,Ideal,G,VS2,62.4,57,6340,6.39,6.36,3.98
1.02,Ideal,D,SI1,62.2,56,6340,6.43,6.47,4
1.5,Fair,H,SI1,68,59,6340,7.12,6.82,4.76
1.35,Premium,I,SI1,62.1,58,6340,7.07,7,4.37
1.04,Ideal,G,VS2,62,57,6342,6.49,6.5,4.03
1.04,Very Good,F,VS2,60.1,59,6342,6.56,6.61,3.96
1.02,Ideal,E,SI1,62.6,57,6342,6.41,6.44,4.02
1.51,Premium,E,SI2,62.7,58,6342,7.27,7.24,4.55
1.51,Premium,J,VS2,62.3,59,6342,7.36,7.3,4.57
1.37,Ideal,I,VS2,61.5,56,6343,7.14,7.11,4.38
1.22,Ideal,E,SI2,62.7,57,6343,6.84,6.81,4.28
1.2,Good,D,SI2,63.7,52,6344,6.72,6.68,4.27
1.03,Premium,E,VS2,60,59,6344,6.54,6.6,3.94
1.1,Ideal,H,VS2,62.7,56,6344,6.58,6.63,4.14
2,Premium,H,I1,59.7,62,6344,8.19,8.02,4.85
1.2,Good,D,SI2,62.2,65,6344,6.75,6.7,4.18
1.01,Ideal,E,SI1,60.8,56,6346,6.53,6.47,3.95
1.01,Ideal,E,SI1,61.1,57,6346,6.5,6.47,3.96
2.02,Fair,G,I1,68,55,6346,7.77,7.72,5.27
2.02,Fair,G,I1,65.6,57,6346,7.87,7.8,5.15
1.14,Ideal,G,SI2,62.3,56,6346,6.66,6.69,4.16
1.21,Ideal,H,SI2,62.1,58,6347,6.78,6.84,4.23
1,Ideal,G,VS1,62.2,56,6349,6.35,6.41,3.97
1,Ideal,G,VS1,62.7,54,6349,6.37,6.42,4.01
1,Good,G,VS1,63.6,59,6349,6.3,6.34,4.02
1.26,Premium,I,VS2,61.2,59,6350,7.03,6.9,4.26
1.26,Premium,H,SI2,61.3,57,6350,6.96,6.87,4.24
1.2,Very Good,H,SI1,61.6,61,6350,6.81,6.77,4.18
1.62,Premium,H,SI2,63,58,6350,7.47,7.41,4.69
1.4,Ideal,J,SI1,62.1,57,6350,7.17,7.14,4.44
1.05,Ideal,G,VS2,61.7,56,6350,6.54,6.52,4.03
1.26,Ideal,I,VS2,62.6,55,6350,6.96,6.91,4.34
1.22,Premium,E,SI2,61.5,58,6351,6.85,6.81,4.2
1,Good,F,VS2,63.9,62,6352,6.26,6.32,4.02
1.1,Very Good,D,SI1,60.7,55,6352,6.71,6.74,4.08
1,Very Good,F,VS2,62.9,55,6352,6.34,6.38,4
1,Premium,F,VS2,62.4,60,6352,6.35,6.38,3.97
1,Premium,F,VS2,62.6,60,6352,6.29,6.37,3.96
1.02,Ideal,G,VS2,62.5,57,6352,6.41,6.45,4.02
1.25,Ideal,I,SI1,61,56,6352,6.97,7.02,4.27
1.06,Premium,D,SI1,61.1,59,6352,6.63,6.56,4.03
1.01,Fair,G,VS1,64.6,60,6353,6.34,6.22,4.06
1.01,Premium,G,VS1,59.9,59,6353,6.51,6.48,3.89
1.01,Very Good,G,VS1,60.7,63,6353,6.4,6.38,3.88
1.01,Premium,G,VS1,60.5,60,6353,6.52,6.44,3.92
1.01,Ideal,G,VS2,61.6,56,6353,6.46,6.43,3.97
1.01,Very Good,G,VVS2,61.3,61,6354,6.32,6.47,3.92
1.24,Very Good,G,SI2,60.5,60,6354,6.93,7.01,4.22
1.22,Premium,H,VS2,60.9,58,6354,6.89,6.86,4.19
1.22,Premium,H,SI1,61.9,56,6354,6.89,6.84,4.25
1.22,Premium,I,VS1,60.6,61,6354,6.94,6.88,4.19
1.07,Premium,G,VS2,62.1,58,6355,6.55,6.59,4.08
1.07,Very Good,G,VS2,63,55,6355,6.5,6.55,4.11
1.07,Ideal,G,VS2,62.2,57,6355,6.53,6.55,4.07
1.07,Very Good,G,VS2,60.5,56,6355,6.64,6.71,4.04
1.07,Very Good,G,VS2,60.9,58,6355,6.56,6.6,4.01
1.02,Ideal,G,VS2,60.5,57,6356,6.51,6.55,3.95
1.29,Premium,J,VVS2,62.6,59,6356,6.98,6.91,4.35
2.15,Premium,H,I1,62.9,57,6357,8.25,8.2,5.18
1,Premium,E,VS2,62.9,59,6359,6.38,6.27,3.98
0.92,Ideal,F,VS1,61.3,56,6360,6.26,6.3,3.85
1.04,Good,G,VS1,63.8,57,6360,6.42,6.37,4.08
1.04,Premium,G,VS1,60.2,58,6360,6.65,6.64,4
1.04,Very Good,F,VS2,61,60,6361,6.54,6.48,3.97
1.53,Good,H,I1,62.3,55.6,6361,7.34,7.38,4.59
1.26,Ideal,G,SI2,61.8,57,6362,6.93,6.95,4.29
1.19,Premium,H,VS2,61,59,6363,6.91,6.8,4.18
1.06,Ideal,F,SI1,61.7,55,6363,6.58,6.56,4.06
1.5,Good,I,SI2,65,55,6364,7.15,7.24,4.68
1.02,Very Good,E,VS2,60.6,61,6366,6.44,6.47,3.91
1.39,Ideal,J,VS2,60.3,57,6366,7.26,7.24,4.37
1.01,Fair,F,VS1,64.6,60,6366,6.26,6.16,4.01
1.16,Premium,E,SI1,61.3,60,6366,6.7,6.64,4.09
1.01,Fair,D,VS2,65.3,58,6366,6.29,6.24,4.09
1.52,Premium,J,SI1,61,59,6367,7.41,7.35,4.5
1.01,Very Good,G,VS1,62.3,60,6368,6.35,6.49,4
1.53,Good,J,SI2,64.1,58,6368,7.3,7.18,4.64
1.31,Premium,H,VS2,62.1,58,6368,7.01,6.86,4.31
1.04,Ideal,H,VS1,62.5,53,6368,6.5,6.52,4.07
1.04,Ideal,H,VS1,62,54,6368,6.52,6.54,4.05
1.17,Ideal,H,SI1,61.1,57,6368,6.77,6.83,4.16
1.1,Very Good,G,VS2,61.9,57,6369,6.59,6.65,4.1
1.38,Very Good,H,SI2,62.3,60,6369,7.07,7.12,4.42
1,Good,G,VS2,59.1,62,6369,6.42,6.45,3.8
1.01,Premium,G,VVS2,61.9,58,6371,6.48,6.38,3.98
1.01,Very Good,G,VVS2,62.1,63,6371,6.38,6.31,3.94
1.25,Ideal,G,SI2,61.1,55,6371,6.95,6.99,4.26
1.22,Ideal,D,SI2,61.8,58,6372,6.84,6.92,4.25
1.29,Ideal,I,SI1,61.9,56,6372,6.97,7.03,4.33
1.05,Very Good,D,VS2,62.9,57,6373,6.39,6.51,4.06
1.2,Very Good,E,SI1,63.2,57,6373,6.75,6.69,4.25
1.54,Fair,I,SI2,65,56,6375,7.22,7.14,4.67
1,Very Good,E,VS2,59.4,59,6377,6.44,6.46,3.83
2.03,Fair,G,I1,66.3,56,6377,7.81,7.75,5.16
2.03,Premium,G,I1,61.1,58,6377,8.11,8.06,4.94
1,Ideal,G,VS2,62.4,59,6377,6.36,6.4,3.98
1.66,Ideal,J,SI2,60.8,57,6377,7.68,7.65,4.66
1.24,Premium,E,SI2,61.1,59,6377,6.99,6.89,4.24
1,Ideal,G,VS1,62.6,56,6377,6.39,6.36,3.99
1,Premium,G,VS1,62.4,60,6377,6.39,6.37,3.98
1.18,Ideal,I,VVS1,59.7,54,6378,6.92,6.99,4.15
1.13,Premium,G,VS2,62.7,57,6379,6.67,6.61,4.16
1.2,Ideal,I,VS1,61.5,59,6380,6.82,6.84,4.2
1.24,Ideal,I,SI1,60.6,59,6381,6.97,7.03,4.24
1.14,Fair,G,VS1,57.5,67,6381,0,0,0
1,Very Good,F,VS2,63.3,55,6382,6.34,6.29,4
1.24,Premium,I,VVS2,62.7,58,6383,6.85,6.89,4.31
1.27,Ideal,E,SI2,60.2,57,6383,7.09,7.14,4.28
1.51,Ideal,H,SI2,61.7,57,6384,7.39,7.36,4.55
1,Very Good,G,VS2,62.8,62,6386,6.28,6.33,3.96
1.46,Premium,J,SI2,60.1,58,6387,7.43,7.34,4.44
1.22,Premium,H,SI1,60.6,60,6387,6.92,6.85,4.17
1.1,Premium,G,VS2,62.8,58,6387,6.6,6.58,4.14
1.1,Ideal,G,VS2,62.3,56,6387,6.63,6.59,4.12
1.22,Very Good,H,SI1,63.5,55,6387,6.78,6.73,4.29
1.09,Very Good,G,VS2,60.9,56,6388,6.67,6.7,4.07
1.22,Ideal,H,SI1,62.1,56,6388,6.87,6.81,4.25
1,Very Good,G,VS2,63.8,58,6389,6.31,6.35,4.04
1.23,Ideal,I,SI1,61.8,58,6389,6.87,6.91,4.26
1,Good,D,VS2,64.1,58,6389,6.24,6.33,4.03
1,Good,F,VS1,64.2,60,6389,6.18,6.28,4
1.33,Premium,I,VS1,61.7,58,6390,7.09,7.14,4.39
1.01,Fair,F,VS1,64.5,59,6391,6.27,6.19,4.02
1.13,Ideal,F,SI1,59.6,57,6391,6.83,6.79,4.06
1.02,Ideal,F,VS2,61,56,6393,6.55,6.62,4.02
1.51,Premium,F,SI2,62.7,58,6393,7.33,7.29,4.58
1.51,Good,J,SI1,64.1,61,6394,7.16,7.19,4.6
1.35,Ideal,J,SI1,62.3,57,6396,7.08,7.02,4.39
1.27,Ideal,I,VS1,62.8,57,6396,6.86,6.89,4.32
1.02,Very Good,E,SI1,62.7,60,6397,6.45,6.4,4.03
1.36,Good,E,SI2,58,64,6397,7.26,7.19,4.19
1.7,Ideal,H,I1,61.3,55,6397,7.7,7.63,4.7
1.2,Premium,E,SI2,62.6,56,6397,6.84,6.77,4.26
1,Fair,F,VS1,65.3,59,6397,6.25,6.21,4.07
1.02,Premium,E,VS2,60.4,58,6397,6.51,6.47,3.92
1.21,Fair,G,SI1,64.6,60,6397,6.69,6.62,4.3
1.02,Good,F,VS2,64.2,59,6397,6.4,6.28,4.07
1.02,Premium,G,VS2,62.1,58,6397,6.5,6.44,4.02
1.22,Ideal,H,SI2,62.3,57,6398,6.84,6.89,4.28
1.22,Ideal,I,SI1,62.3,58,6398,6.8,6.82,4.24
1.01,Very Good,E,VS2,60.9,57,6399,6.41,6.47,3.92
1.01,Good,E,VS2,63.3,60,6399,6.3,6.33,4
1.01,Good,E,VS2,63.3,58,6399,6.35,6.38,4.03
1.01,Very Good,E,VS2,62,55,6399,6.42,6.46,3.99
1.01,Very Good,E,VS2,58.1,60,6399,6.51,6.58,3.8
1.25,Very Good,G,SI2,61.4,59,6399,6.97,6.93,4.27
1.06,Ideal,F,VS2,60.5,57,6399,6.6,6.58,3.99
0.84,Ideal,D,VVS1,62,54,6399,6.04,6.08,3.76
1.06,Premium,F,VS2,62.3,58,6399,6.56,6.51,4.07
1,Premium,E,VS2,62.9,58,6400,6.36,6.29,3.98
1.35,Premium,G,SI2,58.4,59,6400,7.32,7.28,4.26
1.22,Ideal,F,SI2,62.5,56.2,6401,6.81,6.85,4.27
1.37,Ideal,I,SI2,62.2,56,6401,7.07,7.14,4.42
1.57,Premium,I,SI2,62.2,60,6401,7.43,7.36,4.6
1.27,Ideal,I,VS2,62.6,57,6401,6.92,6.88,4.32
1.47,Premium,I,SI2,61.6,59,6403,7.29,7.32,4.5
1.05,Ideal,F,VS2,62.7,56,6403,6.52,6.59,4.11
1.27,Ideal,H,SI2,61.8,57,6403,6.93,6.96,4.29
1.22,Premium,E,SI1,59.7,61,6403,7.03,6.9,4.16
1.23,Ideal,E,SI2,61.2,55,6403,7.01,6.92,4.26
1.04,Very Good,F,VS2,59,57,6405,6.64,6.69,3.93
1.17,Ideal,I,SI1,61.7,56,6405,6.73,6.78,4.17
1.3,Premium,J,VVS2,62.9,60,6405,6.91,6.86,4.33
1.33,Premium,H,SI2,62.8,52,6405,7.15,7.06,4.46
1.01,Very Good,G,VS2,61.6,60,6406,6.42,6.47,3.97
1.01,Very Good,G,VS2,63.4,55,6406,6.35,6.4,4.04
1.23,Ideal,H,VS2,59,57,6406,7.05,6.99,4.14
1.3,Premium,H,SI2,60.1,57,6406,7.17,7.13,4.3
1.01,Good,G,VS1,59.2,63,6407,6.5,6.48,3.84
1.22,Very Good,G,SI2,63.2,58,6409,6.82,6.76,4.29
1.32,Ideal,G,SI2,62.9,57,6409,6.98,6.94,4.38
1.02,Ideal,G,VS2,62.5,58,6410,6.36,6.44,4
1.08,Ideal,H,VS2,60.3,57,6411,6.67,6.7,4.03
0.3,Premium,I,VS1,60.3,58,608,4.34,4.32,2.61
0.3,Premium,I,VS1,59.8,60,608,4.36,4.34,2.6
0.3,Premium,I,VS1,60.4,58,608,4.4,4.34,2.64
0.3,Ideal,I,VS1,61,56,608,4.37,4.35,2.66
0.3,Premium,I,VS1,59.1,59,608,4.38,4.35,2.58
0.3,Premium,I,VS1,58.8,61,608,4.43,4.38,2.59
0.3,Premium,I,VS1,60.5,60,608,4.33,4.3,2.61
0.3,Premium,I,VS1,60.8,59,608,4.32,4.3,2.62
0.3,Very Good,I,VS1,63.4,54,608,4.32,4.29,2.73
0.3,Ideal,I,VS1,62.5,54,608,4.32,4.29,2.69
0.3,Ideal,I,VS1,62.5,57,608,4.32,4.29,2.69
0.3,Premium,I,VS1,61.7,58,608,4.32,4.27,2.65
0.3,Premium,I,VS1,62,58,608,4.3,4.25,2.65
0.3,Premium,I,VS1,62.9,58,608,4.29,4.26,2.69
0.3,Premium,I,VS1,61.7,59,608,4.3,4.26,2.64
0.3,Premium,I,VS1,63,53,608,4.31,4.26,2.7
0.3,Premium,I,VS1,61.6,60,608,4.3,4.27,2.64
0.3,Very Good,I,VS1,63.3,59,608,4.23,4.2,2.67
0.3,Premium,I,VS1,62.9,59,608,4.3,4.22,2.68
0.3,Good,I,VS1,63.7,58,608,4.25,4.23,2.7
0.3,Very Good,I,VS1,63.5,57,608,4.29,4.24,2.71
0.3,Premium,H,VS2,62.3,58,608,4.33,4.31,2.69
0.3,Premium,H,VS2,60.9,61,608,4.35,4.32,2.64
0.3,Ideal,H,VS2,60.7,57,608,4.37,4.33,2.64
0.3,Premium,H,VS2,61.8,60,608,4.31,4.26,2.65
0.3,Premium,H,VS2,60.9,61,608,4.3,4.27,2.61
0.3,Very Good,H,VS2,63.5,54,608,4.3,4.27,2.72
0.3,Premium,H,VS2,62.2,59,608,4.31,4.28,2.67
0.3,Premium,H,VS2,61.1,61,608,4.33,4.31,2.64
0.3,Premium,H,VS2,62.5,58,608,4.28,4.26,2.67
1.06,Ideal,G,VS2,62.7,55,6411,6.53,6.49,4.08
1.01,Good,G,VS1,63.2,61,6412,6.33,6.35,4.01
1.01,Premium,G,VS1,59.8,59,6412,6.5,6.55,3.9
1.28,Ideal,G,SI2,61.5,57,6412,6.93,7,4.28
1.02,Ideal,F,VS2,62.1,57,6412,6.44,6.37,3.98
1.08,Premium,G,VS2,59.4,59,6415,6.68,6.75,3.99
1.08,Very Good,G,VS2,62.3,58,6415,6.5,6.54,4.06
1.27,Premium,I,VS1,62.2,59,6415,6.87,6.92,4.29
1.02,Premium,G,VS2,62.5,58,6416,6.46,6.41,4.02
1.01,Ideal,F,VS2,61,57,6416,6.38,6.5,3.93
1.01,Premium,F,VS2,59.2,60,6416,6.51,6.54,3.86
1.01,Good,F,VS2,63.1,60,6416,6.36,6.39,4.02
1.01,Very Good,F,VS2,62.8,59,6416,6.33,6.41,4
1.01,Premium,F,VS2,62.2,60,6416,6.37,6.4,3.97
1.01,Premium,F,VS2,61.7,58,6416,6.42,6.48,3.98
1.01,Ideal,F,VS2,62,56,6416,6.46,6.51,4.02
1.2,Premium,H,VS2,62.5,58,6416,6.77,6.73,4.23
1.2,Premium,H,VS2,62.4,59,6416,6.73,6.69,4.19
1.2,Premium,H,VS2,62.8,58,6416,6.75,6.7,4.22
1.02,Ideal,G,VS2,60.4,57,6416,6.55,6.53,3.95
1.02,Premium,G,VS2,61.5,59,6416,6.44,6.41,3.95
1.02,Ideal,G,VS2,62.5,55,6418,6.43,6.49,4.04
1.02,Ideal,G,VS2,62.8,57,6418,6.36,6.45,4.02
1.21,Ideal,I,VS1,62.2,54.5,6418,6.81,6.86,4.25
1.22,Very Good,I,VS2,59.6,58,6419,6.95,6.98,4.15
1.25,Ideal,I,VS2,62.5,56,6419,6.87,6.92,4.31
1.09,Ideal,H,VS2,61.4,57,6419,6.61,6.65,4.07
1.17,Ideal,G,SI1,60.7,56,6419,6.79,6.84,4.13
1.22,Very Good,G,SI1,63.4,56,6421,6.75,6.78,4.29
1.5,Good,J,SI2,63.6,58,6421,7.25,7.18,4.59
1.2,Very Good,H,VS2,63.2,54,6423,6.73,6.78,4.27
1.04,Very Good,G,VS2,62.8,56,6424,6.42,6.48,4.05
1,Ideal,F,VS2,61.7,58,6424,6.37,6.43,3.95
1.29,Ideal,H,SI1,62.6,56,6424,6.96,6.93,4.35
1.49,Fair,H,I1,66.9,61,6425,6.93,6.89,4.62
1.01,Premium,E,VS2,62.1,58,6425,6.42,6.34,3.96
1.08,Ideal,H,SI1,60.5,57,6426,6.63,6.67,4.02
1.06,Ideal,D,SI1,62.6,56,6426,6.49,6.52,4.07
1.29,Premium,I,SI1,61.8,59,6429,6.99,6.96,4.31
1.01,Good,D,VS2,61.6,61,6429,6.43,6.45,3.97
1.27,Ideal,J,VVS2,62.2,54,6430,6.92,6.98,4.32
1.32,Ideal,I,SI1,62.2,57,6431,7.07,7.01,4.38
1.32,Premium,H,SI2,62.7,58,6431,7.05,6.99,4.4
1.02,Very Good,G,VS2,60.9,56,6432,6.47,6.51,3.95
1,Very Good,G,VS1,59.1,61,6435,6.48,6.54,3.85
1.26,Premium,H,SI1,62.1,57,6435,6.94,6.88,4.29
1.23,Ideal,I,VS1,61.5,56,6435,6.86,6.89,4.23
1.14,Very Good,G,VS2,63.2,56,6435,6.67,6.63,4.2
1.2,Premium,F,SI1,62.9,58,6435,6.76,6.69,4.23
1.69,Premium,I,I1,62.4,60,6436,7.59,7.56,4.73
1,Good,G,SI1,59.9,58,6437,6.44,6.48,3.87
1.24,Very Good,G,SI1,61.8,59,6438,6.85,6.88,4.24
1.31,Premium,I,VS2,61.9,59,6438,7.02,6.98,4.33
1.01,Very Good,F,VS1,59.4,58,6439,6.46,6.54,3.86
1.01,Ideal,G,VS2,61.7,56,6439,6.43,6.46,3.98
1.01,Ideal,G,VS2,61.9,56,6439,6.42,6.46,3.99
1.01,Ideal,G,VS2,61.9,56,6439,6.41,6.45,3.98
1.23,Ideal,H,SI1,61,56,6439,6.96,6.92,4.23
1,Very Good,D,VS2,63.1,59,6440,6.26,6.36,3.98
1.18,Ideal,H,SI1,61.5,57,6440,6.78,6.82,4.18
1.25,Good,F,VS2,63.9,58,6440,6.76,6.71,4.31
1.21,Premium,E,SI1,62.9,58,6440,6.79,6.78,4.27
1.07,Very Good,E,VS2,60.4,58,6441,6.61,6.66,4.01
1.58,Ideal,I,SI2,62.3,57,6441,7.42,7.34,4.6
1.01,Premium,G,VS1,62.7,56,6441,6.46,6.36,4.02
0.9,Premium,D,VS1,61.2,58,6441,6.27,6.25,3.83
1.01,Premium,G,VS1,62,58,6441,6.44,6.4,3.98
1.33,Very Good,J,VS1,61.7,55,6442,7.07,7.12,4.38
1.3,Ideal,F,SI2,62.2,56,6442,6.96,7,4.34
1.3,Premium,I,VS2,60.1,58,6442,7.1,7.14,4.28
1.27,Very Good,I,VS2,62.4,58,6443,6.83,6.89,4.28
1.36,Ideal,D,SI2,61.2,57,6443,7.15,7.19,4.39
1.3,Good,D,SI2,57.1,63,6443,7.27,7.22,4.14
1.5,Premium,H,SI2,61.8,57,6443,7.34,7.31,4.53
0.91,Ideal,D,VS2,60.9,57,6444,6.26,6.32,3.83
1,Good,E,VS2,60.6,65,6445,6.29,6.36,3.83
1.11,Premium,G,VS2,60.4,58,6445,6.76,6.72,4.07
1.01,Good,F,VS2,63.9,58,6446,6.39,6.32,4.06
1.01,Premium,F,VS2,60.9,58,6446,6.47,6.41,3.92
1.02,Very Good,D,VS2,63.9,59,6447,6.29,6.33,4.03
1.14,Premium,F,SI1,61.1,58,6448,6.77,6.72,4.12
1.22,Premium,G,SI1,61.2,60,6449,6.82,6.75,4.15
1.01,Very Good,G,VS2,63.6,56,6449,6.34,6.39,4.05
1,Very Good,G,VS2,62.4,58,6449,6.31,6.38,3.96
1.22,Premium,G,SI1,62.1,58,6449,6.89,6.84,4.26
1.01,Ideal,G,VS2,61.9,58,6449,6.37,6.43,3.96
1.33,Ideal,J,VS1,62.5,58,6449,6.99,7.03,4.38
1.23,Ideal,I,SI1,62.1,57,6449,6.83,6.88,4.26
1.01,Good,D,VS2,64.5,58,6449,6.27,6.31,4.06
1.2,Ideal,H,SI1,62,58,6450,6.78,6.83,4.22
1,Premium,G,VS2,60.6,59,6451,6.42,6.36,3.87
1.3,Ideal,I,SI1,62.3,58,6451,6.94,7,4.34
1.28,Premium,I,VS2,62.5,61,6451,6.89,6.86,4.3
1.2,Premium,H,SI1,61.3,60,6451,6.87,6.81,4.19
1.28,Ideal,H,SI2,62.8,57,6451,6.92,6.87,4.33
1,Premium,G,VS2,60,59,6451,6.54,6.46,3.9
1.2,Premium,G,SI1,62.7,58,6451,6.71,6.66,4.19
1.09,Very Good,G,VS1,59.7,63,6453,6.65,6.74,4
1.09,Ideal,H,VS2,62.9,58,6453,6.56,6.51,4.11
1.31,Good,I,VS1,64.3,58.7,6455,6.84,6.87,4.41
1.45,Fair,F,SI2,64.4,58,6455,7.17,7.11,4.59
1.22,Ideal,F,SI1,62.8,55,6456,6.87,6.79,4.29
1.23,Very Good,H,SI1,61,59,6458,6.91,6.86,4.2
1.04,Ideal,H,SI1,61.6,55,6458,6.51,6.54,4.02
1.04,Premium,F,VS2,60.1,59,6458,6.61,6.56,3.96
1.04,Ideal,G,VS2,62,57,6458,6.5,6.49,4.03
1.28,Ideal,F,SI2,62.3,55,6458,6.96,6.91,4.32
1.36,Premium,F,SI2,61.4,59,6458,7.16,7.12,4.38
1.55,Premium,H,SI2,58,60,6458,7.61,7.58,4.41
1.5,Premium,H,SI2,62.1,58,6458,7.31,7.21,4.51
1.12,Ideal,E,SI1,61.6,55,6458,6.69,6.66,4.11
1.23,Very Good,H,VS2,61.6,59,6459,6.84,6.86,4.22
1.23,Very Good,H,VS2,60.6,59,6459,6.89,6.94,4.19
1.22,Ideal,I,VS1,62.3,54,6459,6.82,6.86,4.26
1.07,Ideal,F,VS2,62,57,6459,6.5,6.47,4.08
1.03,Ideal,D,SI1,59.9,57,6460,6.61,6.68,3.98
1.03,Premium,E,VS2,60,59,6460,6.6,6.54,3.94
1.02,Good,E,VS2,63.2,60,6462,6.29,6.34,3.99
1,Premium,G,VS1,61.2,58,6462,6.49,6.38,3.94
1.34,Very Good,G,SI2,62.2,56,6463,7,7.08,4.38
1.34,Premium,G,SI2,61.7,58,6464,7.04,7.1,4.36
1.14,Very Good,D,SI1,62.7,59,6464,6.64,6.67,4.17
1,Good,G,VS1,63.6,59,6465,6.34,6.3,4.02
1,Ideal,G,VS1,62.2,56,6465,6.41,6.35,3.97
1,Ideal,G,VS1,62.7,54,6465,6.42,6.37,4.01
0.9,Very Good,E,VVS2,62,55,6466,6.08,6.17,3.8
1.03,Ideal,F,VS2,60.4,56,6467,6.59,6.56,3.97
1,Very Good,F,VS1,62.9,56,6468,6.38,6.43,4.03
1,Very Good,F,VS1,62.6,57,6468,6.35,6.42,4
1.2,Good,H,VS2,62.6,56,6468,6.73,6.76,4.22
1,Premium,F,VS2,58.6,61,6468,6.53,6.5,3.82
1,Premium,F,VS2,62.4,60,6468,6.38,6.35,3.97
1.25,Ideal,E,SI1,61.1,57,6468,6.93,6.89,4.22
1.1,Premium,D,SI1,60.7,55,6468,6.74,6.71,4.08
1,Premium,F,VS2,62.6,60,6468,6.37,6.29,3.96
1.22,Ideal,I,VS1,62.3,57,6469,6.81,6.85,4.25
1.22,Ideal,I,VS1,61.9,55.7,6469,6.81,6.84,4.23
1.01,Premium,G,VVS2,61.3,61,6470,6.47,6.32,3.92
1.31,Ideal,F,SI1,62.4,56,6470,6.98,6.9,4.33
1.1,Ideal,H,VS1,61.4,57,6470,6.65,6.64,4.08
1.01,Premium,G,VVS2,61.9,60,6470,6.45,6.41,3.98
1.07,Ideal,G,VS2,63,55,6471,6.55,6.5,4.11
1.07,Premium,G,VS2,60.9,58,6471,6.6,6.56,4.01
1.07,Ideal,G,VS2,62.2,57,6471,6.55,6.53,4.07
1.07,Premium,G,VS2,60.5,56,6471,6.71,6.64,4.04
1.07,Premium,G,VS2,62.1,58,6471,6.59,6.55,4.08
1.2,Ideal,H,SI1,62.2,56,6471,6.8,6.77,4.23
1.27,Ideal,H,SI1,61.5,55,6472,6.97,6.95,4.28
1.29,Ideal,E,SI2,62.8,57,6473,6.94,6.88,4.34
1.7,Good,I,I1,63.6,58,6474,7.52,7.48,4.77
1.26,Ideal,H,SI1,61.7,58,6476,6.95,6.9,4.27
1.06,Good,G,VS1,63.4,57,6477,6.45,6.48,4.1
1.53,Ideal,H,I1,62.3,56,6477,7.38,7.34,4.59
1.26,Ideal,E,SI2,61,57,6477,7.03,6.97,4.27
1.21,Ideal,G,VS2,61.7,56,6478,6.85,6.83,4.22
1.02,Very Good,F,VS2,59.4,58,6479,6.52,6.62,3.9
1.02,Ideal,F,VS2,62.7,54,6479,6.42,6.5,4.05
1.02,Very Good,F,VS2,61.7,58,6479,6.47,6.5,4
1.02,Premium,F,VS2,61.3,58,6479,6.42,6.54,3.97
1.02,Good,F,VS2,63.3,59,6479,6.37,6.4,4.04
1.02,Ideal,F,VS2,62.7,56,6479,6.39,6.44,4.02
1.07,Ideal,H,VS1,60.2,59,6479,6.66,6.69,4.02
1.03,Premium,G,VS1,62.1,59,6479,6.48,6.4,4
1.01,Very Good,E,VS2,63.1,56,6480,6.34,6.4,4.02
1.09,Ideal,G,VS2,62.3,57,6480,6.6,6.57,4.1
1.33,Ideal,H,SI2,62.7,57,6480,7.05,6.98,4.4
1.33,Premium,G,SI2,63,59,6480,7,6.97,4.4
1.33,Very Good,H,SI2,62.5,58,6482,7.04,6.97,4.38
1.06,Very Good,G,VS2,61.7,57,6483,6.5,6.57,4.03
1.31,Ideal,H,SI2,62.2,57,6484,6.96,7,4.34
1.03,Premium,F,VS2,62,58,6484,6.5,6.46,4.02
1.2,Ideal,H,SI1,60.8,57,6485,6.9,6.88,4.19
1.05,Ideal,G,VS2,60.8,57,6486,6.58,6.65,4.02
1.05,Ideal,G,VS2,61.9,56,6486,6.52,6.56,4.05
1.05,Very Good,G,VS2,62.8,57,6486,6.45,6.49,4.06
1.03,Very Good,G,VS1,60.6,58,6487,6.48,6.55,3.95
1.2,Ideal,H,VS2,59.9,57,6487,6.91,6.87,4.13
1.01,Premium,E,VS2,62.4,60,6488,6.39,6.43,4
1.01,Very Good,E,VS2,62.9,57,6488,6.37,6.43,4.02
0.94,Ideal,G,VVS1,62.4,58,6488,6.22,6.27,3.9
1.24,Ideal,H,SI1,60.9,57,6488,6.9,6.95,4.22
1.22,Premium,G,SI1,60.7,59,6492,6.92,6.96,4.21
1.15,Ideal,G,VS2,61.4,57,6492,6.78,6.74,4.15
1.15,Premium,G,VS2,61.5,58,6492,6.76,6.71,4.14
1.2,Premium,G,SI1,63,60,6494,6.81,6.75,4.27
1.38,Very Good,J,VS2,62.7,56,6494,7.06,7.11,4.44
1.51,Premium,E,I1,59,62,6494,7.41,7.36,4.36
1.18,Ideal,I,VVS1,59.7,54,6494,6.99,6.92,4.15
1.37,Premium,G,SI2,59.6,60,6495,7.24,7.18,4.3
1.1,Very Good,H,VVS2,59.7,57.8,6497,6.7,6.76,4.01
1.01,Very Good,G,VS1,62.8,59,6499,6.34,6.37,3.99
1.01,Premium,G,VS1,62.6,59,6499,6.38,6.46,4.02
1.01,Premium,G,VS1,62.6,59,6499,6.38,6.43,4.01
1.01,Good,G,VS1,63.2,58,6499,6.34,6.38,4.02
1.01,Premium,G,VS1,62.7,58,6499,6.38,6.41,4.01
1.01,Good,G,VS1,63.7,57,6499,6.32,6.37,4.04
1.01,Premium,G,VS1,60.8,58,6499,6.44,6.51,3.94
1.01,Premium,G,VS1,62.3,59,6499,6.38,6.42,3.99
1.01,Ideal,G,VS1,61.8,57,6499,6.4,6.45,3.97
1.02,Ideal,G,VS2,61.4,55,6499,6.48,6.51,3.99
1.2,Premium,H,VS2,62.8,59,6500,6.75,6.7,4.22
1.14,Very Good,G,VS2,61.3,57,6500,6.69,6.78,4.13
1.01,Ideal,F,VS2,62.6,57,6501,6.39,6.43,4.01
1.01,Very Good,E,SI1,63.4,55,6501,6.38,6.42,4.06
1.2,Ideal,G,SI1,61.2,56,6502,6.92,6.84,4.21
1.35,Ideal,H,VS2,61.6,55,6502,7.08,7.02,4.34
2.07,Fair,G,I1,67.7,56,6503,7.76,7.73,5.25
1.24,Ideal,F,SI2,61.4,58,6503,6.85,6.9,4.22
1.12,Premium,G,VS2,61.7,56,6503,6.72,6.61,4.11
1.01,Ideal,G,VS1,62,57,6504,6.44,6.36,3.97
1.08,Good,H,VVS1,63.1,57,6504,6.52,6.57,4.13
1.09,Premium,G,VS2,60.9,56,6504,6.7,6.67,4.07
1.22,Premium,I,VS1,59.4,60,6504,7.02,6.96,4.15
1.01,Ideal,G,VS2,61.8,57,6504,6.43,6.41,3.97
1.09,Premium,G,VS2,61.7,58,6504,6.6,6.53,4.05
1.02,Premium,G,VS1,60.8,58,6505,6.52,6.47,3.95
1.21,Premium,H,SI1,61.6,61,6505,6.88,6.83,4.22
1.32,Premium,H,VS2,61.5,59,6505,7.04,7.01,4.32
1.21,Premium,D,SI2,62.5,57,6505,6.79,6.71,4.22
1.21,Premium,D,SI2,62.5,57,6505,6.79,6.71,4.22
1.29,Ideal,F,SI2,61.7,54,6509,7.08,6.99,4.34
1.01,Good,G,VS1,64,60,6509,6.29,6.33,4.04
1.01,Good,E,VS1,64.6,58,6509,6.22,6.29,4.04
1.29,Ideal,I,VS2,62.7,57,6509,6.97,6.91,4.35
1.02,Ideal,F,VS2,62.9,57,6509,6.42,6.33,4.01
1.23,Ideal,G,SI1,61.4,56,6509,6.94,6.91,4.25
1.51,Premium,H,SI2,62.9,58,6511,7.31,7.26,4.58
1.51,Ideal,I,VS2,60.7,57,6511,7.42,7.35,4.48
1.51,Good,J,SI1,64.1,61,6511,7.19,7.16,4.6
1.2,Ideal,H,SI1,62.7,55,6512,6.76,6.73,4.23
1.01,Ideal,G,VS2,60.1,55,6512,6.53,6.58,3.94
1.11,Ideal,F,SI1,61.1,57,6512,6.67,6.69,4.08
1.53,Premium,H,SI2,61.5,60,6512,7.46,7.39,4.56
3,Very Good,H,I1,63.1,55,6512,9.23,9.1,5.77
1.33,Very Good,I,SI1,62.6,56,6513,6.97,7.03,4.38
0.92,Ideal,D,VS2,61.4,56,6513,6.26,6.28,3.85
1.01,Very Good,E,VS2,63.3,58,6516,6.38,6.35,4.03
1.01,Very Good,E,VS2,63.3,60,6516,6.33,6.3,4
1.01,Premium,E,VS2,58.1,60,6516,6.58,6.51,3.8
1.01,Ideal,G,VS2,61.5,57,6516,6.49,6.45,3.98
1.01,Very Good,E,VS2,61.1,62,6517,6.39,6.5,3.94
1.01,Good,E,VS2,58.9,62,6517,6.55,6.63,3.88
1.15,Ideal,E,SI1,60.2,57,6517,6.8,6.77,4.09
1,Very Good,E,VS2,62.6,60,6518,6.35,6.4,3.99
1.2,Ideal,H,SI1,62.1,56,6518,6.83,6.76,4.22
1.22,Ideal,F,SI2,62.5,56,6518,6.85,6.81,4.27
1.32,Premium,H,VVS2,61.3,58,6520,7.05,7.01,4.31
1,Premium,F,VS2,61.9,59,6521,6.36,6.41,3.95
2,Good,J,I1,63.6,62,6521,7.97,7.8,5.02
1.01,Very Good,E,VS2,62.2,58,6522,6.36,6.41,3.97
1.01,Very Good,E,VS2,60.4,58,6522,6.47,6.6,3.95
1.01,Very Good,E,VS2,63.3,56,6522,6.34,6.37,4.02
1.01,Good,E,VS2,58,60,6522,6.64,6.68,3.86
1.5,Good,J,SI1,64.5,56,6523,7.09,7.18,4.6
1.07,Very Good,G,VS2,62.9,59,6525,6.49,6.52,4.09
1.13,Ideal,G,VS2,62.7,57,6525,6.65,6.68,4.18
1.19,Very Good,F,SI1,60.8,59,6526,6.85,6.89,4.18
1.2,Very Good,G,SI1,62.8,60,6526,6.71,6.79,4.24
1.2,Very Good,G,SI1,62.8,57,6526,6.68,6.73,4.21
1.11,Premium,H,VS2,61.1,59,6527,6.66,6.63,4.06
1.04,Ideal,G,VS2,60.8,57,6529,6.55,6.57,3.99
1.01,Premium,G,VS1,59.8,59,6529,6.55,6.5,3.9
1.01,Very Good,G,VS1,63.2,61,6529,6.35,6.33,4.01
1.01,Very Good,G,VS1,63.5,59,6529,6.36,6.31,4.02
1.01,Good,G,VS1,63.7,56,6529,6.37,6.29,4.03
1.31,Premium,H,SI2,60.8,58,6529,7.13,7.08,4.32
1.08,Ideal,G,VS2,62.5,56,6530,6.57,6.54,4.1
1.15,Fair,G,VS1,64.6,57,6530,6.6,6.5,4.23
1.22,Very Good,F,SI1,63.1,58,6530,6.8,6.74,4.27
1.22,Very Good,G,SI2,59.2,61,6531,6.99,6.92,4.12
1.09,Ideal,D,SI1,61.3,55.9,6532,6.61,6.65,4.06
1.08,Premium,G,VS2,62.3,58,6532,6.54,6.5,4.06
1.08,Premium,G,VS2,60.1,59,6532,6.7,6.64,4.01
1.08,Ideal,G,VS2,62.4,55,6532,6.62,6.55,4.11
1.08,Premium,G,VS1,61.5,61,6532,6.62,6.55,4.05
1.27,Premium,I,VS1,62.2,59,6532,6.92,6.87,4.29
1.08,Premium,G,VS2,59.4,59,6532,6.75,6.68,3.99
2,Fair,F,I1,66.1,57,6532,7.84,7.7,5.14
1.08,Premium,G,VS2,62.4,57,6532,6.56,6.49,4.07
1.01,Very Good,F,VS2,63.3,57,6533,6.41,6.33,4.03
1.01,Premium,F,VS2,61.7,58,6533,6.48,6.42,3.98
1.01,Premium,F,VS2,62.2,60,6533,6.4,6.37,3.97
1.01,Premium,F,VS2,59.3,62,6533,6.48,6.44,3.83
1.01,Premium,F,VS2,59.2,60,6533,6.54,6.51,3.86
1.01,Ideal,F,VS2,62,56,6533,6.51,6.46,4.02
1.01,Premium,F,VS2,62.8,59,6533,6.41,6.33,4
1.01,Very Good,F,VS2,63.1,60,6533,6.39,6.36,4.02
1.1,Ideal,G,VS2,62,56,6534,6.6,6.68,4.12
1.1,Premium,G,VS2,60.2,58,6534,6.71,6.75,4.05
1.2,Very Good,E,SI1,61.8,56,6534,6.75,6.82,4.19
1.11,Premium,G,VS2,61.4,58,6534,6.7,6.66,4.1
2.21,Premium,H,I1,62.2,58,6535,8.31,8.27,5.16
1,Ideal,H,VVS1,61.5,59,6535,6.37,6.41,3.93
1.1,Ideal,G,VS1,61.3,54,6535,6.69,6.65,4.09
1.29,Very Good,I,VS2,61.8,58,6537,6.94,6.98,4.3
1.03,Very Good,G,VS1,62.2,57,6539,6.42,6.47,4.01
1.03,Very Good,G,VS1,63,56,6539,6.43,6.46,4.06
1.08,Ideal,D,SI1,62.7,57,6539,6.52,6.56,4.1
1.08,Ideal,D,SI1,60.3,57,6539,6.68,6.71,4.04
1.01,Very Good,F,VS2,63.2,59,6540,6.3,6.36,4
0.3,Premium,H,VS2,62.9,59,608,4.3,4.26,2.69
0.3,Very Good,H,VS2,63.5,58,608,4.27,4.24,2.7
0.3,Premium,H,VS2,63,59,608,4.29,4.25,2.69
0.3,Premium,H,VS2,62.7,59,608,4.26,4.22,2.66
0.3,Premium,H,VS2,62.7,59,608,4.27,4.22,2.66
0.3,Premium,H,VS2,62.6,58,608,4.28,4.22,2.66
0.3,Premium,H,VS2,62.5,59,608,4.28,4.23,2.66
0.3,Very Good,H,VS2,63.5,59,608,4.27,4.2,2.69
0.3,Good,D,VS2,64.1,57,608,4.25,4.21,2.71
0.3,Premium,H,VS2,61.1,61,608,4.32,4.29,2.63
0.32,Ideal,E,VS2,61.4,57,608,4.4,4.46,2.72
0.33,Premium,D,SI1,60.1,59,608,4.46,4.49,2.69
0.33,Ideal,D,SI1,62.5,54,608,4.43,4.44,2.77
0.33,Premium,D,SI1,60.3,58,608,4.47,4.49,2.7
0.33,Very Good,I,VVS1,61.7,61,608,4.43,4.45,2.74
0.33,Ideal,D,SI1,62.4,54,608,4.41,4.44,2.76
0.33,Very Good,D,SI1,60,59,608,4.47,4.5,2.69
0.33,Premium,I,VVS1,61.9,60,608,4.41,4.44,2.74
0.33,Very Good,D,SI1,61.5,60,608,4.41,4.44,2.72
0.33,Ideal,D,SI1,62.7,55,608,4.4,4.44,2.77
0.33,Premium,D,SI1,60.4,60,608,4.41,4.46,2.68
0.33,Ideal,D,SI1,61.3,56,608,4.44,4.46,2.73
0.33,Very Good,D,SI1,62.8,56,608,4.39,4.43,2.77
0.33,Very Good,I,VVS1,62.5,61,608,4.38,4.42,2.75
0.33,Very Good,D,SI1,62.8,55,608,4.41,4.45,2.78
0.28,Ideal,D,VVS1,61.7,57,608,4.2,4.23,2.6
0.28,Very Good,E,VVS2,58.7,60,608,4.31,4.34,2.54
0.33,Very Good,I,VVS1,58.9,61,609,4.52,4.55,2.67
0.29,Very Good,F,VVS1,59.8,61,609,4.31,4.35,2.59
0.29,Very Good,E,VVS1,59.5,61,609,4.29,4.31,2.56
1.18,Ideal,I,VS1,62.6,55.3,6541,6.73,6.79,4.24
1.32,Premium,F,SI2,60.6,60,6541,7.05,7.1,4.29
1.04,Very Good,G,VS1,63.2,56,6541,6.39,6.46,4.06
1.22,Ideal,H,SI1,62.2,56,6541,6.84,6.89,4.27
1.04,Ideal,G,VS2,62.8,56,6542,6.48,6.42,4.05
1.23,Very Good,H,SI1,62.3,58,6542,6.79,6.83,4.24
1.32,Premium,G,SI1,62.1,59,6542,7.03,6.99,4.35
1.18,Premium,F,SI1,62.3,59,6542,6.75,6.67,4.18
1.03,Good,F,VS2,63.9,59,6543,6.35,6.38,4.07
1.03,Ideal,F,VS2,59.1,55,6543,6.6,6.69,3.93
1.27,Ideal,E,VS2,61.8,55,6543,7.03,6.92,4.31
1.27,Ideal,F,VS2,62.8,56,6543,6.9,6.86,4.32
1.39,Ideal,I,SI2,61.6,55,6544,7.14,7.18,4.41
1.52,Premium,H,SI2,60.7,60,6544,7.55,7.32,4.5
1.05,Very Good,F,VS2,62,56,6545,6.48,6.52,4.03
1.25,Premium,I,VS1,60.4,59,6545,6.94,7.01,4.21
1.23,Good,G,SI1,63.1,56,6545,6.78,6.81,4.29
1.09,Very Good,G,VS1,62.5,59,6546,6.56,6.59,4.11
1.51,Very Good,J,SI2,61.9,59,6546,7.26,7.31,4.51
1.26,Very Good,H,SI1,60.6,60,6546,6.97,7,4.23
1.43,Ideal,J,SI1,62.1,58,6546,7.23,7.16,4.47
1.2,Premium,H,VS2,60.6,58,6547,6.82,6.88,4.15
1.06,Ideal,G,VS2,61.1,57,6548,6.56,6.59,4.02
1.28,Ideal,G,SI2,61.1,58,6548,6.98,7.03,4.28
0.63,Ideal,D,IF,62.5,55,6549,5.47,5.5,3.43
1.21,Very Good,G,SI1,61.2,58,6549,6.84,6.91,4.21
1.3,Ideal,H,SI2,61.1,57,6552,7.09,7.04,4.32
1.01,Very Good,E,VS2,62.9,57,6552,6.34,6.42,4.01
1.5,Fair,G,SI2,68.5,66,6552,6.87,6.76,4.67
1,Good,F,VS1,57.8,59,6552,6.57,6.59,3.8
1,Premium,G,VS1,59.1,61,6552,6.54,6.48,3.85
1.5,Good,G,SI2,63.6,58,6552,7.19,7.09,4.54
1,Very Good,G,VS1,63.2,58,6552,6.32,6.27,3.98
1.52,Premium,F,SI2,60.7,61,6554,7.47,7.36,4.5
1.15,Premium,G,VS2,62.6,58,6557,6.68,6.71,4.19
1.23,Ideal,D,SI1,60.9,54,6557,7.01,6.96,4.25
1.03,Ideal,G,VS2,61.8,56,6557,6.47,6.5,4.01
1.2,Very Good,I,VVS2,59.9,55,6558,6.88,6.94,4.14
1.17,Ideal,H,VS2,62.4,58,6558,6.73,6.71,4.19
1.03,Ideal,G,VS1,62.1,57,6558,6.44,6.47,4.01
1.07,Ideal,G,VS2,62.3,57,6558,6.58,6.54,4.09
1.27,Very Good,I,SI1,60.7,61,6559,6.97,6.91,4.21
1.21,Good,G,VVS2,63.8,55,6559,6.74,6.65,4.28
1.22,Ideal,G,SI1,61.6,57,6559,6.89,6.81,4.22
1.3,Ideal,F,SI2,62.2,56,6559,7,6.96,4.34
1.03,Ideal,H,VVS2,62.4,53,6560,6.45,6.51,4.05
1.08,Ideal,G,VS2,62.5,57,6561,6.56,6.6,4.11
1.07,Ideal,E,SI1,61.4,55,6561,6.57,6.62,4.05
1.13,Premium,G,VS2,60.1,59,6561,6.82,6.75,4.08
1.05,Ideal,G,VS2,61.9,57,6562,6.47,6.51,4.03
1.08,Ideal,H,VS1,62,55,6562,6.56,6.6,4.08
1.24,Premium,G,SI1,60.5,58,6562,7.1,7.05,4.13
1.01,Very Good,D,VS2,59.8,60,6563,6.42,6.46,3.85
1.13,Ideal,E,SI1,62.2,55,6563,6.66,6.69,4.15
1.02,Ideal,G,VS1,62.2,57,6563,6.43,6.47,4.01
1.11,Very Good,E,SI1,62.4,57,6563,6.58,6.6,4.11
1.01,Good,D,VS2,62.5,62,6563,6.26,6.34,3.94
1.04,Premium,G,VS2,61,59,6564,6.53,6.42,3.95
1.23,Very Good,I,VS1,63.1,58,6564,6.77,6.91,4.32
2.22,Fair,H,I1,70.1,55,6564,7.77,7.74,5.44
1.33,Premium,G,SI2,60.3,58,6565,7.16,7.19,4.33
1.06,Ideal,D,SI1,61.5,56,6565,6.58,6.55,4.04
1.21,Very Good,H,SI1,63.5,60,6566,6.65,6.61,4.21
1.26,Very Good,I,VS1,61.8,61,6566,6.9,6.95,4.28
1.28,Very Good,F,SI1,63,56,6566,6.9,7.03,4.39
1.21,Premium,H,SI1,60.5,59,6566,6.96,6.89,4.19
1.21,Premium,H,SI1,62.4,56,6566,6.83,6.79,4.25
1,Good,D,SI1,59.9,62,6568,6.41,6.45,3.85
1.02,Very Good,G,VS2,61.9,54,6569,6.45,6.48,4
1.2,Very Good,H,SI1,62.3,57,6569,6.78,6.76,4.22
1.2,Ideal,H,SI1,61.2,60,6569,6.87,6.82,4.19
1.2,Ideal,H,SI1,62.2,58,6569,6.81,6.77,4.22
1.09,Very Good,G,VS1,59.7,63,6570,6.74,6.65,4
1.35,Very Good,I,SI1,59.5,58,6573,7.28,7.17,4.3
1.21,Premium,H,SI1,59.8,58,6573,6.95,6.9,4.14
1.21,Ideal,H,SI1,62.1,59,6573,6.81,6.75,4.21
1.31,Ideal,I,VS1,64.3,59,6573,6.87,6.84,4.41
1.01,Very Good,E,VS2,60.4,57,6577,6.45,6.49,3.91
1.23,Premium,H,VS2,60.6,59,6577,6.94,6.89,4.19
1.35,Premium,I,SI1,59.2,59,6577,7.24,7.18,4.27
1.2,Ideal,H,SI1,61.9,56,6578,6.78,6.82,4.21
1.43,Very Good,J,VS2,62.8,56,6579,7.13,7.19,4.5
1.01,Ideal,D,SI1,63,56,6579,6.36,6.41,4.02
1.11,Premium,D,VS2,59.5,60,6579,6.77,6.7,4.01
1.28,Premium,H,SI1,62.7,58,6580,6.88,6.94,4.33
1.28,Premium,H,SI1,59.9,59,6580,7.05,7.08,4.23
1.25,Ideal,G,SI1,62.5,54,6580,6.88,6.85,4.29
1.02,Very Good,E,VS2,63.2,60,6580,6.34,6.29,3.99
1.02,Premium,E,VS2,61.6,60,6580,6.51,6.42,3.98
1.2,Very Good,G,VS2,63.3,57,6580,6.69,6.64,4.22
1,Ideal,F,VS2,61.7,54,6580,6.42,6.39,3.95
1.2,Ideal,I,VVS2,61.5,57,6581,6.91,6.82,4.22
1.34,Premium,G,SI2,62.2,56,6581,7.08,7,4.38
1.02,Very Good,E,VS2,63.3,57,6582,6.37,6.43,4.05
1.06,Premium,G,VS2,60.9,57,6582,6.65,6.61,4.04
1.28,Premium,I,VS1,61.1,61,6583,7.01,6.96,4.27
1.34,Premium,G,SI2,61.7,58,6583,7.1,7.04,4.36
1.2,Ideal,H,VS2,62.6,56,6586,6.76,6.73,4.22
1.08,Ideal,G,VS2,61.3,56,6586,6.59,6.62,4.05
1.2,Premium,G,SI1,62.3,59,6586,6.84,6.75,4.23
1.1,Ideal,H,VS1,62.3,55,6586,6.57,6.61,4.1
1.05,Ideal,G,VS2,61.8,57,6586,6.53,6.48,4.02
1.05,Very Good,E,VS2,63.5,57,6586,6.51,6.46,4.12
1.01,Premium,F,VS2,61.6,59,6587,6.39,6.43,3.95
1.01,Ideal,G,VS2,62.1,58,6587,6.38,6.43,3.98
1.07,Ideal,D,SI1,60.7,57,6587,6.61,6.64,4.02
1.29,Premium,H,SI1,61.6,57,6588,7.02,6.97,4.31
1.29,Premium,H,SI1,62.9,59,6588,7,6.84,4.35
1.2,Ideal,H,SI1,61.9,54,6588,6.83,6.9,4.25
1.2,Premium,H,SI1,59.5,58,6588,7.02,6.97,4.16
1.29,Ideal,H,SI1,61.6,57,6588,7,6.95,4.3
1.04,Ideal,G,VS2,62.5,57,6589,6.46,6.49,4.05
1.04,Premium,G,VS2,60.1,59,6589,6.56,6.59,3.95
1.11,Premium,F,VS2,63,56,6589,6.62,6.49,4.15
1.02,Ideal,G,VS2,62.6,56,6591,6.4,6.44,4.02
1.09,Premium,G,VS2,59.7,58,6592,6.74,6.7,4.01
2.01,Very Good,H,I1,58.1,63,6592,8.3,8.19,4.79
1.11,Very Good,G,VS2,62.2,55,6593,6.61,6.67,4.13
1.11,Very Good,G,VS2,60.8,58,6593,6.65,6.7,4.06
1.28,Premium,H,SI1,62,62,6595,6.93,6.87,4.28
1.06,Very Good,G,VS1,63.4,57,6595,6.48,6.45,4.1
1.51,Fair,D,SI2,66.2,54,6596,7.19,7.08,4.72
1.36,Very Good,F,SI1,62.8,53,6597,7.05,7.1,4.45
1.02,Very Good,D,VS2,62.3,57,6597,6.41,6.47,4.01
2.1,Fair,G,I1,67.4,59,6597,7.82,7.76,5.24
2.1,Fair,G,I1,64.6,58,6597,8.05,8.01,5.19
1.26,Ideal,H,SI2,61.8,54,6597,6.95,6.99,4.31
1.26,Ideal,I,SI1,62.6,57,6597,6.89,6.92,4.32
1.02,Very Good,F,VS2,63.3,59,6597,6.4,6.37,4.04
1.02,Ideal,F,VS2,62.7,54,6597,6.5,6.42,4.05
1.53,Very Good,H,SI2,60.6,63,6597,7.43,7.38,4.49
1.02,Premium,F,VS2,61.3,58,6597,6.54,6.42,3.97
1.01,Very Good,F,VS2,60,63,6598,6.46,6.48,3.88
1,Ideal,E,VS2,61.6,57,6600,6.38,6.44,3.95
1,Premium,E,VS2,62.7,59,6600,6.31,6.38,3.98
1,Very Good,E,VS2,62.8,60,6600,6.32,6.36,3.98
1,Premium,E,VS2,60,60,6600,6.43,6.43,3.89
1,Premium,E,VS2,61.5,58,6600,6.39,6.42,3.94
1,Very Good,E,VS2,62.8,57,6600,6.34,6.37,3.99
1,Premium,E,VS2,61.8,59,6600,6.38,6.41,3.95
1,Very Good,E,VS2,62.1,59,6600,6.34,6.38,3.95
1.31,Premium,H,SI2,61.4,59,6602,6.99,6.96,4.28
1.2,Very Good,D,SI2,62.9,59,6602,6.7,6.75,4.23
1.31,Ideal,H,SI2,62.2,57,6602,7,6.96,4.34
1.33,Very Good,G,SI2,62,59,6603,7.1,7.04,4.38
1.05,Ideal,G,VS2,60.8,57,6604,6.65,6.58,4.02
1.05,Ideal,G,VS2,62.8,57,6604,6.49,6.45,4.06
1.2,Premium,F,SI1,60.2,58,6604,6.9,6.86,4.14
1.26,Ideal,G,VS1,62.3,57,6604,6.93,6.87,4.3
1.05,Ideal,G,VS2,61.9,56,6604,6.56,6.52,4.05
1.04,Good,F,VS2,63.7,58,6606,6.34,6.43,4.07
1,Premium,G,VS1,62.4,59,6606,6.35,6.4,3.98
1.01,Premium,E,VS2,62.4,60,6606,6.43,6.39,4
1.01,Good,E,VS2,56.7,61,6606,6.71,6.66,3.79
1.01,Premium,E,VS2,60.8,60,6606,6.46,6.43,3.92
1.01,Premium,E,VS2,62.5,58,6606,6.44,6.4,4.01
1.01,Premium,E,VS2,62.9,59,6606,6.36,6.3,3.98
1.21,Premium,H,VS1,61.9,60,6607,6.88,6.78,4.23
1.22,Very Good,D,SI2,59,58,6607,6.96,7.08,4.14
1,Ideal,H,VVS2,62.9,55,6607,6.34,6.39,4
0.63,Ideal,D,IF,62.5,55,6607,5.5,5.47,3.43
1.25,Ideal,G,SI1,60.4,57,6608,7.03,7,4.24
1.22,Premium,H,VS2,62.3,58,6608,6.85,6.77,4.24
1,Premium,F,VS2,61.7,56,6608,6.48,6.39,3.97
1,Premium,F,VS2,62.7,58,6608,6.4,6.33,3.99
1.37,Very Good,G,SI2,62.8,57,6609,7.06,7.12,4.45
1.07,Very Good,G,VS1,58.6,60,6610,6.65,6.76,3.93
1.03,Ideal,D,SI1,61.3,56,6610,6.48,6.54,3.99
1.27,Premium,I,VS1,59.5,61,6611,7.08,7.04,4.2
1,Ideal,G,VS2,62.1,57,6612,6.42,6.37,3.97
1.02,Very Good,E,VS2,59.2,58,6612,6.52,6.58,3.88
1.01,Good,D,VS1,61.1,56,6612,6.36,6.43,3.91
1.01,Very Good,G,VS1,59.1,58,6613,6.56,6.63,3.9
1.01,Very Good,G,VS1,62.2,53,6613,6.48,6.54,4.05
1.02,Ideal,H,VVS2,62,56,6613,6.42,6.45,3.99
1.01,Good,G,VS1,57.7,63,6613,6.55,6.65,3.81
1.02,Ideal,F,VS2,62.7,57,6614,6.44,6.47,4.05
1.33,Premium,H,VS2,59.9,60,6614,7.13,7.09,4.26
1.1,Ideal,H,VVS2,59.7,58,6616,6.76,6.7,4.01
1.31,Ideal,I,VS1,62.1,56,6617,7.01,7.04,4.36
1.04,Ideal,G,VS2,61.6,55,6617,6.51,6.55,4.02
1.09,Ideal,G,VS2,60.9,57,6617,6.69,6.72,4.08
1.23,Ideal,H,SI1,62.4,54,6617,6.83,6.89,4.28
1.01,Premium,G,VS1,62.3,59,6618,6.42,6.38,3.99
1.01,Very Good,G,VS1,63.2,58,6618,6.38,6.34,4.02
1.01,Premium,G,VS1,62.8,59,6618,6.37,6.34,3.99
1.01,Premium,G,VS1,62.6,59,6618,6.43,6.38,4.01
1.01,Ideal,G,VS1,61.8,57,6618,6.45,6.4,3.97
1.01,Good,G,VS1,63.7,57,6618,6.37,6.32,4.04
1.01,Ideal,G,VS1,61.2,57,6618,6.47,6.41,3.94
1.01,Premium,G,VS1,60.2,59,6618,6.58,6.51,3.94
1.01,Premium,G,VS1,62.7,58,6618,6.41,6.38,4.01
1.01,Premium,G,VS1,62.6,59,6618,6.46,6.38,4.02
1.01,Ideal,G,VS2,61.4,58,6618,6.47,6.44,3.97
1,Very Good,F,VS2,61.1,60,6619,6.36,6.43,3.91
1.2,Ideal,D,SI2,61.7,56,6619,6.81,6.88,4.22
1.04,Ideal,H,VVS2,62.2,55,6619,6.48,6.52,4.04
1.14,Premium,G,VS2,61.2,58,6619,6.75,6.71,4.12
1.06,Ideal,H,VS2,62.3,53,6619,6.58,6.56,4.09
1.21,Ideal,H,SI1,60.3,60,6620,6.9,6.87,4.15
1.22,Premium,H,SI1,62,58,6620,6.81,6.76,4.21
1.1,Ideal,F,SI1,61.6,54,6621,6.66,6.69,4.11
1.01,Very Good,E,VS2,59.9,57,6622,6.52,6.57,3.92
1.02,Very Good,G,VS1,62.4,58,6622,6.37,6.42,3.99
1.08,Premium,D,SI1,62.8,58,6623,6.62,6.51,4.12
1.08,Very Good,H,VVS1,63.1,57,6623,6.57,6.52,4.13
1.24,Very Good,H,SI1,62.4,58,6625,6.93,6.82,4.29
1.01,Good,F,VS1,61.8,57,6626,6.34,6.44,3.95
1.02,Premium,F,VS2,61.8,56,6626,6.54,6.46,4.02
1.36,Premium,J,VS2,61.9,59,6626,7.09,7.06,4.38
1.2,Premium,H,VS1,61.3,58,6626,6.85,6.81,4.19
1.06,Very Good,F,VS2,62.7,55,6627,6.54,6.5,4.09
1.03,Premium,G,VS1,62.2,59,6628,6.41,6.46,4
1.03,Very Good,G,VS1,60.7,58,6628,6.5,6.55,3.96
1.39,Very Good,G,SI2,61.5,62,6628,7.09,7.16,4.38
1.14,Ideal,H,VS2,62,54,6628,6.72,6.74,4.17
1.04,Ideal,G,VS2,61.9,57,6628,6.48,6.5,4.02
1.21,Ideal,H,SI1,62.1,56,6629,6.81,6.84,4.23
1.57,Premium,J,VS2,59.9,57,6629,7.56,7.52,4.52
1.51,Very Good,I,SI2,63.1,60,6630,7.19,7.13,4.52
1.01,Very Good,D,SI1,62.1,59,6630,6.37,6.41,3.97
1.1,Ideal,H,VS1,61.7,56,6630,6.61,6.65,4.09
1.91,Fair,H,SI2,64.6,56,6632,7.76,7.7,4.99
1.02,Very Good,F,VS2,59.9,56,6632,6.56,6.6,3.94
1.01,Very Good,G,VS1,64.4,59,6632,6.26,6.31,4.05
1.04,Ideal,G,VS1,61.1,56,6632,6.58,6.55,4.01
1.4,Ideal,J,VS2,62.2,57,6633,7.17,7.08,4.43
1.27,Ideal,H,SI1,61.7,57,6635,6.95,6.93,4.28
1.55,Premium,J,SI2,62.6,60,6635,7.36,7.3,4.59
1.69,Ideal,H,I1,62,56,6636,7.61,7.66,4.73
1.2,Ideal,D,SI2,61,60,6636,6.81,6.84,4.16
1.03,Ideal,H,VVS2,62.2,55,6638,6.43,6.49,4.03
1.24,Ideal,J,VS2,62.1,56,6639,6.86,6.9,4.27
1.2,Ideal,I,VS1,62.5,55,6639,6.76,6.81,4.24
1.52,Premium,I,SI1,58.8,61,6639,7.5,7.46,4.4
1.54,Premium,I,SI2,62.4,59,6640,7.33,7.35,4.58
1.21,Premium,H,SI1,60.2,58,6640,6.93,6.88,4.16
1,Premium,F,VS2,61.9,59,6640,6.41,6.36,3.95
1,Premium,F,VS2,60.5,59,6640,6.57,6.39,3.92
1,Very Good,G,VS1,62.4,57,6642,6.38,6.41,3.99
1.09,Ideal,H,VS1,61.3,54,6643,6.66,6.68,4.09
1.13,Ideal,G,VS2,62.7,57,6644,6.68,6.65,4.18
1.07,Premium,G,VS2,62.9,59,6644,6.52,6.49,4.09
1.07,Premium,G,VS2,62.5,57,6644,6.58,6.5,4.09
1.03,Ideal,G,VS2,62.8,55,6645,6.48,6.44,4.05
1.38,Premium,H,SI2,62.1,60,6646,7.13,7.08,4.41
1.02,Ideal,G,VS2,62.3,55,6648,6.45,6.48,4.03
1.02,Ideal,G,VS2,61.7,56,6648,6.44,6.52,4
1.07,Ideal,G,VS2,62.4,55,6648,6.53,6.58,4.09
1.01,Very Good,F,VS2,60.6,55,6649,6.5,6.56,3.96
1.09,Good,H,VVS2,58.8,61,6651,6.72,6.78,3.97
1.01,Fair,F,VS1,61.7,61,6651,6.6,6.49,4.04
1.12,Ideal,G,VS2,62,56,6652,6.64,6.69,4.13
1.2,Very Good,I,VS1,62.8,54.5,6652,6.75,6.79,4.25
1.02,Premium,F,VS2,62.4,59,6652,6.4,6.45,4.01
0.91,Ideal,D,VS1,62.3,59,6652,6.16,6.19,3.85
1.21,Very Good,I,VVS2,61.1,57,6653,6.83,6.85,4.18
2.25,Fair,H,I1,67.7,58,6653,8.01,7.97,5.41
1.1,Premium,G,VS2,60.2,58,6653,6.75,6.71,4.05
1.32,Premium,I,SI1,60.3,60,6653,7.14,7.09,4.29
1.2,Good,E,SI1,59.9,64,6653,6.84,6.79,4.08
1.04,Good,F,VS1,63.9,55,6653,6.49,6.4,4.12
1.1,Premium,G,VS2,61.2,62,6653,6.64,6.6,4.05
1.2,Premium,E,SI1,61.8,56,6653,6.82,6.75,4.19
1.1,Ideal,G,VS2,62,56,6653,6.68,6.6,4.12
1.1,Ideal,G,VS2,60,57,6653,6.74,6.7,4.03
1.22,Ideal,H,SI1,61.8,57,6654,6.83,6.85,4.23
1.27,Very Good,I,SI1,63,60,6654,6.86,6.8,4.3
1.22,Very Good,G,SI1,61.8,58,6656,6.82,6.88,4.23
1.26,Premium,F,SI2,61.3,58,6657,6.99,6.91,4.26
1.02,Very Good,F,VS2,63.2,57,6659,6.34,6.41,4.03
1.03,Ideal,G,VS1,63,56,6659,6.46,6.43,4.06
1.03,Premium,G,VS1,62.2,57,6659,6.47,6.42,4.01
1.53,Fair,J,VS2,64.7,58,6659,7.24,7.22,4.68
1.21,Ideal,F,SI1,61.1,55,6659,6.87,6.85,4.19
1.21,Premium,F,SI1,60,60,6659,6.96,6.91,4.16
1.06,Ideal,G,VS2,62.2,56,6660,6.51,6.54,4.06
1.32,Premium,F,SI2,60.6,60,6660,7.1,7.05,4.29
1.25,Ideal,H,SI1,62.2,57,6661,6.86,6.9,4.28
1.22,Premium,H,VS1,63,59,6661,6.8,6.73,4.26
1.18,Ideal,I,VS1,62.6,55,6661,6.79,6.73,4.24
1.03,Very Good,F,VS1,61.7,56,6662,6.47,6.49,4
1.56,Very Good,J,SI2,61.4,58,6662,7.4,7.45,4.56
1.56,Very Good,J,SI2,62,57,6662,7.37,7.44,4.59
1.19,Ideal,H,VS2,62.1,59,6662,6.82,6.73,4.21
1.03,Good,F,VS2,63.9,59,6662,6.38,6.35,4.07
1.03,Ideal,F,VS2,60.7,56,6662,6.58,6.56,3.99
1.06,Very Good,G,VS1,62.8,54,6663,6.5,6.56,4.1
1.06,Very Good,G,VS1,63.1,57,6663,6.42,6.49,4.07
1.01,Ideal,G,VS2,60.9,57,6663,6.48,6.51,3.95
1.25,Premium,I,VS1,60.4,59,6664,7.01,6.94,4.21
1.26,Premium,H,SI1,62.2,58,6664,6.93,6.87,4.29
1,Ideal,D,SI1,62.5,55,6664,6.42,6.34,3.99
1.23,Very Good,G,SI1,63.1,56,6665,6.81,6.78,4.29
1.2,Premium,H,VS2,62.8,59,6666,6.75,6.7,4.22
1.01,Very Good,E,VS2,61.9,55,6666,6.38,6.44,3.97
1.01,Very Good,E,VS2,62.9,58,6666,6.36,6.39,4.01
1.01,Very Good,E,VS2,62.7,57,6666,6.31,6.36,3.97
1.01,Good,E,VS2,63.5,58,6666,6.34,6.36,4.03
1.01,Good,E,VS2,63.4,60,6666,6.31,6.37,4.02
0.32,Ideal,H,SI2,61.4,56,420,4.4,4.43,2.71
0.29,Ideal,G,SI1,62.1,54,420,4.25,4.29,2.65
0.25,Ideal,I,VVS1,61.9,55,421,4.07,4.1,2.53
0.31,Ideal,I,VS2,61.2,55,421,4.36,4.4,2.68
0.31,Ideal,H,SI2,61.1,56,421,4.4,4.42,2.69
0.31,Ideal,H,SI2,61.3,55,421,4.35,4.38,2.67
0.31,Ideal,H,SI2,61,56,421,4.36,4.39,2.67
0.31,Ideal,E,SI2,59.5,61,421,4.42,4.45,2.64
0.31,Ideal,H,SI1,61.3,55,421,4.35,4.39,2.68
0.31,Ideal,H,SI1,61.3,55,421,4.36,4.41,2.69
0.31,Ideal,H,SI1,61.3,57,421,4.36,4.38,2.68
0.36,Premium,J,SI1,61.3,60,421,4.52,4.59,2.79
0.3,Very Good,H,SI1,62.2,60,421,4.24,4.28,2.65
0.32,Good,I,SI1,63.5,57,421,4.3,4.33,2.74
0.3,Very Good,H,SI1,62.6,58,421,4.22,4.28,2.66
0.32,Ideal,G,SI2,62.5,55,421,4.37,4.4,2.74
0.32,Good,F,SI2,63.1,56,421,4.34,4.38,2.75
0.32,Premium,J,VS1,61.9,58,421,4.33,4.39,2.7
0.3,Very Good,H,SI1,62.9,57,421,4.28,4.31,2.7
0.3,Good,H,SI1,63.7,56,421,4.2,4.22,2.68
0.32,Premium,J,VS1,61.7,58,421,4.38,4.4,2.71
0.3,Ideal,H,SI1,62.6,55,421,4.28,4.32,2.69
0.3,Very Good,H,SI1,61.6,62,421,4.24,4.3,2.63
0.32,Ideal,J,VS1,61.3,57,421,4.41,4.43,2.71
0.3,Very Good,H,SI1,59.4,63,421,4.35,4.4,2.6
0.3,Premium,H,SI1,61.2,60,421,4.29,4.31,2.63
0.32,Very Good,F,SI2,62.6,56,421,4.37,4.41,2.75
0.3,Good,H,SI1,63.4,58,421,4.26,4.29,2.71
0.32,Good,F,SI2,63.5,56,421,4.35,4.37,2.77
0.3,Very Good,E,SI2,61.7,61,421,4.29,4.33,2.66
0.31,Very Good,F,VS2,58.8,58,609,4.45,4.49,2.63
0.31,Ideal,H,VVS2,61.4,55,609,4.37,4.39,2.69
0.31,Ideal,H,VVS2,61.4,56,609,4.38,4.41,2.7
0.31,Ideal,H,VVS2,62.2,54,609,4.36,4.38,2.72
0.39,Ideal,I,SI1,62.1,55,609,4.66,4.71,2.91
0.3,Ideal,F,SI1,61.9,57,609,4.28,4.31,2.66
0.3,Ideal,F,SI1,61.2,55,609,4.35,4.37,2.67
0.3,Ideal,F,SI1,60.6,57,609,4.34,4.37,2.64
0.3,Very Good,D,VS2,62.9,55,610,4.31,4.34,2.72
0.31,Very Good,E,VS1,64,55,610,4.29,4.33,2.76
0.3,Ideal,H,VVS2,62.3,54.4,610,4.28,4.32,2.68
0.32,Ideal,F,VS2,60.9,56,610,4.41,4.45,2.7
0.33,Ideal,H,VS1,61.6,55,610,4.46,4.48,2.75
0.33,Ideal,H,VS1,62.6,56,610,4.39,4.42,2.75
0.38,Ideal,I,SI1,61.7,56,610,4.64,4.67,2.87
0.33,Premium,H,SI1,63,58,610,4.42,4.4,2.78
0.33,Ideal,H,SI1,63,57,610,4.41,4.39,2.77
0.3,Very Good,D,VS1,61.2,55,610,4.32,4.34,2.65
0.3,Good,D,VS1,64.3,56,610,4.22,4.27,2.73
0.3,Premium,D,VS1,60.2,59,610,4.39,4.42,2.65
0.23,Very Good,D,VS1,61.5,58,611,3.93,3.98,2.43
0.4,Very Good,E,SI2,58.7,57,611,4.88,4.94,2.88
0.4,Very Good,E,SI2,61.6,55,611,4.75,4.83,2.95
0.41,Good,G,SI2,63.6,54,611,4.7,4.74,3
0.41,Premium,J,VS2,61.9,59,611,4.69,4.74,2.92
0.41,Good,G,SI2,63.4,58,611,4.7,4.73,2.99
0.41,Good,J,VS2,63.4,56,611,4.7,4.73,2.99
0.41,Good,I,SI1,63.8,57,611,4.67,4.7,2.99
0.41,Premium,G,SI2,61.4,58,611,4.75,4.8,2.93
0.28,Very Good,E,VVS2,61.4,55,612,4.22,4.25,2.6
1.01,Premium,E,VS2,62,59,6666,6.44,6.46,4
1.01,Very Good,E,VS2,60.4,58,6666,6.47,6.51,3.92
1.2,Ideal,H,VS2,62,56,6666,6.86,6.81,4.24
1.2,Premium,H,VS2,60.6,58,6666,6.88,6.82,4.15
1.2,Very Good,G,SI1,63.5,56,6666,6.77,6.7,4.28
1.06,Ideal,G,VS2,61.1,57,6667,6.59,6.56,4.02
1.33,Premium,F,SI2,59.9,58,6668,7.13,7.17,4.28
1.06,Premium,E,VS1,59.1,58,6669,6.66,6.71,3.95
1.01,Very Good,G,VS1,60.9,60,6669,6.47,6.43,3.93
1.04,Very Good,G,VS1,63.1,57,6669,6.39,6.44,4.05
1.01,Premium,G,VVS2,58.5,59,6670,6.66,6.6,3.88
1.25,Ideal,E,SI2,62.3,57,6670,6.83,6.88,4.27
1.01,Premium,E,VS1,61.2,61,6670,6.41,6.33,3.9
1.01,Premium,G,VVS2,62,56,6670,6.49,6.41,4
1.13,Ideal,H,VS2,61.9,56,6670,6.69,6.63,4.13
1.45,Very Good,J,VS2,62.8,57,6671,7.14,7.17,4.49
1.01,Ideal,F,VS2,60.3,56,6672,6.5,6.56,3.94
1.01,Ideal,G,VS1,62.4,56,6672,6.39,6.44,4
1.2,Very Good,H,VVS1,63.3,56,6672,6.75,6.7,4.26
1.21,Very Good,H,VS2,62.9,58,6673,6.74,6.78,4.25
1.06,Premium,F,VS2,61.8,60,6673,6.58,6.53,4.05
1.01,Premium,F,VS2,60.3,59,6674,6.52,6.45,3.91
1.13,Ideal,E,SI1,61.7,57,6674,6.65,6.81,4.15
0.8,Ideal,F,IF,60.8,56,6674,5.99,6.05,3.66
1.2,Ideal,H,SI1,61.3,57,6675,6.81,6.85,4.19
1.31,Ideal,F,SI2,62.7,57,6676,7.05,6.98,4.4
1.4,Very Good,I,SI2,62.4,59,6677,7.12,7.17,4.46
1.18,Ideal,I,VVS2,62.7,55,6678,6.7,6.79,4.23
1.01,Very Good,F,VS1,63.9,55,6679,6.28,6.36,4.04
0.9,Ideal,G,VVS1,61.5,56,6680,6.22,6.24,3.83
1.51,Premium,J,SI1,60.4,62,6680,7.42,7.32,4.45
1.14,Good,G,VS2,63.2,58,6681,6.63,6.67,4.2
1.23,Ideal,H,SI1,61.5,57,6681,6.92,6.89,4.25
1.13,Ideal,E,SI1,62.2,55,6682,6.69,6.66,4.15
1.02,Ideal,G,VS1,62.2,57,6683,6.47,6.43,4.01
1.12,Premium,G,VS2,62.3,59,6683,6.71,6.61,4.15
1.12,Ideal,G,VS2,60.8,57,6683,6.74,6.69,4.08
1.02,Premium,G,VS1,61,58,6683,6.55,6.49,3.98
1.02,Premium,G,VS1,62,56,6683,6.5,6.43,4.01
1.02,Ideal,G,VS1,62.2,56,6683,6.46,6.4,4
1.21,Very Good,H,VS2,62.8,57,6684,6.77,6.82,4.27
1.07,Ideal,I,VVS1,62.3,57,6685,6.56,6.6,4.1
1.33,Premium,G,SI2,60.3,58,6685,7.19,7.16,4.33
1.24,Premium,H,SI1,60.2,60,6686,6.91,6.94,4.17
1.31,Very Good,I,SI1,62.6,59,6686,6.97,6.86,4.33
2.01,Good,F,I1,64,56,6686,7.93,7.91,5.07
1.5,Good,J,SI1,59.1,64,6687,7.32,7.43,4.36
0.9,Ideal,D,VS2,61.2,56,6689,6.2,6.26,3.81
1.08,Premium,G,VS1,62,60,6689,6.55,6.51,4.05
1.21,Ideal,I,VS1,61.5,56,6691,6.83,6.87,4.22
1.21,Ideal,I,VS1,61.5,58,6691,6.84,6.88,4.22
1.04,Ideal,F,VS2,62.1,57,6692,6.48,6.53,4.04
1,Premium,F,VS1,61.3,59,6692,6.45,6.42,3.95
1.04,Very Good,H,IF,62,55,6694,6.51,6.55,4.05
1.02,Very Good,G,VS1,61.9,58,6694,6.44,6.48,4
1.39,Premium,I,SI1,62.1,57,6694,7.22,7.08,4.44
1.22,Premium,G,SI1,63,57,6695,6.84,6.74,4.28
1.01,Premium,E,VS2,60.4,57,6697,6.49,6.45,3.91
1.06,Ideal,H,VVS2,61.8,60,6698,6.52,6.49,4.02
1,Very Good,G,VS1,60.6,63,6699,6.42,6.45,3.9
1,Very Good,F,VS2,63.2,56,6701,6.32,6.37,4.01
1.28,Premium,H,SI1,59.9,59,6701,7.08,7.05,4.23
1.28,Ideal,H,SI1,62.4,56,6701,6.93,6.91,4.32
1.57,Very Good,J,SI2,62.1,60,6702,7.37,7.41,4.59
1,Premium,G,VVS2,62.5,60,6702,6.43,6.34,3.99
1.01,Premium,F,VS2,60.8,57,6702,6.52,6.47,3.95
1.01,Premium,H,IF,62.1,59,6702,6.47,6.41,4
1.2,Very Good,E,SI1,61,59,6703,6.91,6.83,4.19
1.05,Good,H,IF,64.3,58,6703,6.5,6.35,4.13
1.22,Very Good,G,SI1,62.4,57,6704,6.75,6.8,4.23
1.02,Ideal,E,VS2,60.7,56,6704,6.58,6.61,4
1.08,Ideal,G,VS2,61.3,56,6706,6.62,6.59,4.05
1.06,Very Good,G,VS1,60.5,56,6707,6.65,6.6,4.01
1.01,Premium,F,VS2,61.6,59,6707,6.43,6.39,3.95
1.21,Very Good,F,SI1,59.4,56,6708,6.95,7,4.14
1.1,Very Good,F,VS2,62,59,6708,6.56,6.6,4.08
1.21,Good,E,SI1,64.2,58,6708,6.65,6.59,4.25
1.08,Good,G,VS2,58.9,58,6708,6.69,6.75,3.96
1.21,Premium,H,VS2,58.8,59,6708,7.01,6.98,4.11
1.04,Premium,G,VS2,60.1,59,6709,6.59,6.56,3.95
1.04,Ideal,G,VS2,62.5,57,6709,6.49,6.46,4.05
1.04,Premium,G,VS2,61.8,58,6709,6.51,6.46,4.01
1.23,Very Good,D,SI2,62.3,58,6710,6.78,6.81,4.23
1.2,Good,H,VS2,63.3,59,6710,6.74,6.78,4.28
1.21,Premium,H,VS2,60.8,58,6710,6.91,6.88,4.19
1.21,Premium,H,VS2,61.5,58,6710,6.82,6.78,4.18
1.51,Premium,J,SI2,61.9,56,6712,7.44,7.29,4.56
1.2,Very Good,H,VS1,61.8,56,6713,6.82,6.86,4.23
1.22,Good,I,VS1,59.2,61,6713,7.01,6.95,4.13
1.11,Premium,G,VS2,60.8,58,6713,6.7,6.65,4.06
1.11,Ideal,G,VS2,62.2,55,6713,6.67,6.61,4.13
1.11,Premium,G,VS2,59,59,6713,6.79,6.76,4
1.11,Premium,G,VS2,62.3,58,6713,6.65,6.61,4.13
1.01,Very Good,F,VS2,63.6,59,6714,6.3,6.34,4.02
1.01,Very Good,E,VS2,62.9,60,6714,6.36,6.4,4.01
1.3,Ideal,I,VS2,61.7,56,6714,7.07,7.02,4.35
1.26,Ideal,H,SI1,61,56,6715,7,7.04,4.28
1.06,Premium,E,VS2,62.3,58,6716,6.49,6.52,4.05
1.56,Ideal,H,SI2,62.3,55,6716,7.39,7.35,4.59
1.5,Fair,I,SI2,64.8,58,6717,7.05,7.15,4.6
1.01,Very Good,F,VS1,61,58,6719,6.47,6.54,3.97
1,Premium,E,VS2,62.8,60,6720,6.36,6.32,3.98
1,Premium,E,VS2,62.1,59,6720,6.38,6.34,3.95
1.5,Premium,G,SI2,58.3,61,6720,7.55,7.4,4.34
1.5,Ideal,G,SI2,63,57,6720,7.31,7.2,4.57
1.2,Good,G,VS2,64,59,6720,6.8,6.63,4.3
1,Premium,E,VS2,60.4,57,6720,6.49,6.46,3.91
1,Ideal,E,VS2,61.6,57,6720,6.44,6.38,3.95
1,Ideal,E,VS2,62.8,57,6720,6.37,6.34,3.99
1,Premium,E,VS2,61.5,58,6720,6.42,6.39,3.94
1,Premium,E,VS2,62.7,59,6720,6.38,6.31,3.98
1,Premium,E,VS2,60,60,6720,6.43,6.43,3.89
1,Ideal,E,VS2,62.1,56,6720,6.42,6.39,3.98
1.2,Premium,H,VS1,58.5,61,6720,6.98,6.93,4.07
1.21,Premium,H,VS2,60.5,60,6722,6.95,6.9,4.19
1.28,Very Good,I,VS1,62.8,57,6726,6.9,6.95,4.35
1.2,Premium,H,VS1,62.7,58,6727,6.75,6.65,4.2
1.43,Fair,I,VS1,50.8,60,6727,7.73,7.25,3.93
1.21,Ideal,H,SI1,61.8,55,6727,6.82,6.86,4.23
1.22,Ideal,H,SI1,62.2,54,6727,6.83,6.86,4.26
1,Premium,G,VS1,62.4,59,6727,6.4,6.35,3.98
1.56,Ideal,J,SI1,61.8,57,6727,7.44,7.39,4.58
1.04,Good,F,VS2,63.7,58,6727,6.43,6.34,4.07
1.06,Ideal,G,VS2,61.9,55,6728,6.54,6.57,4.06
1.06,Ideal,G,VS2,61.6,56,6728,6.53,6.59,4.04
1.24,Premium,H,SI1,60.4,59,6729,6.97,6.93,4.2
1.07,Premium,G,VS1,62,58,6730,6.59,6.53,4.07
1.07,Premium,G,VS1,58.6,60,6730,6.76,6.65,3.93
1.37,Ideal,G,SI2,62.8,57,6730,7.12,7.06,4.45
1.5,Good,I,SI2,58.5,60,6731,7.41,7.5,4.36
1,Very Good,E,VS2,61.9,57,6732,6.35,6.38,3.94
1.02,Very Good,E,VS2,58.4,57,6732,6.59,6.64,3.86
1.02,Ideal,E,VS2,62.7,56,6732,6.38,6.44,4.02
1.01,Very Good,H,VVS1,60.6,56,6733,6.5,6.53,3.95
1.03,Very Good,F,VS1,60.2,55,6733,6.62,6.56,3.97
1.26,Very Good,G,SI1,63,59,6733,6.84,6.88,4.32
1.26,Very Good,G,SI1,61.7,60,6733,6.85,6.9,4.24
1.01,Premium,D,VS1,61.1,56,6733,6.43,6.36,3.91
1.01,Ideal,G,VS2,62.1,57,6734,6.4,6.45,3.99
1.01,Ideal,G,VS2,61,56,6734,6.47,6.51,3.96
1.02,Ideal,F,VS2,62.7,57,6734,6.47,6.44,4.05
1.02,Fair,G,VVS2,64.6,59,6736,6.31,6.29,4.07
1.31,Premium,I,VS1,58.5,60,6737,7.18,7.15,4.19
1.11,Ideal,E,SI1,62.5,54,6737,6.62,6.63,4.13
1.01,Very Good,D,VS2,62.9,58,6738,6.35,6.41,4.01
1.02,Good,G,VS1,63.3,58,6738,6.38,6.42,4.05
1.26,Ideal,G,SI1,59.6,57,6738,7.08,7.04,4.21
1.2,Ideal,D,SI2,61.7,56,6740,6.88,6.81,4.22
1.14,Ideal,G,SI1,61.7,56,6741,6.71,6.75,4.15
1.2,Ideal,G,SI1,62.2,58,6741,6.77,6.84,4.23
1.47,Premium,I,SI2,62.4,55,6742,7.34,7.24,4.55
1.2,Premium,E,SI1,62.5,56,6742,6.75,6.71,4.21
1.2,Ideal,H,SI1,62.5,56,6742,6.84,6.79,4.26
1,Very Good,G,VS2,62.2,58,6743,6.35,6.39,3.96
1.1,Ideal,E,SI1,61.3,56,6743,6.65,6.7,4.09
1.18,Good,G,SI1,58,59,6743,6.98,7.03,4.06
1.13,Premium,G,VS2,62.5,58,6743,6.69,6.59,4.15
1.21,Very Good,H,VS2,62.1,60,6745,6.77,6.83,4.22
1,Very Good,D,VS2,59.6,60,6745,6.52,6.57,3.9
1.5,Ideal,J,SI1,59.4,62,6745,7.38,7.35,4.38
1.5,Good,J,SI2,60.9,62,6746,7.3,7.32,4.45
1.21,Good,H,VS1,63.3,58,6748,6.72,6.77,4.27
1,Good,G,VVS2,62.4,61,6748,6.32,6.3,3.94
1.03,Premium,G,VS1,60.7,58,6749,6.55,6.5,3.96
1.03,Premium,G,VS1,62.2,59,6749,6.46,6.41,4
1.18,Ideal,I,VVS1,62.6,54,6750,6.74,6.78,4.23
1.5,Good,J,SI2,63.6,57,6750,7.3,7.23,4.62
1.5,Premium,J,SI2,61.4,61,6750,7.36,7.3,4.5
1.23,Premium,G,SI1,62.4,55,6750,6.89,6.83,4.28
1.23,Ideal,H,SI1,61.7,55,6750,6.94,6.9,4.27
1.07,Very Good,H,VVS2,61.3,56,6751,6.54,6.59,4.03
1.03,Ideal,F,VS2,62.4,56,6751,6.48,6.43,4.03
1.37,Premium,E,SI2,61,57,6751,7.25,7.19,4.4
1.41,Premium,I,SI2,62.9,59,6751,7.14,7.08,4.47
1.02,Very Good,E,VS2,62.9,56,6752,6.37,6.47,4.04
2.03,Fair,F,I1,65.6,56,6753,7.89,7.86,5.16
1.14,Ideal,H,VS2,62.6,53,6753,6.67,6.72,4.19
1.24,Very Good,I,VS1,59.4,58,6754,7.04,7.09,4.2
1.01,Very Good,E,VS2,61.6,58,6754,6.43,6.49,3.98
1.35,Ideal,J,VS2,61.8,54,6754,7.1,7.14,4.4
1.41,Premium,J,VS2,62.7,56,6754,7.2,7.16,4.5
1.34,Premium,I,VS2,61.8,59,6754,7.07,7.04,4.36
1.27,Premium,H,VS2,62.6,59,6755,6.83,6.93,4.31
1.16,Ideal,E,SI1,61.9,55,6755,6.74,6.79,4.19
1.51,Premium,I,SI1,62.2,61,6756,7.35,7.27,4.55
1.69,Ideal,H,I1,62,56,6757,7.66,7.61,4.73
1.3,Very Good,H,SI1,62.3,58,6758,6.97,7.03,4.36
1.11,Ideal,I,VS1,61.2,57,6758,6.67,6.7,4.09
1.01,Premium,G,VS1,60.9,58,6759,6.43,6.47,3.93
1.01,Good,G,VS1,63.8,57,6759,6.35,6.38,4.06
1.01,Fair,F,VS1,64.7,54,6759,6.33,6.28,4.08
1.29,Ideal,H,SI1,63.2,57,6760,6.89,6.96,4.38
1.28,Premium,I,VS2,61.7,60,6762,7.05,6.95,4.32
1,Very Good,D,VS2,62.6,58,6762,6.31,6.38,3.97
1.02,Very Good,E,VS2,59.1,60,6762,6.61,6.51,3.88
1.29,Ideal,F,SI2,60.7,58,6762,7,7.07,4.27
1.2,Ideal,G,SI1,61.8,59,6762,6.77,6.8,4.19
1.22,Premium,I,VS1,62.6,57.4,6763,6.76,6.8,4.24
1.22,Very Good,I,VS1,62.9,53.8,6763,6.79,6.83,4.29
1.47,Very Good,J,VS2,62.5,59,6763,7.18,7.23,4.5
1.34,Very Good,I,SI1,61.1,59,6763,7.05,7.12,4.33
1.04,Premium,E,VS1,58.6,59,6765,6.68,6.64,3.9
1.04,Very Good,G,VVS1,58.2,60,6766,6.66,6.71,3.89
1.05,Very Good,G,VS1,61.8,58,6766,6.5,6.55,4.03
1.28,Very Good,H,SI2,60.4,61,6766,7.08,7.03,4.26
1.16,Ideal,F,SI1,62.6,58,6768,6.68,6.73,4.2
0.97,Premium,F,VVS2,58.1,60,6768,6.53,6.49,3.78
1.08,Ideal,G,VS2,60.3,59,6769,6.62,6.64,4
1.01,Very Good,F,VS2,62.3,59,6770,6.37,6.41,3.98
1.5,Very Good,H,SI2,63.3,57,6770,7.27,7.21,4.59
1.5,Good,H,SI2,63.6,60,6770,7.3,7.23,4.63
1.01,Very Good,E,VS2,64,56,6771,6.22,6.37,4.03
1.15,Ideal,H,VS2,62.8,54,6772,6.7,6.75,4.22
1.01,Very Good,G,VS2,62.9,54,6773,6.35,6.4,4
1.01,Very Good,F,VS2,61.6,57,6773,6.39,6.46,3.96
1.51,Very Good,J,SI2,62.8,59,6773,7.23,7.26,4.55
1.04,Ideal,G,VS2,61.6,57,6773,6.49,6.54,4.01
1.02,Premium,F,VS2,62.4,59,6773,6.45,6.4,4.01
1.2,Premium,F,SI1,61,62,6774,6.96,6.81,4.2
1.12,Premium,G,VS2,60.7,53,6774,6.81,6.7,4.1
1.2,Ideal,I,VS1,62.8,55,6774,6.79,6.75,4.25
1.12,Ideal,G,VS2,62,56,6774,6.69,6.64,4.13
1.12,Ideal,G,VS2,62.2,54,6774,6.65,6.62,4.13
1,Good,E,VS2,63.1,56,6776,6.37,6.41,4.03
1.1,Very Good,E,VS2,61.9,55,6776,6.61,6.67,4.11
1.22,Premium,H,SI1,61.8,57,6776,6.86,6.82,4.23
1,Premium,D,VS2,60.8,61,6776,6.41,6.39,3.89
1,Very Good,D,VS2,63.5,57,6776,6.37,6.32,4.03
1.22,Ideal,H,SI1,61.8,57,6776,6.85,6.83,4.23
1.01,Very Good,H,VVS1,61.1,58,6777,6.41,6.45,3.93
1.08,Very Good,G,VS2,60.6,58,6777,6.65,6.71,4.05
1.01,Very Good,G,VS1,58.8,58,6777,6.52,6.61,3.86
1.22,Premium,G,SI1,61.8,58,6777,6.88,6.82,4.23
1.07,Premium,G,VS2,61.9,58,6779,6.54,6.55,4.05
1.25,Ideal,D,SI2,61.9,54.4,6779,6.9,6.93,4.28
1.38,Premium,G,SI2,59.2,59,6779,7.35,7.29,4.33
1.08,Ideal,G,VS1,62,55,6779,6.62,6.57,4.09
1.07,Very Good,G,VS1,61.2,55,6780,6.63,6.67,4.07
1.19,Very Good,H,VS2,60.5,59,6781,6.97,7,4.17
1.37,Very Good,G,SI2,63.4,61,6781,6.95,7.03,4.43
1.04,Premium,F,VS2,61.7,59,6782,6.45,6.49,3.99
1.25,Good,H,SI1,63.7,58,6783,6.81,6.79,4.33
1.03,Premium,F,VS1,61.7,56,6783,6.49,6.47,4
1.25,Premium,H,SI1,62.2,57,6783,6.91,6.85,4.28
1.25,Ideal,H,SI1,62.2,57,6783,6.9,6.86,4.28
1.21,Ideal,H,VS1,62.7,56,6784,6.79,6.84,4.27
1.02,Very Good,D,VS2,59.8,61,6785,6.54,6.61,3.93
1.02,Very Good,F,VS1,61.3,59,6785,6.45,6.51,3.97
1.27,Ideal,H,SI1,60.6,57,6785,7.07,7,4.26
1.03,Very Good,G,VS2,62.2,57,6786,6.43,6.46,4.01
1.01,Premium,E,VS2,62,59,6787,6.46,6.44,4
1.01,Ideal,E,VS2,61.9,55,6787,6.44,6.38,3.97
1.01,Very Good,E,VS2,63.5,58,6787,6.36,6.34,4.03
1.01,Premium,E,VS2,60.4,58,6787,6.51,6.47,3.92
1.01,Premium,E,VS2,62.7,57,6787,6.36,6.31,3.97
1.01,Very Good,E,VS2,63.4,60,6787,6.37,6.31,4.02
1.01,Very Good,E,VS2,63.2,57,6787,6.38,6.35,4.02
1.01,Very Good,F,VS2,63.1,58,6787,6.4,6.35,4.02
1.01,Premium,G,VS1,60.3,58,6787,6.56,6.5,3.94
1.01,Premium,E,VS2,62.9,58,6787,6.39,6.36,4.01
1.01,Ideal,F,VS2,60.9,57,6787,6.48,6.45,3.94
1.01,Ideal,F,VS2,61.9,55,6787,6.47,6.45,4
1.01,Ideal,F,VS2,62.1,57,6787,6.46,6.42,4
1.65,Premium,G,I1,62,59,6788,7.53,7.57,4.68
1.53,Premium,G,SI2,58.5,59,6788,7.52,7.49,4.39
1.15,Ideal,H,VS2,62.4,56,6788,6.71,6.65,4.17
1.43,Ideal,J,SI1,60.5,58,6789,7.25,7.34,4.41
1.33,Premium,F,SI2,59.9,58,6790,7.17,7.13,4.28
1.33,Ideal,H,SI2,62.3,55,6791,7.01,7.08,4.39
1.52,Premium,I,VS2,61.7,61,6793,7.35,7.3,4.52
1.32,Very Good,I,VS1,63.5,58,6793,6.89,6.94,4.39
1.07,Ideal,G,VS1,61.8,57,6793,6.52,6.58,4.05
1.15,Very Good,H,VVS2,58.8,58,6793,6.87,6.9,4.05
1.03,Ideal,G,VS2,60.7,57,6793,6.53,6.56,3.97
1.25,Ideal,J,VS1,61.2,56,6793,6.93,6.95,4.25
1.2,Good,G,VS2,65.2,56,6793,6.61,6.67,4.33
1.52,Ideal,H,I1,61.6,56,6793,7.75,7.73,4.77
1.01,Very Good,D,VS2,63.3,58,6794,6.35,6.38,4.03
1.01,Good,F,VS1,59,62,6794,6.56,6.6,3.88
1.01,Ideal,G,VS1,62.4,56,6794,6.44,6.39,4
1.01,Ideal,G,VS1,61.5,56,6794,6.48,6.43,3.97
1.01,Ideal,F,VS2,60.3,56,6794,6.56,6.5,3.94
1.01,Very Good,G,VS1,63.1,55,6795,6.34,6.37,4.01
1.02,Ideal,G,VS2,62.3,56,6796,6.46,6.51,4.04
2,Fair,J,I1,66.5,56,6796,7.93,7.8,5.23
1.02,Good,D,VS1,64.6,58,6797,6.22,6.28,4.04
1.02,Ideal,H,VVS2,62.1,56,6797,6.5,6.45,4.02
1.02,Ideal,H,VVS2,62.1,55,6797,6.5,6.46,4.02
1.5,Good,H,SI2,59.8,61,6798,7.39,7.49,4.45
1.11,Ideal,E,SI1,61.1,57,6800,6.64,6.72,4.08
0.97,Ideal,H,VVS1,60.4,57,6801,6.4,6.48,3.89
1.05,Very Good,E,VS2,61.6,58,6803,6.48,6.53,4.01
1.14,Very Good,G,VS2,63.2,58,6803,6.67,6.63,4.2
1,Ideal,F,VS2,62.6,57,6804,6.4,6.35,3.99
0.9,Good,E,IF,63.6,56,6804,6.11,6.02,3.86
1.35,Premium,F,SI2,62.8,60,6804,7.08,7,4.42
1.24,Ideal,D,SI1,61.9,56,6805,6.9,6.87,4.26
1.55,Ideal,J,SI2,62,56,6805,7.42,7.38,4.59
1.3,Ideal,I,VS1,62.1,57,6806,6.98,7.04,4.35
1.3,Premium,I,VS1,62.2,59,6806,6.91,6.97,4.32
0.28,Very Good,E,VVS1,60.9,60,612,4.25,4.26,2.59
0.3,Very Good,E,VS2,60.7,63,612,4.32,4.35,2.63
0.41,Very Good,F,SI2,62.6,54,612,4.75,4.77,2.98
0.28,Very Good,F,IF,62.2,55,612,4.23,4.26,2.64
0.28,Ideal,F,VVS2,61.6,55,612,4.22,4.26,2.61
0.28,Ideal,E,VVS2,60.7,57,612,4.22,4.25,2.57
0.32,Ideal,E,VS2,61.3,56,612,4.41,4.46,2.72
0.3,Ideal,F,VS1,61.5,55,612,4.31,4.34,2.66
0.3,Ideal,F,VS1,62.1,55,612,4.31,4.35,2.69
0.3,Ideal,F,VS1,61.8,55,612,4.31,4.33,2.67
0.3,Ideal,F,VS1,61.9,56,612,4.3,4.32,2.67
0.4,Ideal,I,SI2,61.3,56,612,4.76,4.79,2.93
0.41,Ideal,F,SI2,61.6,54,612,4.78,4.8,2.95
0.41,Ideal,F,SI2,62,53,612,4.77,4.81,2.97
0.4,Ideal,J,SI1,61.6,56,612,4.72,4.77,2.93
0.4,Ideal,J,SI1,61.4,55,612,4.75,4.8,2.93
0.28,Good,E,IF,64.6,58,612,4.09,4.12,2.65
0.34,Ideal,E,SI2,62,56,612,4.48,4.45,2.77
0.34,Premium,E,SI2,61.7,61,612,4.51,4.47,2.77
0.32,Ideal,G,SI1,61.3,56,612,4.42,4.39,2.7
0.32,Premium,G,SI1,62,55,612,4.43,4.41,2.74
0.32,Premium,G,SI1,60.9,56,612,4.45,4.41,2.7
0.32,Premium,G,SI1,59.6,60,612,4.46,4.43,2.65
0.32,Premium,G,SI1,62.6,58,612,4.37,4.35,2.73
0.32,Ideal,G,SI1,63,56,612,4.38,4.35,2.75
0.32,Very Good,G,SI1,63.5,56,612,4.38,4.35,2.77
0.32,Premium,G,SI1,61.6,58,612,4.4,4.36,2.7
0.32,Premium,G,SI1,61,61,612,4.41,4.38,2.68
0.32,Premium,G,SI1,62.6,58,612,4.35,4.31,2.71
0.32,Very Good,D,SI2,63.4,56,612,4.38,4.36,2.77
1.5,Premium,J,SI1,60.5,59,6806,7.38,7.47,4.49
1.01,Ideal,E,VS2,60.5,60,6806,6.46,6.47,3.91
1.03,Very Good,G,VS2,58.8,63,6806,6.7,6.61,3.91
0.96,Ideal,G,VS1,61.1,56,6807,6.34,6.39,3.89
1.05,Very Good,F,VS2,62.8,57,6808,6.45,6.48,4.06
1.24,Premium,H,SI1,60.2,60,6808,6.94,6.91,4.17
1.2,Very Good,E,SI1,61,58,6809,6.83,6.88,4.18
1.06,Ideal,G,VS2,61.3,57,6809,6.56,6.58,4.03
1.04,Ideal,G,VS2,61.9,54,6809,6.53,6.56,4.05
1.03,Ideal,F,VS2,61.4,58,6809,6.49,6.51,3.99
1.1,Very Good,F,VS2,61.4,58,6810,6.63,6.73,4.1
1.32,Very Good,I,SI1,62.1,57,6810,6.99,7.09,4.37
1.05,Ideal,F,VS2,61.6,54,6810,6.54,6.58,4.04
1.52,Premium,D,SI2,62.4,59,6810,7.36,7.29,4.57
1.28,Very Good,D,SI2,61.2,58,6811,6.96,7.09,4.3
1.58,Very Good,F,SI2,63.2,57,6813,7.43,7.38,4.68
1.2,Very Good,G,VS1,63.3,57,6814,6.77,6.71,4.26
1.04,Very Good,G,VS1,63.4,59,6814,6.46,6.38,4.07
1.2,Very Good,H,VS1,63.1,55,6814,6.82,6.77,4.29
1.2,Ideal,H,VS1,62.5,57,6814,6.81,6.73,4.23
1.04,Premium,D,VS2,62,60,6814,6.49,6.45,4.01
1.34,Premium,H,SI1,62.4,57,6814,7.07,6.96,4.38
1.04,Ideal,F,VS2,62.1,57,6814,6.53,6.48,4.04
1.17,Fair,E,VS2,64.5,56,6814,6.75,6.68,4.33
1.04,Premium,G,VS1,61.5,61,6814,6.56,6.51,4.02
1.02,Very Good,E,VS2,62.5,57,6816,6.36,6.41,3.99
1.51,Fair,H,SI2,65.5,56,6816,7.18,7.13,4.69
2.17,Fair,G,I1,55.6,62,6817,8.75,8.69,4.8
1.23,Ideal,I,VS2,62.4,58,6817,6.81,6.88,4.27
1.23,Ideal,I,VS2,62.4,58,6817,6.82,6.86,4.27
1,Very Good,G,VVS2,64.9,57,6818,6.21,6.28,4.05
1.06,Very Good,G,VS2,59.8,58,6818,6.64,6.7,3.99
1,Very Good,F,VS2,63.4,58,6818,6.3,6.39,4.02
1.51,Very Good,I,SI2,63.1,60,6819,7.19,7.13,4.52
1.3,Very Good,I,VS1,62.6,57,6819,6.92,6.95,4.34
1.19,Very Good,H,VS2,61.1,58,6819,6.78,6.83,4.16
1.74,Premium,F,I1,59.9,58,6821,7.88,7.82,4.7
1.13,Premium,F,VS2,59.8,61,6822,6.81,6.76,4.06
1,Good,E,VS1,60.6,63,6822,6.28,6.42,3.85
1.31,Premium,J,VS2,62,59,6822,7.04,6.97,4.34
1.06,Very Good,F,VS2,62.2,57,6823,6.53,6.58,4.08
1.01,Very Good,F,VS1,59.9,59,6825,6.52,6.57,3.92
1.01,Good,F,VS1,61.2,56,6825,6.42,6.49,3.95
1.23,Very Good,I,VS2,61.2,59,6826,6.84,6.81,4.18
1.01,Ideal,G,VS2,60.6,57,6826,6.47,6.53,3.94
1.09,Very Good,G,VS1,62.5,59,6827,6.54,6.57,4.1
1.01,Premium,D,VS2,61,59,6827,6.44,6.41,3.92
1.07,Good,F,VS2,57.6,60,6828,6.83,6.79,3.92
1.17,Ideal,F,SI1,61.1,56,6828,6.77,6.82,4.15
1.32,Good,E,SI1,63.7,56,6830,6.96,6.88,4.41
1.02,Very Good,D,VS2,63.7,55,6830,6.42,6.45,4.1
0.9,Ideal,F,VS2,62.3,56,6830,6.17,6.19,3.85
1.15,Very Good,G,VS2,62.9,58,6831,6.62,6.7,4.19
1.39,Ideal,J,VS2,60.9,57,6831,7.2,7.25,4.4
1.04,Ideal,G,VS1,61.5,55,6831,6.54,6.55,4.02
1.05,Ideal,H,VS1,61.8,55,6833,6.54,6.57,4.05
1.28,Ideal,G,SI2,61.8,56,6833,6.95,6.99,4.31
1.2,Very Good,H,VS2,63.3,59,6833,6.78,6.74,4.28
1.23,Premium,D,SI2,62.3,58,6833,6.81,6.78,4.23
1.21,Ideal,H,VS1,60.7,57,6834,6.86,6.89,4.17
0.8,Very Good,D,IF,63.3,57,6834,5.85,5.87,3.71
1.11,Ideal,H,VVS2,61.4,57,6837,6.63,6.67,4.08
1.05,Ideal,G,VS2,61.6,56,6837,6.52,6.56,4.03
1.1,Ideal,G,SI1,61.6,56,6837,6.62,6.65,4.08
1.26,Ideal,H,SI1,61,56,6837,7.04,7,4.28
1.28,Ideal,I,VS2,61.6,57,6838,7.01,6.98,4.31
1.06,Premium,E,VS2,62.3,58,6838,6.52,6.49,4.05
1.5,Fair,H,SI1,65,57,6838,7.1,7.06,4.6
1.5,Fair,H,SI1,65,57,6838,7.1,7.06,4.6
1.24,Premium,D,SI2,61.4,59,6840,6.87,6.91,4.23
1,Very Good,F,VS2,63.8,56.9,6841,6.29,6.36,4.04
1,Good,F,VS2,61.1,61,6841,6.38,6.45,3.92
1.01,Premium,G,VVS2,60.9,59,6843,6.54,6.59,4
1.01,Good,E,VS2,63.9,59,6843,6.31,6.34,4.04
1.01,Premium,E,VS2,62.2,58,6843,6.36,6.41,3.97
1.01,Good,G,VVS2,63.4,55,6843,6.34,6.41,4.04
1.01,Very Good,G,VVS2,63,59,6843,6.34,6.41,4.01
1.01,Premium,G,VVS2,61.4,58,6843,6.46,6.51,3.98
1.1,Ideal,H,SI1,61.5,56,6844,6.61,6.65,4.08
1.01,Very Good,G,VS1,62.5,56,6846,6.36,6.4,3.99
1.5,Good,H,SI2,60.8,64,6846,7.27,7.2,4.4
1.71,Good,G,SI2,63.7,57,6847,7.54,7.5,4.79
1.23,Very Good,H,VS2,62.4,58,6848,6.8,6.85,4.26
1.03,Very Good,D,VS1,59.6,61,6848,6.57,6.62,3.93
1.21,Premium,H,VS2,59.3,60,6849,6.93,6.99,4.13
1.09,Ideal,E,SI1,61.8,55,6849,6.65,6.58,4.09
1.24,Premium,H,VS2,61.2,59,6850,6.89,6.93,4.23
1.51,Good,J,SI1,63.5,58,6851,7.24,7.29,4.61
1.51,Very Good,J,SI1,61.2,62,6851,7.32,7.36,4.49
1.51,Premium,J,SI1,59.4,59,6851,7.45,7.54,4.45
1.09,Ideal,E,SI2,62.7,55.9,6852,6.52,6.58,4.11
1.06,Premium,G,VS1,62.2,55,6853,6.58,6.51,4.07
1.02,Ideal,E,VS2,62.7,56,6854,6.44,6.38,4.02
1.02,Premium,E,VS2,58.4,57,6854,6.64,6.59,3.86
1.02,Premium,E,VS2,62.1,52,6854,6.55,6.49,4.05
2,Good,G,I1,63.9,58,6854,7.99,7.91,5.08
1.26,Very Good,I,VS1,59.2,60,6855,7.09,7.02,4.18
1.01,Ideal,G,VS2,61,56,6855,6.46,6.49,3.95
1.06,Ideal,D,VS2,62.5,54,6856,6.53,6.6,4.1
1.08,Ideal,H,VVS2,62.4,55,6856,6.53,6.57,4.09
1.25,Premium,G,SI1,60.7,58,6856,6.97,6.9,4.21
1.09,Ideal,G,VS1,62.5,56,6856,6.63,6.55,4.12
1.11,Ideal,G,VS2,61.2,56,6857,6.65,6.68,4.08
1.02,Ideal,G,VS1,62.1,58,6857,6.4,6.45,3.99
1.19,Ideal,D,SI1,62,57,6857,6.77,6.82,4.21
1.31,Good,H,SI1,57.9,62,6857,7.18,7.25,4.18
1.72,Premium,J,SI1,62,56,6857,7.76,7.7,4.79
1.27,Ideal,H,SI1,60.1,58,6858,7.02,7.05,4.23
1.12,Ideal,F,VS2,60.9,55,6858,6.73,6.67,4.08
1,Ideal,E,VS2,61.7,54,6859,6.41,6.46,3.97
1.35,Very Good,E,SI1,62.7,57,6860,7.01,7.05,4.41
2.32,Fair,H,I1,70.5,55,6860,7.93,7.9,5.58
1,Premium,E,VS2,61.8,62,6860,6.47,6.44,3.99
1.21,Good,E,SI1,63.6,58,6861,6.65,6.77,4.27
1.02,Very Good,G,VS1,63.3,58,6861,6.42,6.38,4.05
1.11,Premium,F,VS2,62.7,59,6863,6.58,6.62,4.14
1.06,Very Good,G,VS1,63,56,6863,6.47,6.51,4.09
1.02,Very Good,D,SI1,60.3,56,6863,6.55,6.57,3.96
1.02,Fair,F,VVS2,64.8,58,6863,6.22,6.28,4.05
1.03,Ideal,G,VS1,62.3,56,6864,6.5,6.46,4.04
1.05,Very Good,E,VS2,62.2,57,6865,6.44,6.56,4.04
1,Very Good,G,VS1,59.4,59,6867,6.52,6.54,3.88
1.18,Very Good,I,IF,63.3,58,6867,6.69,6.73,4.25
1.24,Ideal,H,SI1,62.3,54,6867,6.88,6.9,4.29
1,Premium,D,VS2,59.6,60,6868,6.57,6.52,3.9
1.2,Very Good,H,VS2,62.5,59,6870,6.76,6.72,4.21
2.72,Fair,J,I1,68.2,56,6870,8.46,8.43,5.76
1.21,Good,H,VS1,59.5,65,6871,6.88,6.84,4.08
1,Ideal,E,VS2,62.9,55,6871,6.4,6.36,4.01
1.21,Very Good,H,VS1,63.3,58,6871,6.77,6.72,4.27
1,Ideal,E,VS2,62,56,6871,6.46,6.41,3.99
0.9,Very Good,D,VVS2,62.6,59,6872,6.11,6.15,3.84
1.2,Very Good,F,SI1,63.5,57,6872,6.65,6.74,4.25
1.09,Ideal,F,SI1,61.4,56,6872,6.63,6.66,4.08
1.31,Ideal,I,VS2,61.7,55,6873,7,7.1,4.35
1.26,Good,G,SI1,63.2,61,6874,6.81,6.87,4.32
1.24,Premium,F,SI1,61.6,59,6874,6.86,6.9,4.24
1.24,Premium,E,SI1,59.7,59,6875,7.07,6.99,4.2
1,Very Good,E,VS2,59,58,6875,6.49,6.53,3.84
1.21,Ideal,H,SI1,62.2,54,6876,6.8,6.86,4.25
1.29,Premium,I,VS1,63,57,6877,6.99,6.89,4.37
1,Very Good,D,VS2,62.6,56,6881,6.33,6.39,3.98
1.01,Premium,G,VS1,61.7,56,6882,6.53,6.46,4.01
1.01,Good,G,VS1,63.8,57,6882,6.38,6.35,4.06
1.01,Premium,G,VS1,60.9,58,6882,6.47,6.43,3.93
1,Very Good,F,VS1,62.1,60,6883,6.33,6.42,3.96
1.35,Very Good,I,VS2,61.7,59,6884,7.05,7.09,4.36
1.08,Ideal,F,SI1,61.8,55,6884,6.58,6.63,4.08
1.31,Very Good,I,VS1,62.3,58,6885,6.99,7.03,4.37
1.07,Premium,F,VS1,60.6,61,6885,6.62,6.56,3.99
1.21,Ideal,E,SI1,62,56,6887,6.83,6.76,4.21
1.21,Very Good,H,VS2,60.1,57,6887,6.88,6.97,4.16
1.83,Fair,H,I1,68,57,6887,7.47,7.44,5.07
1.22,Ideal,I,VS1,62.9,54,6887,6.83,6.79,4.29
1.22,Ideal,I,VS1,62.6,57,6887,6.8,6.76,4.24
1.22,Premium,F,SI1,61.8,59,6887,6.86,6.83,4.23
1.23,Premium,G,SI1,61.2,59,6888,6.88,6.81,4.19
1.5,Premium,I,SI1,62.3,58,6888,7.33,7.22,4.53
0.97,Very Good,F,VVS2,58.1,60,6889,6.49,6.53,3.78
1.41,Ideal,J,SI1,62.3,55,6889,7.18,7.21,4.48
1.06,Ideal,G,VS2,61.9,54,6890,6.54,6.58,4.06
1.04,Premium,G,VVS1,58.2,60,6890,6.71,6.66,3.89
1.55,Premium,J,SI2,62.6,57,6890,7.37,7.32,4.6
1.13,Ideal,G,VS2,62.7,56,6891,6.61,6.65,4.16
0.9,Very Good,E,VVS2,63.7,57,6892,6.1,6.12,3.89
1.21,Very Good,H,SI1,60.4,58,6892,6.91,6.96,4.19
1.27,Premium,H,SI1,60.2,58,6892,7.04,6.99,4.22
1.42,Very Good,I,VS1,60.1,65,6894,7.28,7.2,4.35
1.24,Ideal,G,SI1,61,56.4,6895,6.93,6.99,4.25
1.16,Ideal,E,SI1,61.9,57,6896,6.72,6.76,4.17
1.52,Good,J,SI1,63.6,60,6897,7.21,7.25,4.6
1.6,Premium,F,SI2,61.8,57,6899,7.51,7.46,4.63
1,Premium,F,VS2,60.7,58,6899,6.45,6.36,3.89
1.01,Premium,F,VS2,59.2,61,6900,6.59,6.55,3.89
1.55,Ideal,E,SI2,62.3,55,6901,7.44,7.37,4.61
1.03,Ideal,F,VS2,62,57,6902,6.4,6.48,3.99
1.07,Premium,G,VS2,61.9,58,6903,6.55,6.54,4.05
1.34,Ideal,H,SI2,61.6,56,6904,7.1,7.05,4.36
1.01,Very Good,D,VS2,62.2,61,6905,6.37,6.43,3.98
1.01,Very Good,D,VS2,60.4,58,6905,6.47,6.57,3.94
1.01,Very Good,G,VS1,63.6,57,6905,6.3,6.35,4.02
1.09,Ideal,G,VS2,62,54,6905,6.61,6.65,4.11
1.52,Fair,I,SI2,64.7,58,6905,7.19,7.22,4.66
1.02,Very Good,G,VS2,60.5,60,6906,6.53,6.49,3.94
1.09,Premium,G,VS2,61,59,6906,6.6,6.65,4.04
1.21,Good,G,VS2,63.7,59,6906,6.59,6.67,4.22
1.04,Premium,F,VS2,61.7,59,6906,6.49,6.45,3.99
1.01,Ideal,F,SI1,62,56,6907,6.41,6.46,3.99
1.04,Premium,F,VS2,61.9,58,6908,6.55,6.51,4.04
1.02,Premium,D,VS2,59.8,61,6909,6.61,6.54,3.93
1.23,Premium,G,SI1,62.5,59,6909,6.84,6.77,4.25
1.02,Very Good,D,VS2,63.4,54,6909,6.38,6.33,4.03
1,Very Good,F,VS1,60.1,63,6910,6.42,6.45,3.87
1.02,Very Good,F,VS2,62.8,57,6911,6.36,6.41,4.01
1.19,Ideal,E,SI1,61.3,57,6911,6.81,6.83,4.18
1.01,Good,D,VS2,61.8,59,6912,6.28,6.35,3.9
1.65,Premium,G,I1,62,59,6912,7.57,7.53,4.68
1.03,Ideal,G,VS1,62,54.8,6913,6.46,6.5,4.02
1.05,Ideal,G,VS2,59.4,59,6914,6.62,6.65,3.94
1.51,Very Good,I,SI2,63.2,58,6914,7.31,7.27,4.61
1.02,Very Good,E,VS2,60,59,6915,6.54,6.59,3.94
1.04,Very Good,D,VS1,60.8,58,6915,6.5,6.53,3.96
1.61,Very Good,G,SI2,63.4,55,6915,7.47,7.35,4.7
1.26,Premium,F,SI1,62.3,58,6915,6.89,6.84,4.28
1.31,Very Good,I,VS2,61.2,58,6917,7.01,7.05,4.3
1.07,Ideal,G,VS1,61.8,57,6917,6.58,6.52,4.05
1.15,Premium,H,VVS2,58.8,58,6917,6.9,6.87,4.05
1.12,Ideal,G,VS1,62.3,57,6918,6.59,6.64,4.12
1.29,Ideal,J,VVS1,61.2,56,6918,7.01,7.05,4.3
1.31,Premium,I,VS2,62.4,61,6921,6.98,6.9,4.33
1.31,Premium,I,VS2,60,58,6921,7.15,7.11,4.28
1.26,Ideal,F,SI1,60.6,56,6922,7.05,6.98,4.25
1.5,Fair,E,SI2,64.8,55,6922,7.26,7.15,4.67
1.03,Ideal,F,VS2,62.3,56,6922,6.52,6.49,4.05
1.03,Premium,E,VS2,62.9,61,6922,6.42,6.36,4.02
1.03,Ideal,F,VS2,61.2,54,6922,6.56,6.51,4
1.01,Premium,F,VS2,61.4,57,6923,6.51,6.45,3.98
1.12,Very Good,F,VS2,62,58,6925,6.63,6.69,4.13
1.12,Good,F,VS2,63.8,57,6925,6.59,6.61,4.21
1.14,Ideal,H,VS1,61.9,53,6926,6.73,6.75,4.17
1,Very Good,F,VS2,61.9,58,6927,6.41,6.49,3.99
1.73,Ideal,J,SI1,62.6,57,6927,7.69,7.65,4.8
1.3,Ideal,G,VS1,62.4,56,6928,7.03,6.95,4.36
1.15,Very Good,E,VS2,62.9,56,6929,6.65,6.68,4.19
1.05,Premium,E,VS2,62.1,58,6930,6.5,6.54,4.05
1.03,Very Good,G,VS2,61,58,6931,6.5,6.54,3.98
1.08,Ideal,G,VS2,61.8,55,6931,6.57,6.63,4.08
1.3,Premium,I,VS1,62.2,59,6931,6.97,6.91,4.32
1.3,Ideal,I,VS1,62.1,57,6931,7.04,6.98,4.35
1.22,Premium,F,SI1,62.5,59,6932,6.78,6.83,4.25
1.01,Premium,G,VS1,60.7,58,6932,6.49,6.52,3.95
1.01,Good,F,VVS2,63.6,60,6932,6.31,6.36,4.03
1.05,Ideal,F,VS2,62.8,57,6933,6.48,6.45,4.06
1.09,Ideal,G,VS1,62.4,57,6934,6.55,6.63,4.11
1.22,Premium,H,VS2,62.4,58,6934,6.84,6.79,4.25
1.51,Ideal,D,SI2,61.2,56,6934,7.4,7.36,4.52
1.29,Premium,D,SI2,59.4,62,6935,7.06,6.99,4.17
1.51,Good,J,VS2,64,58,6936,7.24,7.27,4.64
1.05,Ideal,G,VS1,62,56,6936,6.47,6.53,4.03
1.05,Premium,G,VS1,61.6,58,6936,6.48,6.51,4
1.01,Very Good,G,VS1,63.1,57,6936,6.32,6.39,4.01
1.28,Premium,D,SI2,61.2,58,6936,7.09,6.96,4.3
1,Very Good,D,VS2,61.2,60,6937,6.4,6.42,3.92
1.19,Good,E,VS2,57.4,60,6937,6.9,7,3.99
1.01,Ideal,G,VS2,62.7,54,6937,6.43,6.47,4.04
1.1,Ideal,G,VS2,60.9,56,6939,6.68,6.79,4.1
1.51,Very Good,J,SI1,62.9,59,6942,7.25,7.29,4.57
1.15,Premium,D,SI1,63,57,6942,6.69,6.64,4.2
1.01,Very Good,F,VS2,60.5,59,6944,6.51,6.54,3.95
1.25,Ideal,H,VS2,60,56,6944,7.04,6.99,4.21
1.19,Premium,H,VS2,61.1,58,6944,6.83,6.78,4.16
1.06,Ideal,I,VVS1,60.2,57,6945,6.62,6.66,4
1.28,Premium,H,SI1,62.3,58,6946,7,6.94,4.34
1.06,Premium,F,VS2,62.2,57,6947,6.58,6.53,4.08
1.22,Ideal,H,VS2,61.4,57,6947,6.89,6.85,4.22
1.1,Very Good,G,VS1,60.3,62,6951,6.72,6.67,4.04
0.95,Ideal,G,IF,59.8,59,6951,6.36,6.43,3.82
1.09,Premium,G,VS1,62.5,59,6951,6.57,6.54,4.1
1.01,Ideal,G,VS1,62.7,56,6951,6.4,6.35,4
1.01,Ideal,G,VS1,62.4,58,6951,6.43,6.39,4
1.11,Very Good,G,VS2,62.2,57,6953,6.55,6.6,4.09
1.16,Ideal,H,VS2,62.1,57,6954,6.7,6.73,4.17
1.2,Very Good,F,SI1,63.3,58,6955,6.63,6.57,4.18
1.04,Ideal,G,VS2,60.5,57,6955,6.56,6.62,3.99
1.15,Premium,G,VS2,62.9,58,6955,6.7,6.62,4.19
1.01,Very Good,E,VS2,62.6,59,6956,6.35,6.39,3.99
1.2,Ideal,H,VS2,62.2,55,6956,6.76,6.85,4.23
1.01,Ideal,E,VS2,61.4,57,6956,6.44,6.5,3.97
1,Very Good,F,VS2,62.8,57,6957,6.29,6.35,3.97
1.23,Premium,H,VS2,62.4,61,6957,6.85,6.8,4.26
1.21,Ideal,G,SI1,62.1,57,6958,6.79,6.83,4.23
1,Good,E,VS2,58.2,60,6958,6.52,6.54,3.8
1.24,Ideal,H,SI1,61.6,57,6958,6.92,6.84,4.24
1.18,Ideal,G,SI1,62,56,6960,6.76,6.79,4.2
1.35,Very Good,I,VS2,62.1,62,6961,6.97,7.05,4.35
1.08,Ideal,H,VVS1,62.5,54,6961,6.56,6.58,4.1
1.72,Very Good,F,I1,60.5,59,6962,7.71,7.8,4.69
1.12,Ideal,H,SI1,61.6,56,6962,6.64,6.68,4.11
1.11,Ideal,H,VVS2,61.4,57,6962,6.67,6.63,4.08
1.24,Premium,H,VS2,61.7,59,6962,6.91,6.84,4.24
1.22,Very Good,G,VS2,63.1,56,6962,6.82,6.8,4.3
1.11,Premium,D,SI1,62,58,6962,6.68,6.64,4.13
1.33,Premium,I,VS1,61.5,58,6963,7.02,7.06,4.33
1.33,Good,I,VS1,63.7,56,6963,6.92,6.96,4.42
1.33,Premium,E,SI2,62.5,58,6963,6.99,7.03,4.38
1.21,Premium,E,SI1,62.3,58,6963,6.77,6.74,4.21
1.01,Ideal,G,VS2,62.6,56,6964,6.41,6.44,4.02
1.24,Premium,D,SI2,61.4,59,6965,6.91,6.87,4.23
1.56,Good,J,VS2,57.6,65,6966,7.6,7.62,4.38
1.55,Ideal,J,SI2,62.3,54,6966,7.38,7.42,4.61
1.01,Premium,G,VVS2,60.9,59,6968,6.59,6.54,4
1.01,Ideal,E,VS2,61.3,57,6968,6.49,6.46,3.97
1.02,Ideal,G,VS1,62,55,6968,6.4,6.53,4.01
1.2,Ideal,H,SI1,61.1,56,6968,6.92,6.87,4.21
1.01,Very Good,G,VVS2,63.4,55,6968,6.41,6.34,4.04
1.01,Good,E,VS2,63.9,59,6968,6.34,6.31,4.04
1.73,Premium,H,SI2,60.5,60,6968,7.79,7.71,4.69
1.01,Premium,E,VS2,62.2,58,6968,6.41,6.36,3.97
1.22,Premium,G,SI2,62.4,61,6969,6.79,6.79,4.23
1.39,Good,F,SI2,63.8,55,6969,7.05,7.08,4.51
0.32,Ideal,D,SI2,61.7,55,612,4.4,4.38,2.71
0.32,Ideal,D,SI2,59.5,57,612,4.5,4.47,2.67
0.32,Good,D,SI2,63.9,58,612,4.33,4.31,2.76
0.32,Premium,G,SI1,62.8,56,612,4.36,4.34,2.73
0.34,Premium,I,VS2,62.1,57,612,4.48,4.44,2.77
0.34,Premium,I,VS2,61.8,58,612,4.51,4.48,2.78
0.34,Premium,H,SI1,60.2,58,612,4.52,4.48,2.71
0.34,Premium,H,SI1,62.1,59,612,4.5,4.46,2.78
0.34,Ideal,E,SI2,62.4,57,612,4.5,4.47,2.8
0.34,Premium,E,SI2,59.9,59,612,4.57,4.55,2.73
0.34,Premium,E,SI2,61.7,58,612,4.54,4.5,2.79
0.34,Premium,E,SI2,61.5,58,612,4.52,4.49,2.77
0.34,Premium,E,SI2,62.4,59,612,4.46,4.42,2.77
0.34,Premium,E,SI2,62.5,59,612,4.46,4.43,2.78
0.34,Good,E,SI2,63.7,55,612,4.46,4.43,2.83
0.34,Ideal,E,SI2,62.9,56,612,4.48,4.45,2.81
0.32,Premium,G,SI1,62.5,58,612,4.43,4.4,2.76
0.32,Premium,G,SI1,60.9,58,612,4.44,4.39,2.69
0.32,Ideal,G,SI1,61.3,57,612,4.4,4.37,2.69
0.32,Ideal,G,SI1,62.5,55,612,4.38,4.35,2.73
0.32,Ideal,D,SI2,61.8,55,612,4.42,4.38,2.72
0.32,Ideal,D,SI2,61.1,56,612,4.41,4.39,2.69
0.32,Ideal,D,SI2,59.8,57,612,4.46,4.4,2.65
0.32,Good,D,SI2,63.7,56,612,4.34,4.33,2.76
0.32,Ideal,D,SI2,62.8,57,612,4.38,4.35,2.74
0.32,Ideal,D,SI2,62.4,54,612,4.4,4.38,2.74
0.32,Ideal,D,SI2,62.6,56,612,4.4,4.38,2.75
0.34,Premium,E,SI1,59.3,58,612,4.59,4.55,2.71
0.32,Ideal,G,SI1,61.4,57,612,4.41,4.38,2.7
0.32,Ideal,G,SI1,61.6,57,612,4.42,4.38,2.71
1.2,Good,E,SI1,64,61,6969,6.61,6.67,4.25
1.22,Premium,D,SI2,61.9,60,6969,6.88,6.82,4.24
1.09,Ideal,H,SI1,61.4,56,6970,6.61,6.64,4.07
1.71,Good,F,SI2,63.7,54,6971,7.6,7.49,4.81
1.56,Premium,F,SI2,63,58,6971,7.35,7.28,4.66
1.1,Ideal,G,VS2,60.2,56,6972,6.7,6.74,4.05
1.21,Very Good,H,VS1,63.4,55,6973,6.76,6.81,4.3
1.2,Very Good,F,SI1,62.7,58,6973,6.74,6.72,4.22
1.36,Ideal,J,VVS2,61.9,56,6973,7.16,7.13,4.42
1.02,Very Good,D,VS2,62.7,58,6974,6.35,6.44,4.01
1.03,Premium,D,VS1,59.6,61,6974,6.62,6.57,3.93
1.21,Premium,H,VS2,59.3,60,6974,6.99,6.93,4.13
1.01,Very Good,G,VVS2,63.3,57,6975,6.29,6.36,4.01
1.51,Premium,J,SI1,61.2,62,6976,7.36,7.32,4.49
1.51,Very Good,J,SI1,63.5,58,6976,7.29,7.24,4.61
1.51,Fair,J,SI1,63.4,60,6976,7.31,7.18,4.59
1.5,Premium,H,SI2,61.2,61,6979,7.34,7.27,4.47
1.45,Very Good,J,VS2,62.6,58,6980,7.28,7.16,4.52
1.13,Ideal,I,VS1,61.9,55,6980,6.67,6.7,4.14
1.13,Ideal,I,VS1,61.8,57,6980,6.66,6.7,4.13
1.05,Ideal,G,VS2,61.6,59,6981,6.51,6.54,4.02
1.03,Ideal,G,VS2,61.3,57,6981,6.51,6.54,4
1.06,Ideal,D,VS2,62.5,54,6981,6.6,6.53,4.1
1.52,Good,J,VS2,63.1,61,6982,7.19,7.23,4.55
1.08,Premium,G,VS1,62.9,55,6982,6.6,6.53,4.13
1.08,Premium,G,VS1,62.7,56,6982,6.55,6.52,4.1
1.11,Ideal,G,VS2,61.2,56,6982,6.68,6.65,4.08
1.1,Ideal,G,VS1,61.5,57,6984,6.62,6.65,4.08
1.2,Very Good,F,SI1,61.9,58,6985,6.75,6.82,4.2
1.5,Very Good,J,SI1,62.5,58,6987,7.24,7.29,4.54
1.1,Very Good,F,VS2,61.1,57,6987,6.65,6.71,4.08
1.5,Very Good,J,SI1,62.7,58,6987,7.22,7.26,4.54
1.29,Premium,H,VS2,62.4,57,6987,6.98,6.92,4.34
1.41,Premium,D,SI2,61.1,56,6988,7.19,7.15,4.38
1,Premium,G,VS1,62.9,60,6989,6.36,6.29,3.98
1.23,Ideal,I,VVS1,62.1,57,6989,6.83,6.9,4.26
1,Premium,G,VS1,58.6,61,6989,6.57,6.5,3.83
1,Ideal,E,VS2,61.5,55,6989,6.47,6.44,3.97
1.09,Very Good,F,VS2,61.4,54,6990,6.66,6.7,4.1
1.58,Premium,F,SI2,60.7,60,6990,7.54,7.51,4.57
1.24,Ideal,G,SI1,60.5,60,6994,6.97,6.91,4.2
1.01,Very Good,E,VS1,62,57,6996,6.46,6.38,3.98
1.56,Very Good,J,SI2,58.3,63,6996,7.64,7.7,4.47
1.4,Good,H,SI2,62.5,57,6996,7.07,7.11,4.43
1.04,Premium,G,VS1,62,56,6996,6.53,6.46,4.03
1.01,Very Good,E,VS1,62.1,58,6997,6.39,6.45,3.99
1.23,Very Good,H,SI1,60.3,58,6997,6.93,6.96,4.19
1.07,Very Good,G,VS1,60.9,55,6998,6.6,6.64,4.03
1.01,Good,D,VS2,62.1,59,6998,6.28,6.35,3.92
1.31,Ideal,I,VS2,61.7,55,6999,7.1,7,4.35
1.01,Very Good,F,VS1,62.8,58,6999,6.32,6.39,3.99
1.01,Ideal,D,VS2,59.8,56,6999,6.49,6.52,3.89
1.01,Good,F,VS1,63.3,60,6999,6.32,6.35,4.01
1.01,Premium,F,VS1,61.3,58,6999,6.44,6.52,3.97
1.01,Good,D,VS2,63.1,60,6999,6.35,6.39,4.02
1.24,Premium,F,SI1,61.6,59,7000,6.9,6.86,4.24
1.26,Very Good,G,SI1,63.2,61,7000,6.87,6.81,4.32
1.01,Very Good,D,VS2,60.6,56,7001,6.45,6.51,3.93
1.01,Very Good,F,VS1,63.7,56,7001,6.27,6.33,4.01
1.01,Good,F,VVS2,65.9,54,7001,6.18,6.27,4.1
1.3,Premium,D,SI2,60.2,59,7002,7,7.05,4.23
1,Very Good,E,VS1,61.2,57,7002,6.43,6.47,3.95
1.21,Ideal,I,VVS2,62.7,56,7002,6.8,6.83,4.27
1.06,Very Good,G,VS1,62,58,7003,6.51,6.56,4.05
1.16,Premium,F,VS2,62.7,58,7003,6.71,6.65,4.19
1.27,Premium,G,SI1,61.4,59,7005,6.94,6.98,4.27
2.23,Very Good,G,I1,63.5,57,7006,8.24,8.2,5.22
0.91,Premium,E,VVS2,61.1,61,7006,6.24,6.2,3.8
1.39,Premium,H,VS2,62.5,59,7006,7.17,7.1,4.46
1,Good,G,VVS1,63.8,60,7007,6.31,6.35,4.04
1.05,Very Good,G,VS1,62.3,56,7010,6.45,6.51,4.04
1.01,Ideal,E,VS2,61.9,57,7013,6.43,6.37,3.96
1.01,Ideal,F,VS2,61.9,54,7014,6.45,6.49,4
1.04,Ideal,F,VS1,61.4,57,7015,6.51,6.56,4.01
1.34,Ideal,I,VS1,62.2,57,7016,7.02,7.06,4.38
1,Good,F,VVS2,56.5,63,7016,6.65,6.62,3.75
1.13,Ideal,G,VS2,62.7,56,7016,6.65,6.61,4.16
1.01,Premium,F,VS1,60.8,59,7017,6.45,6.41,3.91
1.2,Ideal,E,SI2,62,57,7018,6.8,6.82,4.22
1.51,Premium,H,SI2,62.3,62,7018,7.32,7.21,4.51
1.04,Premium,E,VS2,62.4,58,7019,6.56,6.51,4.08
2.11,Fair,F,I1,67.6,57,7019,7.88,7.83,5.31
1.01,Very Good,G,VS1,63.6,57,7021,6.34,6.36,4.04
1.1,Premium,G,VS2,59.4,60,7022,6.78,6.72,4.01
1.52,Good,J,SI1,63.6,60,7022,7.25,7.21,4.6
1.27,Ideal,E,SI2,60.8,57,7023,7,7.02,4.26
2.01,Good,H,I1,63.9,59,7024,8.01,7.92,5.09
1.05,Premium,F,VS2,62.6,58,7025,6.47,6.5,4.06
1.28,Ideal,I,VS1,61.3,57,7025,7.02,6.98,4.29
2.05,Good,G,I1,56.9,58,7026,8.46,8.3,4.77
1,Good,D,VS2,60.7,61,7026,6.4,6.46,3.9
1.02,Ideal,F,VS2,62,57,7026,6.46,6.44,4
1.05,Ideal,G,VS1,61.3,57,7027,6.51,6.58,4.01
1.05,Ideal,G,VS2,61.7,57,7028,6.56,6.53,4.04
1.27,Very Good,I,VS1,60.6,59,7031,7.04,6.96,4.24
1.01,Premium,D,VS2,60.4,58,7032,6.57,6.47,3.94
1.01,Premium,D,VS2,62.2,61,7032,6.43,6.37,3.98
1.15,Premium,G,VS1,63,60,7032,6.68,6.6,4.18
1.09,Premium,G,VS2,61,59,7032,6.65,6.6,4.04
1.51,Premium,J,SI1,62.3,58,7034,7.3,7.33,4.56
1.04,Ideal,F,VS2,60.1,59,7035,6.59,6.63,3.97
1.29,Ideal,H,SI1,62.1,55,7036,6.96,7,4.34
1.02,Ideal,F,VS2,62.8,57,7037,6.41,6.36,4.01
1.01,Very Good,F,VS2,61.1,58,7037,6.45,6.51,3.96
1.21,Ideal,I,VS1,61.8,56,7037,6.83,6.87,4.23
1.05,Ideal,G,VS1,62.5,56,7037,6.48,6.54,4.07
1.32,Ideal,E,SI2,62.7,56,7037,7.03,6.97,4.39
1.19,Ideal,E,SI1,61.3,57,7037,6.83,6.81,4.18
1.14,Ideal,I,VS1,61.1,56,7038,6.73,6.76,4.12
1.01,Very Good,E,VS1,62.2,56,7039,6.38,6.42,3.98
1.15,Very Good,H,VS1,62.5,56,7040,6.65,6.72,4.18
1.04,Premium,D,VS1,60.8,58,7041,6.53,6.5,3.96
1.14,Good,G,VS1,63.4,58,7042,6.61,6.67,4.21
1.14,Ideal,G,VS2,61.5,57,7042,6.68,6.72,4.12
1.25,Ideal,I,VS1,61.4,58,7042,6.89,6.93,4.24
1.04,Ideal,G,VS2,61.3,57,7044,6.53,6.56,4.01
1.3,Premium,D,SI2,61.5,58,7044,6.98,6.91,4.27
1.04,Premium,E,VS2,61.1,59,7047,6.54,6.56,4
1.21,Good,G,VS2,64.1,58,7047,6.74,6.67,4.3
1.21,Ideal,H,VS1,60.5,57,7047,6.91,6.88,4.17
1.04,Good,G,VS1,63.8,57,7049,6.4,6.43,4.09
1.04,Very Good,G,VS1,61.8,58,7049,6.5,6.55,4.03
1.24,Very Good,H,SI1,60.8,60,7050,6.9,6.94,4.21
1.12,Good,F,VS2,63.8,57,7051,6.61,6.59,4.21
1.3,Ideal,H,SI1,62.2,56,7054,7.03,6.98,4.36
1.11,Premium,G,VS2,61.5,58,7055,6.69,6.62,4.09
1.09,Ideal,H,VVS1,61.4,56,7055,6.64,6.67,4.09
1.02,Ideal,G,VS1,61.4,57,7055,6.45,6.49,3.98
1.26,Premium,H,SI1,61.3,57,7056,7.01,6.93,4.27
1.5,Fair,F,SI2,64.7,59,7056,7.13,7.05,4.59
1,Premium,F,VS1,62,59,7056,6.42,6.35,3.96
1,Premium,F,VS1,59.2,60,7056,6.53,6.48,3.58
1,Premium,F,VS1,59.2,60,7056,6.53,6.48,3.85
1,Premium,F,VS1,62.7,55,7056,6.39,6.34,3.99
1.01,Ideal,F,VS1,61.7,59,7056,6.44,6.42,3.97
1.05,Premium,E,VS2,62.1,58,7056,6.54,6.5,4.05
1.5,Fair,F,SI2,65.3,57,7056,7.15,7.09,4.65
1,Ideal,F,VS1,61.7,55,7056,6.42,6.39,3.95
1.5,Premium,F,SI2,62.4,58,7056,7.31,7.24,4.54
1.5,Premium,I,SI2,62.2,61,7056,7.24,7.19,4.49
1.34,Ideal,G,SI2,61.1,56,7058,7.11,7.13,4.35
1.01,Ideal,G,VS1,59.1,55,7059,6.6,6.53,3.88
1.32,Ideal,I,VS2,61.7,59,7059,7.03,7.06,4.35
1.14,Ideal,H,VS2,62,55,7059,6.71,6.72,4.16
1.01,Good,F,VVS2,63.6,60,7059,6.36,6.31,4.03
1.22,Premium,F,SI1,62.5,59,7059,6.83,6.78,4.25
1.01,Premium,G,VS1,60.7,58,7059,6.52,6.49,3.95
1.01,Premium,F,VS2,62.5,59,7062,6.41,6.32,3.98
1.51,Good,J,VS2,64,58,7062,7.27,7.24,4.64
1.05,Premium,G,VS1,61.6,58,7063,6.51,6.48,4
1.05,Ideal,G,VS1,62,56,7063,6.53,6.47,4.03
1.03,Ideal,G,VS2,61.6,55,7064,6.49,6.54,4.01
1.19,Good,E,VS2,57.4,60,7064,7,6.9,3.99
1.13,Ideal,D,SI1,61.4,56,7066,6.69,6.74,4.12
1.55,Very Good,H,SI1,63.2,57,7066,7.35,7.31,4.64
1.55,Very Good,H,SI1,63.2,57,7066,7.35,7.31,4.64
1.02,Good,F,VS1,63.7,57,7068,6.35,6.39,4.06
1.7,Ideal,H,I1,62.6,54.1,7068,7.58,7.63,4.77
1.01,Premium,G,VVS2,61.2,59,7068,6.42,6.36,3.91
1.07,Ideal,G,VS1,61.8,55,7069,6.55,6.59,4.06
2.25,Fair,G,I1,64.9,58,7069,8.15,8.12,5.28
1.05,Ideal,G,VS2,62.2,54,7070,6.53,6.55,4.07
1,Premium,F,VS2,59,59,7072,6.54,6.51,3.85
1.2,Very Good,H,VS2,62.5,60,7072,6.72,6.78,4.22
1.62,Very Good,J,SI2,61.6,60,7072,7.52,7.64,4.67
1.2,Ideal,H,VS2,62.8,57,7072,6.75,6.79,4.25
1.2,Ideal,H,VS2,61.2,59,7072,6.84,6.89,4.2
1.16,Ideal,G,VS2,62.3,57,7074,6.66,6.72,4.17
1.16,Premium,G,VS2,59.9,60,7074,6.85,6.88,4.11
1.1,Ideal,G,VS2,62.5,54,7074,6.59,6.62,4.12
1.2,Ideal,E,SI1,62.3,55,7074,6.78,6.84,4.24
1.06,Ideal,F,VS2,61,57,7075,6.57,6.6,4.02
1.17,Very Good,G,VS2,63.2,57,7076,6.73,6.71,4.25
1.08,Fair,G,VS1,64.7,60,7076,6.44,6.41,4.16
1.5,Premium,D,SI2,59.6,59,7076,7.54,7.46,4.47
1.02,Ideal,G,VS1,61.1,56,7077,6.51,6.54,3.99
1.02,Ideal,F,VS2,62,55,7078,6.47,6.5,4.02
1.09,Ideal,G,VS1,60.5,57,7078,6.69,6.73,4.06
1.06,Very Good,E,VS2,61,60,7079,6.57,6.53,4
1.32,Ideal,I,VS2,60.8,57,7079,7.02,7.07,4.28
1.01,Very Good,F,VS1,62.5,60,7079,6.36,6.41,3.99
1.2,Ideal,I,VVS2,62.9,55,7079,6.75,6.79,4.26
1.14,Ideal,H,SI1,61.8,56,7079,6.68,6.72,4.14
1.14,Ideal,H,SI1,61.6,56,7079,6.72,6.74,4.14
1.14,Ideal,H,SI1,61.5,55,7079,6.72,6.75,4.14
1.14,Premium,G,VS2,60.9,57,7079,6.79,6.73,4.12
1.32,Ideal,F,SI1,61.6,56,7079,7.11,7.05,4.36
1.08,Premium,F,VS2,62.8,59,7079,6.55,6.47,4.09
1.14,Premium,G,VS2,61.4,60,7079,6.71,6.68,4.11
1.2,Very Good,I,VVS1,62.6,56,7080,6.7,6.74,4.21
1.29,Ideal,G,VS2,62.9,57,7080,6.91,6.89,4.34
1.59,Fair,I,SI2,65.2,58,7080,7.28,7.24,4.73
1.09,Ideal,G,VS2,62.4,55,7081,6.61,6.56,4.11
1,Fair,D,VS1,55.9,60,7083,6.77,6.71,4.38
1,Good,E,VVS1,64.1,62,7084,6.29,6.26,4.02
1.4,Ideal,H,SI2,61.2,56,7084,7.18,7.23,4.41
1.22,Ideal,E,SI1,61.7,56,7085,6.88,6.92,4.26
1.21,Ideal,I,VVS1,61.6,55,7086,6.88,6.8,4.21
1.48,Premium,I,SI2,61.3,58,7086,7.39,7.32,4.51
1.3,Very Good,I,VS2,61.8,56,7087,6.98,7.04,4.33
1.18,Ideal,D,SI1,61.9,55,7087,6.76,6.8,4.2
1.33,Ideal,H,SI1,62.7,56,7088,6.99,7.04,4.4
1.21,Ideal,E,SI1,62.3,56,7088,6.87,6.81,4.26
1.72,Premium,F,I1,60.5,59,7089,7.8,7.71,4.69
1.23,Premium,H,VS2,62.9,57,7089,6.84,6.77,4.28
1.33,Premium,I,VS1,61.5,58,7090,7.06,7.02,4.33
1.33,Good,I,VS1,63.7,56,7090,6.96,6.92,4.42
1.33,Premium,E,SI2,62.5,58,7090,7.03,6.99,4.38
1.12,Ideal,H,VVS2,62.3,53,7091,6.64,6.7,4.16
1.02,Ideal,F,VS1,60.7,56,7091,6.53,6.61,3.99
1.24,Premium,H,VS1,62.2,59,7092,6.83,6.9,4.27
1.24,Very Good,H,VS1,62.6,54,7092,6.84,6.88,4.29
1.3,Very Good,H,VS2,62.5,59,7092,6.93,6.96,4.34
1.13,Very Good,F,VS1,61.6,58,7092,6.61,6.68,4.09
1.18,Very Good,D,SI1,61.7,57,7093,6.8,6.84,4.21
1.01,Very Good,E,VS2,60.4,60,7094,6.47,6.44,3.9
1.21,Premium,H,VS1,62.3,58,7094,6.77,6.84,4.24
1.01,Very Good,E,VS1,60.9,55,7094,6.48,6.58,3.98
1.56,Good,J,VS2,57.6,65,7094,7.62,7.6,4.38
1.16,Fair,F,VS1,57.8,67,7094,6.97,6.84,3.99
1.38,Ideal,G,SI2,61.4,55,7094,7.2,7.17,4.41
1.15,Ideal,I,VS1,61.7,56,7096,6.73,6.76,4.16
1,Premium,E,VS1,63,60,7096,6.38,6.32,4
1.2,Good,E,SI1,64,61,7096,6.67,6.61,4.25
1.39,Good,F,SI2,63.8,55,7096,7.08,7.05,4.51
1.01,Very Good,F,VS2,62.1,57,7098,6.38,6.43,3.98
1.5,Very Good,G,SI2,63.2,58,7098,7.25,7.19,4.56
1.5,Premium,G,SI2,62.1,60,7098,7.34,7.28,4.54
1.5,Fair,H,SI2,59.3,58,7098,7.31,7.37,4.35
1.28,Ideal,H,VS2,62.3,56,7098,6.97,6.89,4.32
1.28,Premium,H,VS2,61.2,60,7098,6.99,6.94,4.26
1.14,Ideal,G,VS2,60.5,60,7099,6.77,6.75,4.09
1.63,Ideal,F,I1,62,55.1,7100,7.5,7.57,4.68
1.15,Ideal,H,SI1,61.6,55,7100,6.74,6.79,4.17
1.02,Premium,D,VS2,62.7,58,7101,6.44,6.35,4.01
1.03,Very Good,D,VS2,63.3,57,7102,6.39,6.44,4.06
1.29,Good,I,VS2,57.9,61,7102,7.16,7.13,4.14
1.51,Ideal,G,SI2,61.8,57,7103,7.37,7.31,4.54
1.36,Premium,I,VS2,61.9,56,7104,7.17,7.08,4.41
1.22,Premium,H,VS1,62.7,56,7105,6.82,6.74,4.25
1.24,Very Good,G,SI1,61.8,58,7106,6.9,6.96,4.28
1.14,Very Good,D,SI1,60.2,60,7106,6.7,6.85,4.08
1.41,Premium,H,SI2,59.1,57,7106,7.41,7.34,4.36
1.01,Very Good,F,VS1,63.2,58,7107,6.32,6.34,4
1.31,Very Good,G,SI2,62.2,58,7107,7.05,6.98,4.36
1.13,Ideal,H,VVS2,59.7,59,7108,6.89,6.77,4.08
1.52,Ideal,G,SI2,61.9,57,7108,7.43,7.38,4.58
1.11,Ideal,G,VS2,61.7,56,7109,6.62,6.66,4.1
1.52,Very Good,J,VS2,63.1,61,7109,7.23,7.19,4.55
1.28,Ideal,H,SI1,61.8,57,7109,7.02,6.97,4.32
1.08,Ideal,F,VS2,61.9,55,7110,6.58,6.64,4.09
1.21,Ideal,I,VS1,61.7,53,7111,6.89,6.92,4.26
1.1,Ideal,G,VS1,61.5,57,7111,6.65,6.62,4.08
1.21,Very Good,H,VS2,59.1,59,7113,6.95,6.99,4.12
1.16,Ideal,G,VS2,61.7,57,7113,6.72,6.8,4.17
1,Good,D,VS2,63.1,56,7114,6.36,6.4,4.02
1.2,Very Good,F,VS2,62.4,58,7114,6.76,6.8,4.23
1,Premium,F,VS1,62.6,58,7114,6.37,6.4,4
1,Ideal,G,VS1,62.7,53,7114,6.39,6.46,4.03
1.1,Premium,F,VS2,61.1,57,7115,6.71,6.65,4.08
1.23,Ideal,I,VVS1,62.1,57,7117,6.9,6.83,4.26
1.07,Very Good,F,VS1,62,58,7118,6.57,6.59,4.08
1.02,Ideal,D,VS1,62.7,55,7118,6.49,6.4,4.04
1.32,Very Good,H,SI1,62.4,58,7119,7.02,7.09,4.4
1.03,Ideal,G,VS1,62,57,7119,6.45,6.48,4
1.03,Ideal,G,VS1,61.7,54,7119,6.49,6.52,4.01
0.94,Ideal,F,VS2,61.2,57,7120,6.29,6.33,3.86
1.01,Ideal,F,VS1,62.2,57,7122,6.38,6.48,4
1.06,Premium,E,VS2,61.4,60,7123,6.57,6.53,4.02
1.59,Premium,F,SI2,62.2,58,7123,7.49,7.45,4.64
1.15,Ideal,H,VS1,62.7,57,7123,6.68,6.64,4.17
1.32,Very Good,I,VS2,60.5,59,7125,7.02,7.06,4.26
1.51,Very Good,J,SI1,60.6,57,7125,7.38,7.46,4.5
1.27,Very Good,H,SI1,62.3,58,7125,6.87,6.94,4.3
1.29,Ideal,F,SI2,61.9,55,7126,6.95,7.01,4.32
1.01,Premium,F,VS1,61.3,58,7127,6.52,6.44,3.97
1.01,Very Good,F,VS1,63.3,60,7127,6.35,6.32,4.01
1.01,Ideal,D,VS2,59.8,56,7127,6.52,6.49,3.89
1.01,Good,E,VS1,63.8,60,7127,6.25,6.23,3.98
1.01,Very Good,D,VS2,63.1,60,7127,6.39,6.35,4.02
1.01,Premium,F,VS1,62.4,61,7127,6.39,6.36,3.98
1.44,Very Good,H,SI2,58.2,61,7128,7.45,7.51,4.35
1.16,Ideal,G,VS2,60.7,58,7128,6.86,6.81,4.15
1.02,Premium,G,VS1,61,61,7129,6.58,6.53,4
1.02,Ideal,G,VS1,61.6,55,7129,6.53,6.46,4
1.23,Ideal,H,VS2,62.2,55,7130,6.81,6.85,4.25
1.06,Premium,G,VS1,62,58,7130,6.56,6.51,4.05
1.06,Premium,G,VS1,62.8,56,7130,6.52,6.47,4.08
1.3,Premium,D,SI2,60.2,59,7130,7.05,7,4.23
1.19,Premium,G,VS2,62.3,58,7130,6.82,6.77,4.23
0.91,Very Good,E,VVS2,61.1,61,7131,6.24,6.2,3.8
2.27,Fair,G,I1,68.6,56,7131,7.99,7.94,5.47
1.06,Very Good,G,VS1,61.7,57,7132,6.52,6.56,4.04
1.27,Premium,G,SI1,61.4,59,7133,6.98,6.94,4.27
1.21,Ideal,I,VVS2,62.2,55,7134,6.79,6.83,4.23
1,Good,G,VVS1,63.8,60,7134,6.35,6.31,4.04
1.01,Very Good,F,VS2,63.8,55,7135,6.31,6.38,4.05
1.51,Very Good,J,SI1,62.4,58,7136,7.27,7.32,4.55
1.11,Ideal,H,VVS2,61.2,56,7136,6.74,6.7,4.11
1.01,Very Good,G,VVS2,62.5,54,7137,6.38,6.41,4
0.32,Ideal,G,SI1,60.9,57,612,4.46,4.44,2.71
0.32,Ideal,G,SI1,60.8,56,612,4.48,4.44,2.71
0.32,Premium,G,SI1,60.5,59,612,4.43,4.39,2.67
0.32,Ideal,D,SI2,61.4,56,612,4.46,4.43,2.73
0.31,Good,H,VVS1,63.7,56,612,4.3,4.33,2.75
0.31,Premium,H,VVS1,61.8,59,612,4.32,4.36,2.68
0.3,Very Good,F,VVS2,64.1,55,613,4.2,4.25,2.71
0.3,Very Good,F,VVS2,64.2,56,613,4.22,4.26,2.72
0.31,Very Good,I,VVS1,57.7,62,613,4.51,4.53,2.61
0.32,Very Good,F,VS1,59.1,59,613,4.45,4.48,2.64
0.41,Ideal,J,VS2,62.4,55,613,4.75,4.77,2.97
0.41,Ideal,J,VS2,62.4,53,613,4.79,4.83,3
0.41,Ideal,J,VS2,62.2,54,613,4.76,4.79,2.97
0.41,Ideal,J,VS2,61.7,55,613,4.8,4.82,2.97
0.41,Ideal,J,VS2,62.3,54,613,4.77,4.8,2.98
0.37,Ideal,E,SI1,61,56,613,4.66,4.68,2.85
0.3,Good,F,VVS2,66,55,613,4.19,4.21,2.77
0.5,Fair,F,I1,71,57,613,4.87,4.79,3.43
0.37,Very Good,H,SI1,62.6,63,613,4.6,4.5,2.85
0.5,Fair,F,I1,68.4,54,613,4.94,4.82,3.35
0.33,Very Good,H,VVS2,61.6,56,614,4.44,4.47,2.74
0.33,Very Good,H,VVS2,61.9,55,614,4.44,4.46,2.75
0.33,Very Good,H,VVS2,61.8,57,614,4.43,4.46,2.74
0.33,Very Good,H,VVS2,61.9,56,614,4.44,4.47,2.76
0.26,Very Good,E,VVS2,62.9,56,614,4.07,4.1,2.57
0.32,Ideal,H,VVS2,62.3,57,614,4.34,4.37,2.71
0.32,Ideal,G,VS1,61.4,54,614,4.45,4.48,2.74
0.39,Ideal,E,SI2,61,55,614,4.74,4.77,2.9
0.3,Very Good,D,SI1,58.8,63,614,4.35,4.32,2.55
0.35,Very Good,H,VS1,62.6,58,614,4.49,4.52,2.82
1.01,Good,G,VVS2,62.4,61,7137,6.34,6.38,3.97
1.01,Good,G,VVS2,63.2,59,7137,6.27,6.35,3.99
1.03,Ideal,F,VS1,61.7,56,7137,6.49,6.54,4.02
1.18,Premium,G,VS2,62.3,62,7137,6.72,6.69,4.18
1.51,Very Good,I,SI2,62.9,58,7139,7.24,7.3,4.57
1.51,Fair,J,VS1,65.2,56,7139,7.16,7.11,4.65
1.13,Ideal,G,VS2,62.1,53,7140,6.69,6.74,4.17
1.5,Premium,I,SI2,59.5,62,7140,7.46,7.39,4.42
1.7,Premium,I,SI2,61.7,56,7140,7.66,7.57,4.7
1.5,Very Good,I,SI1,60.2,63,7140,7.38,7.33,4.43
1.2,Very Good,I,IF,59.1,61,7141,6.91,6.99,4.11
1.21,Premium,H,VS2,61,58,7142,6.9,6.83,4.19
1.23,Very Good,E,SI1,59.2,62,7143,7,7.05,4.16
1.32,Good,I,VS1,59.2,58,7143,7.14,7.18,4.24
1.56,Premium,J,VS1,61.3,59,7144,7.54,7.49,4.61
1,Very Good,E,SI1,63,54,7145,6.36,6.4,4.02
1.51,Premium,G,SI2,62.7,57,7145,7.33,7.29,4.58
1.12,Ideal,D,SI1,61.2,58,7145,6.65,6.68,4.08
1.51,Ideal,I,SI1,62.2,56,7145,7.36,7.27,4.55
1,Very Good,D,VS2,61.5,63,7146,6.35,6.31,3.89
1.46,Very Good,I,SI1,62.5,57,7146,7.15,7.19,4.48
1.31,Good,G,SI1,63.4,56.5,7147,6.87,6.97,4.4
1.19,Very Good,H,VS1,62.4,59,7147,6.73,6.79,4.22
1.13,Ideal,G,VS2,61.9,56,7147,6.68,6.71,4.14
1.33,Ideal,I,VS2,61.1,54,7148,7.14,7.15,4.37
1.06,Very Good,D,VS2,59.6,60,7149,6.68,6.71,3.99
0.92,Very Good,D,VVS2,62.8,58,7150,6.11,6.22,3.87
1.5,Very Good,I,SI2,63.1,59,7150,7.24,7.15,4.54
1.13,Premium,G,VS2,61.9,58,7151,6.7,6.67,4.14
1.19,Very Good,E,VS2,59.2,60,7152,6.93,6.95,4.11
1.22,Very Good,H,VS1,58.9,59,7152,6.96,7.02,4.12
1.19,Good,H,VS1,60.8,61,7152,6.86,6.88,4.18
1.12,Ideal,D,SI1,60.5,56,7153,6.75,6.78,4.09
1.29,Premium,H,VS2,61.2,60,7153,7.03,6.95,4.28
1.05,Premium,F,VS2,62.6,58,7154,6.5,6.47,4.06
1.64,Good,G,SI2,63.8,58,7154,7.45,7.41,4.74
1.22,Premium,F,VS2,63,60,7154,6.85,6.74,4.28
1.51,Very Good,G,SI2,63.1,58,7154,7.23,7.19,4.55
1.59,Ideal,J,SI2,62.1,54,7155,7.51,7.44,4.64
1.17,Ideal,G,VS1,59.4,57,7155,6.93,6.87,4.1
1.05,Ideal,G,VS1,61.3,57,7155,6.58,6.51,4.01
1.56,Premium,I,SI1,61.7,59,7155,7.44,7.38,4.57
1.42,Ideal,I,SI1,61.9,57,7157,7.23,7.15,4.45
1.36,Ideal,F,SI2,62,56,7157,7.08,7.11,4.4
1.13,Ideal,G,VS2,61.6,57,7159,6.68,6.7,4.12
1.06,Ideal,G,VS2,62.8,55,7160,6.49,6.51,4.08
1.5,Good,H,SI2,64.2,56,7161,7.2,7.26,4.64
1.5,Very Good,H,SI2,62,63,7161,7.24,7.28,4.5
1.55,Premium,E,SI2,58.5,57,7161,7.66,7.57,4.46
1.51,Premium,I,SI2,62.6,59,7162,7.28,7.31,4.57
1.32,Ideal,I,SI1,62,57,7162,6.99,7.04,4.35
1.51,Good,J,SI1,62.4,64,7162,7.31,7.23,4.54
1.24,Premium,F,SI1,61.6,59,7162,6.94,6.89,4.26
1,Very Good,G,VVS2,60.3,62,7163,6.41,6.45,3.88
1.32,Premium,H,SI1,61.5,61,7163,7.05,6.97,4.31
1,Premium,G,VS1,59.7,59,7164,6.57,6.5,3.9
1.01,Ideal,G,VVS2,60.6,57,7167,6.54,6.5,3.95
1.07,Very Good,G,VS1,62.8,58,7168,6.48,6.52,4.08
1,Ideal,E,VS2,59.6,57,7168,6.43,6.42,3.83
1,Premium,E,VS2,61.3,58,7168,6.41,6.38,3.92
1,Premium,E,VS2,63,58,7168,6.25,6.22,3.93
1,Premium,F,VS2,60.7,57,7168,6.5,6.45,3.93
1.33,Premium,H,SI1,61.9,58,7171,6.98,7.04,4.34
1.14,Ideal,G,VS2,61.5,57,7171,6.72,6.68,4.12
1.14,Very Good,G,VS1,63.4,58,7171,6.67,6.61,4.21
1.32,Very Good,G,SI2,61.6,57,7173,6.98,7.05,4.32
1.1,Very Good,F,VS2,62.8,56,7174,6.56,6.59,4.13
1.15,Very Good,G,VS2,60.1,60,7175,6.75,6.8,4.08
1.02,Ideal,F,VS2,62.3,56,7175,6.39,6.54,4
1.16,Ideal,H,VS1,62.4,56,7175,6.71,6.73,4.19
1.04,Premium,E,VS2,61.1,59,7175,6.56,6.54,4
1.27,Very Good,H,VS2,59.2,58,7176,7.07,7.15,4.21
1,Very Good,G,VVS2,63,56,7177,6.37,6.4,4.02
1.5,Good,J,VS2,61.7,56,7177,7.23,7.33,4.49
1.5,Good,J,VS2,63.6,58,7177,7.2,7.23,4.59
1.5,Very Good,J,VS2,60.5,63,7177,7.27,7.32,4.41
1,Ideal,E,VS2,62.5,57,7177,6.38,6.45,4.01
1,Ideal,F,VS1,61.4,56,7177,6.46,6.51,3.98
1.04,Good,G,VS1,63.8,57,7177,6.43,6.4,4.09
1.23,Very Good,H,VS2,60.2,63,7177,6.95,6.91,4.17
1.01,Ideal,G,VS1,61.8,58,7178,6.4,6.42,3.96
1.01,Very Good,G,VS1,60.9,55,7179,6.46,6.51,3.95
1.01,Ideal,G,VS2,61.9,56,7179,6.4,6.44,3.97
1.01,Ideal,G,VS2,61.4,57,7179,6.44,6.5,3.97
1.01,Ideal,G,VS1,61.9,54,7179,6.44,6.48,4
1.11,Premium,F,VS2,61.3,56,7179,6.68,6.63,4.08
1.23,Ideal,I,VS1,61.6,54,7181,6.9,6.94,4.26
1.19,Ideal,H,VS1,62.1,54,7181,6.8,6.83,4.23
1.5,Premium,E,SI2,61.5,60,7182,7.29,7.22,4.46
1.35,Fair,I,VS2,61.6,62,7182,7.15,7.1,4.39
1.25,Ideal,H,SI1,62.2,54,7182,6.93,6.88,4.3
1.33,Ideal,I,VS2,62.5,54,7186,7.02,7.05,4.4
1.52,Fair,J,VS1,65.4,58,7186,7.22,7.17,4.7
1.08,Ideal,G,VS2,62.3,54,7187,6.59,6.61,4.11
1.5,Premium,H,SI2,61.4,62,7187,7.4,7.25,4.49
1.5,Fair,H,SI2,65.5,53,7187,7.14,7.11,4.67
1.51,Fair,H,VS2,65.6,56,7188,7.08,4.7,4
1.01,Very Good,G,VVS2,61.9,58,7188,6.38,6.44,3.97
1.31,Very Good,H,SI1,60.3,58,7189,7.02,7.1,4.26
1.07,Ideal,E,VS2,60,56,7190,6.64,6.62,3.98
1.57,Premium,J,VS1,60.8,61,7190,7.6,7.49,4.59
1,Good,E,VS1,60,65,7190,6.48,6.43,3.87
1.2,Ideal,H,VS2,60.8,55,7190,6.9,6.85,4.18
1.2,Very Good,D,SI1,60.7,58,7191,6.81,6.86,4.15
1.03,Premium,E,VS2,61.2,59,7192,6.53,6.47,3.98
1.02,Ideal,G,VS1,61.3,56,7192,6.49,6.53,3.99
1.06,Ideal,H,VVS1,61.3,57,7193,6.55,6.53,4.01
1.12,Ideal,G,VS2,62.2,54,7193,6.65,6.7,4.15
1.01,Very Good,E,VS2,60.6,59,7195,6.43,6.47,3.91
1.21,Very Good,H,VS1,60.4,59,7196,6.88,6.97,4.18
1.02,Premium,F,VS1,60.5,56,7197,6.61,6.52,3.97
1.7,Ideal,H,I1,62.6,54,7197,7.63,7.58,4.77
1.02,Good,F,VS1,63.7,57,7197,6.39,6.35,4.06
1.02,Good,F,VS1,57.9,59,7197,6.64,6.59,3.83
1.36,Good,F,SI1,57.5,60,7197,7.36,7.31,4.22
1.01,Ideal,E,VS2,61.6,57,7198,6.43,6.46,3.97
1.07,Ideal,G,VS1,61.8,55,7198,6.59,6.55,4.06
1.07,Ideal,G,VS1,62,56,7198,6.58,6.52,4.06
1.14,Ideal,G,VS2,61.9,56,7199,6.69,6.71,4.14
1,Good,D,VS2,63.9,56,7200,6.34,6.31,4.04
1.22,Good,H,VS2,63.8,55,7201,6.77,6.71,4.3
1.21,Premium,E,SI1,62.6,58,7203,6.79,6.82,4.26
1.21,Very Good,H,SI1,59.6,60,7203,6.93,6.94,4.13
1.16,Ideal,G,VS2,62.3,57,7203,6.72,6.66,4.17
1.47,Premium,J,VS2,61.5,58,7203,7.31,7.29,4.49
1.16,Premium,G,VS2,59.9,60,7203,6.88,6.85,4.11
1,Very Good,F,VS1,60.4,59,7204,6.4,6.51,3.9
1.33,Premium,H,SI1,61.1,61,7204,7.05,7.02,4.3
1,Premium,F,VVS2,61.9,61,7204,6.45,6.32,3.95
2,Ideal,H,I1,62.5,57,7204,8.05,7.98,5.01
1.04,Very Good,F,VS1,63,56,7207,6.45,6.5,4.08
1.19,Ideal,I,IF,61.7,56,7207,6.78,6.81,4.19
1.51,Good,J,VS2,63.7,59,7207,7.12,7.2,4.56
1.5,Good,I,SI1,64.2,56,7207,7.25,7.14,4.62
1.51,Good,F,SI2,63.7,59,7208,7.15,7.26,4.59
1.04,Ideal,E,SI1,61.8,56,7208,6.49,6.53,4.02
1.32,Ideal,I,VS2,60.8,57,7209,7.07,7.02,4.28
1.01,Ideal,F,VS1,63.2,56,7209,6.35,6.41,4.03
1.24,Good,H,VS2,58.3,58,7210,7.09,7.15,4.15
1.5,Very Good,I,SI2,63.4,58,7211,7.15,7.21,4.55
1.5,Fair,H,SI1,65.9,56,7211,7.11,7.04,4.66
1.03,Ideal,G,VS1,62.2,59,7211,6.48,6.42,4.01
1.15,Premium,D,SI1,61.1,53,7213,6.83,6.76,4.15
1.4,Ideal,H,SI2,61.2,56,7213,7.23,7.18,4.41
1.42,Fair,G,VS2,59.6,66,7214,7.31,7.23,4.33
0.9,Good,E,VVS1,63.4,60,7214,6.06,6.11,3.86
1,Very Good,G,VVS2,60.7,56,7215,6.5,6.51,3.95
1.41,Very Good,F,SI2,61.4,59,7215,7.17,7.2,4.41
1.22,Ideal,E,SI1,61.7,56,7215,6.92,6.88,4.26
1.5,Good,G,SI2,63.7,58,7216,7.15,7.22,4.58
1.18,Ideal,H,VS1,64.9,58,7216,6.57,6.53,4.25
1.18,Ideal,D,SI1,61.9,55,7216,6.8,6.76,4.2
1.33,Ideal,H,SI1,62.7,56,7217,7.04,6.99,4.4
1.36,Ideal,I,SI1,62,56,7218,7.08,7.11,4.4
1.11,Ideal,E,SI1,62.1,55,7218,6.66,6.68,4.14
1.27,Premium,H,VS2,62.1,60,7219,6.94,6.88,4.29
1.27,Ideal,H,VS2,60.3,56,7219,7.08,7.02,4.25
1.01,Premium,G,IF,61.3,58,7220,6.4,6.48,3.95
1.04,Ideal,D,VS2,61.9,55,7220,6.5,6.52,4.03
1.07,Ideal,G,VS1,61.4,57,7222,6.57,6.6,4.04
1.24,Premium,H,VS1,62.2,59,7222,6.9,6.83,4.27
1.24,Ideal,H,VS1,62.6,54,7222,6.88,6.84,4.29
1.24,Ideal,H,VS1,63,56,7222,6.87,6.82,4.31
1,Ideal,G,VS1,62.5,54,7223,6.41,6.45,4.02
1.21,Premium,H,VS1,62.3,58,7223,6.84,6.77,4.24
1.4,Premium,G,SI2,62,60,7225,7.1,7.16,4.42
1.01,Very Good,G,VVS2,59.7,59,7226,6.5,6.56,3.9
2.3,Premium,G,I1,60.2,59,7226,8.71,8.56,5.19
1,Good,E,VVS2,65.3,56,7226,6.19,6.24,4.06
1.25,Very Good,H,VS2,62.9,60,7227,6.77,6.83,4.28
1.09,Ideal,G,VS2,60.6,57,7227,6.68,6.73,4.06
1.01,Ideal,F,VS2,61.6,56,7229,6.48,6.45,3.98
1.63,Ideal,F,I1,62,55,7229,7.57,7.5,4.68
1.34,Very Good,D,SI2,62.3,59,7230,6.99,7.03,4.37
0.85,Ideal,D,VVS1,62,56,7230,6.05,6.11,3.77
1.26,Ideal,G,SI1,61.3,57,7230,6.94,6.99,4.27
1.21,Ideal,E,SI1,62.2,54.1,7231,6.82,6.86,4.26
1.07,Premium,F,VS1,62.4,58,7232,6.52,6.49,4.06
1.51,Good,I,SI1,63.9,63,7233,7.17,7.2,4.59
1.03,Very Good,F,VS1,62.2,57,7233,6.47,6.51,4.04
1.38,Premium,H,VS1,61,60,7233,7.21,7.16,4.38
1.01,Good,E,VS1,63.4,58,7234,6.36,6.38,4.04
1.01,Very Good,G,VVS2,63,59,7234,6.25,6.38,3.98
1.01,Very Good,G,VVS2,62.8,58,7234,6.38,6.42,4.02
1.01,Very Good,G,VVS2,59.4,58,7234,6.51,6.53,3.93
1.51,Premium,H,SI2,59.4,62,7235,7.47,7.31,4.39
1.2,Ideal,H,VS2,62.4,56.6,7235,6.74,6.8,4.22
1.7,Very Good,H,SI2,63.5,58,7235,7.5,7.43,4.74
1,Premium,H,IF,60.6,57,7235,6.54,6.47,3.94
1.21,Ideal,H,VS2,62.4,59,7236,6.81,6.79,4.24
1.31,Good,I,VS2,62.5,56,7236,7.03,6.98,4.38
1.09,Ideal,F,VS2,61.2,56,7238,6.68,6.65,4.08
1.39,Premium,J,VS1,60.8,58,7239,7.26,7.21,4.4
1.52,Very Good,J,SI1,62.3,57,7239,7.32,7.38,4.58
1.01,Premium,F,VS2,61.7,58,7240,6.47,6.43,3.98
1.07,Ideal,E,VS2,61.8,58,7240,6.53,6.61,4.06
1.01,Ideal,E,VS2,59.3,57,7240,6.57,6.51,3.88
1.53,Ideal,G,SI2,61.7,57,7240,7.44,7.41,4.58
1.01,Premium,E,VS2,58,61,7240,6.53,6.5,3.94
1.01,Premium,E,VS2,59.3,58,7240,6.53,6.49,3.86
1.01,Ideal,F,VS1,62.2,57,7240,6.48,6.39,4
1,Very Good,G,VVS2,62.1,59,7242,6.34,6.45,3.97
1.2,Ideal,G,VS2,62.8,57,7243,6.78,6.72,4.24
1.16,Ideal,G,VS2,61.7,57,7243,6.8,6.72,4.17
1.48,Very Good,H,SI2,62.3,58,7244,7.18,7.23,4.49
1,Premium,F,VS1,62.6,58,7244,6.4,6.37,4
1.05,Premium,F,VS2,62.3,59,7244,6.5,6.46,4.04
1.61,Premium,J,SI2,62.2,59,7245,7.52,7.47,4.66
1.21,Very Good,H,VS1,62.3,58,7246,6.71,6.74,4.19
1.25,Premium,H,VS2,60.4,59,7246,6.92,6.96,4.19
1.05,Ideal,G,VS1,61.5,55,7247,6.56,6.59,4.04
1.07,Good,E,VS2,63.1,56,7250,6.49,6.54,4.11
1.21,Ideal,H,VS2,61.9,55,7250,6.86,6.8,4.23
1.7,Premium,I,SI2,59.4,59,7250,7.83,7.75,4.63
1.03,Good,E,VS1,63.3,59,7251,6.4,6.45,4.07
1.02,Very Good,E,VS1,58.9,59,7253,6.52,6.65,3.88
1.5,Ideal,I,SI2,60.6,59,7253,7.37,7.48,4.5
1.51,Premium,J,SI1,60.6,57,7255,7.46,7.38,4.5
1.06,Ideal,G,VS2,62.3,56,7255,6.49,6.54,4.06
1.51,Good,I,VVS2,63.6,58,7255,7.29,7.26,4.63
1.14,Ideal,G,VS1,62.5,56,7255,6.69,6.66,4.17
1.55,Premium,I,SI2,61.5,58,7256,7.39,7.46,4.57
1.23,Ideal,I,VVS2,62.5,57,7256,6.81,6.86,4.27
1.21,Premium,F,SI1,61.6,59,7257,6.82,6.79,4.19
1.02,Very Good,D,VS2,62.9,60,7257,6.37,6.42,4.02
1.02,Very Good,F,VS1,61.9,59,7257,6.38,6.44,3.97
2.31,Fair,G,I1,67.4,56,7257,8.05,7.99,5.41
1.01,Very Good,F,VS2,62.8,57,7258,6.34,6.44,4.01
1.2,Premium,G,VS2,59.4,58,7258,6.91,6.85,4.09
1.2,Premium,G,VS2,59.6,58,7258,6.94,6.89,4.12
2,Fair,F,I1,64.9,57,7258,7.99,7.82,5.14
1.5,Premium,J,SI1,61.7,59,7258,7.36,7.32,4.53
1,Premium,E,VS1,61.9,60,7260,6.41,6.44,3.98
1,Very Good,G,VVS2,60.5,62,7260,6.39,6.44,3.88
1,Good,E,VS1,63.6,59,7260,6.32,6.35,4.03
1.25,Premium,E,SI1,60.9,59,7260,6.98,7.02,4.26
1.23,Ideal,H,VS2,62.2,55,7260,6.85,6.81,4.25
1.23,Ideal,H,VS2,62.3,56,7260,6.86,6.79,4.25
1.22,Premium,E,SI1,62.6,58,7262,6.78,6.8,4.25
1.01,Ideal,G,VS1,62.1,54,7262,6.41,6.43,3.99
1.5,Premium,I,SI2,62.2,62,7266,7.27,7.2,4.5
1.1,Ideal,H,VVS2,62,56,7267,6.59,6.63,4.1
1.01,Very Good,G,VVS2,63.2,59,7267,6.35,6.27,3.99
1.73,Premium,I,SI2,61.1,62,7270,7.64,7.54,4.64
1.32,Very Good,H,SI1,62.3,57,7270,7.04,6.99,4.37
1.05,Ideal,G,VS1,62.2,53,7270,6.51,6.55,4.06
1.1,Very Good,F,VS2,62.7,58.5,7272,6.5,6.59,4.1
1.51,Ideal,E,SI2,62.7,55,7272,7.27,7.18,4.53
1.2,Very Good,G,VS2,62.4,59,7273,6.68,6.74,4.19
1.07,Ideal,H,VVS1,61.7,56,7273,6.56,6.68,4.06
1.7,Ideal,H,SI2,62.1,57,7273,7.68,7.63,4.75
1.23,Premium,E,SI1,59.2,62,7274,7.05,7,4.16
1.2,Premium,E,SI1,60.9,57,7274,6.86,6.8,4.16
1.06,Premium,E,VS2,61.3,58,7275,6.52,6.56,4.01
1.07,Ideal,G,VS2,61.9,55,7275,6.55,6.57,4.06
1.07,Ideal,G,VS2,61.4,57,7275,6.56,6.63,4.05
1.06,Ideal,E,VS2,61.9,55,7275,6.54,6.58,4.06
1.14,Premium,F,VS2,62,59,7275,6.71,6.64,4.14
1.11,Ideal,F,VS2,60.4,58,7275,6.73,6.66,4.04
1.23,Very Good,H,VS1,61.3,53,7276,6.93,6.98,4.26
1.75,Ideal,H,I1,61.5,54.9,7276,7.75,7.78,4.78
1.05,Very Good,F,VS1,60.2,58,7276,6.62,6.74,4.02
1.31,Premium,H,VS2,62.5,58,7277,6.97,6.94,4.35
1.01,Premium,F,VS2,61.2,57.5,7277,6.43,6.45,3.94
1.02,Very Good,E,SI1,63.7,55,7277,6.29,6.4,4.04
1.31,Ideal,G,SI1,63.4,57,7277,6.97,6.87,4.4
1.19,Premium,H,VS1,62.4,59,7277,6.79,6.73,4.22
1.01,Very Good,D,VS2,62.8,57,7278,6.33,6.4,4
1.21,Very Good,H,VS1,62,58,7279,6.76,6.91,4.24
1.21,Very Good,H,VS1,62.4,60,7279,6.73,6.79,4.22
1.01,Good,G,VVS1,63.1,59,7279,6.33,6.42,4.02
1,Premium,D,VS1,61,58,7280,6.46,6.42,3.93
1.06,Premium,D,VS2,59.6,60,7280,6.71,6.68,3.99
1,Very Good,D,VS2,59.8,60,7281,6.46,6.49,3.87
1.09,Very Good,G,VS1,60,57,7281,6.68,6.71,4.02
1,Very Good,D,VS1,60,60,7281,6.44,6.49,3.88
1.2,Premium,F,SI1,60.1,59,7282,6.92,6.85,4.14
1.32,Very Good,H,SI1,62.8,56,7283,6.94,7,4.38
1.05,Fair,G,VS1,65.6,58,7283,6.25,6.38,4.13
1.22,Premium,H,VS1,58.9,59,7283,7.02,6.96,4.12
1.47,Ideal,I,VS2,62.3,57,7284,7.24,7.3,4.53
0.9,Ideal,E,VVS2,62.8,54,7286,6.11,6.21,3.87
1.07,Ideal,F,SI1,61.5,56,7286,6.58,6.62,4.06
1.01,Premium,E,VS2,59.2,59,7287,6.67,6.6,3.93
1.54,Premium,G,SI2,61.6,58,7287,7.45,7.3,4.57
1.01,Ideal,E,VS2,61.5,57,7288,6.44,6.48,3.97
1.36,Very Good,E,SI2,61.7,59,7288,7.09,7.2,4.41
1.25,Ideal,E,SI2,62.3,58,7289,6.86,6.89,4.28
1.01,Very Good,E,VS2,59.5,60,7290,6.5,6.54,3.88
1.01,Ideal,G,VS1,61.2,57,7290,6.42,6.47,3.95
1.13,Ideal,G,VS2,61.6,57,7290,6.7,6.68,4.12
1.5,Good,F,SI2,64.1,55,7291,7.15,7.11,4.57
1.5,Very Good,H,SI2,62,63,7291,7.28,7.24,4.5
1.5,Good,H,SI2,64.2,56,7291,7.26,7.2,4.64
1.24,Fair,D,SI1,55.6,67,7291,7.27,7.11,4
1.5,Premium,H,SI2,62.3,59,7291,7.27,7.21,4.52
1.5,Good,H,SI2,64.2,61,7291,7.15,7.1,4.57
1.02,Very Good,G,VVS2,61.3,59,7292,6.46,6.53,3.98
1.09,Ideal,G,VS2,62.8,57,7292,6.54,6.58,4.12
1.02,Good,G,VVS2,62.3,60,7292,6.38,6.49,4.01
0.35,Ideal,I,VVS2,62.3,57,614,4.49,4.53,2.81
0.35,Premium,H,VS1,61.7,59,614,4.51,4.53,2.79
0.35,Premium,E,SI1,61.1,59,614,4.5,4.56,2.77
0.35,Premium,H,VS1,62.6,59,614,4.45,4.5,2.8
0.35,Ideal,E,SI1,61.2,57,614,4.52,4.56,2.78
0.35,Ideal,E,SI1,62.3,56,614,4.53,4.56,2.83
0.35,Premium,H,VS1,61.3,59,614,4.54,4.57,2.79
0.35,Very Good,E,SI1,62.7,57,614,4.47,4.52,2.82
0.35,Very Good,E,SI1,61.9,58,614,4.49,4.52,2.79
0.35,Ideal,E,SI1,60.9,55,614,4.53,4.57,2.77
0.35,Very Good,E,SI1,62.9,58,614,4.48,4.52,2.83
0.3,Good,E,VS2,63.4,56,614,4.26,4.29,2.71
0.35,Premium,E,SI1,59.7,60,614,4.53,4.58,2.72
0.35,Premium,E,SI1,61.2,58,614,4.53,4.59,2.79
0.35,Very Good,E,SI1,60.7,59,614,4.52,4.57,2.76
0.3,Very Good,E,VS2,62.6,62,614,4.21,4.25,2.65
0.35,Ideal,H,VS1,62,56,614,4.54,4.56,2.82
0.35,Ideal,E,SI1,61,57,614,4.54,4.57,2.78
0.35,Premium,E,SI1,60.8,60,614,4.51,4.57,2.76
0.36,Very Good,E,SI1,59.9,60,615,4.59,4.62,2.76
0.35,Ideal,G,VS2,62.5,53,615,4.53,4.56,2.84
0.34,Ideal,H,VS1,62.4,55,615,4.48,4.5,2.8
0.3,Ideal,F,VS1,62.3,54,615,4.31,4.33,2.69
0.3,Ideal,I,IF,62,57,615,4.28,4.3,2.66
0.3,Ideal,I,IF,62.5,56,615,4.26,4.28,2.67
0.33,Very Good,D,VS2,60.8,60,615,4.52,4.46,2.73
0.32,Very Good,F,VS1,62.2,55,616,4.37,4.39,2.72
0.34,Ideal,G,VS2,60.8,56,616,4.53,4.55,2.76
0.34,Ideal,G,VS2,61.4,55,616,4.51,4.54,2.78
0.36,Premium,F,SI1,61.1,60,616,4.62,4.57,2.81
1.51,Premium,I,SI2,62.6,59,7292,7.31,7.28,4.57
1.51,Premium,I,SI2,58.7,59,7292,7.53,7.49,4.41
1.14,Very Good,F,VS2,58.3,60,7293,6.87,6.91,4.02
1.01,Good,E,VVS2,64.2,57,7293,6.3,6.34,4.06
1.2,Ideal,H,VS1,62,57,7294,6.69,6.76,4.17
1.04,Ideal,G,VS1,61.7,57,7294,6.47,6.53,4.01
1.04,Ideal,G,VS1,61.5,56,7294,6.53,6.57,4.03
2.01,Fair,F,I1,58.7,66,7294,8.3,8.19,4.84
1.08,Ideal,G,VS2,62.3,57,7295,6.53,6.57,4.08
1.03,Ideal,F,VS1,60.7,56,7296,6.54,6.6,3.99
1.27,Ideal,H,SI1,59.8,57,7297,7.08,7.01,4.22
1.23,Ideal,I,VVS2,62,55,7299,6.86,6.89,4.26
1.5,Fair,G,SI1,56.1,62,7300,7.6,7.52,4.24
1.33,Premium,H,SI1,61.9,58,7302,7.04,6.98,4.34
1.63,Premium,I,SI1,61.5,60,7302,7.59,7.54,4.65
1.01,Good,D,VS1,62.2,62,7303,6.29,6.41,3.95
1.52,Fair,I,VVS2,64.9,56,7303,7.28,7.21,4.7
1.54,Good,I,SI2,63.3,60,7304,7.31,7.34,4.64
1.25,Very Good,H,VS2,62.1,56,7305,6.91,6.96,4.31
1.34,Premium,D,SI2,61.5,58,7305,7.04,7.07,4.34
1.01,Very Good,E,VS1,62.6,57,7306,6.28,6.37,3.96
1.01,Good,G,VVS2,58.2,55,7306,6.65,6.68,3.88
1.5,Very Good,J,VS2,60.5,63,7308,7.32,7.27,4.41
1.5,Good,J,VS2,63.6,58,7308,7.23,7.2,4.59
1.5,Premium,J,VS2,61.7,56,7308,7.33,7.23,4.49
1.2,Very Good,E,SI1,62.7,57,7310,6.7,6.79,4.23
1.11,Premium,F,VS1,62.8,56,7310,6.62,6.57,4.14
1.22,Premium,H,VS2,60.8,59,7310,6.93,6.86,4.19
1.39,Premium,E,SI2,62.7,58,7311,6.99,7.11,4.42
1.02,Premium,E,VS2,60,59,7311,6.56,6.54,3.93
1.27,Very Good,I,VS2,59.2,60,7312,7.11,7.08,4.2
1.23,Very Good,H,SI1,62.5,56,7313,6.79,6.82,4.25
1.23,Ideal,H,SI1,62.3,58,7313,6.85,6.89,4.28
1.51,Good,E,SI2,64.3,58,7314,7.24,7.15,4.62
1.51,Premium,J,SI1,58.4,60,7314,7.58,7.53,4.41
1.42,Premium,H,SI2,61.6,58,7316,7.22,7.17,4.43
1.21,Premium,G,VS2,63,58,7318,6.72,6.67,4.22
1.2,Very Good,G,VS2,62,55,7318,6.8,6.84,4.23
1.55,Premium,H,SI2,62,56,7319,7.41,7.37,4.58
1.37,Premium,J,VVS2,59.4,61,7319,7.29,7.25,4.32
1.52,Very Good,F,SI2,63.1,60,7320,7.25,7.21,4.56
1.21,Premium,G,VS2,62.2,58,7320,6.78,6.88,4.25
1.51,Premium,H,SI2,63,59,7321,7.26,7.16,4.54
1.02,Ideal,G,VS1,61.3,57,7324,6.48,6.51,3.98
1.02,Ideal,G,VS1,61,57,7324,6.48,6.5,3.96
1.41,Ideal,H,SI2,62.7,56,7324,7.11,7.17,4.48
1.33,Ideal,I,VS2,62.6,55,7325,7.01,7.05,4.4
1.11,Ideal,E,VS2,62.2,56,7326,6.59,6.66,4.12
1.02,Ideal,F,VS2,62,56,7326,6.42,6.45,3.99
1.56,Premium,I,VS2,60.8,59,7326,7.56,7.51,4.58
1.25,Premium,H,VS1,62.7,59,7328,6.82,6.86,4.29
1.03,Premium,F,VS1,61.8,59,7328,6.46,6.48,4
1.19,Ideal,I,VS1,61.6,56,7328,6.81,6.83,4.2
1.05,Ideal,H,IF,61.2,55,7329,6.62,6.59,4.04
1.01,Very Good,E,VS1,62.9,60,7332,6.33,6.43,4.01
1.01,Good,G,VVS2,62.4,59,7332,6.32,6.37,3.96
1.3,Very Good,I,VS1,62.1,59,7333,6.97,7.01,4.34
1.58,Fair,H,SI1,64.7,58,7333,7.28,7.22,4.69
1.06,Ideal,F,VS2,62.1,55,7334,6.52,6.55,4.06
1.21,Premium,E,SI1,62.6,58,7334,6.82,6.79,4.26
1.13,Fair,F,VS1,64.5,55,7335,6.62,6.56,4.25
1.23,Ideal,E,SI2,62.1,55,7336,6.91,6.84,4.27
1,Premium,F,VS1,62.3,61,7336,6.38,6.33,3.96
1.01,Ideal,F,VS2,62.5,55,7338,6.38,6.41,4
1.44,Fair,H,VS1,58.1,69,7338,7.49,7.34,4.32
1.2,Premium,D,SI1,59.7,59,7338,6.91,6.86,4.11
1.12,Premium,G,VS1,58.4,58,7338,6.87,6.84,4
1.04,Ideal,F,VS1,63,56,7338,6.5,6.45,4.08
1.41,Very Good,H,SI2,58.5,57,7339,7.36,7.44,4.33
1.51,Good,H,SI2,59.9,64,7340,7.53,7.39,4.47
1.51,Premium,H,SI2,60.2,62,7340,7.43,7.38,4.46
1.51,Premium,H,SI2,62.1,58,7340,7.34,7.2,4.52
1.52,Premium,I,SI2,62.5,56,7341,7.35,7.33,4.59
1.33,Premium,E,SI2,62,57,7341,7.15,7.08,4.41
1,Very Good,F,VS2,61.1,60,7343,6.4,6.46,3.93
1.06,Ideal,F,VS1,61.9,57,7345,6.53,6.55,4.05
1.06,Very Good,D,VS2,62.8,55,7345,6.53,6.56,4.11
1.4,Very Good,F,SI2,59.9,60,7345,7.29,7.38,4.44
1.59,Very Good,I,SI2,61.9,58,7345,7.46,7.5,4.63
1.37,Ideal,I,VS2,61.5,55,7346,7.18,7.2,4.42
1.01,Ideal,F,VS2,61.7,55,7347,6.42,6.46,3.98
1.21,Ideal,F,SI1,61.2,59,7349,6.8,6.85,4.18
1.54,Good,J,SI1,62.9,62,7349,7.3,7.36,4.61
1,Very Good,F,VS1,63.7,57,7350,6.33,6.35,4.04
1.24,Premium,D,SI1,62.4,59,7351,6.82,6.86,4.27
1.02,Premium,F,VS1,62,59,7351,6.39,6.41,3.97
1.02,Premium,F,VS1,61.9,58,7351,6.45,6.5,4.01
1.01,Premium,G,IF,61.3,58,7352,6.48,6.4,3.95
1.01,Premium,F,VS1,59.4,60,7353,6.5,6.46,3.85
1.14,Ideal,H,VVS2,61.9,56,7354,6.69,6.72,4.15
1.01,Ideal,E,VS2,62.1,56,7355,6.41,6.45,3.99
1.52,Ideal,J,SI1,61.9,57,7356,7.33,7.37,4.55
1.4,Premium,G,SI2,62,60,7357,7.16,7.1,4.42
1.51,Premium,J,VS2,60.7,60,7357,7.43,7.36,4.49
1.09,Ideal,G,VS2,61.2,56,7357,6.62,6.64,4.06
1.05,Ideal,G,VS1,62.2,57,7357,6.49,6.51,4.04
1.02,Ideal,G,VS1,61.5,55,7357,6.49,6.52,4
1.46,Very Good,J,VS2,59.7,59,7358,7.36,7.39,4.4
1.24,Premium,H,VS1,61.2,59,7358,6.91,6.94,4.24
1.31,Premium,G,SI1,62.2,56,7358,7.02,6.97,4.35
1.21,Good,G,VS2,59.1,61,7359,6.95,6.89,4.09
1.2,Premium,E,SI1,60.3,57,7362,6.98,6.84,4.17
1.51,Ideal,I,SI2,61.2,58,7362,7.33,7.42,4.51
1.12,Ideal,G,VS2,62.1,55,7364,6.64,6.67,4.13
1.5,Very Good,H,SI2,62.1,59,7365,7.24,7.28,4.51
1.37,Very Good,E,SI2,62.5,59,7365,6.98,7.04,4.38
1.51,Good,I,SI1,63.9,63,7365,7.2,7.17,4.59
1.03,Premium,F,VS1,62.2,57,7365,6.51,6.47,4.04
1.25,Ideal,H,VS2,62.2,57,7365,6.92,6.88,4.29
1.01,Ideal,G,VVS2,60.6,57,7366,6.54,6.5,3.95
1.01,Premium,G,VVS2,59.4,58,7366,6.53,6.51,3.93
1.01,Premium,G,VVS2,63,59,7366,6.38,6.25,3.98
1.01,Very Good,E,VS1,63.4,58,7366,6.38,6.36,4.04
1,Very Good,E,VS1,59.4,56,7367,6.53,6.56,3.89
1.2,Ideal,I,IF,61.5,56,7367,6.79,6.84,4.19
1.5,Good,J,VS2,59.6,60,7368,7.31,7.38,4.38
1.13,Ideal,F,VS2,62.1,56,7369,6.65,6.71,4.15
1.01,Very Good,F,VS2,61.5,54,7370,6.45,6.5,3.98
1.52,Good,J,VS2,63.3,56,7370,7.27,7.33,4.62
1.52,Good,J,VS2,63.5,58,7370,7.24,7.28,4.61
1,Ideal,E,VS2,61.3,58,7370,6.41,6.44,3.94
1.2,Very Good,G,VS2,63.1,57,7371,6.69,6.74,4.24
1.14,Ideal,G,VS2,62,55,7371,6.68,6.77,4.17
1.11,Premium,F,VS2,61.9,58,7371,6.7,6.64,4.13
1.01,Premium,F,VS1,61.7,58,7372,6.4,6.43,3.96
1.22,Very Good,F,SI1,60.5,58,7372,6.91,6.97,4.2
1.2,Very Good,G,SI1,61.9,58,7372,6.74,6.79,4.19
1.2,Ideal,G,SI1,61.6,57,7372,6.85,6.88,4.23
1.2,Ideal,G,SI1,62.7,56,7372,6.78,6.83,4.27
1.05,Ideal,F,VS1,60.4,56,7373,6.61,6.63,4
1.04,Ideal,G,VS1,61.2,58,7375,6.5,6.53,3.99
1.09,Very Good,G,VS1,62.5,58,7378,6.49,6.59,4.09
1.25,Premium,H,VS2,60.4,59,7378,6.96,6.92,4.19
1.2,Good,G,VS2,62.2,58,7380,6.72,6.76,4.19
1.51,Good,D,SI2,61.7,65,7384,7.31,7.38,4.53
1.09,Ideal,F,VS2,60.9,54,7385,6.66,6.73,4.08
1.57,Premium,I,VS2,60.8,59,7385,7.5,7.47,4.55
1.57,Ideal,I,SI2,62.8,57,7385,7.39,7.36,4.63
1.23,Ideal,H,VVS2,61.3,55,7387,6.9,6.94,4.24
1.46,Very Good,I,SI1,62.8,57,7387,7.13,7.21,4.5
1.52,Ideal,H,SI2,62.3,56,7388,7.34,7.24,4.54
1.52,Fair,H,SI2,64.9,58,7388,7.23,7.19,4.68
1.52,Fair,H,SI2,65,57,7388,7.12,7.09,4.62
1.32,Very Good,H,SI1,62.3,58,7389,6.96,7,4.35
1.02,Premium,F,VS1,61.9,59,7389,6.44,6.38,3.97
1.19,Premium,G,VS2,61.9,58,7389,6.86,6.74,4.21
1.53,Premium,I,SI2,62.7,62,7389,7.41,7.23,4.59
1.25,Premium,G,VVS1,62,58,7389,6.96,6.87,4.29
1.02,Premium,D,VS2,62.9,60,7389,6.42,6.37,4.02
1.03,Ideal,G,VS1,61.2,57,7391,6.5,6.54,3.99
1.03,Ideal,G,VS1,62.4,56,7391,6.44,6.47,4.03
1,Premium,E,VS1,58.7,62,7392,6.6,6.55,3.86
1,Fair,E,VS1,64.4,55,7392,6.33,6.3,4.07
1.5,Very Good,I,SI2,60.8,58,7392,7.24,7.34,4.43
1.5,Very Good,I,SI2,62.7,57,7392,7.28,7.35,4.59
1.03,Ideal,F,VS2,62.3,56,7392,6.43,6.45,4.01
1,Premium,G,VVS2,60.5,62,7392,6.44,6.39,3.88
1,Premium,E,VS1,61.9,60,7392,6.44,6.41,3.98
1,Good,E,VS1,63.6,59,7392,6.35,6.32,4.03
1,Premium,D,VS2,59.8,58,7392,6.55,6.47,3.89
0.9,Ideal,D,VS1,61.9,59,7393,6.14,6.17,3.81
1.22,Premium,E,SI1,62.3,59,7395,6.8,6.74,4.22
1.22,Premium,E,SI1,62.6,58,7395,6.8,6.78,4.25
1.31,Premium,H,SI1,59.3,59,7395,7.18,7.13,4.24
1.19,Premium,G,VS2,58.9,61,7397,6.88,6.81,4.03
1.04,Good,F,VS1,63.2,57,7399,6.41,6.44,4.06
1.1,Premium,G,VS1,58.4,60,7399,6.85,6.81,3.99
1.51,Very Good,I,SI2,62.5,59,7400,7.27,7.32,4.56
1.26,Ideal,H,SI1,60.8,57,7400,7.01,6.97,4.25
1.5,Very Good,J,VS2,62.4,60,7402,7.21,7.32,4.53
1,Ideal,G,VVS2,62.6,55,7403,6.37,6.4,4
2.04,Premium,I,I1,61.1,61,7403,8.25,8.12,5
1.13,Premium,G,VS1,58.6,59,7404,6.91,6.84,4.03
1.13,Premium,G,VS1,60,60,7404,6.87,6.72,4.08
1.13,Ideal,G,VS1,61.7,54,7404,6.77,6.71,4.16
1.2,Premium,G,VS2,62.4,59,7405,6.74,6.68,4.19
1.1,Very Good,G,VS2,61.9,56.7,7405,6.57,6.63,4.09
1.53,Very Good,I,SI2,61.6,56,7406,7.39,7.45,4.57
1.06,Premium,E,VS2,61.3,58,7408,6.56,6.52,4.01
1.64,Very Good,J,SI2,62.5,58,7409,7.48,7.56,4.7
1.14,Ideal,H,VS2,61.1,57,7409,6.71,6.78,4.12
1.75,Ideal,H,I1,61.5,55,7409,7.78,7.75,4.78
1.01,Ideal,F,VS2,61.2,58,7409,6.45,6.43,3.94
1.01,Premium,F,VS1,60.4,59,7409,6.54,6.5,3.94
1.01,Very Good,F,VS2,62.9,55,7411,6.36,6.42,4.02
1.01,Ideal,F,VS2,60.9,58,7411,6.43,6.47,3.93
1.01,Very Good,G,VVS1,63.1,59,7412,6.42,6.33,4.02
1.01,Ideal,F,VS1,60.8,57,7412,6.54,6.52,3.97
1.17,Ideal,G,VS2,61.3,56,7413,6.79,6.81,4.17
1.2,Ideal,G,VS2,62.6,57,7413,6.74,6.81,4.24
1.17,Ideal,G,VS2,62,56,7413,6.71,6.74,4.17
1.25,Very Good,H,VS2,60.3,54,7414,7,7.03,4.23
1.7,Premium,G,SI2,62.2,59,7414,7.68,7.6,4.75
1.32,Ideal,G,SI1,61.9,57,7414,7.05,7.01,4.35
0.97,Very Good,G,VVS1,61.9,54,7415,6.33,6.36,3.93
1.07,Very Good,D,VS2,62.4,57,7415,6.51,6.59,4.09
1.31,Very Good,H,VS2,61.4,59,7415,6.96,7.01,4.29
1.04,Ideal,G,VS2,60.7,56,7415,6.59,6.54,3.99
1.28,Ideal,G,SI1,62.4,58,7415,6.89,6.95,4.32
1.55,Ideal,J,VS2,61.7,57,7416,7.37,7.42,4.56
1.21,Very Good,G,VS2,63.1,60,7416,6.72,6.66,4.22
1.21,Very Good,G,VS2,63.1,58,7416,6.77,6.71,4.25
1.51,Premium,J,VS2,59.6,60,7418,7.48,7.58,4.49
1.51,Very Good,J,VS2,60.2,59,7418,7.35,7.36,4.43
1.51,Good,J,VS2,62.8,59,7418,7.17,7.2,4.51
1.51,Very Good,J,VS2,62.8,59,7418,7.2,7.28,4.55
1.51,Premium,J,VS2,62.3,59,7418,7.31,7.35,4.57
1.53,Very Good,J,VS2,62.9,59,7418,7.31,7.34,4.61
1.22,Ideal,H,VS1,62.3,55,7418,6.8,6.84,4.25
1.44,Premium,H,SI2,62.1,55,7419,7.25,7.2,4.49
1,Premium,E,VS1,61.4,58,7420,6.44,6.42,3.95
1.01,Ideal,E,VS2,61.5,57,7421,6.48,6.44,3.97
1.36,Premium,E,SI2,61.7,59,7421,7.2,7.09,4.41
2.03,Premium,H,I1,59.4,59,7421,8.31,8.22,4.91
1.09,Premium,G,VS1,60.2,61,7422,6.71,6.64,4.02
1.01,Very Good,D,VS2,61.9,59,7422,6.35,6.44,3.96
1.17,Ideal,G,VS2,62,57,7423,6.74,6.78,4.19
1.25,Ideal,H,SI1,62,58,7423,6.86,6.89,4.26
1.56,Very Good,J,SI1,59.6,58,7424,7.55,7.59,4.51
1.21,Ideal,E,SI1,61.9,57,7424,6.88,6.79,4.23
1.26,Ideal,H,VS2,61.7,56,7424,6.95,6.89,4.27
1.3,Premium,D,SI1,62.2,58,7426,6.93,6.83,4.28
1.21,Ideal,H,VS2,62.6,54.8,7426,6.78,6.84,4.26
1.21,Very Good,H,VS2,62.9,55,7426,6.75,6.8,4.26
1.5,Very Good,J,VS2,63.3,57,7428,7.2,7.25,4.57
1.34,Ideal,H,VS2,60.2,56,7429,7.23,7.18,4.34
1.03,Ideal,F,VS1,60.7,56,7429,6.6,6.54,3.99
1.01,Good,G,VVS2,63.1,56,7430,6.34,6.4,4.02
1.01,Ideal,E,VS1,61.6,57,7430,6.41,6.45,3.96
1.22,Ideal,I,VS2,60.4,57,7430,6.91,6.99,4.2
1.23,Premium,H,VS2,59.5,59,7431,7.08,7.01,4.19
1.17,Very Good,F,VS2,62.4,56,7432,6.71,6.76,4.2
1.52,Fair,H,SI1,64.6,55,7433,7.24,7.19,4.66
1.5,Good,G,SI1,58.4,65,7434,7.45,7.41,4.34
1.19,Good,D,VS1,63.8,55,7437,6.68,6.64,4.25
1.42,Good,H,SI2,61.8,61,7437,7.01,7.09,4.36
1.54,Very Good,I,SI2,63.3,60,7437,7.34,7.31,4.64
1.12,Premium,F,VS2,62.8,56,7437,6.67,6.61,4.17
1.47,Very Good,H,SI2,59.1,56,7438,7.46,7.51,4.42
1.47,Very Good,H,SI2,62.6,58,7438,7.17,7.24,4.51
1.47,Very Good,H,SI2,59.3,59,7438,7.34,7.39,4.37
1.34,Premium,D,SI2,61.5,58,7438,7.07,7.04,4.34
1.18,Ideal,G,VS2,60.9,56,7439,6.8,6.85,4.16
1.07,Ideal,H,VS1,61,57,7440,6.59,6.63,4.03
1.02,Ideal,G,VS1,62.4,57,7440,6.41,6.43,4.01
1.05,Ideal,G,VS1,62.8,58,7440,6.44,6.48,4.06
1.51,Very Good,I,SI2,60.6,60.2,7441,7.32,7.37,4.45
1.51,Premium,F,SI2,61.8,59,7441,7.36,7.3,4.53
1.51,Premium,J,SI1,63,58,7441,7.32,7.28,4.6
1.51,Very Good,I,SI2,63.5,60,7441,7.28,7.21,4.6
1.11,Ideal,G,VS2,61.4,56,7443,6.65,6.7,4.1
1.09,Ideal,E,VS2,61.2,56,7443,6.62,6.67,4.07
1.21,Very Good,H,VS1,62.6,58,7445,6.71,6.75,4.21
1.39,Premium,E,SI2,62.7,58,7445,7.11,6.99,4.42
1.01,Very Good,D,VS2,63.1,58,7448,6.34,6.38,4.01
1,Very Good,F,VS1,61.9,58,7450,6.34,6.37,3.94
1.01,Very Good,G,VS1,59.3,57,7451,6.55,6.6,3.9
1.16,Ideal,G,VS2,62.5,56,7451,6.67,6.73,4.19
1,Premium,E,VS1,61.1,60,7452,6.41,6.43,3.92
1,Good,G,VVS2,63.1,58,7453,6.33,6.37,4.01
1,Very Good,G,VVS2,59.5,61,7453,6.42,6.46,3.83
1.54,Very Good,J,SI1,61.2,59,7453,7.41,7.45,4.55
1,Very Good,E,VS1,63,56,7453,6.39,6.41,4.03
1.1,Ideal,F,VS2,61.4,56,7453,6.64,6.68,4.09
1.34,Very Good,D,SI2,61.7,58,7453,7.04,7.1,4.36
1.21,Premium,G,VS2,62.2,58,7454,6.88,6.78,4.25
1.01,Very Good,F,VS1,62.9,58,7455,6.29,6.31,3.96
1.51,Premium,J,VS2,63,57,7455,7.38,7.29,4.62
1.07,Very Good,G,VVS2,61.6,57,7457,6.55,6.59,4.05
1.04,Ideal,G,VS1,62.3,56,7457,6.45,6.49,4.03
1.04,Ideal,G,VS1,61.5,57,7457,6.5,6.54,4.01
1.01,Ideal,E,VS1,60.4,59,7458,6.52,6.5,3.93
1.31,Premium,H,VS2,62.5,58,7459,6.97,6.94,4.35
1.13,Ideal,I,VVS1,61.6,57,7459,6.67,6.75,4.12
1.04,Ideal,F,VS2,62,55,7459,6.47,6.52,4.03
1.5,Very Good,H,SI1,62,63,7459,7.24,7.19,4.47
1.11,Ideal,E,VS2,62.2,56,7459,6.66,6.59,4.12
1.5,Fair,E,SI2,65.8,57,7459,7.17,7.11,4.7
1.5,Very Good,H,SI1,63.5,58,7459,7.23,7.17,4.57
1.29,Ideal,G,SI1,60.9,59,7463,6.99,7.04,4.27
1.2,Ideal,F,SI1,61.5,53,7463,6.87,6.9,4.24
1.7,Ideal,J,SI2,62,53,7464,7.68,7.65,4.75
1.7,Good,I,SI2,63.6,59,7464,7.62,7.52,4.8
1.01,Ideal,F,VS1,61.3,57,7465,6.44,6.47,3.96
1.01,Ideal,F,VS1,62.5,54,7465,6.43,6.46,4.03
1.01,Premium,F,VS1,62.5,58,7465,6.37,6.42,4
1.01,Ideal,F,VS1,62,57,7465,6.39,6.45,3.98
1.02,Ideal,E,VS2,60.2,56,7465,6.56,6.62,3.97
1.01,Premium,G,VVS2,61.6,60,7466,6.41,6.38,3.94
1.19,Ideal,H,VS1,62.5,54,7466,6.78,6.82,4.25
1.01,Premium,E,VS1,62.9,60,7466,6.43,6.33,4.01
1.01,Premium,G,VVS2,62.4,59,7466,6.37,6.32,3.96
1.01,Premium,G,VVS2,61.7,59,7466,6.44,6.37,3.95
1.01,Good,E,VS1,63.6,54,7466,6.38,6.32,4.04
1.52,Very Good,J,VS2,62.6,58,7467,7.28,7.31,4.57
1.04,Ideal,G,VS1,61.8,56,7467,6.5,6.52,4.02
1,Good,G,VVS1,58.4,60,7467,6.55,6.61,3.84
1.51,Fair,E,SI1,67.2,53,7468,7.15,7.1,4.79
1.5,Fair,D,SI2,68.8,57,7469,6.9,6.86,4.73
1.11,Ideal,G,VS2,62,56,7472,6.62,6.65,4.12
0.37,Premium,F,SI1,61.6,59,616,4.62,4.67,2.86
0.37,Very Good,F,SI1,62.4,59,616,4.56,4.6,2.86
0.37,Premium,F,SI1,60.3,58,616,4.62,4.66,2.8
0.37,Very Good,F,SI1,62.5,58,616,4.52,4.57,2.84
0.37,Premium,F,SI1,61.5,59,616,4.59,4.62,2.83
0.37,Very Good,F,SI1,62.3,59,616,4.57,4.61,2.86
0.37,Ideal,F,SI1,62.4,54,616,4.6,4.63,2.88
0.39,Good,J,VS1,63.1,56,616,4.62,4.7,2.94
0.3,Good,D,VS2,63.5,53,616,4.3,4.33,2.74
0.39,Very Good,J,VS1,61,62,616,4.66,4.71,2.86
0.3,Ideal,D,VS2,62.4,55,616,4.3,4.32,2.69
0.39,Premium,J,VS1,61.6,59,616,4.67,4.71,2.89
0.39,Good,J,VS1,63.5,58,616,4.59,4.64,2.93
0.3,Ideal,D,VS2,62.3,56,616,4.29,4.31,2.68
0.31,Very Good,G,VVS2,62.3,59,617,4.29,4.32,2.68
0.38,Ideal,J,VS2,61.4,57,617,4.65,4.68,2.87
0.29,Good,E,VVS2,63.2,60,617,4.17,4.19,2.64
0.29,Good,E,VVS2,62.7,62,617,4.19,4.23,2.64
0.42,Good,D,SI2,60.7,61,617,4.78,4.84,2.92
0.4,Good,E,SI2,64.2,57,617,4.68,4.7,3.01
0.31,Premium,G,VS1,59.9,59,617,4.44,4.41,2.65
0.32,Very Good,E,VS1,61.6,56,618,4.4,4.46,2.73
0.31,Good,F,SI1,64.1,61,618,4.29,4.2,2.72
0.3,Ideal,G,VS1,61.7,54.6,618,4.3,4.33,2.67
0.26,Ideal,F,VS1,62.4,53,618,4.11,4.13,2.57
0.26,Ideal,F,VS1,62.1,54,618,4.12,4.13,2.56
0.31,Fair,F,SI1,64.7,56,618,4.28,4.25,2.76
0.29,Very Good,E,VS1,60,57,619,4.33,4.34,2.6
0.29,Very Good,E,VS1,59.2,58,619,4.36,4.39,2.59
0.32,Very Good,D,SI1,60.1,60,619,4.38,4.4,2.64
1.33,Premium,H,SI1,61.5,59,7472,7.06,7.03,4.33
1.11,Ideal,F,VS2,61.7,55,7473,6.65,6.67,4.11
1.2,Ideal,H,VS1,60.8,58,7473,6.85,6.91,4.18
1.42,Ideal,H,SI2,62.2,56,7475,7.21,7.16,4.47
1.5,Premium,I,SI2,61.2,59,7476,7.39,7.36,4.51
1.51,Good,J,VS2,59.5,61,7476,7.45,7.62,4.48
1.5,Fair,H,VVS2,65.8,57,7476,7.19,7.15,4.72
1.03,Ideal,E,VS1,59.5,57,7477,6.6,6.62,3.93
1.03,Very Good,E,VS1,61.5,58,7477,6.43,6.55,3.99
1.26,Very Good,H,SI1,62.5,56,7477,6.88,6.93,4.31
1.45,Ideal,J,VS2,61.9,59,7477,7.16,7.21,4.45
1.06,Ideal,F,VS1,61.9,57,7479,6.55,6.53,4.05
1.59,Premium,I,VS2,62,58,7479,7.44,7.39,4.6
1.06,Premium,D,VS2,59.3,55,7479,6.7,6.65,3.96
1.4,Premium,F,SI2,59.9,60,7479,7.38,7.29,4.39
1.32,Ideal,I,VS1,61.2,57,7480,7.06,7.12,4.34
1.11,Good,E,VS2,58.5,58,7480,6.77,6.84,3.98
1.04,Very Good,G,VVS2,62.8,54,7481,6.39,6.5,4.05
1.03,Ideal,G,VS1,61.4,55,7481,6.5,6.53,4
1.07,Ideal,F,VS2,62.4,55,7483,6.53,6.57,4.09
1.5,Very Good,H,VS2,63.2,58,7484,7.26,7.21,4.57
1.57,Premium,I,SI2,60.9,58,7484,7.53,7.51,4.58
1.02,Premium,D,VS2,61.5,58,7485,6.51,6.44,3.98
1.25,Ideal,I,VS1,61.6,56,7485,6.91,6.95,4.27
1.07,Ideal,G,VS1,62.1,54,7485,6.56,6.59,4.08
1.02,Premium,F,VS1,61.9,58,7485,6.5,6.45,4.01
1.02,Premium,F,VS1,62,59,7485,6.41,6.39,3.97
1.24,Premium,D,SI1,62.4,59,7486,6.86,6.82,4.27
1.54,Premium,F,SI2,62,56,7486,7.51,7.4,4.62
1.01,Very Good,D,VS2,59.8,60,7487,6.46,6.51,3.88
1.09,Ideal,G,VS1,62.1,55.1,7487,6.57,6.63,4.1
1.52,Ideal,J,SI1,61.9,57,7491,7.37,7.33,4.55
1.52,Ideal,H,SI1,62,56,7491,7.38,7.32,4.56
1.5,Very Good,J,VS2,62.6,58,7492,7.25,7.29,4.55
1,Good,G,VVS2,60.9,56,7492,6.49,6.52,3.96
1.09,Good,D,VS1,63.9,57,7493,6.57,6.49,4.17
1.24,Premium,H,VS1,61.2,59,7493,6.94,6.91,4.24
1.54,Premium,F,SI2,62.8,57,7494,7.36,7.28,4.6
1.04,Premium,F,VS1,59.4,60,7495,6.56,6.58,3.9
1.12,Ideal,G,VS1,61,56,7495,6.72,6.76,4.11
1.5,Very Good,H,SI2,63.1,57,7495,7.16,7.27,4.55
1.5,Good,H,SI2,63.6,58,7495,7.15,7.2,4.56
1.27,Premium,H,VS2,60.7,58,7496,7.04,6.97,4.25
1.3,Premium,H,SI1,59.9,59,7498,7.18,7.12,4.28
1,Good,D,VS1,57.8,61,7500,6.62,6.56,3.81
1.37,Ideal,I,VS2,61.3,56,7500,7.15,7.18,4.39
1.5,Premium,H,SI2,62.1,59,7500,7.28,7.24,4.51
1.5,Good,H,SI2,64.3,57,7500,7.18,7.15,4.61
1.08,Premium,F,VS2,62.1,59,7501,6.54,6.59,4.08
1.41,Good,D,SI2,63.9,60,7501,7.08,7,4.5
1.55,Premium,J,SI1,62.5,58,7502,7.36,7.4,4.61
1.11,Very Good,G,VS1,61.5,57.6,7503,6.66,6.7,4.11
1.02,Very Good,E,VS1,61,58,7503,6.46,6.52,3.96
1.5,Ideal,J,VS2,60,57,7503,7.45,7.36,4.44
1.5,Premium,J,VS2,59.6,60,7503,7.38,7.31,4.38
1.27,Premium,H,VS2,60,61,7503,7.03,6.99,4.26
1,Very Good,F,VS1,61.6,56,7504,6.41,6.44,3.96
1.34,Ideal,F,VS2,62.5,56,7504,7.09,7.05,4.42
1.13,Ideal,F,VS2,62.1,56,7504,6.71,6.65,4.15
1.52,Very Good,J,VS2,63.5,58,7504,7.28,7.24,4.61
1.52,Very Good,J,VS2,63.3,56,7504,7.33,7.27,4.62
1.52,Very Good,I,SI1,62.7,59,7506,7.26,7.34,4.58
1.22,Ideal,H,VS2,60.4,57,7506,6.95,6.98,4.21
1,Very Good,G,VVS1,62.3,56,7507,6.29,6.4,3.95
1.01,Premium,F,VS1,61.7,58,7507,6.43,6.4,3.96
1.01,Premium,D,VS2,60,59,7508,6.53,6.48,3.9
1.71,Good,J,SI2,63.9,59,7508,7.55,7.47,4.8
1.04,Ideal,F,VS2,61.1,57,7508,6.52,6.54,3.99
1.2,Ideal,D,SI1,61.8,58,7508,6.76,6.83,4.2
2.12,Premium,G,I1,60,58,7508,8.39,8.28,4.99
1.1,Very Good,F,VS2,60.6,58,7509,6.67,6.77,4.07
1.51,Fair,H,SI1,55.8,61,7509,7.72,7.63,4.28
1.03,Very Good,G,VS1,61.3,56.1,7511,6.5,6.52,3.99
1.54,Premium,I,SI1,61.8,57,7512,7.43,7.37,4.57
1.07,Very Good,F,VS1,62,56,7513,6.51,6.55,4.05
1.21,Ideal,H,VS2,62.9,55,7513,6.77,6.8,4.27
1.29,Ideal,H,SI1,61.8,55,7513,6.99,6.95,4.31
1.5,Ideal,J,VS2,61.6,58,7515,7.33,7.38,4.53
1.5,Premium,J,SI1,61.2,61,7518,7.43,7.37,4.53
1.51,Good,D,SI2,61.7,65,7519,7.38,7.31,4.53
1.31,Ideal,H,SI1,60.8,56,7519,7.12,7.08,4.32
1,Ideal,G,VVS2,62.8,53.9,7520,6.37,6.42,4.02
1.5,Ideal,J,SI1,61.1,56.7,7520,7.35,7.38,4.5
1.09,Ideal,F,VS2,60.9,54,7520,6.73,6.66,4.08
1.05,Very Good,E,VS1,61.6,58,7521,6.53,6.56,4.03
1.01,Premium,E,VS2,60.9,58,7522,6.53,6.47,3.96
1.08,Premium,G,VS1,63,59,7523,6.56,6.5,4.11
1.05,Ideal,G,VS1,61.1,56,7523,6.54,6.59,4.01
1.25,Very Good,H,VS2,63.3,57,7525,6.87,6.82,4.33
1.05,Ideal,G,VS1,61,56,7526,6.62,6.56,4.02
1,Ideal,F,VS1,61.9,57,7526,6.41,6.39,3.96
1.33,Ideal,I,SI1,61.6,57,7526,7.06,7.1,4.36
1.5,Premium,I,SI2,60.8,58,7526,7.34,7.24,4.43
1.5,Premium,I,SI2,62.5,61,7526,7.29,7.24,4.54
1.5,Premium,I,SI2,62.7,57,7526,7.35,7.28,4.59
1.31,Premium,H,SI1,62.4,58,7527,7.02,6.96,4.36
1,Very Good,G,VVS2,62.3,58,7528,6.39,6.45,4
1.01,Ideal,E,VS1,62.7,55,7528,6.4,6.45,4.03
1.01,Very Good,G,VVS2,63,61,7528,6.34,6.36,4
1.01,Good,E,VS1,63.8,55,7528,6.32,6.41,4.06
1.01,Good,G,VVS2,63.2,59,7528,6.34,6.38,4.02
1,Very Good,E,VS1,62.3,53,7528,6.35,6.39,3.97
1.1,Ideal,G,VS1,61.9,55,7528,6.59,6.63,4.09
1.72,Premium,F,I1,60.1,58,7532,7.77,7.74,4.66
1,Very Good,E,VS1,63.2,55,7532,6.34,6.29,3.99
1.03,Ideal,E,VS2,61.7,56,7533,6.45,6.54,4.01
1.51,Premium,H,VS2,61.2,59,7534,7.4,7.38,4.52
1.04,Very Good,F,VS1,63.2,57,7534,6.44,6.41,4.06
1.51,Fair,H,VS2,64.9,53,7534,7.28,7.24,4.71
1.15,Premium,G,VS1,61.7,58,7535,6.73,6.7,4.14
1.5,Premium,G,SI1,62.3,60,7535,7.27,7.17,4.5
1.3,Premium,H,VS2,62.4,58,7536,6.92,6.95,4.33
1.02,Premium,F,VS1,60.8,59,7539,6.46,6.49,3.94
1.53,Premium,I,SI2,62.1,59,7539,7.35,7.37,4.57
1.02,Good,D,VS2,63.2,58,7539,6.36,6.4,4.03
1.02,Very Good,F,VS1,62.8,58,7539,6.4,6.44,4.03
1.02,Very Good,F,VS1,62.7,55,7539,6.37,6.43,4.01
1.1,Ideal,G,VS2,61.9,57,7540,6.63,6.57,4.09
1.06,Premium,D,VS2,62.3,59,7541,6.48,6.52,4.05
0.92,Very Good,D,VS1,61.9,58,7544,6.19,6.24,3.85
1.51,Very Good,J,SI1,58.8,59,7544,7.47,7.56,4.42
1.24,Ideal,I,VS2,61.8,56,7544,6.86,6.89,4.25
1.21,Ideal,F,SI1,62.3,55.7,7546,6.8,6.85,4.25
1.2,Ideal,G,VS2,61.9,56,7548,6.86,6.81,4.23
1.17,Ideal,G,VS2,62,56,7548,6.74,6.71,4.17
1.17,Ideal,G,VS2,61.3,56,7548,6.81,6.79,4.17
1.08,Ideal,E,VS2,62,54,7548,6.62,6.57,4.09
1.08,Premium,E,VS2,59.4,59,7548,6.71,6.68,3.98
1.36,Good,G,SI1,64.3,59,7549,6.93,6.85,4.43
1.35,Very Good,H,VS2,62.3,57,7549,7.06,7.12,4.42
1.6,Very Good,J,SI1,62.7,58,7550,7.37,7.41,4.63
1.6,Premium,J,SI1,62.2,58,7550,7.48,7.54,4.67
1.1,Ideal,G,VS1,61.3,57,7550,6.59,6.66,4.06
1.31,Premium,H,VS2,61.4,59,7550,7.01,6.96,4.29
1.53,Ideal,J,VS2,61.4,58,7550,7.35,7.43,4.54
1.17,Ideal,G,VS2,61.4,56,7550,6.77,6.81,4.17
1.07,Premium,D,VS2,62.4,57,7550,6.59,6.51,4.09
1.03,Ideal,F,VS2,60.2,54,7550,6.64,6.61,3.99
1.08,Ideal,G,VS1,61.4,56,7551,6.59,6.63,4.06
1.08,Ideal,G,VS1,61,56,7553,6.62,6.65,4.05
1,Fair,E,VVS2,56.8,58,7553,6.59,6.64,3.76
1.51,Premium,J,VS2,62.8,59,7553,7.28,7.2,4.55
1.51,Premium,J,VS2,62.3,59,7553,7.35,7.31,4.57
1.51,Premium,J,VS2,62.8,59,7553,7.2,7.17,4.51
1.51,Premium,J,VS2,60.2,59,7553,7.36,7.35,4.43
1.51,Premium,J,VS2,59.6,60,7553,7.58,7.48,4.49
1.51,Premium,J,VS2,59.2,59,7553,7.53,7.47,4.44
1.56,Good,H,SI2,59.2,59,7554,7.46,7.54,4.44
1.53,Premium,J,VS2,62.9,59,7554,7.34,7.31,4.61
1.21,Premium,H,VS1,62.5,59,7555,6.8,6.74,4.23
1,Good,E,VS1,60.1,63,7556,6.42,6.45,3.87
1.51,Very Good,J,VS2,62.2,60,7557,7.27,7.32,4.54
1.47,Premium,G,SI2,61.8,58,7557,7.28,7.22,4.48
1.52,Premium,H,SI1,62,60,7559,7.36,7.28,4.54
1.5,Fair,E,SI2,69.6,62,7560,6.88,6.79,4.76
1.5,Very Good,F,SI2,63.1,54,7560,7.29,7.26,4.59
1.5,Premium,E,SI2,61.1,58,7560,7.34,7.31,4.47
1.25,Premium,H,VS1,59.3,57,7560,7.11,7.05,4.2
1.18,Ideal,F,VS2,62,57,7560,6.82,6.77,4.21
1.21,Premium,H,VS2,59.9,59,7562,6.94,6.92,4.15
1.21,Ideal,H,VS2,62.6,55,7562,6.84,6.78,4.26
1.21,Ideal,H,VS2,62.9,55,7562,6.8,6.75,4.26
1.24,Good,E,SI1,63.5,55,7563,6.82,6.86,4.35
1.07,Ideal,F,VS2,61,54,7564,6.59,6.62,4.03
1.02,Ideal,D,SI1,61.7,56,7564,6.4,6.49,3.97
1.17,Premium,G,VS1,62.4,56,7564,6.81,6.75,4.23
1.01,Ideal,E,VS1,61.6,57,7565,6.45,6.41,3.96
1.01,Very Good,G,VVS2,63.1,56,7565,6.4,6.34,4.02
1.26,Very Good,H,VS2,63.8,52,7567,6.89,6.84,4.38
1.3,Very Good,F,SI1,61.5,58,7567,6.99,7.06,4.32
1,Very Good,D,VS1,61.2,62,7567,6.35,6.39,3.9
1.21,Very Good,G,VS2,62.3,58,7568,6.76,6.8,4.22
1.17,Premium,F,VS2,62.4,56,7568,6.76,6.71,4.2
1,Ideal,E,VS2,62.1,57,7569,6.38,6.41,3.97
1.13,Ideal,H,VS1,61.6,55,7571,6.7,6.74,4.14
1,Good,G,VVS2,61.6,60,7572,6.34,6.38,3.92
1.47,Premium,H,SI2,59.3,59,7573,7.39,7.34,4.37
1.25,Ideal,H,SI1,62.4,55,7573,6.9,6.86,4.3
1.47,Premium,H,SI2,59.1,56,7573,7.51,7.46,4.42
1.02,Ideal,G,VS1,62.8,55,7574,6.45,6.41,4.04
1.01,Premium,D,VS1,62.1,58,7575,6.4,6.37,3.97
1.01,Very Good,D,VS1,63.1,58,7575,6.34,6.3,3.99
1.51,Premium,I,SI2,59.7,59,7577,7.48,7.46,4.46
1.07,Ideal,G,VS2,61.6,57,7577,6.55,6.61,4.05
1.07,Ideal,G,VS2,61.7,55,7577,6.53,6.57,4.04
1.51,Premium,G,SI1,62.3,59,7577,7.29,7.21,4.52
1.23,Premium,H,VS1,61.1,58,7577,6.91,6.86,4.21
1.51,Good,I,VS2,63.8,57,7577,7.24,7.18,4.6
1.51,Ideal,I,SI2,61.8,57,7577,7.43,7.36,4.57
1.51,Premium,I,SI2,60.4,56,7577,7.4,7.36,4.46
1.64,Very Good,J,SI2,63,58,7579,7.42,7.51,4.71
1.44,Premium,I,SI1,62.9,59,7580,7.2,7.15,4.51
1.52,Ideal,I,SI2,61.3,60,7582,7.33,7.39,4.51
1.52,Ideal,I,SI2,61.7,57,7582,7.38,7.41,4.56
1.09,Very Good,G,VVS2,59.8,61,7583,6.64,6.7,3.99
1.56,Very Good,H,SI2,58.7,63,7583,7.73,7.55,4.49
1,Very Good,G,VVS2,59.8,59,7584,6.47,6.51,3.88
1.4,Very Good,I,VS1,61.6,59,7584,7.17,7.22,4.43
1.56,Very Good,I,SI1,62.9,58,7584,7.31,7.35,4.61
1.22,Ideal,H,VS2,62.8,56,7584,6.81,6.75,4.26
1.51,Premium,G,SI1,61.3,61,7585,7.41,7.34,4.52
1.51,Very Good,G,SI1,63.1,56,7585,7.27,7.22,4.57
1.02,Very Good,F,VS1,62.4,58,7587,6.42,6.47,4.02
1.15,Ideal,G,VS2,61.6,55,7587,6.74,6.76,4.16
1.03,Ideal,G,VS1,60.8,57,7587,6.55,6.57,3.99
1.03,Ideal,G,VS1,61.7,56,7587,6.47,6.53,4.01
1.12,Premium,D,VS2,63,57,7587,6.62,6.55,4.15
1.09,Premium,F,VS1,61.3,60,7588,6.67,6.61,4.07
1,Premium,E,VS1,61.1,60,7588,6.43,6.41,3.92
1.01,Ideal,E,VS1,61.5,57,7589,6.44,6.47,3.97
1.12,Very Good,E,VS2,62.8,57,7589,6.61,6.64,4.16
1.54,Very Good,I,SI2,59.4,61,7589,7.49,7.56,4.47
1.12,Ideal,F,VS2,61.9,55,7589,6.68,6.73,4.15
1.54,Very Good,I,SI2,60.1,61,7589,7.41,7.46,4.47
1.16,Very Good,G,VS1,62.9,55,7589,6.65,6.74,4.21
1.06,Ideal,G,VS1,61.4,56,7589,6.55,6.58,4.03
1,Very Good,G,VVS2,63.1,58,7589,6.37,6.33,4.01
1.54,Premium,J,SI1,61.2,59,7589,7.45,7.41,4.55
1,Premium,G,VVS2,59.5,61,7589,6.46,6.42,3.83
1.1,Ideal,F,VS2,61.4,56,7589,6.68,6.64,4.09
1.21,Ideal,D,SI1,63,57,7589,6.82,6.76,4.28
1.36,Premium,I,VS1,62,59,7592,7.1,7.06,4.39
1.58,Ideal,J,SI1,61.6,56,7592,7.53,7.5,4.63
1.06,Ideal,F,VS2,61.2,57,7592,6.58,6.55,4.02
1.58,Premium,J,VVS2,61,58,7592,7.56,7.49,4.59
1.07,Premium,G,VVS2,61.6,57,7593,6.59,6.55,4.05
1.06,Ideal,G,VS1,60.7,56,7594,6.6,6.64,4.02
1.06,Ideal,G,VS1,61.6,56,7594,6.53,6.57,4.04
1.07,Very Good,G,VVS2,59.4,57,7597,6.74,6.69,3.99
1.01,Very Good,E,VS1,63.9,58,7597,6.31,6.36,4.05
1.01,Ideal,G,VVS2,62,58,7597,6.36,6.39,3.95
1.01,Ideal,E,VS2,62.5,54,7597,6.39,6.42,4
1.09,Very Good,F,VS1,62.9,58,7598,6.51,6.55,4.11
1.28,Ideal,G,SI1,62.2,56,7598,6.96,6.9,4.31
1.52,Very Good,H,SI2,63.1,55,7600,7.36,7.28,4.62
1.16,Ideal,G,VS2,62.2,55,7600,6.78,6.75,4.21
1.01,Ideal,F,VS1,62,57,7602,6.45,6.39,3.98
1.02,Premium,G,VVS2,62.6,59,7602,6.41,6.46,4.03
1.02,Good,E,VS1,63.9,56,7602,6.33,6.38,4.06
1.02,Premium,G,VVS2,62.2,60,7602,6.39,6.43,3.99
1.11,Ideal,D,VS2,62,57,7602,6.62,6.67,4.12
1.01,Ideal,D,VS2,60.6,57,7602,6.54,6.46,3.94
1.01,Ideal,F,VS1,61.3,57,7602,6.47,6.44,3.96
1.01,Premium,F,VS1,62.5,58,7602,6.42,6.37,4
1.01,Ideal,F,VS1,62.5,54,7602,6.46,6.43,4.03
1.01,Ideal,D,VS2,62.6,54,7602,6.46,6.42,4.03
1.2,Good,G,VS2,63.3,58,7603,6.66,6.74,4.24
1.2,Premium,G,VS2,61.4,60,7603,6.77,6.81,4.17
1.46,Premium,H,SI2,61.4,59,7604,7.3,7.26,4.47
1,Very Good,E,VS2,61,59,7607,6.41,6.48,3.93
1,Very Good,E,VS2,62.9,57,7607,6.33,6.35,3.99
1.53,Premium,H,SI1,62,60,7608,7.31,7.27,4.55
1.11,Ideal,G,VS2,62,56,7608,6.65,6.62,4.12
1.35,Ideal,H,SI1,61.5,58,7609,7.08,7.11,4.36
1.51,Premium,E,SI2,62,62,7610,7.16,7.09,4.42
1.07,Very Good,G,VS2,60,56,7611,6.67,6.69,4.01
1.21,Premium,G,VS2,62.2,60,7611,6.79,6.75,4.21
1.03,Ideal,F,VS1,59,55,7613,6.62,6.67,3.92
1.03,Premium,E,VS1,61.5,58,7614,6.55,6.43,3.99
1.12,Ideal,H,VS1,60.9,57,7616,6.71,6.73,4.09
1.6,Ideal,F,SI2,62.8,56,7616,7.46,7.41,4.69
1.32,Ideal,I,VS1,61.2,57,7617,7.12,7.06,4.34
1.53,Ideal,H,SI2,62.5,57,7617,7.36,7.39,4.61
1.11,Premium,E,VS2,62.2,58,7619,6.61,6.64,4.12
1.35,Ideal,H,SI1,62.8,57,7619,6.98,7.09,4.42
1.3,Premium,I,IF,61.8,58,7621,6.95,7,4.31
1,Very Good,G,VVS2,61.6,61,7623,6.35,6.38,3.92
1.22,Ideal,H,VS2,62,58,7623,6.81,6.86,4.24
1.11,Premium,F,VS1,60.7,59,7623,6.64,6.61,4.02
1.31,Premium,F,SI1,62.6,58,7625,6.98,7.02,4.38
1.08,Ideal,F,VS2,62.5,57,7625,6.52,6.57,4.09
1.06,Premium,G,VVS2,62.4,55,7627,6.54,6.5,4.07
1.5,Ideal,H,SI1,61.6,57,7627,7.34,7.24,4.49
1.08,Ideal,F,VS2,61.9,55,7629,6.58,6.61,4.09
1.34,Premium,H,VS2,62.3,60,7630,7.05,7.02,4.38
1.54,Premium,I,SI2,61.2,58,7631,7.51,7.43,4.57
1.27,Ideal,E,SI1,62.4,58,7631,6.87,6.91,4.3
1.02,Ideal,F,VS2,62.6,57,7632,6.4,6.47,4.03
1.04,Premium,F,VS1,59.4,60,7632,6.58,6.56,3.9
1.12,Ideal,G,VS1,61,56,7632,6.76,6.72,4.11
1.19,Ideal,H,VS2,62,54,7633,6.79,6.83,4.22
1.12,Ideal,G,VS2,61,57,7634,6.69,6.72,4.09
1.08,Ideal,G,VS1,61.8,58,7635,6.56,6.58,4.06
1.41,Very Good,J,VS1,59.4,59,7636,7.34,7.38,4.37
1.61,Very Good,I,SI2,60.9,63,7636,7.5,7.54,4.58
1.34,Very Good,H,SI1,62.4,58,7636,6.98,7.02,4.37
1.5,Premium,H,SI1,61.4,56,7636,7.47,7.34,4.55
1.06,Ideal,F,VS2,61.1,56.5,7637,6.57,6.6,4.03
1.51,Very Good,J,SI1,62.3,59,7637,7.22,7.28,4.52
1.08,Premium,F,VS2,62.1,59,7637,6.59,6.54,4.08
1.55,Premium,J,SI1,62.5,58,7638,7.4,7.36,4.61
1.11,Ideal,G,VS1,61.5,58,7639,6.7,6.66,4.11
1.36,Good,G,SI1,63.8,55,7639,6.97,6.94,4.44
1.57,Ideal,J,SI1,62,56,7640,7.5,7.46,4.64
1.06,Ideal,F,VS2,61.4,56,7641,6.56,6.61,4.04
1.53,Good,E,SI2,57.1,56,7643,7.69,7.65,4.38
1.02,Premium,D,VS2,62.5,58,7643,6.4,6.37,3.99
1,Premium,G,VVS1,61.3,62,7644,6.37,6.35,3.9
1.5,Premium,F,SI2,58.5,60,7644,7.52,7.48,4.39
1.5,Premium,F,SI2,58.5,60,7644,7.52,7.48,4.39
0.32,Ideal,H,VVS2,61.9,53,619,4.42,4.44,2.74
0.33,Ideal,F,VS2,60.9,56,619,4.47,4.49,2.73
0.29,Ideal,E,VS2,60.1,56,619,4.3,4.34,2.6
0.29,Ideal,E,VS1,61.2,56,619,4.27,4.29,2.61
0.29,Ideal,E,VS1,60.6,55,619,4.33,4.35,2.63
0.4,Ideal,F,SI2,61.6,55,619,4.73,4.75,2.92
0.32,Good,F,VVS2,62.5,61,619,4.32,4.38,2.72
0.3,Ideal,E,VS2,63.8,56,619,4.28,4.2,2.71
0.3,Good,E,VS2,64.2,57,619,4.24,4.13,2.69
0.41,Very Good,D,SI2,59.9,60,619,4.78,4.8,2.87
0.36,Very Good,D,SI1,62.8,57,619,4.51,4.54,2.84
0.36,Ideal,D,SI1,60.6,56,619,4.58,4.63,2.79
0.36,Good,D,SI1,63.2,56,619,4.52,4.56,2.87
0.35,Very Good,I,VVS2,61.3,56,620,4.52,4.54,2.78
0.27,Very Good,F,VVS2,61.9,58,620,4.17,4.2,2.59
0.27,Very Good,F,VVS2,60.1,58,620,4.17,4.22,2.52
0.27,Very Good,E,VVS2,62,59,620,4.14,4.18,2.58
0.27,Very Good,E,VVS2,62.5,59,620,4.09,4.14,2.57
0.27,Very Good,E,VVS2,60.9,58,620,4.14,4.17,2.53
0.27,Very Good,E,VVS2,61.7,58,620,4.12,4.15,2.55
0.27,Very Good,D,VVS2,59.9,59,620,4.23,4.28,2.55
0.27,Very Good,D,VVS2,61.6,59,620,4.15,4.16,2.56
0.27,Very Good,F,VVS1,62,58,620,4.18,4.21,2.6
0.27,Very Good,E,VVS1,60.9,59,620,4.17,4.21,2.55
0.27,Very Good,E,VVS1,59.9,57,620,4.23,4.25,2.54
0.27,Very Good,E,VVS1,62.6,58,620,4.11,4.16,2.59
0.27,Very Good,E,VVS1,61.5,58,620,4.16,4.23,2.58
0.3,Very Good,G,VS1,62.9,55,620,4.25,4.27,2.68
0.3,Very Good,G,VS1,61.7,57,620,4.28,4.32,2.65
0.3,Very Good,G,VS1,60.3,57,620,4.33,4.35,2.62
1.4,Very Good,I,SI1,61.3,59,7644,7.19,7.23,4.42
1.17,Very Good,H,IF,59.3,59,7644,6.92,6.98,4.12
1,Ideal,G,VVS1,62.3,56,7644,6.4,6.29,3.95
1.75,Premium,I,SI1,60.8,58,7644,7.83,7.79,4.75
1.05,Premium,G,VS1,61.1,59,7644,6.6,6.55,4.02
1.5,Fair,F,SI2,65.4,58,7644,7.17,7.1,4.67
1.2,Very Good,D,SI1,62.4,58,7646,6.75,6.78,4.23
1,Ideal,G,VS1,62.5,54,7648,6.4,6.44,4.01
1.03,Ideal,G,VS1,61.3,56,7648,6.52,6.5,3.99
1.7,Premium,J,SI2,63,60,7650,7.59,7.53,4.76
1.19,Ideal,H,VVS2,61.6,56,7651,6.78,6.86,4.2
1.51,Ideal,J,VS2,62.4,57,7651,7.35,7.3,4.57
1.01,Very Good,D,VS2,62.7,57,7652,6.36,6.39,4
1.68,Premium,J,SI2,59.2,57,7652,7.83,7.72,4.6
1.04,Very Good,D,VS2,61.2,56,7653,6.53,6.58,4.02
1.02,Ideal,F,VS1,61,56,7654,6.54,6.5,3.98
1.58,Premium,J,SI1,59.8,58,7654,7.61,7.57,4.54
1.34,Very Good,H,SI1,61.6,59,7655,7.04,7.09,4.35
1.04,Ideal,G,VS1,60.7,55,7655,6.57,6.61,4
1.04,Ideal,G,VS1,61.9,57,7655,6.51,6.55,4.04
1.55,Premium,I,VS2,61.3,58,7656,7.48,7.44,4.57
1.02,Very Good,G,VVS1,63,58,7657,6.4,6.43,4.04
1.1,Ideal,F,VS2,62.2,57,7658,6.62,6.59,4.11
1.34,Ideal,H,SI1,62.4,54,7659,7.05,7.08,4.41
1.24,Premium,G,VS1,62,59,7660,6.88,6.92,4.28
1.24,Very Good,G,VS2,61.5,58,7660,6.89,6.94,4.25
1.52,Ideal,I,SI2,60.2,57,7661,7.47,7.38,4.47
1.2,Premium,G,VS2,61.6,59,7661,6.85,6.81,4.21
1.15,Very Good,D,VS2,61.4,57,7662,6.7,6.78,4.14
1.7,Ideal,H,SI2,62.9,57,7664,7.59,7.55,4.76
1.01,Good,E,VS1,63.6,57,7665,6.41,6.35,4.06
1.01,Premium,G,VVS2,60.5,60,7665,6.58,6.51,3.96
1.01,Premium,G,VVS2,63,61,7665,6.36,6.34,4
1.01,Good,E,VS1,63.8,55,7665,6.41,6.32,4.06
1.01,Very Good,G,VVS2,63.2,59,7665,6.38,6.34,4.02
1.01,Ideal,E,VS1,62.7,55,7665,6.45,6.4,4.03
1.21,Ideal,G,VS2,62,56,7666,6.77,6.87,4.23
1.05,Very Good,E,VS1,59.8,59,7666,6.57,6.75,3.98
1.2,Good,F,VS2,63.8,60,7666,6.6,6.65,4.23
1.17,Premium,G,VS1,60.6,60,7666,6.81,6.79,4.12
1.05,Very Good,G,VVS2,59.8,60,7667,6.54,6.61,3.93
1.14,Ideal,G,VS2,61.4,56,7667,6.74,6.77,4.15
1.07,Premium,E,VS2,59.3,56,7670,6.71,6.69,3.97
1,Good,D,VS1,62.7,62,7672,6.21,6.23,3.9
1.08,Ideal,E,SI1,61.5,55,7672,6.59,6.62,4.06
1.7,Premium,H,SI2,62.1,56,7673,7.66,7.55,4.72
1.22,Very Good,H,VS1,62.4,59,7673,6.91,6.85,4.29
1.35,Premium,H,SI1,62.4,58,7673,7.03,6.95,4.36
1,Very Good,E,VS1,63,58,7676,6.29,6.38,3.99
1.32,Premium,G,SI1,60.6,58,7676,7.12,7.06,4.3
1.53,Very Good,J,VS1,59.5,60,7677,7.55,7.65,4.52
1.03,Very Good,E,VS1,62.8,55,7677,6.4,6.52,4.06
1.03,Premium,E,VS1,61.4,58,7677,6.52,6.58,4.02
1.03,Premium,E,VS1,59.6,59,7677,6.57,6.59,3.92
1.02,Premium,F,VS1,62.8,58,7677,6.44,6.4,4.03
1.02,Premium,F,VS1,62.7,55,7677,6.43,6.37,4.01
1.36,Premium,E,SI2,61.1,58,7677,7.21,7.13,4.38
1.02,Very Good,D,VS2,63.2,58,7677,6.4,6.36,4.03
1.02,Premium,F,VS1,60.8,59,7677,6.49,6.46,3.94
1.53,Ideal,I,SI2,62.4,58,7678,7.31,7.37,4.58
1.51,Ideal,H,SI1,61.9,57,7678,7.4,7.33,4.56
1.04,Very Good,D,VS2,63.1,54,7679,6.44,6.53,4.09
1.06,Premium,D,VS2,62.3,59,7679,6.52,6.48,4.05
1.06,Premium,F,VS1,58.8,60,7679,6.76,6.68,3.95
1.75,Ideal,H,I1,61.6,56,7680,7.73,7.75,4.77
1,Very Good,G,IF,62.2,61,7682,6.38,6.41,3.98
1.02,Very Good,F,VS1,63.6,60,7682,6.25,6.33,4
1.32,Premium,F,SI1,59.7,60,7683,7.11,7.16,4.26
1.08,Premium,D,VS2,61.2,60,7683,6.61,6.63,4.05
1.53,Premium,F,SI2,60.9,60,7685,7.5,7.37,4.53
1.12,Very Good,G,VS1,62.2,59,7687,6.58,6.61,4.1
1.13,Ideal,G,VS1,61,58,7687,6.71,6.74,4.1
1.23,Ideal,H,VS2,61.7,56,7687,6.92,6.88,4.26
1.1,Ideal,G,VS1,61.3,57,7688,6.66,6.59,4.06
1.2,Ideal,G,VVS2,61.7,57,7688,6.84,6.79,4.2
1.26,Ideal,H,VS1,61.4,56,7691,7.01,6.97,4.29
1,Good,E,VVS2,64.1,57,7692,6.32,6.29,4.04
1.51,Ideal,I,SI2,62.8,54,7693,7.28,7.34,4.59
1.54,Very Good,J,VS2,62.7,60,7695,7.34,7.37,4.61
1.61,Very Good,J,SI1,61.7,60,7695,7.45,7.5,4.61
1.06,Very Good,G,VVS2,62.9,56,7695,6.56,6.6,4.14
1.59,Premium,J,SI1,62.5,60,7695,7.42,7.46,4.65
1.71,Ideal,J,SI2,60.8,57,7695,7.69,7.64,4.66
1.51,Ideal,H,SI1,61.3,57,7695,7.41,7.34,4.52
1.51,Good,F,SI2,64.2,61,7695,7.24,7.19,4.63
1.51,Good,G,SI2,63.7,57,7695,7.28,7.21,4.62
1.51,Premium,G,SI2,62.4,57,7695,7.35,7.29,4.57
1.12,Fair,D,VS2,58.9,59,7696,6.84,6.77,4.01
1.03,Ideal,D,VS2,62,54.8,7697,6.47,6.51,4.02
1.05,Ideal,F,VS2,59.1,57,7697,6.67,6.66,3.94
1.06,Good,F,VS1,58.5,57,7699,6.68,6.73,3.92
1.24,Ideal,H,VS2,60.1,59,7701,6.99,7.03,4.21
1.26,Ideal,H,SI1,62,56,7701,6.92,6.94,4.3
1.24,Ideal,E,SI1,63.5,55,7701,6.86,6.82,4.35
1.4,Very Good,I,VS2,59.2,60,7702,7.35,7.3,4.34
1.52,Fair,D,SI2,56.3,61,7702,7.7,7.62,4.31
1.61,Very Good,J,VS2,61.7,59,7703,7.46,7.51,4.62
1.21,Very Good,E,SI1,62.2,60,7703,6.78,6.76,4.21
1.06,Very Good,F,VS2,61.5,58,7706,6.53,6.57,4.03
1.54,Premium,G,SI2,59.4,60,7707,7.49,7.52,4.46
1.03,Ideal,G,VVS1,61.7,56,7708,6.45,6.56,4
1.5,Very Good,H,SI1,63.4,57,7708,7.27,7.23,4.59
1,Very Good,F,VS1,59.8,58,7710,6.49,6.53,3.89
1.26,Ideal,G,SI1,61.9,56,7711,6.92,6.98,4.3
0.9,Premium,D,VVS1,61.3,59,7711,6.18,6.12,3.77
1.7,Very Good,J,SI1,59.1,61,7713,7.79,7.85,4.62
1.3,Premium,H,VS1,61.5,58,7714,6.96,6.98,4.29
1.5,Good,H,SI2,58.4,62,7714,7.44,7.49,4.36
1.27,Very Good,H,VS2,62.6,57,7715,6.91,6.95,4.34
1.5,Premium,I,SI2,62.8,57,7715,7.34,7.25,4.58
1.23,Premium,D,SI1,62.5,58,7715,6.85,6.79,4.27
1.01,Very Good,F,VVS2,62.5,63,7715,6.41,6.38,4
1.12,Ideal,G,VS1,61.6,55,7716,6.69,6.72,4.13
1,Very Good,D,VS2,63.6,56,7717,6.3,6.35,4.02
1.03,Premium,D,VS2,62.9,59,7718,6.43,6.38,4.03
1.13,Premium,G,VS1,61.6,58,7720,6.76,6.68,4.14
1.53,Ideal,J,SI1,62.2,58,7721,7.35,7.37,4.58
1.5,Good,D,SI2,61.1,64,7722,7.26,7.35,4.46
1.5,Very Good,I,SI1,61.4,62,7722,7.26,7.33,4.48
1.4,Premium,I,VS1,61.6,59,7722,7.22,7.17,4.43
1.51,Very Good,H,SI2,60.8,58,7723,7.4,7.51,4.53
1.51,Very Good,H,SI2,60.4,59,7723,7.27,7.3,4.4
1.51,Good,H,SI2,63.1,60,7723,7.23,7.28,4.58
1.02,Very Good,G,VVS2,62.5,59,7724,6.34,6.42,3.99
1,Very Good,G,VVS1,57.8,59,7725,6.59,6.63,3.82
1.03,Ideal,G,VS2,61.1,57,7726,6.51,6.54,3.99
1.01,Ideal,E,VS1,61.5,57,7727,6.47,6.44,3.97
1.5,Good,F,SI2,62.9,59,7727,7.19,7.32,4.56
1.54,Premium,I,SI2,60.1,61,7727,7.46,7.41,4.47
1.54,Fair,I,SI2,64.6,56,7727,7.3,7.26,4.7
1.54,Premium,I,SI2,59.4,61,7727,7.56,7.49,4.47
1.12,Ideal,F,VS2,61.9,55,7727,6.73,6.68,4.15
1.2,Premium,G,VS2,62.1,61,7728,6.74,6.68,4.17
1.5,Very Good,E,SI2,63.3,57,7728,7.28,7.23,4.59
1.22,Premium,G,VS2,61.2,58,7729,6.81,6.91,4.2
1.03,Premium,G,VVS2,60.4,59,7729,6.58,6.56,3.97
1.52,Ideal,H,SI1,61.5,57,7729,7.39,7.31,4.52
1.36,Premium,G,SI1,60.6,59,7729,7.21,7.17,4.36
1.53,Very Good,J,SI1,61.7,58,7730,7.43,7.47,4.6
1.7,Very Good,J,VS2,63.2,58,7730,7.56,7.5,4.76
1.29,Premium,F,SI1,62.5,60,7730,6.97,6.91,4.34
1.17,Premium,G,SI1,62.6,55,7731,6.75,6.7,4.21
1.31,Premium,H,VS2,59.8,58,7732,7.19,7.09,4.27
1.55,Premium,J,VS1,61.6,58,7733,7.39,7.42,4.56
1.57,Ideal,J,SI1,62.3,57,7737,7.45,7.39,4.62
1.51,Very Good,E,SI2,63.3,58,7737,7.19,7.16,4.54
1.5,Good,F,SI2,62.4,55,7738,7.27,7.34,4.56
1.02,Very Good,E,VS1,60.5,60,7738,6.49,6.54,3.94
1.22,Ideal,H,VS1,60.4,57,7738,6.86,6.89,4.15
1.41,Good,G,SI1,63.7,57,7738,7.13,7.03,4.51
1.04,Ideal,G,VVS1,62.8,56,7738,6.49,6.45,4.06
1.64,Very Good,J,SI1,62.6,59,7739,7.45,7.51,4.68
1.02,Very Good,F,VS1,61.3,58,7740,6.46,6.52,3.98
1.11,Ideal,F,VS2,61.6,57,7740,6.65,6.67,4.1
1.52,Ideal,J,VS1,61.3,55,7740,7.42,7.39,4.54
1.01,Premium,F,VVS1,62.5,58,7741,6.35,6.41,3.99
1.72,Good,J,SI2,63.2,57,7741,7.56,7.6,4.79
1.02,Premium,G,VVS2,62.2,60,7741,6.43,6.39,3.99
1.02,Premium,G,VVS2,62.6,59,7741,6.46,6.41,4.03
1.2,Ideal,G,VS2,62.1,56,7741,6.84,6.78,4.23
1.2,Very Good,G,VS2,63.3,58,7741,6.74,6.66,4.24
1.33,Ideal,H,SI1,60.1,57,7742,7.14,7.2,4.31
1,Very Good,G,VS2,61.1,55,7743,6.44,6.5,3.95
1.24,Ideal,H,VS1,61.6,56,7743,6.95,6.87,4.26
1.51,Very Good,J,VS2,61,58,7744,7.35,7.41,4.5
1,Premium,E,VS1,60.4,59,7744,6.51,6.54,3.94
1,Ideal,G,VVS2,60.8,57,7744,6.45,6.47,3.93
1.01,Ideal,F,VS1,62,57,7745,6.42,6.46,3.99
1.61,Premium,H,SI2,61.4,62,7745,7.54,7.48,4.62
1.52,Fair,I,SI1,64.6,58,7746,7.24,7.21,4.68
1.3,Very Good,H,VS1,61.9,56,7747,6.97,7.05,4.34
0.9,Very Good,E,IF,63.9,55,7747,6.05,6.09,3.88
1.07,Ideal,G,VS1,62.2,56,7748,6.53,6.56,4.07
1.64,Very Good,J,SI2,62,59,7750,7.47,7.52,4.65
1.14,Ideal,G,VS1,60.9,57,7750,6.7,6.82,4.12
1.04,Very Good,E,VS1,63,55,7751,6.45,6.5,4.08
1.31,Ideal,I,VS1,62.2,57,7751,7,7.03,4.36
1.07,Premium,D,VS2,61.3,59,7751,6.61,6.53,4.03
1.13,Premium,D,VS2,61.7,58,7751,6.7,6.65,4.12
1.03,Ideal,F,VS1,59,55,7752,6.67,6.62,3.92
1.61,Premium,H,SI1,62.8,58,7754,7.47,7.4,4.67
1.57,Premium,I,VS2,62.2,58,7755,7.43,7.35,4.59
1.42,Premium,F,SI2,59.7,57,7755,7.33,7.3,4.37
1.13,Ideal,F,VS2,61.8,54,7756,6.72,6.73,4.15
1.71,Premium,J,SI1,61.9,58,7757,7.62,7.56,4.7
1.52,Premium,J,VS2,62,59,7758,7.28,7.31,4.52
1.11,Ideal,G,VS1,62.6,57,7758,6.64,6.59,4.14
1.51,Premium,H,SI1,62.8,60,7759,7.22,7.14,4.51
1.52,Very Good,J,SI1,59.9,57,7759,7.45,7.47,4.47
1.3,Premium,I,IF,61.8,58,7760,7,6.95,4.31
1.12,Premium,F,VS1,61.8,59,7761,6.65,6.75,4.14
1.2,Ideal,D,SI1,62.7,55,7761,6.71,6.79,4.23
1.1,Premium,F,VS1,60.9,61,7762,6.7,6.64,4.06
1.05,Ideal,E,VS1,62.6,57,7762,6.5,6.44,4.05
1,Premium,G,VVS2,61.6,61,7762,6.38,6.35,3.92
1.56,Premium,J,VS2,61.7,58,7763,7.41,7.46,4.59
1.52,Premium,H,SI2,62,58,7764,7.37,7.34,4.56
1.51,Premium,I,SI2,62.7,55,7766,7.37,7.28,4.59
1.38,Ideal,F,SI2,62,58,7767,7.12,7.17,4.43
1.07,Very Good,E,VS1,62,60,7768,6.49,6.58,4.05
1.2,Ideal,H,VS1,62.3,54,7768,6.78,6.86,4.25
1.01,Good,E,VVS2,64.3,58,7769,6.34,6.28,4.06
1.77,Ideal,J,SI2,62,56,7771,7.78,7.74,4.81
1.49,Very Good,G,SI2,62.5,58,7773,7.2,7.26,4.52
1.42,Ideal,J,VVS2,61.9,55,7773,7.19,7.24,4.47
1.5,Very Good,H,SI2,61.3,59,7774,7.38,7.41,4.53
1.5,Very Good,H,SI2,62.3,60,7775,7.28,7.22,4.52
1.61,Very Good,I,SI2,60.9,63,7775,7.54,7.5,4.58
1.06,Ideal,F,VS2,61.1,57,7776,6.6,6.57,4.03
1,Very Good,E,VVS2,61.9,61,7777,6.38,6.42,3.96
1.03,Premium,E,VS1,62.4,58,7778,6.41,6.5,4.03
1.02,Very Good,E,VS1,60.1,59,7779,6.48,6.53,3.91
1.59,Premium,D,SI2,59.4,61,7779,7.62,7.56,4.51
1.34,Premium,G,VS2,61,60,7780,7.13,7.07,4.33
1.51,Ideal,H,SI1,61.7,56,7780,7.25,7.18,4.45
1.08,Ideal,F,VS2,61,57,7781,6.61,6.68,4.06
1.12,Premium,F,VS1,62.1,60,7781,6.62,6.58,4.1
1.22,Ideal,G,VS2,62,55,7783,6.83,6.87,4.25
1.01,Very Good,D,VS1,63.1,56,7785,6.38,6.33,4.01
1.26,Very Good,D,SI1,59.9,59,7785,7.02,7.14,4.24
1.01,Premium,D,VS1,61.1,61,7785,6.46,6.4,3.93
1.21,Good,F,VS2,63.5,55,7786,6.71,6.77,4.28
1.21,Very Good,H,VS1,62.8,54.4,7786,6.78,6.81,4.26
1.21,Very Good,G,VS2,62,58,7787,6.73,6.82,4.2
1.06,Ideal,E,VS2,61.8,55,7788,6.59,6.51,4.05
1.21,Ideal,H,IF,61,57,7789,6.79,6.89,4.17
1.06,Ideal,G,VS1,61.2,56,7790,6.56,6.62,4.03
1.29,Ideal,F,SI1,61.4,61,7790,7,6.97,4.29
1.01,Ideal,D,VS2,62.7,57,7792,6.39,6.36,4
1.01,Ideal,F,VS1,60.7,57,7792,6.52,6.49,3.95
1.21,Ideal,G,VS2,61.2,57,7792,6.9,6.85,4.21
1.21,Premium,G,VS2,61.5,58,7792,6.84,6.81,4.2
1.01,Premium,F,VS1,61.4,60,7792,6.45,6.39,3.94
1.05,Very Good,D,VS2,59.7,58,7794,6.56,6.63,3.94
1.2,Premium,G,VS2,58.2,59,7795,7.04,6.95,4.07
1.09,Ideal,E,VS2,60.6,58,7796,6.66,6.7,4.05
1.53,Very Good,I,SI1,63.1,56,7797,7.32,7.26,4.6
1.02,Premium,G,VVS1,63,58,7797,6.43,6.4,4.04
1.19,Premium,G,VS1,61.2,55,7797,6.86,6.81,4.18
1.7,Premium,I,SI1,59.8,59,7797,7.72,7.7,4.61
1.23,Very Good,D,SI1,59.7,58,7799,6.96,7.02,4.17
1.02,Good,G,VVS2,63.1,59,7800,6.38,6.45,4.05
1.24,Premium,G,VS1,62,59,7800,6.92,6.88,4.28
1.29,Premium,H,VS2,60.7,61,7802,7.1,7.01,4.28
1.72,Ideal,E,I1,62.2,55,7802,7.7,7.67,4.78
1.23,Ideal,H,VS1,60.6,57,7803,6.94,6.98,4.22
1.16,Very Good,F,VS2,60.2,63,7803,6.79,6.7,4.07
1.01,Ideal,G,VVS1,61.7,57,7805,6.42,6.39,3.95
1.01,Ideal,G,VVS2,62.4,59,7806,6.34,6.41,3.98
1.21,Ideal,G,VS2,62,56,7806,6.87,6.77,4.23
1.13,Ideal,G,VS1,61,56.4,7808,6.7,6.75,4.1
1.56,Ideal,J,VS2,62.4,57,7809,7.39,7.46,4.63
1.21,Ideal,H,SI1,60.7,57,7810,6.85,6.89,4.17
1.21,Ideal,H,SI1,60.9,56,7810,6.89,6.94,4.21
1.59,Premium,J,VS2,62.6,59,7811,7.43,7.45,4.66
1.21,Ideal,H,VS1,62.4,53,7811,6.83,6.86,4.27
1,Premium,D,VS1,62.1,55,7812,6.41,6.34,3.96
1,Premium,D,VS1,62.7,54,7812,6.38,6.35,3.99
1.51,Very Good,J,SI1,60.9,59,7812,7.33,7.41,4.49
1.12,Ideal,F,SI1,61.7,56,7812,6.64,6.68,4.11
1.5,Premium,H,SI2,62.2,60,7812,7.29,7.24,4.52
1,Premium,D,VS1,62.7,62,7812,6.23,6.21,3.9
1.57,Very Good,J,VS2,62.6,60,7813,7.34,7.41,4.62
1.09,Ideal,E,VS2,62.1,57,7813,6.62,6.56,4.09
1.09,Premium,E,VS2,61.6,59,7813,6.62,6.54,4.05
1.01,Ideal,G,VS2,62.1,59,7814,6.39,6.43,3.98
1.51,Good,I,SI2,63.6,60,7815,7.23,7.27,4.61
1.13,Very Good,G,VS1,60.7,57,7815,6.68,6.72,4.07
1.34,Premium,H,VS2,62.3,60,7816,7.05,7.02,4.38
1.22,Premium,H,VS1,62.5,59,7816,6.85,6.79,4.26
1.03,Premium,E,VS1,59.6,59,7817,6.59,6.57,3.92
1.41,Premium,F,SI2,62.7,56,7817,7.21,7.15,4.5
1.14,Ideal,F,VS2,61.9,57,7819,6.67,6.7,4.13
1.5,Fair,J,VS1,60.1,61,7819,7.25,7.3,4.37
1.09,Ideal,G,VS1,62.3,55,7820,6.59,6.63,4.12
1.01,Premium,E,VS1,62,59,7821,6.38,6.42,3.97
1.01,Premium,E,VS1,60.8,59,7821,6.42,6.46,3.92
1.01,Premium,G,VVS2,61.9,59,7821,6.41,6.45,3.98
1.07,Ideal,H,VVS2,61.3,57,7821,6.6,6.62,4.05
1.51,Premium,J,SI1,59.9,60,7822,7.46,7.41,4.45
1,Premium,G,IF,62.2,61,7822,6.41,6.38,3.98
1,Premium,G,IF,61.4,59,7822,6.47,6.39,3.95
1.51,Very Good,H,SI2,62.3,58,7823,7.29,7.25,4.53
1.11,Ideal,F,VS2,61.9,55,7823,6.62,6.66,4.11
1.08,Premium,D,VS2,61.2,60,7824,6.63,6.61,4.05
1.26,Ideal,F,SI1,61.4,56,7824,6.99,6.93,4.27
1.05,Good,E,VS1,63.1,59,7826,6.45,6.49,4.08
1.21,Ideal,F,VS2,62.6,55,7826,6.8,6.75,4.24
1.21,Very Good,F,VS2,63.3,58,7826,6.73,6.67,4.24
1.21,Very Good,F,VS2,63.5,58,7826,6.76,6.73,4.28
1.12,Premium,G,VS1,62.2,59,7827,6.61,6.58,4.1
1.12,Ideal,G,VS1,62.2,56,7827,6.71,6.67,4.16
1.29,Good,F,SI1,63.8,60,7828,6.9,6.86,4.39
1.57,Very Good,J,VS2,60.2,59,7832,7.53,7.61,4.56
1.57,Very Good,J,VS2,62.6,59,7832,7.39,7.43,4.64
1.5,Fair,H,SI1,66.1,57,7832,7.06,6.98,4.64
1.11,Premium,F,VS1,59.4,58,7832,6.81,6.75,4.03
1.5,Premium,J,VS1,62,61,7832,7.37,7.24,4.53
2.11,Very Good,G,I1,63.2,57,7834,8.13,8.07,5.12
1.01,Very Good,F,VVS2,60.7,59,7835,6.4,6.46,3.9
0.3,Very Good,E,VS1,63.6,54,620,4.28,4.33,2.74
0.27,Ideal,F,VVS2,61.4,57,620,4.17,4.2,2.57
0.27,Ideal,E,VVS2,60.5,57,620,4.18,4.25,2.55
0.27,Ideal,E,VVS2,61.5,57,620,4.14,4.18,2.56
0.27,Ideal,F,VVS1,61,57,620,4.2,4.22,2.57
0.34,Ideal,H,VS1,62.2,55,620,4.47,4.49,2.79
0.32,Ideal,H,VS1,62.5,55,620,4.36,4.38,2.73
0.35,Good,H,VVS2,60.4,56,620,4.57,4.59,2.77
0.3,Premium,H,VVS1,60.7,58,620,4.35,4.38,2.65
0.27,Very Good,E,VVS2,63.8,54,621,4.06,4.09,2.6
0.41,Very Good,G,SI2,59.6,60,621,4.82,4.85,2.88
0.3,Ideal,E,VS2,61.3,57,621,4.3,4.34,2.65
0.3,Ideal,E,VS2,61.4,56,621,4.33,4.36,2.67
0.3,Ideal,E,VS2,61.7,58,621,4.27,4.29,2.64
0.3,Ideal,E,VS2,62.1,55,621,4.32,4.35,2.69
0.3,Ideal,E,VS2,61.3,58,621,4.3,4.32,2.64
0.31,Ideal,D,VS2,61.3,57,621,4.36,4.41,2.69
0.3,Ideal,F,VS1,61.6,54,621,4.32,4.35,2.67
0.3,Ideal,F,VS1,61.8,53,621,4.32,4.36,2.68
0.3,Ideal,F,VS1,62.5,57,621,4.26,4.28,2.67
0.3,Ideal,F,VS1,61.2,57,621,4.32,4.34,2.65
0.3,Ideal,F,VS1,62.2,56,621,4.31,4.34,2.69
0.3,Good,D,VS2,58.9,62,621,4.33,4.36,2.56
0.41,Good,J,VS1,63.2,59,621,4.67,4.7,2.96
0.33,Very Good,G,VS1,61.6,57,621,4.42,4.51,2.75
0.33,Premium,G,VS1,60.3,58,621,4.5,4.52,2.72
0.3,Very Good,E,VVS2,61.1,62,622,4.28,4.33,2.63
0.3,Very Good,E,VVS2,62.4,58,622,4.28,4.31,2.68
0.3,Very Good,E,VVS2,63.2,56,622,4.23,4.28,2.69
0.3,Very Good,E,VVS2,59.7,57,622,4.37,4.43,2.62
1.59,Very Good,I,SI2,61.6,57,7835,7.51,7.56,4.64
1.06,Ideal,G,VVS2,62.9,56,7836,6.6,6.56,4.14
1.02,Ideal,F,VS1,62.2,57,7836,6.39,6.43,3.99
1.59,Premium,J,SI1,62.5,60,7836,7.46,7.42,4.65
1.38,Very Good,H,SI1,63.2,56,7836,7.08,7.03,4.46
1.01,Premium,E,VS1,62.9,60,7839,6.36,6.32,3.99
1.25,Ideal,F,VS1,62.4,57,7840,6.9,6.83,4.29
1.5,Very Good,J,VVS2,62.8,62,7840,7.22,7.25,4.54
1.72,Ideal,H,SI1,62.2,57,7840,7.65,7.55,4.72
1,Premium,G,VVS2,62.8,59,7840,6.43,6.38,4.02
1.51,Very Good,I,SI2,60,59,7841,7.45,7.52,4.49
1.61,Premium,J,VS2,61.7,59,7844,7.51,7.46,4.62
1.26,Ideal,H,VS1,61.5,59,7845,6.94,6.91,4.26
1.01,Very Good,G,VVS2,60.8,59,7847,6.42,6.5,3.93
1.73,Good,J,SI1,63.8,60,7847,7.57,7.5,4.8
1.51,Ideal,J,VS2,61.7,57,7847,7.44,7.4,4.58
1,Premium,G,VVS1,62.9,53,7848,6.39,6.32,4
1.51,Very Good,E,SI2,61.9,57,7848,7.35,7.41,4.57
1.51,Good,J,VS1,60.6,55,7848,7.3,7.36,4.44
1.51,Premium,J,VS1,62.3,59,7848,7.31,7.34,4.56
1.51,Good,J,VS1,63.5,60,7848,7.23,7.29,4.61
1.39,Premium,G,SI1,61.3,59,7848,7.15,7.24,4.41
1.54,Premium,G,SI2,59.4,60,7848,7.52,7.49,4.46
1.54,Fair,F,SI2,64.4,60,7848,7.26,7.16,4.64
1.54,Ideal,I,VS2,60.7,56,7848,7.51,7.46,4.54
1.27,Premium,H,VS2,61.1,58,7849,6.96,6.88,4.23
1,Ideal,F,VVS2,61.5,55,7849,6.46,6.41,3.96
1.22,Premium,G,VS1,61.6,60,7850,6.85,6.88,4.23
1.33,Ideal,H,VS2,62.6,57,7850,7.02,6.98,4.38
1.07,Ideal,F,VS1,62.1,55,7850,6.58,6.56,4.08
1.04,Premium,D,VS2,61.1,60,7852,6.51,6.48,3.97
2.5,Fair,G,I1,64.7,57,7854,8.48,8.44,5.47
1.3,Premium,H,VS1,61.5,58,7855,6.98,6.96,4.29
1.74,Premium,I,SI2,62.2,58,7858,7.65,7.61,4.75
1.07,Ideal,G,VS1,62.1,57,7858,6.48,6.57,4.05
1.53,Ideal,I,SI2,62.4,54,7859,7.34,7.41,4.6
1.02,Very Good,G,VVS1,62.1,59,7861,6.36,6.39,3.96
1.02,Good,G,VVS1,63.6,58,7861,6.37,6.4,4.06
1.53,Very Good,H,SI1,63.1,56,7862,7.32,7.27,4.6
1.5,Good,D,SI2,61.1,64,7862,7.35,7.26,4.46
1.56,Good,H,SI1,63.7,57,7862,7.34,7.25,4.65
1.8,Ideal,D,SI2,62.9,54,7862,7.77,7.74,4.88
1.08,Very Good,G,VVS2,63.1,56,7862,6.58,6.51,4.13
1.01,Premium,F,VS1,58.8,60,7862,6.59,6.51,3.85
1.01,Premium,G,VVS2,60.7,58,7862,6.52,6.49,3.95
1.11,Good,D,VS2,63.2,57,7863,6.61,6.64,4.18
1.51,Premium,H,SI2,62.5,57,7864,7.36,7.26,4.57
1.51,Premium,H,SI2,60.4,59,7864,7.3,7.27,4.4
1.19,Premium,H,VS1,61.9,59,7864,6.83,6.75,4.2
1.2,Premium,F,VS2,60.1,57,7865,6.82,6.76,4.08
1.52,Very Good,I,SI2,59.8,62,7866,7.41,7.47,4.45
1.2,Ideal,H,VS1,62.1,57,7869,6.77,6.82,4.22
1.01,Ideal,F,VS1,61.1,59,7870,6.46,6.5,3.96
1.22,Ideal,H,SI1,61.9,55,7870,6.82,6.87,4.24
1.22,Premium,G,VS2,61.2,58,7870,6.91,6.81,4.2
1.13,Premium,G,VVS2,61.4,58,7875,6.68,6.73,4.12
1.51,Good,F,SI2,62.9,55,7875,7.22,7.28,4.56
1.03,Ideal,G,VVS2,61.6,57,7876,6.48,6.51,4
1.54,Very Good,E,SI2,59,62,7877,7.56,7.59,4.47
1,Very Good,D,VS1,62.7,60,7877,6.31,6.36,3.97
1.21,Very Good,F,SI1,60.2,60,7877,6.92,6.96,4.18
1.2,Ideal,I,VVS2,61.5,56,7877,6.79,6.84,4.19
1.05,Premium,F,VS1,61,58,7879,6.6,6.55,4.01
1.03,Ideal,G,VS1,61.8,56,7880,6.46,6.51,4.01
1.18,Premium,G,VVS2,61,58,7881,6.79,6.84,4.16
1.23,Ideal,I,VS1,61.1,57,7881,6.88,6.9,4.21
1.01,Premium,F,VVS1,62.5,58,7882,6.41,6.35,3.99
1.01,Very Good,G,VVS2,63.3,57,7885,6.31,6.36,4.01
1,Ideal,G,VVS2,59.8,54,7885,6.58,6.54,3.92
1,Ideal,G,VVS2,60.8,57,7885,6.47,6.45,3.93
1,Premium,E,VS1,61.4,59,7885,6.44,6.42,3.95
1.33,Ideal,I,VVS2,62.2,56,7887,7.01,7.04,4.37
1.01,Ideal,F,VS1,62,57,7887,6.46,6.42,3.99
1.5,Very Good,H,SI2,63,58,7888,7.2,7.25,4.55
0.83,Very Good,D,IF,59.7,53,7889,6.14,6.23,3.69
1.51,Very Good,I,SI1,63.1,56,7891,7.28,7.33,4.61
1.39,Very Good,I,VS1,62.2,57,7893,7.17,7.1,4.44
1.34,Ideal,F,SI1,61.7,55,7893,7.07,7.13,4.38
1.5,Good,H,SI2,63.4,59,7897,7.2,7.25,4.58
1.02,Ideal,G,VVS2,61.1,57,7898,6.48,6.51,3.97
1.52,Premium,J,VS2,62,59,7899,7.31,7.28,4.52
1.06,Very Good,E,VS1,63,58,7900,6.46,6.49,4.08
1.06,Ideal,G,VVS2,61,57,7900,6.55,6.57,4
1.23,Ideal,H,VS2,62.8,56,7900,6.76,6.84,4.27
1.01,Ideal,E,VS2,60.4,58,7900,6.49,6.52,3.93
1.65,Very Good,J,SI1,61.7,56,7903,7.61,7.66,4.71
1.6,Premium,J,VS1,62.6,59,7903,7.51,7.4,4.66
1.26,Premium,D,SI1,59.5,59,7903,7.13,7.06,4.22
1.2,Ideal,D,SI1,62.7,55,7903,6.79,6.71,4.23
1.12,Premium,F,VS1,61.8,59,7903,6.75,6.65,4.14
1.12,Premium,F,VS1,61.2,58,7903,6.72,6.68,4.1
1.56,Premium,J,VS2,61.7,58,7904,7.46,7.41,4.59
1.21,Very Good,G,VS2,59.5,58,7906,6.96,7.03,4.16
1.6,Very Good,I,SI2,62.2,59,7906,7.42,7.46,4.63
1.03,Ideal,F,VS1,61.5,56,7906,6.47,6.53,4
1.52,Premium,H,SI2,62,58,7906,7.37,7.34,4.56
1.2,Very Good,D,SI1,62.6,59,7909,6.71,6.75,4.21
1.07,Premium,E,VS1,62,60,7909,6.58,6.49,4.05
1.26,Very Good,G,SI1,63.3,58,7910,6.88,6.84,4.34
1.55,Premium,J,VS2,60.7,59,7911,7.47,7.5,4.54
1.67,Very Good,J,SI1,62.3,59,7911,7.59,7.63,4.74
1.21,Good,F,VS2,63.7,58,7911,6.67,6.71,4.26
1.5,Fair,I,SI1,56.7,63,7912,7.52,7.57,4.28
1.01,Good,F,VVS2,62.7,61,7915,6.3,6.34,3.96
1.51,Very Good,D,SI2,63.2,59,7915,7.25,7.18,4.56
1.19,Ideal,D,VS2,60.4,56,7916,6.87,6.93,4.17
1.02,Ideal,F,VS1,61.5,56,7916,6.47,6.5,3.99
1.11,Ideal,G,VS1,62.1,57,7917,6.61,6.63,4.11
1.11,Ideal,G,VS1,61.6,56,7917,6.64,6.67,4.1
1.08,Ideal,F,VS2,62.3,54,7917,6.6,6.56,4.1
1,Fair,E,VVS2,65.4,56,7918,6.28,6.2,4.08
1.35,Premium,H,VS2,61.5,58,7918,7.09,7.15,4.38
1.03,Premium,E,VS1,62.4,58,7919,6.5,6.41,4.03
1.2,Ideal,G,SI1,61.2,56,7920,6.87,6.88,4.21
1.84,Premium,H,SI2,61,58,7922,7.97,7.87,4.81
1.22,Ideal,G,VS2,62,55,7923,6.83,6.91,4.26
1.63,Ideal,H,SI2,62.4,57,7923,7.59,7.52,4.71
1.08,Ideal,F,VS2,61,57,7923,6.68,6.61,4.06
1.25,Premium,D,SI1,62.4,58,7924,6.89,6.83,4.28
1.08,Ideal,G,VS1,62.4,55,7925,6.57,6.63,4.12
1.17,Ideal,F,VS2,61.8,55,7927,6.74,6.81,4.19
1.28,Very Good,E,SI1,59.8,59.1,7927,6.99,7.05,4.21
1.21,Very Good,F,VS2,63.5,55,7928,6.77,6.71,4.28
1.14,Very Good,D,VS2,58.7,60,7928,6.82,6.88,4.02
1.43,Fair,E,SI1,65.1,56,7928,7.1,7.03,4.61
1.21,Ideal,H,VS1,62.8,54,7928,6.81,6.78,4.26
1.51,Good,H,SI2,62.8,60,7929,7.22,7.26,4.55
1.2,Ideal,G,VS2,61.9,57,7930,6.86,6.83,4.24
1.46,Premium,G,SI2,59.5,59,7931,7.34,7.29,4.35
1.74,Premium,H,SI1,62.1,59,7932,7.69,7.63,4.76
1.52,Good,G,SI2,63.1,58,7933,7.21,7.3,4.58
1.06,Ideal,G,VVS2,61.6,56.3,7934,6.53,6.56,4.03
1.01,Ideal,G,VVS2,60.9,54,7934,6.5,6.53,3.97
2.2,Fair,I,I1,66.3,56,7934,8.05,8,5.32
1.5,Ideal,G,SI2,61.5,57,7936,7.33,7.39,4.53
1.27,Ideal,H,VS2,62.9,54,7937,6.88,6.92,4.34
1.21,Ideal,I,VVS2,61.3,56,7938,6.83,6.87,4.2
1.37,Very Good,I,VS1,61.8,57,7939,7.09,7.14,4.4
1.01,Ideal,G,VVS2,62.5,56,7941,6.38,6.41,4
1.42,Ideal,J,VS2,61.7,56,7942,7.22,7.27,4.47
1.02,Very Good,G,VVS2,63.1,59,7942,6.45,6.38,4.05
1.65,Very Good,J,SI1,61.5,58,7943,7.49,7.62,4.65
1.59,Ideal,J,SI1,61.3,57,7943,7.43,7.52,4.58
1.33,Premium,H,VS2,62.6,58,7943,7.07,7.01,4.41
1,Very Good,G,VVS1,60.7,58,7945,6.46,6.53,3.94
1.23,Ideal,H,VS1,62.1,54,7946,6.87,6.89,4.27
1.25,Premium,G,VS2,61.2,57,7948,6.95,6.91,4.24
1.14,Ideal,G,VS1,62.3,56,7948,6.73,6.7,4.18
1.51,Good,H,VS2,63.8,56,7949,7.24,7.17,4.6
1,Very Good,G,VVS2,62.7,57,7950,6.32,6.37,3.98
1.56,Premium,F,SI2,58.8,59,7950,7.76,7.61,4.52
1.56,Fair,G,SI2,64.8,59,7950,7.38,7.19,4.72
1.56,Fair,I,SI1,64.6,62,7950,7.26,7.23,4.68
1.04,Ideal,G,VS1,61.7,56,7951,6.47,6.52,4.01
1.37,Premium,G,VS2,61.6,59,7951,7.11,7.04,4.36
1.51,Very Good,J,VS1,63.7,55,7953,7.16,7.28,4.6
1.04,Premium,G,VVS2,61.8,58,7953,6.47,6.51,4.01
1.59,Premium,J,VS2,62.6,59,7953,7.45,7.43,4.66
1.07,Premium,D,VS2,60.9,59,7954,6.63,6.58,4.02
1.21,Ideal,H,VVS2,60.4,57,7954,6.9,6.93,4.18
1.01,Good,D,VS1,63.1,59,7955,6.34,6.37,4.01
1.05,Ideal,F,VS1,62.1,56,7955,6.54,6.59,4.08
1.21,Ideal,E,SI1,62.1,56,7955,6.83,6.88,4.26
1.5,Premium,I,SI1,62.3,57,7955,7.28,7.22,4.52
1.41,Very Good,H,SI1,62.9,57,7956,7.04,7.08,4.44
1.25,Very Good,F,SI1,61.4,56,7956,6.91,6.94,4.25
1.51,Good,I,SI2,63.6,60,7957,7.27,7.23,4.61
2.01,Good,H,I1,61.7,63,7959,7.91,7.94,4.89
1.02,Fair,F,VVS1,64.6,59,7960,6.31,6.26,4.06
1.09,Ideal,G,VS2,62.2,55,7961,6.61,6.65,4.13
1.16,Premium,G,VS1,61.9,58,7962,6.72,6.76,4.17
1.58,Premium,E,SI2,61,60,7963,7.54,7.51,4.59
1.3,Very Good,E,SI1,59.1,60,7963,7.12,7.17,4.22
1.01,Premium,G,VVS2,61.9,59,7964,6.45,6.41,3.98
1.01,Premium,E,VS1,60.8,59,7964,6.46,6.42,3.92
1.01,Premium,E,VS1,62.9,61,7964,6.39,6.33,4
1.01,Premium,E,VS1,62,59,7964,6.42,6.38,3.97
1.34,Very Good,H,VS2,61.4,58,7965,7.13,7.07,4.36
1.05,Ideal,D,VS2,61.7,59,7965,6.5,6.53,4.02
1,Ideal,D,VS1,62.4,55,7966,6.4,6.43,4
1.53,Ideal,I,VS1,62.9,57,7968,7.36,7.3,4.61
1.05,Very Good,E,VS1,63.1,59,7969,6.49,6.45,4.08
1.12,Ideal,G,VS1,61.5,55,7970,6.67,6.69,4.11
1.53,Very Good,I,SI1,63.3,58,7971,7.26,7.31,4.61
1.5,Fair,G,SI2,64.7,55,7972,7.16,7.13,4.62
1.55,Premium,I,SI2,58.5,60,7972,7.64,7.58,4.45
1.17,Good,G,VS1,60,64,7972,6.82,6.77,4.08
1.01,Very Good,G,IF,60,61,7974,6.41,6.45,3.86
1.01,Very Good,G,IF,63,60,7974,6.31,6.35,3.99
1.07,Very Good,G,VVS2,62.8,57,7975,6.46,6.56,4.09
1.57,Premium,I,SI2,62.4,58,7976,7.41,7.37,4.61
1.15,Very Good,D,VS1,62.9,54,7978,6.72,6.69,4.22
1.09,Ideal,E,VS2,62.4,55,7978,6.55,6.6,4.1
1.59,Ideal,I,SI2,61.6,57,7978,7.56,7.51,4.64
1,Ideal,G,VVS2,62.8,57,7979,6.37,6.43,4.02
1.37,Ideal,H,VS1,63.8,56,7979,7.01,6.98,4.46
1.5,Good,D,SI1,56.6,64,7980,7.51,7.43,4.23
1.27,Premium,E,SI1,60.9,59,7980,7.03,6.97,4.26
1.01,Premium,F,VS1,61.2,59,7982,6.48,6.42,3.95
1.33,Premium,H,VS2,60.7,59,7982,7.08,7.13,4.31
1.32,Ideal,F,VS2,62.3,57,7983,7.06,6.97,4.37
1.2,Very Good,G,VS2,62.2,57,7983,6.75,6.78,4.21
1.6,Ideal,H,VS2,61.5,56,7983,7.57,7.52,4.64
1.5,Premium,J,VVS2,62.8,62,7983,7.25,7.22,4.54
1.3,Very Good,G,SI1,61,57,7985,7.01,7.06,4.29
1.24,Ideal,G,VVS2,61.9,56,7986,6.87,6.83,4.24
1.39,Premium,H,SI1,62.7,58,7986,7.15,7.08,4.46
1.55,Ideal,J,SI1,61.7,54,7987,7.42,7.55,4.62
1.55,Ideal,J,SI1,61.7,54,7987,7.47,7.5,4.62
1.23,Ideal,G,VS2,61.5,54,7988,6.89,6.92,4.25
1.51,Premium,I,SI1,61.8,60,7989,7.23,7.3,4.49
1.19,Very Good,G,VS1,59.1,58,7989,6.96,7.05,4.14
1.52,Ideal,I,SI2,62.5,58,7990,7.29,7.33,4.57
1.51,Ideal,H,SI2,62.3,58,7990,7.27,7.33,4.55
1.53,Very Good,H,SI2,61.4,60,7991,7.36,7.43,4.54
1.51,Very Good,J,VS1,63.5,60,7991,7.29,7.23,4.61
1.39,Premium,G,SI1,61.3,59,7991,7.24,7.15,4.41
1.09,Very Good,G,VS1,59.9,56,7992,6.74,6.81,4.06
1.09,Ideal,G,VS1,61.7,54,7992,6.65,6.7,4.12
1.21,Ideal,G,VS2,61.9,55,7996,6.9,6.84,4.25
1.21,Ideal,G,VS2,61.1,57,7996,6.95,6.85,4.22
1.21,Premium,G,VS2,62.2,58,7996,6.85,6.81,4.25
1.15,Ideal,G,VS1,61.9,56,7999,6.71,6.73,4.16
1.34,Ideal,H,VS2,60.8,55,7999,7.18,7.12,4.35
1.37,Ideal,I,VS2,61.6,55,8000,7.13,7.16,4.4
1.57,Premium,F,SI2,60.2,60,8001,7.49,7.43,4.49
1.52,Fair,H,SI1,65.3,58,8001,7.14,7.1,4.65
1.52,Premium,H,VS2,61,61,8001,7.45,7.38,4.52
1.21,Ideal,G,VS2,61.8,57,8001,6.83,6.79,4.21
1,Very Good,G,IF,58.3,62,8002,6.51,6.57,3.81
1.06,Premium,G,VVS2,59.6,58,8003,6.61,6.65,3.95
1.23,Premium,H,VVS2,62.8,56,8004,6.9,6.82,4.31
1.02,Good,G,VVS1,63.6,58,8005,6.4,6.37,4.06
1.02,Premium,G,VVS1,62.1,59,8005,6.39,6.36,3.96
1.11,Very Good,D,VS2,63.2,57,8006,6.64,6.61,4.18
1,Very Good,F,VVS1,63,56,8008,6.32,6.37,4
1,Premium,G,VVS1,62.1,59,8008,6.29,6.4,3.94
1,Ideal,D,VS2,62.2,54,8008,6.45,6.42,4
1.51,Fair,H,SI1,66.5,56,8010,7.03,6.99,4.66
1.52,Premium,I,SI2,59.8,62,8010,7.47,7.41,4.45
1.02,Good,F,VS1,62.6,54.3,8011,6.41,6.45,4.02
1.02,Ideal,F,VS1,61,56,8011,6.49,6.52,3.97
1.02,Ideal,E,VS1,62.2,54,8011,6.44,6.46,4.01
1.04,Ideal,G,VVS2,62.1,55.1,8012,6.5,6.51,4.04
1.67,Good,J,SI1,58.8,61,8013,7.71,7.73,4.54
1.5,Very Good,J,VS1,62.2,58,8014,7.19,7.27,4.5
1.22,Ideal,H,VVS2,61.8,57,8014,6.85,6.89,4.25
1.22,Ideal,H,VVS2,62.2,56,8014,6.83,6.87,4.26
1.22,Ideal,H,VVS2,62.7,54,8014,6.77,6.83,4.27
1.07,Premium,E,VS1,59.7,61,8015,6.69,6.64,3.98
1.01,Premium,G,VVS2,61.2,58,8016,6.45,6.49,3.96
1.14,Ideal,F,VS2,61.4,56,8017,6.73,6.78,4.14
1.15,Premium,F,VS1,62.7,58,8018,6.72,6.67,4.2
1.42,Good,E,SI2,60.1,61,8019,7.32,7.42,4.43
1.13,Premium,G,VVS2,61.4,58,8019,6.73,6.68,4.12
1.65,Very Good,H,SI2,63.4,59,8020,7.53,7.49,4.76
1.1,Very Good,G,VVS1,61.5,57,8020,6.61,6.66,4.08
1.21,Ideal,G,VS1,62.5,55,8020,6.79,6.8,4.25
1.03,Ideal,G,VVS2,61.6,57,8020,6.51,6.48,4
1,Premium,D,VS1,62.7,60,8020,6.36,6.31,3.97
1.54,Premium,E,SI2,59,62,8020,7.59,7.56,4.47
1.53,Ideal,I,SI2,61.4,58,8021,7.4,7.42,4.55
1.05,Ideal,G,VS1,61.2,57,8022,6.51,6.55,4
1.02,Ideal,F,VS1,61.2,57,8024,6.45,6.52,3.98
1.61,Premium,F,SI1,62.9,59,8024,7.5,7.43,4.69
1.18,Premium,G,VVS2,61,58,8025,6.84,6.79,4.16
1.01,Ideal,G,VVS2,61.1,57,8029,6.49,6.54,3.98
1.01,Ideal,G,VVS2,60.9,56,8029,6.51,6.55,3.98
1.41,Ideal,H,SI2,62,56,8030,7.17,7.24,4.47
1.2,Premium,G,VS2,62.3,56,8030,6.8,6.68,4.2
1.2,Very Good,G,VS2,63.5,57,8032,6.76,6.66,4.26
1.2,Good,G,VS2,57.8,59,8032,7.06,7,4.06
1.2,Very Good,G,VS2,63.1,57,8032,6.74,6.69,4.24
1.51,Premium,H,SI2,61.4,60,8033,7.37,7.31,4.51
1.51,Premium,F,SI1,62,57,8033,7.36,7.28,4.54
1.51,Ideal,J,VS2,61.1,57,8033,7.36,7.3,4.48
1.01,Ideal,G,VVS2,62.2,56,8034,6.41,6.46,4
1.19,Ideal,G,VS1,61.9,55,8034,6.81,6.87,4.22
1.53,Ideal,H,SI2,62.4,58,8034,7.32,7.38,4.59
1.57,Ideal,J,SI1,62,55.6,8035,7.43,7.47,4.62
1.25,Ideal,H,VVS2,60.6,57,8036,7,6.97,4.23
2,Fair,I,SI2,66.8,55,8037,7.75,7.71,5.16
1.38,Ideal,H,VS1,63.6,56,8037,7.05,7,4.47
1.16,Ideal,D,VS2,62.1,57,8038,6.7,6.73,4.17
1.2,Very Good,H,VS1,60.2,57,8039,6.88,6.95,4.16
1.5,Very Good,J,VS1,61.7,58,8039,7.29,7.33,4.51
1.2,Ideal,H,VS1,61.1,58,8039,6.84,6.88,4.19
1.26,Very Good,G,VS2,63.3,57,8040,6.88,6.93,4.37
1.2,Ideal,G,VS2,62.4,54.7,8040,6.79,6.85,4.25
3.01,Premium,I,I1,62.7,58,8040,9.1,8.97,5.67
1.02,Ideal,G,VVS2,61.1,57,8042,6.51,6.48,3.97
1.5,Good,G,SI2,64.3,57,8043,7.2,7.29,4.66
1.06,Premium,E,VS1,63,58,8044,6.49,6.46,4.08
1.06,Ideal,G,VVS2,61,57,8044,6.57,6.55,4
1.5,Fair,H,VS1,64.8,55,8044,7.25,7.2,4.68
1.7,Premium,I,SI1,61.6,56,8044,7.65,7.55,4.68
3,Fair,H,I1,67.1,57,8044,8.93,8.84,5.97
1.56,Good,I,SI2,58.5,61,8048,7.58,7.63,4.45
1.88,Good,J,SI2,57.9,59,8048,8.16,8.11,4.71
1.51,Very Good,J,SI1,63.1,55,8049,7.25,7.32,4.6
0.3,Ideal,E,VVS2,60.7,57,622,4.36,4.41,2.66
0.31,Ideal,E,VS2,61.8,56,622,4.35,4.37,2.69
0.3,Ideal,E,VS2,62.2,57,622,4.26,4.32,2.67
0.4,Ideal,G,SI2,61.9,54,622,4.75,4.8,2.94
0.3,Good,E,VVS2,63,58,622,4.27,4.34,2.71
0.3,Good,E,VVS2,61.1,61,622,4.32,4.36,2.65
0.3,Good,E,VVS2,59.5,59,622,4.35,4.39,2.6
0.27,Very Good,E,VVS2,63,56,622,4.12,4.14,2.6
0.27,Ideal,D,VVS1,62.2,56,622,4.12,4.15,2.57
0.27,Very Good,D,VVS2,62.3,57,622,4.13,4.15,2.58
0.27,Ideal,E,VVS2,61.8,57,622,4.12,4.16,2.56
0.27,Ideal,E,VVS2,62.2,55,622,4.12,4.17,2.58
0.27,Ideal,D,VVS1,61.9,57,622,4.15,4.18,2.58
0.27,Ideal,E,VVS2,62.1,57,622,4.13,4.15,2.57
0.27,Very Good,E,VVS2,59,59,622,4.24,4.27,2.51
0.4,Very Good,D,SI2,63,59,622,4.64,4.69,2.94
0.4,Good,D,SI2,63.1,57,622,4.72,4.75,2.99
0.4,Good,E,SI2,63.9,57,622,4.65,4.71,2.99
0.4,Good,D,SI2,63.4,59,622,4.67,4.7,2.97
0.4,Good,D,SI2,63.8,54,622,4.7,4.73,3.01
0.27,Ideal,D,VVS2,62.6,56,622,4.13,4.15,2.59
0.27,Ideal,E,VVS2,62.5,57,622,4.1,4.13,2.57
0.27,Ideal,E,VVS1,62.3,56,622,4.15,4.17,2.59
0.27,Very Good,D,VVS2,62.2,59,622,4.08,4.12,2.55
0.27,Premium,E,VVS1,60.6,58,622,4.18,4.2,2.54
0.27,Ideal,E,VVS2,62,55,622,4.12,4.14,2.56
0.4,Good,D,SI2,63.1,56,622,4.65,4.67,2.94
0.4,Good,E,SI2,63.1,57,622,4.7,4.72,2.97
0.4,Good,E,SI2,63.5,56,622,4.68,4.71,2.98
0.4,Good,D,SI2,63.9,53,622,4.68,4.71,3
1.51,Ideal,J,SI1,61.4,57,8049,7.38,7.43,4.55
1.51,Very Good,F,SI2,63.4,58,8050,7.29,7.22,4.6
1.13,Ideal,G,VS1,61.5,56,8051,6.71,6.73,4.13
1.47,Very Good,J,VVS2,62.6,60,8055,7.17,7.24,4.51
1.55,Premium,J,VS2,60.7,59,8055,7.5,7.47,4.54
1.55,Ideal,I,SI2,60.7,60,8056,7.49,7.46,4.54
1.2,Premium,G,VS1,62.4,59,8056,6.73,6.69,4.19
1.2,Premium,G,VS1,62.5,59,8056,6.72,6.64,4.19
1.09,Premium,F,VS1,60.9,58,8057,6.63,6.67,4.05
1.51,Very Good,J,VS1,61.4,57,8057,7.3,7.38,4.51
1.58,Very Good,J,SI1,61.6,57,8057,7.47,7.54,4.62
1.09,Ideal,G,VVS2,61.5,55,8057,6.66,6.61,4.08
1.5,Very Good,H,SI1,62.9,56,8058,7.24,7.33,4.58
1.53,Premium,J,VS1,60.1,59,8058,7.47,7.51,4.5
1.53,Very Good,J,VS1,62.8,59,8058,7.31,7.34,4.6
1.1,Ideal,G,VS1,62,58,8060,6.59,6.64,4.1
1.16,Ideal,G,VS2,62.5,55,8061,6.75,6.69,4.2
1.02,Ideal,F,VS1,61.5,56,8061,6.5,6.47,3.99
1.35,Premium,H,VS2,62.2,56,8062,7.13,7.08,4.42
1.22,Premium,G,VS2,61.1,56,8062,6.94,6.85,4.21
1.22,Ideal,G,VS2,62,57,8062,6.88,6.83,4.25
1.53,Ideal,I,SI2,63.7,58,8062,7.31,7.27,4.64
1.35,Premium,H,VS2,61.5,58,8062,7.15,7.09,4.38
1.53,Ideal,I,SI2,61.3,59,8062,7.42,7.39,4.54
1.12,Ideal,F,VS2,61.2,56,8063,6.67,6.73,4.11
1.24,Very Good,G,VS2,59.1,59,8064,7.02,7.08,4.17
2,Fair,H,I1,66.8,57,8064,7.81,7.72,5.19
1.25,Premium,G,VS2,61.9,58,8064,6.91,6.85,4.26
1.5,Premium,E,SI2,61.5,59,8064,7.3,7.23,4.47
1.01,Premium,D,VVS2,62.2,59,8065,6.36,6.3,3.94
1.22,Ideal,G,VS2,62,55,8067,6.91,6.83,4.26
1.51,Ideal,J,VS1,61.6,58,8067,7.35,7.43,4.55
1.22,Premium,G,VS2,60.9,57,8067,6.94,6.89,4.21
1.43,Very Good,H,SI1,62.8,58,8069,7.08,7.13,4.46
1.55,Premium,I,SI2,58.2,59,8069,7.73,7.63,4.47
1.24,Ideal,H,VVS2,62,56,8069,6.92,6.86,4.27
1.12,Very Good,G,VVS1,58.9,60,8072,6.78,6.91,4.03
1.17,Ideal,F,VS2,61.8,55,8072,6.81,6.74,4.19
1.24,Very Good,E,SI1,61.7,59,8073,6.85,6.89,4.24
1.51,Very Good,I,SI1,61.4,60,8073,7.37,7.33,4.51
1.12,Ideal,F,VS2,62.6,56,8074,6.59,6.63,4.14
1.51,Premium,H,SI2,62.8,60,8074,7.26,7.22,4.55
1.4,Ideal,H,SI1,62.4,56,8075,7.11,7.18,4.46
1.62,Ideal,J,SI1,62.4,53.2,8075,7.47,7.51,4.68
1.55,Good,J,VS1,62.3,56,8076,7.44,7.52,4.66
1,Very Good,D,VS1,60.5,59,8077,6.43,6.46,3.9
1.01,Ideal,F,VS1,60.9,57,8077,6.52,6.49,3.96
1.23,Very Good,D,SI1,62.3,57,8079,6.8,6.87,4.26
1.34,Ideal,I,VVS2,61.4,56,8079,7.07,7.09,4.35
1.23,Ideal,H,VVS2,62,55,8079,6.85,6.9,4.26
1,Good,F,VVS2,60.7,62,8079,6.36,6.4,3.87
1.12,Ideal,G,VS1,61.1,56,8080,6.7,6.73,4.1
1.5,Very Good,I,SI1,63.5,59,8081,7.16,7.08,4.52
1.01,Very Good,F,VS1,62.6,56,8081,6.39,6.36,3.99
1.23,Ideal,G,VS2,62.4,57,8085,6.83,6.88,4.28
1.55,Ideal,J,VS2,61.7,55,8088,7.38,7.43,4.58
1.03,Very Good,F,VS1,62.8,54.1,8089,6.39,6.48,4.05
1.04,Very Good,F,VS1,61.6,60,8090,6.49,6.54,4.01
1.51,Ideal,J,VS1,62.7,56,8092,7.3,7.35,4.59
1.54,Ideal,I,SI2,60.3,59,8092,7.43,7.46,4.49
1.06,Ideal,G,VS1,61.5,57,8093,6.54,6.56,4.03
1.06,Ideal,G,VS1,61.7,55,8093,6.53,6.56,4.04
1.06,Ideal,G,VS1,61.3,57,8093,6.53,6.56,4.01
1.06,Ideal,G,VS1,61.7,57,8093,6.52,6.57,4.04
1.34,Ideal,H,VS2,62.1,57,8094,7,7.05,4.36
1.53,Very Good,G,SI2,61.1,58,8095,7.38,7.41,4.52
1.53,Good,I,SI1,63.1,57,8095,7.28,7.34,4.61
1.02,Ideal,E,VS1,60.1,57,8096,6.52,6.59,3.94
1.51,Good,I,SI1,63.7,61,8097,7.11,7.15,4.54
1.21,Ideal,G,VS2,59.8,57,8097,6.98,6.9,4.15
1.04,Premium,G,VVS2,61.8,58,8098,6.51,6.47,4.01
1.25,Premium,H,VS1,61.3,55,8099,6.96,6.93,4.26
1.25,Premium,H,VS1,62,59,8099,6.88,6.84,4.25
1.21,Good,G,VS2,63.8,56,8099,6.74,6.67,4.28
1.05,Ideal,F,VS1,62.3,55,8100,6.53,6.5,4.06
1.01,Very Good,D,VS1,63.1,59,8101,6.37,6.34,4.01
1.42,Premium,H,SI1,62.3,58,8102,7.15,7.19,4.47
1.01,Ideal,G,VVS2,62.2,54,8104,6.41,6.48,4.01
2.01,Very Good,H,I1,61.7,63,8104,7.94,7.91,4.89
2.01,Good,J,SI1,64.3,54,8104,8.05,7.95,5.14
1.31,Premium,H,VS2,61,58,8106,7.1,7.06,4.32
1.02,Ideal,G,VVS2,59.2,58,8107,6.56,6.62,3.9
1.56,Good,J,VS2,62.3,64,8107,7.41,7.36,4.6
1.16,Premium,G,VS1,61.9,58,8107,6.76,6.72,4.17
1.5,Premium,D,SI2,62.6,59,8108,7.2,7.23,4.52
1.5,Good,D,SI2,63.4,59,8108,7.2,7.25,4.58
1.77,Good,J,SI2,63.4,60,8109,7.61,7.65,4.84
1.19,Premium,G,VS1,62.6,58,8109,6.78,6.71,4.22
1.34,Good,H,VS2,59.1,60,8109,7.15,7.19,4.24
1.52,Premium,J,VS1,62,59,8110,7.34,7.36,4.56
1.52,Premium,J,VS1,62.4,59,8110,7.31,7.36,4.58
1.26,Ideal,H,SI1,61.6,56,8110,6.88,6.93,4.26
1.26,Ideal,H,SI1,61.9,57,8110,6.88,6.93,4.27
1.11,Ideal,G,VS1,61.4,57,8112,6.68,6.65,4.09
1.5,Good,H,SI1,64.9,57,8112,7.08,7.15,4.62
1.26,Premium,G,VS2,60.1,61,8113,7.04,6.97,4.21
1.15,Ideal,D,VS2,58.5,57,8114,6.96,6.93,4.06
1.05,Premium,F,VS1,62.3,55,8114,6.57,6.49,4.07
1,Very Good,G,VVS1,63.4,57,8115,6.33,6.36,4.02
1.7,Good,H,SI2,63.6,56,8115,7.51,7.56,4.79
1.47,Premium,F,SI2,59.4,59,8115,7.47,7.42,4.42
1.67,Premium,H,SI2,62.6,60,8118,7.57,7.52,4.72
1.01,Ideal,D,VS2,62.1,58,8119,6.4,6.42,3.98
1.04,Ideal,G,VVS1,62.5,55,8120,6.45,6.54,4.06
1.07,Ideal,G,VVS2,62.8,57,8120,6.56,6.46,4.09
1.01,Premium,G,IF,60,61,8120,6.45,6.41,3.86
1.01,Premium,G,IF,63,60,8120,6.35,6.31,3.99
1.14,Ideal,G,VS1,61.8,55,8121,6.71,6.76,4.16
1.2,Very Good,G,VS2,62.2,58,8124,6.75,6.79,4.21
1.3,Ideal,H,VS2,62.8,56,8124,7.03,6.93,4.38
1,Premium,D,VS1,59.7,60,8124,6.45,6.42,3.84
1.52,Premium,H,SI2,58.7,62,8127,7.6,7.53,4.44
1.5,Very Good,I,SI1,60.3,60,8127,7.46,7.43,4.49
1.23,Premium,G,VS2,61.1,57,8128,6.96,6.91,4.24
1.11,Ideal,G,VS1,62.8,55,8129,6.6,6.65,4.16
1.14,Very Good,F,VS2,59,60,8131,6.84,6.81,4.03
1.52,Ideal,J,SI1,61.9,56,8131,7.37,7.41,4.57
1.21,Ideal,H,VVS2,61.3,57,8131,6.92,6.87,4.23
1.23,Ideal,G,VS2,61.5,54,8133,6.92,6.89,4.25
1.03,Ideal,F,VS1,62.3,57,8133,6.45,6.52,4.04
1.01,Ideal,F,VS1,62.1,54,8133,6.42,6.44,3.99
1.4,Premium,H,SI1,62.1,60,8133,7.21,7.12,4.45
1.57,Fair,H,VS1,67.3,66,8133,7.85,5.75,3.87
1.7,Good,J,VS2,63.6,59,8134,7.53,7.48,4.77
1.51,Premium,E,SI2,59.3,61,8135,7.57,7.51,4.47
1,Very Good,G,VVS2,63,54,8138,6.37,6.43,4.03
1,Very Good,D,VS2,62.4,57,8138,6.36,6.4,3.98
1.6,Ideal,J,SI1,62.2,55,8138,7.46,7.53,4.66
1.28,Premium,G,VS2,62.1,60,8139,6.95,6.89,4.3
1.21,Premium,F,VS2,61.3,58,8139,6.89,6.84,4.21
1.5,Good,G,SI2,57.9,61,8144,7.47,7.51,4.34
1.23,Premium,G,VS1,59.6,60,8145,6.94,6.99,4.15
1.07,Ideal,G,VVS2,62.3,54,8145,6.54,6.56,4.08
1.7,Good,J,VS2,64,58,8146,7.41,7.47,4.76
1.5,Premium,H,SI2,60.8,58,8148,7.39,7.34,4.48
1.5,Very Good,G,SI2,61.3,63,8148,7.28,7.23,4.45
1.09,Ideal,G,VVS2,62,54.8,8149,6.6,6.63,4.1
1.06,Premium,G,VVS2,59.6,58,8149,6.65,6.61,3.95
1.2,Very Good,G,VS1,62.5,57,8150,6.84,6.75,4.25
1.52,Very Good,G,SI2,60.9,57,8151,7.44,7.5,4.55
1,Premium,F,VVS1,63,56,8154,6.37,6.32,4
1,Premium,G,VVS1,62.1,59,8154,6.4,6.29,3.94
1.13,Ideal,F,VS2,60.1,56,8157,6.76,6.84,4.09
1.02,Ideal,F,VS1,61,56,8157,6.52,6.49,3.97
1.02,Ideal,F,VS1,62.6,54,8157,6.45,6.41,4.02
1.09,Ideal,E,VS2,60.6,57,8158,6.66,6.67,4.04
1.5,Good,I,SI1,62.9,60,8161,7.12,7.16,4.49
1.02,Ideal,G,IF,62.5,57,8162,6.37,6.44,4
1.33,Very Good,F,SI1,63.3,56,8163,6.91,6.95,4.39
1.01,Premium,G,VVS2,61.2,58,8163,6.49,6.45,3.96
1.3,Premium,F,SI1,61.4,59,8164,7.01,6.97,4.29
1.5,Good,H,VS2,64.3,60,8165,7.16,7.08,4.58
1.5,Good,H,VS2,63.9,59,8165,7.25,7.18,4.61
1.5,Very Good,E,SI2,62.7,59,8167,7.22,7.3,4.55
1.22,Ideal,H,VS1,62.6,56,8167,6.83,6.87,4.29
1.02,Ideal,G,VVS1,61.5,57,8168,6.44,6.47,3.97
1.03,Ideal,F,VS1,62.1,55,8169,6.47,6.5,4.03
1.06,Premium,G,VVS1,61.1,58,8170,6.53,6.57,4
1.51,Ideal,J,VS1,61.9,58,8170,7.28,7.33,4.52
1,Very Good,F,VVS2,63.2,56,8172,6.35,6.3,4
1.42,Ideal,I,VS2,60.4,55,8173,7.28,7.38,4.43
1.55,Very Good,H,SI2,62.5,61,8174,7.31,7.34,4.58
1.59,Ideal,J,SI1,62.4,55,8176,7.45,7.48,4.66
1,Premium,E,VS1,59.1,59,8176,6.56,6.51,3.86
1.54,Premium,G,SI1,63,59,8176,7.31,7.26,4.59
1.2,Premium,G,VS1,58.4,61,8177,6.95,6.91,4.05
1.5,Good,F,SI2,59.7,61,8181,7.39,7.44,4.43
1.02,Premium,D,VS1,60.3,58,8181,6.57,6.49,3.94
1.02,Premium,D,VS1,61.3,58,8181,6.52,6.47,3.98
1.02,Ideal,D,VS1,60.5,56,8181,6.55,6.48,3.94
1.62,Premium,J,SI1,62,60,8183,7.52,7.44,4.64
1.6,Premium,H,SI2,59.4,59,8184,7.55,7.6,4.5
1.5,Very Good,H,SI2,62.5,60,8184,7.25,7.32,4.55
1.11,Very Good,G,SI1,60.7,59,8184,6.6,6.65,4.02
1.16,Ideal,D,VS2,62.1,57,8185,6.73,6.7,4.17
1.12,Ideal,G,VS2,60.9,56,8189,6.7,6.74,4.09
1.5,Premium,E,SI2,61.7,58,8190,7.2,7.17,4.43
1.5,Premium,E,SI2,58,60,8190,7.52,7.47,4.35
1.5,Premium,I,SI1,58.6,62,8190,7.46,7.43,4.36
1.5,Premium,G,SI2,62,62,8190,7.31,7.25,4.51
1.5,Fair,E,SI2,59.9,68,8190,7.39,7.3,4.4
1.5,Good,G,SI2,64.3,57,8190,7.29,7.2,4.66
1.04,Very Good,D,VS1,62.3,59,8192,6.39,6.48,4.01
1.52,Very Good,F,SI2,62.3,59,8192,7.33,7.37,4.58
1.13,Ideal,G,VVS2,60.7,57,8192,6.74,6.81,4.11
1.51,Ideal,I,SI1,62.7,57,8193,7.35,7.3,4.59
1.52,Very Good,H,SI2,62.7,57,8194,7.32,7.36,4.6
1.48,Very Good,I,VS2,63,58,8196,7.16,7.19,4.52
1.21,Premium,F,VS1,61.6,58,8196,6.88,6.82,4.22
1.01,Premium,D,VS1,61.8,54,8201,6.44,6.38,3.96
1.52,Premium,J,VVS2,58.3,62,8202,7.61,7.49,4.4
1.07,Ideal,D,VS2,62.5,57,8202,6.48,6.51,4.06
1.12,Ideal,G,VS1,61.5,56,8202,6.7,6.73,4.13
1.51,Ideal,J,VS2,61.5,56,8203,7.37,7.4,4.54
1.09,Premium,F,VS1,60.9,58,8204,6.67,6.63,4.05
1.51,Premium,J,VS1,61.4,57,8204,7.38,7.3,4.51
1.53,Premium,J,VS1,62.8,59,8205,7.34,7.31,4.6
1.53,Premium,J,VS1,60.1,59,8205,7.51,7.47,4.5
1.54,Ideal,J,VS1,62,53,8207,7.41,7.49,4.62
1.51,Good,I,VS1,65.8,57,8210,7.09,7.17,4.69
1.01,Very Good,F,VVS2,59.8,58,8212,6.47,6.55,3.89
1.07,Ideal,G,VVS2,62.8,54,8212,6.51,6.55,4.1
1.41,Good,F,SI1,63.7,58,8212,7.06,7.01,4.48
1.22,Ideal,G,VS2,61.4,56,8213,6.88,6.9,4.23
1.22,Premium,G,VS2,61.8,58,8213,6.84,6.91,4.25
1.51,Very Good,I,SI1,63.5,57,8214,7.19,7.24,4.58
1.51,Very Good,I,SI1,62.8,59,8214,7.17,7.26,4.53
1,Very Good,F,VVS2,61.4,58,8216,6.36,6.41,3.92
1.52,Premium,J,VS1,61.2,59,8216,7.36,7.39,4.51
1.4,Fair,F,VS2,66.5,56,8216,6.83,6.76,4.52
1.52,Very Good,J,VS1,62.2,55,8217,7.35,7.42,4.59
1,Ideal,G,VVS1,61.9,57,8217,6.39,6.43,3.97
1.51,Ideal,J,VS2,62,56,8217,7.3,7.34,4.54
1.06,Very Good,E,VS1,59.6,60,8219,6.68,6.75,4
1.12,Premium,G,VVS1,58.9,60,8219,6.91,6.78,4.03
1.51,Very Good,H,VS2,63.1,57,8219,7.24,7.21,4.56
1.73,Good,E,I1,63.6,59,8220,7.56,7.6,4.82
1.62,Ideal,I,SI2,62.2,57,8220,7.51,7.57,4.69
2.33,Premium,H,I1,60.7,58,8220,8.64,8.56,5.22
1.57,Ideal,J,SI1,62.4,57,8221,7.51,7.4,4.65
1.51,Very Good,I,VS2,63.1,56,8223,7.26,7.32,4.6
1.4,Premium,H,SI1,62.4,57,8223,7.19,7.11,4.46
1.4,Premium,H,SI1,62.2,58,8223,7.16,7.12,4.44
1.5,Ideal,H,VVS2,61.3,56,8224,7.37,7.28,4.49
1.04,Very Good,G,IF,61.7,58,8225,6.47,6.6,4.03
1.02,Ideal,E,VS2,61,56,8225,6.53,6.51,3.98
1.25,Ideal,G,SI1,60.7,56,8226,6.98,7.05,4.26
1,Very Good,F,VVS2,61.1,55,8227,6.49,6.51,3.97
1.31,Ideal,F,SI1,62.4,57,8227,6.96,6.88,4.32
1.59,Ideal,J,VVS2,60.3,57,8227,7.65,7.58,4.59
1.57,Ideal,I,SI2,62.6,58,8228,7.38,7.41,4.63
1.32,Ideal,G,SI1,62.1,57,8231,7.02,7.05,4.37
1.2,Very Good,F,VS2,61.1,58,8232,6.82,6.86,4.18
1.5,Premium,F,SI2,63,59,8232,7.24,7.2,4.55
1.11,Very Good,F,VS1,62.1,58,8233,6.63,6.7,4.14
1.11,Ideal,F,VS2,60.9,57,8233,6.69,6.75,4.09
1.23,Ideal,G,VS2,62.4,57,8233,6.88,6.83,4.28
1.27,Very Good,H,VS1,60.7,54,8235,7.01,7.05,4.27
1.07,Ideal,G,VVS2,62.4,55.6,8235,6.48,6.55,4.07
1.03,Ideal,F,VS1,62.8,54,8237,6.48,6.39,4.05
1.26,Ideal,H,VS1,60.9,57,8238,6.97,6.99,4.25
1,Ideal,G,VVS2,61.2,56,8239,6.47,6.5,3.97
0.9,Good,D,VVS1,62.9,58,8239,6.01,6.1,3.81
1.53,Very Good,I,SI1,63.1,57,8242,7.34,7.28,4.61
1.51,Good,I,SI1,62.5,57,8242,7.25,7.32,4.55
1.51,Good,H,SI2,61,56,8243,7.29,7.37,4.47
1.02,Ideal,E,VS1,60.1,57,8244,6.59,6.52,3.94
1.51,Good,I,SI1,63.7,61,8245,7.15,7.11,4.54
1.51,Good,F,SI2,63.8,59,8245,7.22,7.18,4.59
1,Very Good,G,VVS1,62.3,55,8246,6.34,6.44,3.98
1.03,Ideal,G,VVS1,62,56,8248,6.5,6.54,4.04
1.12,Ideal,F,VS2,62.1,56,8251,6.63,6.67,4.13
1.01,Ideal,G,VVS2,62.2,54,8252,6.48,6.41,4.01
1.13,Ideal,E,VS2,62,54,8253,6.66,6.7,4.14
1.54,Ideal,I,SI2,62,59,8254,7.33,7.38,4.56
1.5,Good,I,SI1,61.1,63,8254,7.27,7.34,4.46
1.17,Premium,F,VS2,60.2,58,8256,6.88,6.85,4.13
1.26,Ideal,D,VS2,62.5,57,8256,6.9,6.85,4.3
1.27,Ideal,D,SI1,62.1,55,8256,6.92,6.96,4.31
1.3,Premium,F,SI1,61.1,53,8256,7.17,7.04,4.34
1.35,Very Good,G,VS1,63.4,56,8256,7.09,7.01,4.47
2.04,Very Good,I,I1,59.3,61,8257,8.25,8.3,4.91
1.24,Ideal,H,VS2,60.8,56,8257,6.92,6.96,4.22
1.77,Very Good,J,SI2,63.4,60,8257,7.65,7.61,4.84
1.5,Good,I,SI1,63.1,54,8258,7.31,7.34,4.62
1.54,Premium,I,SI1,60.9,59,8258,7.42,7.46,4.53
1.52,Premium,J,VS1,62.4,59,8258,7.36,7.31,4.58
1.52,Premium,J,VS1,62,59,8258,7.36,7.34,4.56
1.51,Fair,H,SI1,65.8,62,8260,7.1,7.06,4.66
1.31,Very Good,H,VS2,60.4,58,8261,7.04,7.09,4.27
1.31,Ideal,H,VS2,61.8,57,8261,7.02,7.06,4.35
1.7,Premium,H,SI2,59.8,61,8263,7.67,7.62,4.57
1.72,Fair,D,SI2,64.6,58,8264,7.53,7.46,4.84
1.01,Very Good,F,VVS2,63,56,8265,6.34,6.4,4.01
1.19,Ideal,F,VS2,62,57,8265,6.76,6.78,4.2
1.01,Premium,D,VS1,62.4,58,8265,6.38,6.41,3.99
1.2,Premium,F,VS2,62.8,62,8266,6.69,6.62,4.18
1.17,Ideal,H,IF,61,53,8266,6.89,6.85,4.19
1.4,Very Good,D,SI2,61.8,54,8268,7.16,7.21,4.44
1.04,Ideal,G,VVS1,62.5,55,8268,6.54,6.45,4.06
1.53,Very Good,E,SI2,59.3,60,8270,7.44,7.46,4.42
1.39,Ideal,I,VVS2,61.6,53,8271,7.21,7.22,4.44
1.51,Good,J,VS1,61.5,59,8271,7.26,7.31,4.48
1.54,Ideal,J,VS2,61.9,57,8275,7.39,7.5,4.6
1.41,Ideal,J,VS1,61.6,56,8275,7.19,7.22,4.44
1.2,Ideal,H,VS1,61.6,57,8275,6.82,6.85,4.21
1.5,Good,J,VVS2,63.3,57,8276,7.25,7.28,4.6
1.12,Ideal,D,VS2,62,55,8279,6.63,6.66,4.12
1.01,Ideal,D,VS2,62.6,55,8279,6.42,6.46,4.03
1.2,Premium,E,VS2,62,59,8279,6.78,6.71,4.18
1.1,Ideal,F,VS1,61.7,57,8279,6.67,6.65,4.11
1.52,Good,G,SI2,63,61,8280,7.25,7.28,4.58
1.25,Premium,G,VVS1,58.2,61,8281,7.1,7.05,4.12
1.09,Ideal,G,VVS2,62.5,56,8282,6.54,6.58,4.1
1.7,Good,J,VS2,63.6,59,8282,7.53,7.48,4.77
1.51,Ideal,G,SI1,61.6,56,8283,7.34,7.25,4.5
1.51,Ideal,G,SI1,61.6,56,8283,7.34,7.25,4.5
1.41,Very Good,H,SI1,62.6,59,8283,7.08,7.14,4.45
1.03,Ideal,E,VS1,61.7,56,8284,6.47,6.53,4.01
1.06,Ideal,G,VS1,61.1,57,8285,6.54,6.61,4.02
0.4,Ideal,D,SI2,61.3,56,622,4.72,4.77,2.91
0.4,Very Good,E,SI2,58.7,59,622,4.78,4.82,2.82
0.33,Very Good,G,VS2,61.5,59.4,623,4.45,4.49,2.75
0.27,Ideal,H,VVS2,62.1,57,623,4.15,4.1,2.56
0.27,Premium,H,VVS2,60.7,59,623,4.21,4.19,2.55
0.32,Very Good,H,VS1,58.9,63,624,4.46,4.4,2.61
0.32,Very Good,F,VS2,61.5,59.7,624,4.32,4.39,2.68
0.3,Ideal,G,VS1,61.8,56,624,4.31,4.33,2.67
0.3,Ideal,G,VS1,63.1,55,624,4.25,4.31,2.7
0.3,Ideal,G,VS1,62,56,624,4.29,4.32,2.67
0.3,Ideal,G,VS1,62.2,55,624,4.28,4.31,2.67
0.3,Ideal,G,VS1,60.9,57,624,4.34,4.36,2.65
0.3,Ideal,G,VS1,61.8,57,624,4.29,4.32,2.66
0.3,Ideal,G,VS1,62.4,57,624,4.3,4.32,2.69
0.3,Ideal,G,VS1,60.6,57,624,4.38,4.4,2.66
0.4,Ideal,I,SI1,62.3,55,624,4.72,4.75,2.95
0.25,Ideal,G,IF,61.7,56,624,4.04,4.1,2.51
0.36,Very Good,I,SI1,63.1,57,624,4.55,4.51,2.86
0.36,Premium,I,SI1,60.4,60,624,4.62,4.58,2.78
0.37,Ideal,J,VS1,62.6,57,624,4.57,4.54,2.85
0.37,Ideal,J,VS1,62.4,55,624,4.64,4.59,2.88
0.37,Very Good,G,SI2,63.4,57,624,4.57,4.55,2.89
0.37,Very Good,G,SI2,63.3,55,624,4.61,4.58,2.91
0.37,Premium,F,SI2,60.2,60,624,4.7,4.6,2.8
0.37,Premium,F,SI2,60.7,57,624,4.67,4.62,2.82
0.33,Premium,H,VS2,58.8,62,624,4.53,4.49,2.65
0.32,Premium,E,SI1,62,60,624,4.43,4.38,2.73
0.28,Good,E,VS2,63.7,60,625,4.23,4.18,2.68
0.42,Very Good,D,SI2,58.6,58,625,4.91,4.98,2.9
0.41,Ideal,I,VS2,61.4,54,625,4.81,4.83,2.96
1.21,Ideal,H,VVS1,62.8,55,8286,6.78,6.82,4.27
1.01,Premium,D,VS1,60,58,8286,6.6,6.54,3.94
1.51,Fair,F,SI2,61.8,66,8287,7.18,7.16,4.43
1.51,Fair,I,VS2,64.6,58,8287,7.19,7.15,4.63
1.51,Ideal,H,SI1,61.9,57,8287,7.37,7.32,4.55
1.61,Very Good,E,SI2,61.9,57,8288,7.44,7.48,4.62
1.53,Ideal,H,SI1,61.9,58,8289,7.38,7.42,4.58
1.5,Very Good,E,SI2,62.2,58,8291,7.31,7.35,4.56
1.5,Very Good,I,SI1,63.1,59,8291,7.16,7.23,4.54
1.5,Ideal,I,SI1,62.7,57,8291,7.21,7.3,4.55
1.23,Premium,G,VS1,59.6,60,8293,6.99,6.94,4.15
1.21,Premium,G,VS2,60.3,60,8294,6.89,6.83,4.14
1.21,Premium,H,IF,62.2,58,8294,6.8,6.83,4.24
1.21,Ideal,G,VS2,61.5,56,8294,6.83,6.88,4.22
1.09,Ideal,G,VVS2,61.2,57,8295,6.62,6.66,4.06
1.09,Ideal,G,VS1,60.4,58,8296,6.67,6.7,4.04
1.24,Very Good,G,VS1,62,55,8298,6.89,6.95,4.29
1.51,Ideal,J,VS1,61.3,61,8298,7.34,7.4,4.52
1.24,Ideal,F,VS2,62.2,56,8298,6.94,6.88,4.3
1.52,Premium,I,SI1,61.2,60,8299,7.41,7.36,4.52
1.52,Ideal,E,SI2,61,56,8299,7.45,7.41,4.53
1.24,Ideal,H,VS1,61.6,56,8299,6.88,6.91,4.25
1.24,Ideal,H,VS1,62.1,56,8299,6.85,6.88,4.26
1.52,Premium,G,SI2,60.9,57,8299,7.5,7.44,4.55
1.54,Very Good,H,SI2,62.3,56,8301,7.33,7.38,4.58
1.55,Ideal,J,SI1,62.4,57,8301,7.5,7.45,4.67
1.02,Ideal,E,VS1,62.2,54,8303,6.43,6.46,4.01
1.21,Premium,G,VS1,59.5,58,8305,6.97,7.01,4.16
1.09,Ideal,G,VS1,60.3,57,8305,6.68,6.73,4.04
1.02,Ideal,G,IF,62.5,57,8311,6.44,6.37,4
1.51,Premium,D,SI2,61.4,56,8311,7.37,7.32,4.51
1.27,Very Good,D,SI1,62.5,58,8312,6.87,6.92,4.31
1.51,Good,I,SI1,63.7,58,8313,7.22,7.26,4.61
1.22,Ideal,G,VS1,61.3,56,8313,6.93,6.88,4.23
1.47,Premium,F,SI2,61.6,60,8314,7.38,7.33,4.53
1.14,Very Good,E,VS1,63.1,59,8315,6.63,6.61,4.18
1.5,Good,I,VS2,61.9,60,8316,7.25,7.28,4.5
1.5,Premium,G,SI2,60.7,58,8316,7.39,7.33,4.47
1.5,Premium,E,SI2,62.7,59,8316,7.3,7.22,4.55
1.02,Very Good,E,VS1,62.9,54,8317,6.38,6.46,4.04
1.56,Very Good,H,SI2,59.9,59,8317,7.47,7.52,4.49
1.02,Ideal,G,VVS1,61.5,57,8317,6.47,6.44,3.97
1.01,Premium,F,VVS2,61.8,59,8319,6.46,6.42,3.98
1.06,Premium,G,VVS1,61.1,58,8319,6.57,6.53,4
1.2,Ideal,G,VS2,59.9,61,8321,6.85,6.88,4.11
1.08,Ideal,F,VS1,62.1,53,8321,6.6,6.64,4.11
1.72,Premium,J,SI1,61.7,58,8324,7.71,7.81,4.79
1.56,Premium,J,VS1,61.1,59,8324,7.49,7.52,4.58
1.59,Ideal,J,SI1,62.4,55,8325,7.48,7.45,4.66
1.11,Premium,E,VS1,61.2,58,8329,6.69,6.65,4.08
1.01,Very Good,F,VS2,62,60,8330,6.36,6.39,3.95
1.6,Premium,H,SI2,59.4,59,8333,7.6,7.55,4.5
1.5,Premium,H,SI2,62.5,60,8333,7.32,7.25,4.55
1,Premium,D,VS1,61.9,55,8333,6.4,6.36,3.95
1,Premium,D,VS1,62.2,55,8333,6.46,6.4,4
1.2,Very Good,F,VS2,62.6,56,8334,6.73,6.78,4.23
1.2,Ideal,F,VS2,62.3,55,8334,6.79,6.83,4.24
1.65,Ideal,J,SI1,62.5,56,8334,7.59,7.54,4.73
1.01,Good,D,VS1,64.1,55,8339,6.29,6.38,4.06
1.22,Very Good,G,VS2,62.3,58,8340,6.79,6.82,4.24
1.04,Premium,D,VS1,62.3,59,8341,6.48,6.39,4.01
1.04,Ideal,D,VS1,59.1,56,8341,6.65,6.59,3.91
1.51,Ideal,I,SI1,61.1,59,8342,7.4,7.37,4.51
1.52,Premium,F,SI2,62.3,59,8342,7.37,7.33,4.58
1.06,Ideal,F,VS1,61.7,57,8344,6.55,6.57,4.05
1.14,Ideal,G,VS1,61.4,57,8346,6.75,6.81,4.16
1.16,Premium,E,VS1,58.7,58,8346,6.89,6.87,4.04
1.02,Ideal,D,VS1,62.6,57,8347,6.4,6.44,4.02
1.08,Ideal,G,VVS1,61.6,56,8347,6.6,6.65,4.08
1.5,Good,J,VS1,60.7,61,8347,7.27,7.3,4.42
1.01,Very Good,E,VS1,59.4,59,8348,6.52,6.54,3.88
1.21,Ideal,E,VS1,62.2,57,8348,6.83,6.8,4.24
1.21,Ideal,F,VS2,61.5,56,8348,6.87,6.83,4.21
1.15,Very Good,G,VVS2,58.4,59,8349,6.84,6.92,4.02
1.13,Premium,E,VS1,61.1,59,8353,6.72,6.69,4.1
1.51,Fair,I,SI1,68.3,57,8355,6.95,6.87,4.72
1.64,Very Good,F,SI2,63.2,57,8357,7.56,7.47,4.75
1.13,Very Good,E,VS2,61.9,61,8358,6.61,6.64,4.1
1.06,Ideal,G,VVS2,61.7,56,8358,6.59,6.56,4.06
1,Good,E,VVS1,63.4,59,8359,6.27,6.24,4
1.07,Premium,D,VS1,62,60,8359,6.55,6.49,4.04
1.16,Very Good,G,VVS2,62.3,59,8361,6.69,6.72,4.18
1.81,Fair,J,SI1,56.2,62,8362,8.14,8.09,4.56
1.22,Premium,G,VS2,61.8,58,8362,6.91,6.84,4.25
1.22,Ideal,G,VS2,61.4,56,8362,6.9,6.88,4.23
1.57,Ideal,J,VS2,62.3,54,8363,7.5,7.49,4.67
1.74,Premium,J,VS2,61.9,62,8364,7.62,7.54,4.7
1.09,Ideal,G,VVS2,60.6,57,8364,6.62,6.7,4.05
1.25,Ideal,H,VS1,62.1,57,8365,6.89,6.92,4.29
1.53,Premium,H,SI1,62.4,60,8365,7.34,7.31,4.57
1.71,Premium,I,SI2,59,60,8366,7.86,7.83,4.63
1.52,Premium,J,VS1,61.2,59,8366,7.39,7.36,4.51
1,Ideal,G,VVS1,61.9,57,8366,6.43,6.39,3.97
1.52,Premium,D,SI2,58.6,62,8366,7.56,7.45,4.41
1.73,Good,E,I1,63.6,59,8370,7.6,7.56,4.82
1.51,Premium,J,VS1,62.1,58,8371,7.36,7.4,4.58
1.5,Ideal,I,SI1,62.3,56,8371,7.35,7.41,4.6
1.51,Very Good,H,SI2,60.8,56,8372,7.41,7.46,4.52
1.01,Very Good,G,VVS1,61.8,59,8373,6.47,6.41,3.98
1,Good,D,VVS2,60.2,62,8374,6.42,6.46,3.88
1.03,Very Good,F,VVS2,61.3,57,8375,6.49,6.53,3.99
1.22,Very Good,G,VS2,62.7,58,8377,6.8,6.72,4.24
1.6,Ideal,I,SI2,61.9,57,8377,7.48,7.51,4.64
1.6,Very Good,F,SI2,60.5,60,8377,7.52,7.55,4.56
1.2,Good,E,VS2,63.6,57,8380,6.74,6.68,4.27
1.23,Premium,G,VS1,62.8,56,8381,6.86,6.81,4.29
1.23,Premium,G,VS1,61.8,58,8381,6.88,6.84,4.24
1.75,Good,H,SI2,64.1,56,8385,7.59,7.55,4.85
1.03,Ideal,G,VVS2,60.7,57,8385,6.5,6.58,3.97
1.33,Ideal,H,VS2,59.5,57,8385,7.18,7.23,4.29
1.2,Good,G,VS1,63.6,58,8387,6.59,6.56,4.18
1.51,Fair,F,SI1,65.8,56,8387,7.16,7.12,4.7
1.51,Premium,H,SI2,62.4,58,8388,7.36,7.31,4.58
1.5,Very Good,J,VVS2,63.3,56,8391,7.18,7.29,4.58
1.31,Ideal,H,VS1,62.4,56,8392,7,6.98,4.36
1.07,Ideal,G,VVS2,62.4,54,8393,6.51,6.56,4.08
1.12,Ideal,G,VS1,62.5,54,8394,6.65,6.69,4.17
1.51,Ideal,I,SI1,61.2,60,8396,7.39,7.37,4.52
1.51,Ideal,I,SI1,59.4,61,8396,7.52,7.46,4.45
1.7,Premium,F,SI2,60.2,61,8397,7.79,7.68,4.66
1.03,Ideal,G,VVS1,62,56,8398,6.54,6.5,4.04
1.5,Premium,F,SI1,60,60,8400,7.48,7.42,4.47
1.51,Ideal,I,SI1,62.7,57,8400,7.35,7.3,4.59
1.11,Ideal,G,VS2,61.6,56,8400,6.62,6.65,4.09
1,Premium,F,VVS2,61.2,60,8400,6.43,6.38,3.92
1.25,Ideal,E,VS2,62.6,56,8400,6.89,6.84,4.3
1.01,Very Good,E,VVS2,61.6,58,8401,6.4,6.46,3.96
1.02,Ideal,G,VVS2,62.1,57,8401,6.43,6.45,4
1.02,Ideal,G,VVS2,61.6,57,8401,6.45,6.47,3.98
1.02,Ideal,G,VVS2,62.7,57,8401,6.41,6.45,4.03
1.21,Premium,G,VS2,62.8,59,8402,6.84,6.76,4.27
1.21,Very Good,F,VS2,62.9,54,8403,6.78,6.82,4.28
1.01,Very Good,E,VS1,60.4,60,8403,6.43,6.48,3.9
1.13,Ideal,E,VS2,62,54,8404,6.7,6.66,4.14
1.23,Very Good,H,VVS1,62.5,58,8405,6.77,6.82,4.25
1.08,Ideal,F,VS1,61.4,55,8405,6.61,6.69,4.08
1.12,Very Good,G,VVS1,60.9,57,8408,6.67,6.72,4.08
1.52,Very Good,H,SI2,62.8,58,8408,7.25,7.3,4.57
2.04,Premium,I,I1,59.3,61,8408,8.3,8.25,4.91
1.5,Very Good,I,SI1,63.1,54,8408,7.34,7.31,4.62
1.54,Premium,E,SI2,59.9,60,8408,7.49,7.38,4.46
1.18,Very Good,G,VS2,62.7,54.7,8411,6.74,6.77,4.23
1.22,Ideal,H,VS1,61.9,54,8411,6.88,6.9,4.26
1.06,Ideal,E,VS1,62.1,57,8413,6.49,6.52,4.04
1.2,Ideal,G,VS2,62.8,54,8414,6.75,6.79,4.25
1.18,Ideal,G,VS1,61.3,56,8414,6.81,6.83,4.17
1.01,Good,E,VVS2,63.9,58,8415,6.31,6.37,4.05
1.5,Very Good,J,VVS1,62.3,62,8415,7.16,7.23,4.48
1.06,Very Good,G,IF,61.2,57,8415,6.52,6.56,4
1.04,Ideal,F,VS2,61.6,56,8415,6.53,6.55,4.03
1.19,Ideal,F,VS2,62,57,8415,6.78,6.76,4.2
1.3,Ideal,G,SI1,61.6,55,8416,7.01,7.05,4.33
1.01,Premium,D,VS1,62.4,58,8416,6.41,6.38,3.99
1.22,Premium,F,VS2,59.8,59,8417,6.96,6.92,4.15
1.6,Ideal,J,SI1,62.8,55,8418,7.48,7.42,4.68
1.57,Very Good,G,SI2,61.1,61,8419,7.43,7.46,4.55
2.68,Premium,G,I1,58.6,60,8419,9.11,9.07,5.33
1.4,Premium,D,SI2,61.8,54,8419,7.21,7.16,4.44
1.46,Ideal,E,SI2,62.3,55,8421,7.29,7.25,4.53
1.09,Ideal,F,VS1,60.6,57,8422,6.62,6.64,4.02
1.37,Premium,H,VS1,60.9,59,8424,7.17,7.24,4.39
1.44,Premium,I,VS1,62.6,59,8426,7.08,7.14,4.45
1.52,Premium,J,VS1,62.2,59,8426,7.32,7.38,4.57
1.52,Premium,J,VVS2,58.3,62,8427,7.61,7.49,4.4
1.5,Very Good,J,VVS2,63.3,57,8427,7.28,7.25,4.6
1.31,Ideal,H,VS1,61.5,56,8429,7,7.06,4.32
1.31,Ideal,H,VS1,61.5,55,8429,7.02,7.05,4.33
1.13,Ideal,E,VS2,61.4,58,8430,6.71,6.74,4.13
1.12,Good,F,VVS2,57.9,57,8430,6.86,6.83,3.96
1.12,Ideal,D,VS2,62,55,8430,6.66,6.63,4.12
1.23,Ideal,H,IF,61.3,57,8431,6.87,6.92,4.23
1.5,Very Good,F,SI2,62.3,60,8431,7.29,7.34,4.56
1.5,Premium,I,VS2,62.3,59,8431,7.24,7.3,4.53
1.23,Premium,G,VS2,62,59,8431,6.87,6.8,4.24
1.2,Very Good,F,VS2,61.1,59,8436,6.81,6.87,4.18
1.2,Ideal,F,VS2,62.3,56,8436,6.79,6.82,4.24
1.03,Very Good,D,VS1,60.5,60,8437,6.52,6.57,3.96
1.24,Very Good,H,VVS2,61.3,55,8438,6.94,6.96,4.26
1.59,Good,G,SI1,63.8,56,8441,7.41,7.34,4.71
1.2,Good,G,VS1,63.4,56,8442,6.7,6.74,4.26
1.2,Premium,G,VS1,60.2,60,8442,6.82,6.87,4.12
1.2,Ideal,G,VS1,62.3,56,8442,6.77,6.82,4.23
1.2,Very Good,G,VS1,60.2,60,8442,6.91,7,4.19
1.2,Good,G,VS1,62.8,59,8442,6.64,6.7,4.19
2.25,Very Good,J,SI2,60.6,63,8442,8.45,8.38,5.1
1.51,Very Good,H,SI2,60.2,59,8444,7.33,7.43,4.44
1.02,Premium,F,VVS2,61.5,60,8445,6.5,6.45,3.98
1.21,Premium,H,IF,62.2,58,8446,6.83,6.8,4.24
1,Premium,F,VVS2,59.9,60,8448,6.46,6.5,3.88
1.24,Premium,G,VS1,62,55,8449,6.95,6.89,4.29
1.24,Ideal,G,VS1,61.1,57,8449,6.98,6.91,4.24
1.05,Ideal,D,VS2,61,56,8451,6.54,6.61,4.01
1.06,Ideal,G,VS1,62.3,55,8451,6.5,6.53,4.06
1.21,Ideal,F,VS2,61.2,57,8452,6.87,6.82,4.19
1.2,Very Good,F,VS2,62.9,55,8454,6.75,6.8,4.26
1.03,Ideal,G,VVS1,62.4,57,8454,6.39,6.47,4.01
1.09,Premium,G,VVS2,59.5,61,8454,6.74,6.7,4
1.53,Very Good,G,SI2,62.1,61,8455,7.28,7.3,4.53
1.65,Ideal,E,SI2,58.7,56,8455,7.76,7.73,4.55
1.21,Premium,G,VS1,59.5,58,8456,7.01,6.97,4.16
1.21,Premium,G,VS1,62.7,58,8456,6.79,6.74,4.24
1.24,Ideal,D,SI1,60.4,57,8457,6.95,7.02,4.22
1.8,Premium,I,SI2,61.8,59,8457,7.9,7.8,4.85
1.28,Premium,G,VS2,61.4,58,8458,7,6.92,4.27
1.51,Very Good,F,SI2,63.2,60,8462,7.2,7.27,4.57
1.27,Premium,D,SI1,62.5,58,8463,6.92,6.87,4.31
1.51,Good,I,SI1,63.7,58,8464,7.26,7.22,4.61
1.23,Ideal,G,VS1,61.8,57,8465,6.89,6.86,4.25
1.4,Premium,I,VVS2,62,58,8467,7.22,7.16,4.46
1.5,Good,J,VS1,64.1,55,8467,7.23,7.13,4.6
1,Very Good,F,VVS2,63.2,56,8467,6.42,6.37,4.04
2.5,Premium,H,I1,59.9,60,8467,8.75,8.67,5.22
1.03,Premium,D,VVS2,61.7,59,8469,6.43,6.48,3.98
1.56,Very Good,I,SI1,60.2,61,8470,7.5,7.59,4.54
1.01,Premium,F,VVS2,61.8,59,8470,6.46,6.42,3.98
1.5,Ideal,H,SI2,62.4,58,8471,7.29,7.26,4.54
1.5,Very Good,I,SI1,60.7,58,8475,7.34,7.4,4.47
1.56,Premium,J,VS1,61.1,59,8476,7.52,7.49,4.58
1.39,Premium,F,SI1,62.1,58,8476,7.1,7.16,4.43
1.52,Premium,I,SI1,61.9,58,8477,7.37,7.42,4.58
1.54,Ideal,J,VS2,62.7,56,8479,7.32,7.36,4.6
1.34,Premium,E,VS2,58.2,60,8480,7.26,7.21,4.21
1.08,Ideal,D,VS2,61.9,58,8481,6.54,6.57,4.06
1.03,Ideal,G,VVS2,61.2,57,8483,6.48,6.52,3.98
1.22,Ideal,G,VS2,59.9,56,8485,7.01,6.97,4.19
1.02,Ideal,G,VVS1,62.6,56,8485,6.39,6.42,4.01
1.23,Premium,F,VS2,62.9,58,8486,6.82,6.76,4.27
1.2,Ideal,F,VS2,62.3,55,8486,6.83,6.79,4.24
1.2,Ideal,F,VS2,62.6,56,8486,6.78,6.73,4.23
1.66,Premium,J,SI1,60.7,58,8487,7.72,7.63,4.66
1.06,Ideal,G,VVS1,61.6,57,8488,6.53,6.55,4.03
1.02,Premium,G,IF,61.8,59,8489,6.41,6.46,3.98
1.24,Ideal,H,VVS1,62.3,54,8489,6.88,6.9,4.29
1.5,Premium,H,SI2,62.3,60,8490,7.22,7.3,4.52
1.2,Very Good,G,VS2,63.2,56,8491,6.82,6.75,4.29
1.07,Ideal,G,VVS2,61.8,55,8491,6.57,6.61,4.07
2.34,Premium,I,I1,61.5,60,8491,8.47,8.43,5.2
1.5,Good,E,SI2,64.5,58,8492,7.06,7.11,4.57
1.66,Good,J,VS2,64.4,54,8496,7.45,7.54,4.83
1.55,Ideal,J,VS2,61.4,55,8498,7.41,7.49,4.58
1.25,Ideal,H,VS2,61.1,55,8498,6.94,6.97,4.25
1.53,Premium,H,SI2,62.5,59,8499,7.4,7.36,4.61
1.53,Ideal,H,SI2,61.9,57,8499,7.42,7.34,4.57
1.15,Premium,G,VVS2,58.4,59,8501,6.92,6.84,4.02
1.32,Ideal,I,VVS1,61,56,8501,7.09,7.07,4.32
1.21,Premium,G,VS2,61,58,8504,6.88,6.82,4.18
1.24,Ideal,G,VS2,62.1,56,8504,6.87,6.91,4.28
1.21,Very Good,F,VS2,61.6,58,8505,6.79,6.88,4.21
1.7,Ideal,J,SI2,60.5,57,8505,7.74,7.84,4.71
1.11,Ideal,H,VVS1,60.8,56,8508,6.68,6.76,4.08
1.23,Ideal,H,VVS2,61.6,57,8509,6.87,6.92,4.25
1.4,Premium,G,SI1,62.5,58,8511,7.12,7.06,4.43
1.52,Premium,G,SI1,62.2,58,8512,7.39,7.33,4.58
1.08,Very Good,D,VS1,60.5,58,8513,6.53,6.63,3.98
1.59,Very Good,J,VS1,60.1,60,8515,7.56,7.59,4.55
1.59,Very Good,J,VS1,60.7,59,8515,7.49,7.54,4.56
1.56,Ideal,H,SI2,62.1,58,8517,7.35,7.41,4.58
1.5,Good,D,SI2,62.4,61,8517,7.23,7.36,4.55
1.56,Ideal,E,SI2,61.2,56,8518,7.53,7.49,4.59
1.5,Very Good,D,SI2,63.3,57,8518,7.27,7.2,4.58
1.5,Good,D,SI2,63.8,58,8518,7.2,7.16,4.58
1.5,Premium,D,SI2,58.9,60,8518,7.48,7.45,4.4
1.16,Very Good,E,VS2,62.1,58,8520,6.63,6.7,4.14
1.52,Premium,I,SI1,61.2,60,8521,7.41,7.36,4.52
1.2,Good,D,VS2,62.4,60,8521,6.69,6.77,4.2
1.23,Ideal,F,VS1,61.3,57,8523,6.86,6.93,4.23
1.51,Premium,J,VS1,62.1,58,8524,7.4,7.36,4.58
1.51,Very Good,J,VS1,61.2,63,8524,7.31,7.24,4.45
1.51,Premium,J,VS1,61.8,61,8524,7.26,7.21,4.47
1.51,Ideal,J,VS1,61.9,56,8524,7.41,7.35,4.57
1.01,Very Good,F,VVS2,61.9,56,8525,6.42,6.48,3.99
1.59,Very Good,J,VS2,62.9,58.1,8526,7.39,7.45,4.66
1.03,Premium,F,VVS2,61.3,57,8527,6.53,6.49,3.99
1.11,Very Good,F,VS1,60.7,55,8528,6.69,6.71,4.07
1.01,Fair,E,VVS1,66.1,55,8529,6.19,6.1,4.06
1.42,Ideal,H,SI1,62,56,8529,7.17,7.22,4.46
1.53,Ideal,G,SI1,61.3,57,8529,7.42,7.32,4.52
1.6,Premium,F,SI2,60.5,60,8530,7.55,7.52,4.56
1.29,Premium,G,VS2,61.9,58,8530,7.02,6.97,4.33
1.6,Ideal,I,SI2,61.9,57,8530,7.51,7.48,4.64
1.01,Ideal,F,VVS2,61,57,8532,6.46,6.52,3.96
1.01,Very Good,F,VVS2,61.8,55,8532,6.36,6.45,3.96
1.01,Premium,F,VVS2,62,58,8532,6.36,6.45,3.97
1.01,Ideal,F,VVS2,61.8,56,8532,6.46,6.49,4
1.04,Premium,D,VS1,60.5,59,8532,6.62,6.58,3.99
1.22,Good,G,VS2,59.9,61,8533,6.88,6.91,4.13
1.54,Very Good,I,VS2,62,58,8537,7.38,7.43,4.59
1.05,Very Good,F,VVS2,61.3,59,8537,6.48,6.56,4
1.57,Very Good,J,VS2,62,58,8538,7.45,7.48,4.63
1.5,Very Good,E,SI2,62.8,57,8538,7.17,7.23,4.52
1.71,Premium,J,SI2,62.6,57,8540,7.62,7.58,4.76
1.23,Ideal,H,VS2,61.5,57,8541,6.92,6.87,4.24
1.51,Very Good,H,SI1,63.5,55,8541,7.31,7.22,4.61
1.27,Ideal,G,VS1,60.9,57,8543,7.02,6.97,4.26
1.35,Premium,H,VS1,62.3,58,8543,7.1,7.05,4.41
1.2,Ideal,G,VS1,62.4,57,8545,6.78,6.8,4.24
1.2,Ideal,G,VS1,62,57,8545,6.78,6.81,4.21
1.02,Ideal,E,VS1,62.6,56,8545,6.45,6.42,4.03
1.05,Ideal,G,VVS1,60.1,57,8546,6.63,6.68,4
1.55,Ideal,J,VS1,60.4,57,8548,7.52,7.54,4.55
0.3,Very Good,H,SI1,61.3,61,421,4.25,4.27,2.61
0.32,Good,G,SI2,63.4,55,421,4.32,4.35,2.75
0.32,Premium,G,SI2,61.6,59,421,4.35,4.38,2.69
0.32,Very Good,I,SI1,59.9,61,421,4.44,4.47,2.67
0.32,Premium,I,SI1,61.1,59,421,4.38,4.42,2.69
0.3,Very Good,H,SI1,62.9,58,421,4.22,4.24,2.66
0.3,Very Good,H,SI1,60.8,61,421,4.25,4.3,2.6
0.3,Good,H,SI1,63.4,57,421,4.27,4.31,2.72
0.32,Premium,G,SI2,61,59,421,4.36,4.42,2.68
0.3,Good,H,SI1,63.9,55,421,4.24,4.27,2.72
0.3,Good,E,SI2,63.5,55,421,4.27,4.3,2.72
0.32,Very Good,I,SI1,61.6,61,421,4.36,4.4,2.7
0.32,Ideal,G,SI2,62.5,57,421,4.35,4.38,2.73
0.32,Very Good,G,SI2,62.3,58,421,4.37,4.42,2.74
0.32,Very Good,G,SI2,62.4,59,421,4.35,4.4,2.73
0.32,Good,F,SI2,63.8,55,421,4.34,4.35,2.77
0.32,Premium,F,SI2,59.7,59,421,4.43,4.48,2.66
0.3,Very Good,E,SI2,61.9,58,421,4.28,4.31,2.66
0.3,Very Good,H,SI1,61.2,62,421,4.28,4.31,2.63
0.32,Very Good,J,VS1,60.6,59,421,4.42,4.46,2.69
0.3,Very Good,H,SI1,62.9,56,421,4.28,4.31,2.7
0.32,Very Good,G,SI2,63,56,421,4.32,4.35,2.73
0.3,Very Good,H,SI1,59.5,62,421,4.32,4.35,2.58
0.32,Premium,G,SI2,62.7,58,421,4.35,4.39,2.74
0.3,Very Good,E,SI2,61.6,61,421,4.25,4.29,2.63
0.3,Very Good,H,SI1,62.9,57,421,4.26,4.29,2.69
0.3,Ideal,I,VS2,62.6,56,421,4.29,4.31,2.69
0.3,Very Good,E,SI2,61.7,61,421,4.28,4.31,2.65
0.3,Good,H,SI1,63.4,58,421,4.21,4.24,2.68
0.3,Premium,H,SI1,59.3,59,421,4.36,4.38,2.59
0.42,Ideal,H,SI2,62,54,625,4.83,4.85,3
0.42,Ideal,H,SI2,61.4,56,625,4.81,4.86,2.97
0.42,Ideal,H,SI2,62,54,625,4.81,4.83,2.99
0.4,Ideal,H,SI2,62.6,55,625,4.73,4.76,2.97
0.41,Ideal,E,SI2,61.8,54,625,4.78,4.8,2.96
0.4,Ideal,D,SI2,62,55,625,4.71,4.77,2.94
0.28,Ideal,E,VS1,62,56,625,4.21,4.18,2.6
0.28,Ideal,E,VS1,61.4,56,625,4.24,4.2,2.59
0.28,Ideal,D,VS2,62.4,57,625,4.2,4.16,2.61
0.35,Ideal,D,SI2,62.4,57,625,4.5,4.47,2.8
0.31,Premium,G,VS1,61.2,60,625,4.37,4.39,2.68
0.31,Very Good,G,VS1,62.9,58,625,4.3,4.35,2.72
0.31,Premium,F,VS2,61.2,58,625,4.35,4.37,2.67
0.31,Ideal,F,VS2,62.3,55,625,4.3,4.33,2.69
0.31,Ideal,H,VVS2,62.6,56,625,4.32,4.37,2.72
0.31,Very Good,F,VS2,61.4,62,625,4.32,4.34,2.66
0.31,Very Good,F,VS2,62.9,59,625,4.27,4.32,2.7
0.31,Ideal,G,VS1,62.1,55,625,4.33,4.37,2.7
0.31,Good,G,VS1,63.2,57,625,4.28,4.33,2.72
0.31,Ideal,H,VVS2,62.2,57,625,4.32,4.36,2.7
0.31,Very Good,F,VS2,62.9,58,625,4.27,4.31,2.7
0.31,Very Good,G,VS1,63,57,625,4.28,4.32,2.71
0.31,Premium,F,VS2,60.8,60,625,4.34,4.37,2.65
0.31,Ideal,F,VS2,62.1,53,625,4.34,4.39,2.71
0.31,Ideal,F,VS2,62.6,55,625,4.29,4.33,2.7
0.31,Ideal,F,VS2,60.8,56,625,4.38,4.41,2.67
0.31,Good,G,VS1,63.8,57,625,4.29,4.33,2.75
0.31,Ideal,H,VVS2,61.1,56,625,4.33,4.37,2.66
0.31,Ideal,F,VS2,62.3,57,625,4.3,4.34,2.69
0.31,Ideal,G,VS1,62.1,55,625,4.33,4.36,2.7
1.27,Very Good,G,VS2,60.3,59,8549,6.97,7.09,4.24
1.27,Premium,G,VS2,61,60,8549,6.93,6.97,4.24
1.51,Very Good,J,VVS2,62.6,63,8550,7.24,7.29,4.55
1.51,Good,D,SI2,64.1,61,8550,7.14,7.18,4.59
1.45,Premium,H,VS1,60.6,60,8550,7.27,7.16,4.37
1.01,Ideal,F,VS1,61.7,56,8552,6.48,6.45,3.99
1,Very Good,F,VVS2,60,62,8553,6.43,6.46,3.87
1,Very Good,F,VVS2,62.9,55,8555,6.29,6.36,3.98
1.5,Ideal,I,SI1,59.4,60,8555,7.54,7.5,4.47
1.5,Good,I,VS2,63.3,62,8555,7.08,7.19,4.52
1.18,Ideal,G,VS1,61.9,56,8556,6.81,6.76,4.2
1.21,Ideal,F,VS2,62.9,54,8557,6.82,6.78,4.28
1.33,Ideal,H,VS1,59.3,57,8558,7.18,7.22,4.27
1.13,Very Good,D,VS2,62.9,58,8561,6.59,6.63,4.16
1.12,Premium,G,VVS1,60.9,57,8561,6.72,6.67,4.08
1.37,Premium,H,VS2,62.5,59,8562,7.12,7.05,4.43
1.2,Good,E,VS2,61.8,61,8563,6.69,6.71,4.14
1.12,Very Good,G,VVS2,62.6,59,8564,6.58,6.61,4.13
1.18,Ideal,G,VS2,62.7,55,8564,6.77,6.74,4.23
1.52,Premium,H,SI1,61.2,58,8566,7.53,7.43,4.57
1.06,Ideal,E,VS1,62.1,57,8567,6.52,6.49,4.04
1.5,Premium,J,VVS1,62.3,62,8568,7.23,7.16,4.48
1.01,Good,E,VVS2,63.9,58,8569,6.37,6.31,4.05
1.57,Premium,G,SI2,61.1,61,8572,7.46,7.43,4.55
1.41,Premium,G,SI1,62.1,59,8572,7.23,7.13,4.46
1.51,Premium,I,SI1,58.6,62,8574,7.51,7.45,4.38
1.26,Ideal,E,SI1,61.5,59,8574,6.92,6.96,4.27
1.51,Very Good,G,SI2,63.2,55,8574,7.32,7.27,4.61
1.51,Ideal,I,SI1,62.8,54,8574,7.31,7.27,4.58
1.25,Very Good,G,VS2,63.5,60,8575,6.74,6.64,4.25
1.22,Very Good,F,VS2,62.3,57,8575,6.8,6.84,4.25
1.22,Premium,F,VS2,62,58,8576,6.86,6.89,4.26
1.9,Fair,H,SI2,67.1,64,8576,7.57,7.52,5.06
1.2,Very Good,G,VS1,61,59,8577,6.81,6.86,4.17
1.37,Premium,H,VS1,60.9,59,8577,7.24,7.17,4.39
1.01,Premium,F,VVS2,59.3,60,8579,6.52,6.5,3.86
1.5,Very Good,G,SI2,60.7,61,8580,7.33,7.36,4.46
1.5,Good,I,SI1,64,60,8580,7.13,7.25,4.6
1.5,Ideal,G,SI2,61.4,56,8580,7.34,7.38,4.52
1.5,Ideal,G,SI2,62,57,8580,7.26,7.31,4.52
1.5,Premium,I,SI1,61.8,58,8580,7.26,7.3,4.5
1.5,Very Good,G,SI2,58.5,62,8580,7.4,7.44,4.34
1.25,Very Good,G,VS1,62.7,56,8580,6.81,6.93,4.31
1.52,Premium,J,VS1,62.2,59,8580,7.38,7.32,4.57
1.2,Premium,F,VS1,62.3,58,8580,6.78,6.71,4.2
1.51,Very Good,F,SI2,62.7,60,8581,7.25,7.32,4.57
1.29,Ideal,G,VS2,62.5,57,8582,6.89,6.92,4.35
1.31,Ideal,H,VS1,61.5,55,8583,7.05,7.02,4.33
1.31,Ideal,H,VS1,61.5,56,8583,7.06,7,4.32
1.22,Premium,G,VS1,62.2,59,8583,6.82,6.87,4.26
1.58,Premium,I,VS2,59.4,61,8583,7.66,7.63,4.54
1.24,Ideal,G,VS1,61.9,54,8584,6.89,6.92,4.27
1.23,Ideal,H,IF,61.3,57,8585,6.92,6.87,4.23
1.64,Premium,I,SI2,61.3,58,8587,7.58,7.62,4.66
1.2,Ideal,F,VS2,61.2,53,8588,6.88,6.85,4.2
1.5,Very Good,I,SI1,60.4,61,8590,7.35,7.39,4.45
1.65,Premium,I,SI2,62,59,8590,7.61,7.54,4.7
1.2,Ideal,F,VS2,62.3,56,8590,6.82,6.79,4.24
1.04,Ideal,G,VVS2,62.5,55,8590,6.53,6.47,4.06
1.1,Very Good,G,IF,60.5,55,8592,6.77,6.71,4.08
1.15,Ideal,G,VVS2,62.5,53,8592,6.69,6.72,4.18
1.12,Ideal,G,VVS2,62.5,56,8592,6.59,6.66,4.14
1.55,Premium,J,VS1,62.6,59,8593,7.35,7.4,4.62
1.55,Premium,H,VS1,60.8,60,8593,7.54,7.5,4.57
1.57,Premium,J,VS1,61.3,59,8595,7.44,7.47,4.57
1.2,Premium,G,VS1,61.4,60,8596,6.86,6.81,4.2
1.22,Ideal,H,VS2,61.3,56,8596,6.85,6.88,4.21
1.2,Ideal,G,VS1,62.4,57,8596,6.74,6.82,4.23
1.2,Ideal,G,VS1,62.3,56,8596,6.82,6.77,4.23
1.2,Premium,G,VS1,60.2,60,8596,7,6.91,4.19
1.2,Very Good,G,VS1,63.4,56,8596,6.74,6.7,4.26
1.29,Premium,D,SI1,62.7,55,8597,6.96,6.91,4.35
1.51,Premium,H,SI2,60.2,59,8598,7.43,7.33,4.44
1.43,Ideal,G,SI1,62.8,57,8599,7.17,7.12,4.49
1.2,Premium,E,VS2,62.2,59,8602,6.82,6.78,4.23
1.2,Premium,G,VS1,62.4,58,8602,6.82,6.8,4.25
1,Premium,F,VVS2,59.9,60,8602,6.5,6.46,3.88
1,Premium,F,VVS2,61
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment