Created
March 22, 2015 12:40
-
-
Save Bigcheese/7ffddd3d9a9a4ed23027 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | |
-- PostgreSQL database dump | |
-- | |
-- Dumped from database version 9.4.1 | |
-- Dumped by pg_dump version 9.4.1 | |
-- Started on 2015-03-22 05:38:53 | |
SET statement_timeout = 0; | |
SET lock_timeout = 0; | |
SET client_encoding = 'UTF8'; | |
SET standard_conforming_strings = on; | |
SET check_function_bodies = false; | |
SET client_min_messages = warning; | |
-- | |
-- TOC entry 178 (class 3079 OID 11855) | |
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: | |
-- | |
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; | |
-- | |
-- TOC entry 2035 (class 0 OID 0) | |
-- Dependencies: 178 | |
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: | |
-- | |
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; | |
SET search_path = public, pg_catalog; | |
SET default_tablespace = ''; | |
SET default_with_oids = false; | |
-- | |
-- TOC entry 174 (class 1259 OID 16415) | |
-- Name: prices; Type: TABLE; Schema: public; Owner: postgres; Tablespace: | |
-- | |
CREATE TABLE prices ( | |
id integer NOT NULL, | |
price numeric(8,2), | |
guid integer, | |
currency character(3), | |
url integer, | |
datetime timestamp without time zone, | |
store integer, | |
quantity integer, | |
type "char" | |
); | |
ALTER TABLE prices OWNER TO postgres; | |
-- | |
-- TOC entry 175 (class 1259 OID 16418) | |
-- Name: prices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres | |
-- | |
CREATE SEQUENCE prices_id_seq | |
START WITH 1 | |
INCREMENT BY 1 | |
NO MINVALUE | |
NO MAXVALUE | |
CACHE 1; | |
ALTER TABLE prices_id_seq OWNER TO postgres; | |
-- | |
-- TOC entry 2036 (class 0 OID 0) | |
-- Dependencies: 175 | |
-- Name: prices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres | |
-- | |
ALTER SEQUENCE prices_id_seq OWNED BY prices.id; | |
-- | |
-- TOC entry 177 (class 1259 OID 16435) | |
-- Name: stores; Type: TABLE; Schema: public; Owner: postgres; Tablespace: | |
-- | |
CREATE TABLE stores ( | |
id integer NOT NULL, | |
name character varying | |
); | |
ALTER TABLE stores OWNER TO postgres; | |
-- | |
-- TOC entry 176 (class 1259 OID 16433) | |
-- Name: stores_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres | |
-- | |
CREATE SEQUENCE stores_id_seq | |
START WITH 1 | |
INCREMENT BY 1 | |
NO MINVALUE | |
NO MAXVALUE | |
CACHE 1; | |
ALTER TABLE stores_id_seq OWNER TO postgres; | |
-- | |
-- TOC entry 2037 (class 0 OID 0) | |
-- Dependencies: 176 | |
-- Name: stores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres | |
-- | |
ALTER SEQUENCE stores_id_seq OWNED BY stores.id; | |
-- | |
-- TOC entry 172 (class 1259 OID 16395) | |
-- Name: urls; Type: TABLE; Schema: public; Owner: postgres; Tablespace: | |
-- | |
CREATE TABLE urls ( | |
id integer NOT NULL, | |
url character varying | |
); | |
ALTER TABLE urls OWNER TO postgres; | |
-- | |
-- TOC entry 173 (class 1259 OID 16403) | |
-- Name: url_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres | |
-- | |
CREATE SEQUENCE url_id_seq | |
START WITH 1 | |
INCREMENT BY 1 | |
NO MINVALUE | |
NO MAXVALUE | |
CACHE 1; | |
ALTER TABLE url_id_seq OWNER TO postgres; | |
-- | |
-- TOC entry 2038 (class 0 OID 0) | |
-- Dependencies: 173 | |
-- Name: url_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres | |
-- | |
ALTER SEQUENCE url_id_seq OWNED BY urls.id; | |
-- | |
-- TOC entry 1896 (class 2604 OID 16420) | |
-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres | |
-- | |
ALTER TABLE ONLY prices ALTER COLUMN id SET DEFAULT nextval('prices_id_seq'::regclass); | |
-- | |
-- TOC entry 1897 (class 2604 OID 16438) | |
-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres | |
-- | |
ALTER TABLE ONLY stores ALTER COLUMN id SET DEFAULT nextval('stores_id_seq'::regclass); | |
-- | |
-- TOC entry 1895 (class 2604 OID 16405) | |
-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres | |
-- | |
ALTER TABLE ONLY urls ALTER COLUMN id SET DEFAULT nextval('url_id_seq'::regclass); | |
-- | |
-- TOC entry 2024 (class 0 OID 16415) | |
-- Dependencies: 174 | |
-- Data for Name: prices; Type: TABLE DATA; Schema: public; Owner: postgres | |
-- | |
COPY prices (id, price, guid, currency, url, datetime, store, quantity, type) FROM stdin; | |
4 1.39 300000635 USD 3 2015-03-22 03:39:45.543525 1 \N \N | |
5 0.15 300000502 USD 4 2015-03-22 03:39:45.543525 1 \N \N | |
6 1.49 300000502 USD 5 2015-03-22 03:39:45.543525 1 \N f | |
7 0.10 300000093 USD 6 2015-03-22 03:39:45.543525 1 \N \N | |
8 0.89 300000093 USD 7 2015-03-22 03:39:45.543525 1 \N f | |
9 0.79 300000624 USD 8 2015-03-22 03:39:45.543525 1 \N \N | |
10 0.99 300000659 USD 9 2015-03-22 03:39:45.543525 1 \N \N | |
11 0.25 300000128 USD 10 2015-03-22 03:39:45.543525 1 \N \N | |
12 1.99 300000128 USD 11 2015-03-22 03:39:45.543525 1 \N f | |
13 0.40 300000195 USD 12 2015-03-22 03:39:45.543525 1 \N \N | |
14 0.40 300000129 USD 13 2015-03-22 03:39:45.543525 1 \N \N | |
15 0.10 300000159 USD 14 2015-03-22 03:39:45.543525 1 \N \N | |
16 1.99 300000593 USD 15 2015-03-22 03:39:45.543525 1 \N \N | |
17 2.99 300000593 USD 16 2015-03-22 03:39:45.543525 1 \N f | |
18 0.50 300000343 USD 17 2015-03-22 03:39:45.543525 1 \N \N | |
19 9.98 300000203 USD 18 2015-03-22 03:39:45.543525 1 \N \N | |
20 0.15 300000283 USD 19 2015-03-22 03:39:45.543525 1 \N \N | |
21 1.39 300000635 USD 3 2015-03-22 03:40:27.980862 1 \N \N | |
22 0.15 300000502 USD 4 2015-03-22 03:40:27.980862 1 \N \N | |
23 1.49 300000502 USD 5 2015-03-22 03:40:27.980862 1 \N f | |
24 0.10 300000093 USD 6 2015-03-22 03:40:27.980862 1 \N \N | |
25 0.89 300000093 USD 7 2015-03-22 03:40:27.980862 1 \N f | |
26 0.79 300000624 USD 8 2015-03-22 03:40:27.980862 1 \N \N | |
27 0.99 300000659 USD 9 2015-03-22 03:40:27.980862 1 \N \N | |
28 0.25 300000128 USD 10 2015-03-22 03:40:27.980862 1 \N \N | |
29 1.99 300000128 USD 11 2015-03-22 03:40:27.980862 1 \N f | |
30 0.40 300000195 USD 12 2015-03-22 03:40:27.980862 1 \N \N | |
31 0.40 300000129 USD 13 2015-03-22 03:40:27.980862 1 \N \N | |
32 0.10 300000159 USD 14 2015-03-22 03:40:27.980862 1 \N \N | |
33 1.99 300000593 USD 15 2015-03-22 03:40:27.980862 1 \N \N | |
34 2.99 300000593 USD 16 2015-03-22 03:40:27.980862 1 \N f | |
35 0.50 300000343 USD 17 2015-03-22 03:40:27.980862 1 \N \N | |
36 9.98 300000203 USD 18 2015-03-22 03:40:27.980862 1 \N \N | |
37 0.15 300000283 USD 19 2015-03-22 03:40:27.980862 1 \N \N | |
38 0.49 300000371 USD 20 2015-03-22 04:03:07.046768 1 \N \N | |
39 0.99 300000371 USD 21 2015-03-22 04:03:07.046768 1 \N f | |
40 0.40 300000170 USD 22 2015-03-22 04:03:07.046768 1 \N \N | |
41 0.69 300000380 USD 23 2015-03-22 04:03:07.046768 1 \N \N | |
42 0.40 300000101 USD 24 2015-03-22 04:03:07.046768 1 \N \N | |
43 0.15 300000344 USD 25 2015-03-22 04:03:07.046768 1 \N \N | |
44 3.99 300000560 USD 26 2015-03-22 04:03:07.046768 1 \N \N | |
45 0.45 300000314 USD 27 2015-03-22 04:03:07.046768 1 \N \N | |
46 0.45 300000561 USD 28 2015-03-22 04:03:07.046768 1 \N \N | |
47 0.15 300000381 USD 29 2015-03-22 04:03:07.046768 1 \N \N | |
48 0.10 300000160 USD 30 2015-03-22 04:03:07.046768 1 \N \N | |
49 0.40 300000102 USD 31 2015-03-22 04:03:07.046768 1 \N \N | |
50 0.40 300000103 USD 32 2015-03-22 04:03:07.046768 1 \N \N | |
51 12.98 300000406 USD 33 2015-03-22 04:03:07.046768 1 \N \N | |
52 0.15 300000636 USD 34 2015-03-22 04:03:07.046768 1 \N \N | |
53 0.99 300000064 USD 35 2015-03-22 04:03:07.046768 1 \N \N | |
54 0.10 300000168 USD 36 2015-03-22 04:03:07.046768 1 \N \N | |
55 8.99 300000151 USD 37 2015-03-22 04:03:07.046768 1 \N f | |
56 14.98 300000151 USD 38 2015-03-22 04:03:07.046768 1 \N p | |
57 0.45 300000270 USD 39 2015-03-22 04:03:07.046768 1 \N \N | |
58 0.10 300000079 USD 40 2015-03-22 04:03:07.046768 1 \N \N | |
59 0.15 300000547 USD 41 2015-03-22 04:03:07.046768 1 \N \N | |
60 0.45 300000382 USD 42 2015-03-22 04:03:07.046768 1 \N \N | |
61 0.15 300000548 USD 43 2015-03-22 04:03:07.046768 1 \N \N | |
62 1.49 300000548 USD 44 2015-03-22 04:03:07.046768 1 \N f | |
63 0.49 300000298 USD 45 2015-03-22 04:03:07.046768 1 \N \N | |
64 0.99 300000298 USD 46 2015-03-22 04:03:07.046768 1 \N f | |
65 0.89 300000562 USD 47 2015-03-22 04:03:07.046768 1 \N \N | |
66 0.45 300000315 USD 48 2015-03-22 04:03:07.046768 1 \N \N | |
67 0.15 300000489 USD 49 2015-03-22 04:03:07.046768 1 \N \N | |
68 1.49 300000489 USD 50 2015-03-22 04:03:07.046768 1 \N f | |
69 0.10 300000035 USD 51 2015-03-22 04:03:07.046768 1 \N \N | |
70 0.15 300000241 USD 52 2015-03-22 04:03:07.046768 1 \N \N | |
71 0.45 300000345 USD 53 2015-03-22 04:03:07.046768 1 \N \N | |
72 1.99 300000345 USD 54 2015-03-22 04:03:07.046768 1 \N f | |
73 0.10 300000021 USD 55 2015-03-22 04:03:07.046768 1 \N \N | |
74 0.15 300000563 USD 56 2015-03-22 04:03:07.046768 1 \N \N | |
75 0.25 300000050 USD 57 2015-03-22 04:03:07.046768 1 \N \N | |
76 0.15 300000383 USD 58 2015-03-22 04:03:07.046768 1 \N \N | |
77 0.75 300000219 USD 59 2015-03-22 04:03:07.046768 1 \N \N | |
78 0.45 300000243 USD 60 2015-03-22 04:03:07.046768 1 \N \N | |
79 0.74 300000243 USD 61 2015-03-22 04:03:07.046768 1 \N f | |
80 0.49 300000023 USD 62 2015-03-22 04:03:07.046768 1 \N \N | |
81 0.74 300000023 USD 63 2015-03-22 04:03:07.046768 1 \N f | |
82 0.45 300000490 USD 64 2015-03-22 04:03:07.046768 1 \N \N | |
83 104.95 300000663 USD 65 2015-03-22 04:03:07.046768 1 \N \N | |
84 0.45 300000491 USD 66 2015-03-22 04:03:07.046768 1 \N \N | |
85 1.49 300000491 USD 67 2015-03-22 04:03:07.046768 1 \N f | |
86 2.99 300000242 USD 68 2015-03-22 04:03:07.046768 1 \N \N | |
87 5.99 300000242 USD 69 2015-03-22 04:03:07.046768 1 \N f | |
88 39.98 300000212 USD 70 2015-03-22 04:03:07.046768 1 \N p | |
89 34.98 300000212 USD 71 2015-03-22 04:03:07.046768 1 \N p | |
90 49.98 300000212 USD 72 2015-03-22 04:03:07.046768 1 \N p | |
91 0.10 300000022 USD 73 2015-03-22 04:03:07.046768 1 \N \N | |
92 0.49 300000022 USD 74 2015-03-22 04:03:07.046768 1 \N f | |
93 3.99 300000444 USD 75 2015-03-22 04:03:07.046768 1 \N p | |
94 2.99 300000001 USD 76 2015-03-22 04:03:07.046768 1 \N \N | |
95 0.99 300000097 USD 77 2015-03-22 04:03:07.046768 1 \N \N | |
96 0.89 300000130 USD 78 2015-03-22 04:03:07.046768 1 \N \N | |
97 0.49 300000104 USD 79 2015-03-22 04:03:07.046768 1 \N \N | |
98 1.49 300000104 USD 80 2015-03-22 04:03:07.046768 1 \N f | |
99 0.15 300000384 USD 81 2015-03-22 04:03:07.046768 1 \N \N | |
100 0.40 300000024 USD 82 2015-03-22 04:03:07.046768 1 \N \N | |
101 0.49 300000024 USD 83 2015-03-22 04:03:07.046768 1 \N f | |
102 0.15 300000256 USD 84 2015-03-22 04:03:07.046768 1 \N \N | |
103 0.10 300000161 USD 85 2015-03-22 04:03:07.046768 1 \N \N | |
104 16.99 300000668 USD 86 2015-03-22 04:03:07.046768 1 \N \N | |
105 0.15 300000244 USD 87 2015-03-22 04:03:07.046768 1 \N \N | |
106 0.15 300000346 USD 88 2015-03-22 04:03:07.046768 1 \N \N | |
107 2.99 300000347 USD 89 2015-03-22 04:03:07.046768 1 \N \N | |
108 0.10 300000036 USD 90 2015-03-22 04:03:07.046768 1 \N \N | |
109 0.24 300000036 USD 91 2015-03-22 04:03:07.046768 1 \N f | |
110 3.99 300000503 USD 92 2015-03-22 04:03:07.046768 1 \N \N | |
111 3.99 300000625 USD 93 2015-03-22 04:03:07.046768 1 \N \N | |
112 0.45 300000316 USD 94 2015-03-22 04:03:07.046768 1 \N \N | |
113 0.49 300000245 USD 95 2015-03-22 04:03:07.046768 1 \N \N | |
114 24.99 300000198 USD 96 2015-03-22 04:03:07.046768 1 \N \N | |
115 0.49 300000065 USD 97 2015-03-22 04:03:07.046768 1 \N \N | |
116 1.99 300000037 USD 98 2015-03-22 04:03:07.046768 1 \N \N | |
117 0.59 300000299 USD 99 2015-03-22 04:03:07.046768 1 \N \N | |
118 0.10 300000080 USD 100 2015-03-22 04:03:07.046768 1 \N \N | |
119 0.10 300000059 USD 101 2015-03-22 04:03:07.046768 1 \N \N | |
120 0.45 300000475 USD 102 2015-03-22 04:03:07.046768 1 \N \N | |
121 0.15 300000504 USD 103 2015-03-22 04:03:07.046768 1 \N \N | |
122 0.99 300000504 USD 104 2015-03-22 04:03:07.046768 1 \N f | |
123 0.15 300000594 USD 105 2015-03-22 04:03:07.046768 1 \N \N | |
124 0.45 300000385 USD 106 2015-03-22 04:03:07.046768 1 \N \N | |
125 0.15 300000492 USD 107 2015-03-22 04:03:07.046768 1 \N \N | |
126 2.99 300000052 USD 108 2015-03-22 04:03:07.046768 1 \N \N | |
127 0.15 300000549 USD 109 2015-03-22 04:03:07.046768 1 \N \N | |
128 0.10 300000152 USD 110 2015-03-22 04:03:07.046768 1 \N \N | |
129 3.99 300000474 USD 111 2015-03-22 04:03:07.046768 1 \N \N | |
130 34.99 300000407 USD 112 2015-03-22 04:03:07.046768 1 \N \N | |
131 1.99 300000476 USD 113 2015-03-22 04:03:07.046768 1 \N \N | |
132 0.40 300000163 USD 114 2015-03-22 04:03:07.046768 1 \N \N | |
133 0.10 300000164 USD 115 2015-03-22 04:03:07.046768 1 \N \N | |
134 1.49 300000564 USD 116 2015-03-22 04:03:07.046768 1 \N \N | |
135 34.99 300000564 USD 117 2015-03-22 04:03:07.046768 1 \N p | |
136 0.45 300000565 USD 118 2015-03-22 04:03:07.046768 1 \N \N | |
137 0.99 300000565 USD 119 2015-03-22 04:03:07.046768 1 \N f | |
138 0.69 300000271 USD 120 2015-03-22 04:03:07.046768 1 \N \N | |
139 1.24 300000271 USD 121 2015-03-22 04:03:07.046768 1 \N f | |
140 0.45 300000348 USD 122 2015-03-22 04:03:07.046768 1 \N \N | |
141 1.99 300000349 USD 123 2015-03-22 04:03:07.046768 1 \N \N | |
142 0.49 300000131 USD 124 2015-03-22 04:03:07.046768 1 \N \N | |
143 0.74 300000131 USD 125 2015-03-22 04:03:07.046768 1 \N f | |
144 0.99 300000637 USD 126 2015-03-22 04:03:07.046768 1 \N \N | |
145 3.99 300000566 USD 127 2015-03-22 04:03:07.046768 1 \N \N | |
146 0.99 300000626 USD 128 2015-03-22 04:03:07.046768 1 \N \N | |
147 0.15 300000595 USD 129 2015-03-22 04:03:07.046768 1 \N \N | |
148 1.25 300000595 USD 130 2015-03-22 04:03:07.046768 1 \N f | |
149 0.10 300000007 USD 131 2015-03-22 04:03:07.046768 1 \N \N | |
150 0.45 300000373 USD 132 2015-03-22 04:03:07.046768 1 \N \N | |
151 1.99 300000373 USD 133 2015-03-22 04:03:07.046768 1 \N f | |
152 0.50 300000638 USD 134 2015-03-22 04:03:07.046768 1 \N \N | |
153 0.49 300000038 USD 135 2015-03-22 04:03:07.046768 1 \N \N | |
154 0.15 300000639 USD 136 2015-03-22 04:03:07.046768 1 \N \N | |
155 3.99 300000517 USD 137 2015-03-22 04:03:07.046768 1 \N \N | |
156 0.15 300000386 USD 138 2015-03-22 04:03:07.046768 1 \N \N | |
157 0.99 300000505 USD 139 2015-03-22 04:03:07.046768 1 \N \N | |
158 2.49 300000505 USD 140 2015-03-22 04:03:07.046768 1 \N f | |
159 1.49 300000257 USD 141 2015-03-22 04:03:07.046768 1 \N \N | |
160 1.25 300000257 USD 142 2015-03-22 04:03:07.046768 1 \N f | |
161 0.15 300000246 USD 143 2015-03-22 04:03:07.046768 1 \N \N | |
162 0.99 300000025 USD 144 2015-03-22 04:03:07.046768 1 \N \N | |
163 0.15 300000350 USD 145 2015-03-22 04:03:07.046768 1 \N \N | |
164 0.15 300000351 USD 146 2015-03-22 04:03:07.046768 1 \N \N | |
165 1.49 300000351 USD 147 2015-03-22 04:03:07.046768 1 \N f | |
166 0.74 300000226 USD 148 2015-03-22 04:03:07.046768 1 \N \N | |
167 1.49 300000226 USD 149 2015-03-22 04:03:07.046768 1 \N f | |
168 0.45 300000627 USD 150 2015-03-22 04:03:07.046768 1 \N \N | |
169 0.45 300000227 USD 151 2015-03-22 04:03:07.046768 1 \N \N | |
170 0.40 300000166 USD 152 2015-03-22 04:03:07.046768 1 \N \N | |
171 0.40 300000167 USD 153 2015-03-22 04:03:07.046768 1 \N \N | |
172 17.99 300000010 USD 154 2015-03-22 04:03:07.046768 1 \N \N | |
173 39.98 300000010 USD 155 2015-03-22 04:03:07.046768 1 \N p | |
174 0.15 300000247 USD 156 2015-03-22 04:03:07.046768 1 \N \N | |
175 0.45 300000628 USD 157 2015-03-22 04:03:07.046768 1 \N \N | |
176 0.74 300000387 USD 158 2015-03-22 04:03:07.046768 1 \N \N | |
177 0.99 300000026 USD 159 2015-03-22 04:03:07.046768 1 \N \N | |
178 0.15 300000596 USD 160 2015-03-22 04:03:07.046768 1 \N \N | |
179 0.15 300000285 USD 161 2015-03-22 04:03:07.046768 1 \N \N | |
180 29.95 300000285 USD 162 2015-03-22 04:03:07.046768 1 \N p | |
181 0.99 300000532 USD 163 2015-03-22 04:03:07.046768 1 \N \N | |
182 1.99 300000532 USD 164 2015-03-22 04:03:07.046768 1 \N f | |
183 0.45 300000352 USD 165 2015-03-22 04:03:07.046768 1 \N \N | |
184 2.99 300000352 USD 166 2015-03-22 04:03:07.046768 1 \N f | |
185 0.15 300000477 USD 167 2015-03-22 04:03:07.046768 1 \N \N | |
186 0.10 300000053 USD 168 2015-03-22 04:03:07.046768 1 \N \N | |
187 0.45 300000388 USD 169 2015-03-22 04:03:07.046768 1 \N \N | |
188 0.15 300000272 USD 170 2015-03-22 04:03:07.046768 1 \N \N | |
189 0.15 300000284 USD 171 2015-03-22 04:03:07.046768 1 \N \N | |
190 0.25 300000493 USD 172 2015-03-22 04:03:07.046768 1 \N \N | |
191 0.15 300000389 USD 173 2015-03-22 04:03:07.046768 1 \N \N | |
192 0.45 300000597 USD 174 2015-03-22 04:03:07.046768 1 \N \N | |
193 0.40 300000106 USD 175 2015-03-22 04:03:07.046768 1 \N \N | |
194 0.40 300000133 USD 176 2015-03-22 04:03:07.046768 1 \N \N | |
195 1.99 300000317 USD 177 2015-03-22 04:03:07.046768 1 \N \N | |
196 0.99 300000598 USD 178 2015-03-22 04:03:07.046768 1 \N \N | |
197 0.99 300000478 USD 179 2015-03-22 04:03:07.046768 1 \N \N | |
198 2.99 300000471 USD 180 2015-03-22 04:03:07.046768 1 \N f | |
199 8.99 300000567 USD 181 2015-03-22 04:03:07.046768 1 \N \N | |
200 0.45 300000248 USD 182 2015-03-22 04:03:07.046768 1 \N \N | |
201 0.49 300000248 USD 183 2015-03-22 04:03:07.046768 1 \N f | |
202 0.10 300000039 USD 184 2015-03-22 04:03:07.046768 1 \N \N | |
203 3.49 300000479 USD 185 2015-03-22 04:03:07.046768 1 \N \N | |
204 1.99 300000479 USD 186 2015-03-22 04:03:07.046768 1 \N f | |
205 0.45 300000390 USD 187 2015-03-22 04:03:07.046768 1 \N \N | |
206 0.45 300000640 USD 188 2015-03-22 04:03:07.046768 1 \N \N | |
207 0.15 300000228 USD 189 2015-03-22 04:03:07.046768 1 \N \N | |
208 0.45 300000599 USD 190 2015-03-22 04:03:07.046768 1 \N \N | |
209 0.45 300000641 USD 191 2015-03-22 04:03:07.046768 1 \N \N | |
210 14.98 300000459 USD 192 2015-03-22 04:03:07.046768 1 \N p | |
211 23.88 300000670 USD 193 2015-03-22 04:03:07.046768 1 \N \N | |
212 0.15 300000629 USD 194 2015-03-22 04:03:07.046768 1 \N \N | |
213 1.49 300000096 USD 195 2015-03-22 04:03:07.046768 1 \N \N | |
214 0.15 300000642 USD 196 2015-03-22 04:03:07.046768 1 \N \N | |
215 0.15 300000249 USD 197 2015-03-22 04:03:07.046768 1 \N \N | |
216 3.99 300000300 USD 198 2015-03-22 04:03:07.046768 1 \N \N | |
217 0.99 300000568 USD 199 2015-03-22 04:03:07.046768 1 \N \N | |
218 8.95 300000568 USD 200 2015-03-22 04:03:07.046768 1 \N p | |
219 0.40 300000108 USD 201 2015-03-22 04:03:07.046768 1 \N \N | |
220 0.40 300000109 USD 202 2015-03-22 04:03:07.046768 1 \N \N | |
221 0.99 300000480 USD 203 2015-03-22 04:03:07.046768 1 \N \N | |
222 1.49 300000480 USD 204 2015-03-22 04:03:07.046768 1 \N f | |
223 2.25 300000229 USD 205 2015-03-22 04:03:07.046768 1 \N \N | |
224 1.88 300000229 USD 206 2015-03-22 04:03:07.046768 1 \N f | |
225 3.99 300000679 USD 207 2015-03-22 04:03:07.046768 1 \N p | |
226 0.45 300000600 USD 208 2015-03-22 04:03:07.046768 1 \N \N | |
227 0.10 300000029 USD 209 2015-03-22 04:03:07.046768 1 \N \N | |
228 0.49 300000029 USD 210 2015-03-22 04:03:07.046768 1 \N f | |
229 0.40 300000110 USD 211 2015-03-22 04:03:07.046768 1 \N \N | |
230 0.45 300000301 USD 212 2015-03-22 04:03:07.046768 1 \N \N | |
231 1.49 300000250 USD 213 2015-03-22 04:03:07.046768 1 \N \N | |
232 1.49 300000230 USD 214 2015-03-22 04:03:07.046768 1 \N \N | |
233 1.99 300000318 USD 215 2015-03-22 04:03:07.046768 1 \N \N | |
234 0.49 300000111 USD 216 2015-03-22 04:03:07.046768 1 \N \N | |
235 0.99 300000068 USD 217 2015-03-22 04:03:07.046768 1 \N \N | |
236 0.15 300000494 USD 218 2015-03-22 04:03:07.046768 1 \N \N | |
237 0.10 300000011 USD 219 2015-03-22 04:03:07.046768 1 \N \N | |
238 0.40 300000169 USD 220 2015-03-22 04:03:07.046768 1 \N \N | |
239 0.99 300000630 USD 221 2015-03-22 04:03:07.046768 1 \N \N | |
240 0.15 300000643 USD 222 2015-03-22 04:03:07.046768 1 \N \N | |
241 0.15 300000644 USD 223 2015-03-22 04:03:07.046768 1 \N \N | |
242 0.15 300000459 USD 224 2015-03-22 04:03:07.046768 1 \N \N | |
243 1.25 300000459 USD 225 2015-03-22 04:03:07.046768 1 \N f | |
244 0.45 300000601 USD 226 2015-03-22 04:03:07.046768 1 \N \N | |
245 6.99 300000081 USD 227 2015-03-22 04:03:07.046768 1 \N \N | |
246 0.15 300000533 USD 228 2015-03-22 04:03:07.046768 1 \N \N | |
247 0.99 300000533 USD 229 2015-03-22 04:03:07.046768 1 \N f | |
248 14.98 300000413 USD 230 2015-03-22 04:03:07.046768 1 \N \N | |
249 0.40 300000185 USD 231 2015-03-22 04:03:07.046768 1 \N \N | |
250 0.45 300000569 USD 232 2015-03-22 04:03:07.046768 1 \N \N | |
251 0.45 300000319 USD 233 2015-03-22 04:03:07.046768 1 \N \N | |
252 0.49 300000251 USD 234 2015-03-22 04:03:07.046768 1 \N \N | |
253 1.19 300000066 USD 235 2015-03-22 04:03:07.046768 1 \N f | |
254 0.75 300000066 USD 236 2015-03-22 04:03:07.046768 1 \N \N | |
255 0.45 300000602 USD 237 2015-03-22 04:03:07.046768 1 \N \N | |
256 0.45 300000645 USD 238 2015-03-22 04:03:07.046768 1 \N \N | |
257 0.25 300000067 USD 239 2015-03-22 04:03:07.046768 1 \N \N | |
258 0.10 300000134 USD 240 2015-03-22 04:03:07.046768 1 \N \N | |
259 0.15 300000302 USD 241 2015-03-22 04:03:07.046768 1 \N \N | |
260 0.45 300000570 USD 242 2015-03-22 04:03:07.046768 1 \N \N | |
261 1.25 300000570 USD 243 2015-03-22 04:03:07.046768 1 \N f | |
262 0.40 300000008 USD 244 2015-03-22 04:03:07.046768 1 \N \N | |
263 0.49 300000008 USD 245 2015-03-22 04:03:07.046768 1 \N f | |
264 0.45 300000571 USD 246 2015-03-22 04:03:07.046768 1 \N \N | |
265 0.40 300000153 USD 247 2015-03-22 04:03:07.046768 1 \N \N | |
266 0.15 300000550 USD 248 2015-03-22 04:03:07.046768 1 \N \N | |
267 0.15 300000286 USD 249 2015-03-22 04:03:07.046768 1 \N \N | |
268 0.40 300000154 USD 250 2015-03-22 04:03:07.046768 1 \N \N | |
269 0.10 300000041 USD 251 2015-03-22 04:03:07.046768 1 \N \N | |
270 21.99 300000419 USD 252 2015-03-22 04:03:07.046768 1 \N \N | |
271 0.40 300000083 USD 253 2015-03-22 04:03:07.046768 1 \N \N | |
272 0.49 300000083 USD 254 2015-03-22 04:03:07.046768 1 \N f | |
273 4.99 300000005 USD 255 2015-03-22 04:03:07.046768 1 \N f | |
274 0.45 300000551 USD 256 2015-03-22 04:03:07.046768 1 \N \N | |
275 0.45 300000303 USD 257 2015-03-22 04:03:07.046768 1 \N \N | |
276 0.49 300000303 USD 258 2015-03-22 04:03:07.046768 1 \N f | |
277 0.45 300000552 USD 259 2015-03-22 04:03:07.046768 1 \N \N | |
278 1.49 300000552 USD 260 2015-03-22 04:03:07.046768 1 \N f | |
279 1.49 300000304 USD 261 2015-03-22 04:03:07.046768 1 \N \N | |
280 1.99 300000304 USD 262 2015-03-22 04:03:07.046768 1 \N f | |
281 0.75 300000224 USD 263 2015-03-22 04:03:07.046768 1 \N \N | |
282 5.49 300000082 USD 264 2015-03-22 04:03:07.046768 1 \N f | |
283 11.98 300000210 USD 265 2015-03-22 04:03:07.046768 1 \N \N | |
284 16.99 300000669 USD 266 2015-03-22 04:03:07.046768 1 \N \N | |
285 0.10 300000135 USD 267 2015-03-22 04:03:07.046768 1 \N \N | |
286 0.40 300000136 USD 268 2015-03-22 04:03:07.046768 1 \N \N | |
287 0.15 300000287 USD 269 2015-03-22 04:03:07.046768 1 \N \N | |
288 0.45 300000646 USD 270 2015-03-22 04:03:07.046768 1 \N \N | |
289 0.15 300000273 USD 271 2015-03-22 04:03:07.046768 1 \N \N | |
290 0.45 300000572 USD 272 2015-03-22 04:03:07.046768 1 \N \N | |
291 0.99 300000573 USD 273 2015-03-22 04:03:07.046768 1 \N \N | |
292 1.49 300000573 USD 274 2015-03-22 04:03:07.046768 1 \N f | |
293 0.45 300000392 USD 275 2015-03-22 04:03:07.046768 1 \N \N | |
294 0.99 300000393 USD 276 2015-03-22 04:03:07.046768 1 \N \N | |
295 1.48 300000030 USD 277 2015-03-22 04:03:07.046768 1 \N \N | |
296 0.45 300000353 USD 278 2015-03-22 04:03:07.046768 1 \N \N | |
297 0.50 300000320 USD 279 2015-03-22 04:03:07.046768 1 \N \N | |
298 0.49 300000020 USD 280 2015-03-22 04:03:07.046768 1 \N \N | |
299 1.49 300000095 USD 281 2015-03-22 04:03:07.046768 1 \N \N | |
300 0.45 300000631 USD 282 2015-03-22 04:03:07.046768 1 \N \N | |
301 0.99 300000631 USD 283 2015-03-22 04:03:07.046768 1 \N f | |
302 0.15 300000506 USD 284 2015-03-22 04:03:07.046768 1 \N \N | |
303 0.45 300000534 USD 285 2015-03-22 04:03:07.046768 1 \N \N | |
304 0.45 300000259 USD 286 2015-03-22 04:03:07.046768 1 \N \N | |
305 0.49 300000354 USD 287 2015-03-22 04:03:07.046768 1 \N \N | |
306 1.49 300000354 USD 288 2015-03-22 04:03:07.046768 1 \N f | |
307 1.99 300000288 USD 289 2015-03-22 04:03:07.046768 1 \N \N | |
308 0.15 300000252 USD 290 2015-03-22 04:03:07.046768 1 \N \N | |
309 0.49 300000252 USD 291 2015-03-22 04:03:07.046768 1 \N f | |
310 0.49 300000137 USD 292 2015-03-22 04:03:07.046768 1 \N \N | |
311 0.99 300000137 USD 293 2015-03-22 04:03:07.046768 1 \N f | |
312 0.15 300000553 USD 294 2015-03-22 04:03:07.046768 1 \N \N | |
313 0.49 300000042 USD 295 2015-03-22 04:03:07.046768 1 \N \N | |
314 0.74 300000305 USD 296 2015-03-22 04:03:07.046768 1 \N \N | |
315 0.99 300000554 USD 297 2015-03-22 04:03:07.046768 1 \N \N | |
316 1.49 300000554 USD 298 2015-03-22 04:03:07.046768 1 \N f | |
317 0.49 300000100 USD 299 2015-03-22 04:03:07.046768 1 \N \N | |
318 0.15 300000391 USD 300 2015-03-22 04:03:07.046768 1 \N \N | |
319 1.98 300000116 USD 301 2015-03-22 04:03:07.046768 1 \N \N | |
320 6.98 300000116 USD 302 2015-03-22 04:03:07.046768 1 \N p | |
321 0.10 300000027 USD 303 2015-03-22 04:03:07.046768 1 \N \N | |
322 0.49 300000027 USD 304 2015-03-22 04:03:07.046768 1 \N f | |
323 7.99 300000408 USD 305 2015-03-22 04:03:07.046768 1 \N \N | |
324 0.15 300000632 USD 306 2015-03-22 04:03:07.046768 1 \N \N | |
325 0.99 300000632 USD 307 2015-03-22 04:03:07.046768 1 \N f | |
326 0.15 300000394 USD 308 2015-03-22 04:03:07.046768 1 \N \N | |
327 0.15 300000507 USD 309 2015-03-22 04:03:07.046768 1 \N \N | |
328 1.49 300000507 USD 310 2015-03-22 04:03:07.046768 1 \N f | |
329 0.99 300000055 USD 311 2015-03-22 04:03:07.046768 1 \N f | |
330 0.49 300000055 USD 312 2015-03-22 04:03:07.046768 1 \N \N | |
331 0.15 300000231 USD 313 2015-03-22 04:03:07.046768 1 \N \N | |
332 0.40 300000138 USD 314 2015-03-22 04:03:07.046768 1 \N \N | |
333 0.99 300000518 USD 315 2015-03-22 04:03:07.046768 1 \N \N | |
334 0.45 300000253 USD 316 2015-03-22 04:03:07.046768 1 \N \N | |
335 25.99 300000208 USD 317 2015-03-22 04:03:07.046768 1 \N \N | |
336 0.45 300000535 USD 318 2015-03-22 04:03:07.046768 1 \N \N | |
337 0.40 300000112 USD 319 2015-03-22 04:03:07.046768 1 \N \N | |
338 0.10 300000043 USD 320 2015-03-22 04:03:07.046768 1 \N \N | |
339 0.10 300000043 USD 321 2015-03-22 04:03:07.046768 1 \N \N | |
340 0.74 300000289 USD 322 2015-03-22 04:03:07.046768 1 \N \N | |
341 0.10 300000070 USD 323 2015-03-22 04:03:07.046768 1 \N \N | |
342 0.15 300000262 USD 324 2015-03-22 04:03:07.046768 1 \N \N | |
343 0.45 300000321 USD 325 2015-03-22 04:03:07.046768 1 \N \N | |
344 0.10 300000085 USD 326 2015-03-22 04:03:07.046768 1 \N \N | |
345 3.99 300000555 USD 327 2015-03-22 04:03:07.046768 1 \N \N | |
346 1.99 300000086 USD 328 2015-03-22 04:03:07.046768 1 \N \N | |
347 0.10 300000172 USD 329 2015-03-22 04:03:07.046768 1 \N \N | |
348 0.15 300000395 USD 330 2015-03-22 04:03:07.046768 1 \N \N | |
349 0.45 300000633 USD 331 2015-03-22 04:03:07.046768 1 \N \N | |
350 0.99 300000633 USD 332 2015-03-22 04:03:07.046768 1 \N f | |
351 0.10 300000173 USD 333 2015-03-22 04:03:07.046768 1 \N \N | |
352 0.45 300000322 USD 334 2015-03-22 04:03:07.046768 1 \N \N | |
353 9.98 300000322 USD 335 2015-03-22 04:03:07.046768 1 \N p | |
354 9.98 300000322 USD 336 2015-03-22 04:03:07.046768 1 \N p | |
355 3.99 300000355 USD 337 2015-03-22 04:03:07.046768 1 \N f | |
356 0.40 300000174 USD 338 2015-03-22 04:03:07.046768 1 \N \N | |
357 0.99 300000574 USD 339 2015-03-22 04:03:07.046768 1 \N \N | |
358 0.45 300000647 USD 340 2015-03-22 04:03:07.046768 1 \N \N | |
359 0.10 300000028 USD 341 2015-03-22 04:03:07.046768 1 \N \N | |
360 0.45 300000396 USD 342 2015-03-22 04:03:07.046768 1 \N \N | |
361 1.49 300000323 USD 343 2015-03-22 04:03:07.046768 1 \N \N | |
362 69.99 300000323 USD 344 2015-03-22 04:03:07.046768 1 \N p | |
363 1.25 300000575 USD 345 2015-03-22 04:03:07.046768 1 \N \N | |
364 0.45 300000648 USD 346 2015-03-22 04:03:07.046768 1 \N \N | |
365 0.40 300000175 USD 347 2015-03-22 04:03:07.046768 1 \N \N | |
366 0.40 300000176 USD 348 2015-03-22 04:03:07.046768 1 \N \N | |
367 0.99 300000603 USD 349 2015-03-22 04:03:07.046768 1 \N \N | |
368 0.15 300000374 USD 350 2015-03-22 04:03:07.046768 1 \N \N | |
369 0.10 300000006 USD 351 2015-03-22 04:03:07.046768 1 \N \N | |
370 0.15 300000508 USD 352 2015-03-22 04:03:07.046768 1 \N \N | |
371 0.45 300000356 USD 353 2015-03-22 04:03:07.046768 1 \N \N | |
372 2.49 300000254 USD 354 2015-03-22 04:03:07.046768 1 \N \N | |
373 2.99 300000254 USD 355 2015-03-22 04:03:07.046768 1 \N f | |
374 0.45 300000604 USD 356 2015-03-22 04:03:07.046768 1 \N \N | |
375 0.45 300000576 USD 357 2015-03-22 04:03:07.046768 1 \N \N | |
376 54.95 300000674 USD 358 2015-03-22 04:03:07.046768 1 \N \N | |
377 0.10 300000162 USD 359 2015-03-22 04:03:07.046768 1 \N \N | |
378 69.99 300000062 USD 360 2015-03-22 04:03:07.046768 1 \N p | |
379 4.99 300000062 USD 361 2015-03-22 04:03:07.046768 1 \N \N | |
380 0.40 300000139 USD 362 2015-03-22 04:03:07.046768 1 \N \N | |
381 0.49 300000357 USD 363 2015-03-22 04:03:07.046768 1 \N \N | |
382 0.15 300000306 USD 364 2015-03-22 04:03:07.046768 1 \N \N | |
383 0.25 300000056 USD 365 2015-03-22 04:03:07.046768 1 \N \N | |
384 0.99 300000577 USD 366 2015-03-22 04:03:07.046768 1 \N \N | |
385 0.40 300000113 USD 367 2015-03-22 04:03:07.046768 1 \N \N | |
386 0.50 300000113 USD 368 2015-03-22 04:03:07.046768 1 \N f | |
387 0.15 300000375 USD 369 2015-03-22 04:03:07.046768 1 \N \N | |
388 0.25 300000087 USD 370 2015-03-22 04:03:07.046768 1 \N \N | |
389 0.75 300000087 USD 371 2015-03-22 04:03:07.046768 1 \N f | |
390 0.15 300000536 USD 372 2015-03-22 04:03:07.046768 1 \N \N | |
391 3.99 300000260 USD 373 2015-03-22 04:03:07.046768 1 \N f | |
392 0.15 300000307 USD 374 2015-03-22 04:03:07.046768 1 \N \N | |
393 0.10 300000177 USD 375 2015-03-22 04:03:07.046768 1 \N \N | |
394 0.45 300000649 USD 376 2015-03-22 04:03:07.046768 1 \N \N | |
395 0.45 300000397 USD 377 2015-03-22 04:03:07.046768 1 \N \N | |
396 0.49 300000073 USD 378 2015-03-22 04:03:07.046768 1 \N \N | |
397 0.15 300000261 USD 379 2015-03-22 04:03:07.046768 1 \N \N | |
398 0.49 300000040 USD 380 2015-03-22 04:03:07.046768 1 \N \N | |
399 8.49 300000200 USD 381 2015-03-22 04:03:07.046768 1 \N \N | |
400 0.99 300000509 USD 382 2015-03-22 04:03:07.046768 1 \N \N | |
401 1.99 300000509 USD 383 2015-03-22 04:03:07.046768 1 \N f | |
402 0.45 300000324 USD 384 2015-03-22 04:03:07.046768 1 \N \N | |
403 1.99 300000605 USD 385 2015-03-22 04:03:07.046768 1 \N \N | |
404 1.99 300000605 USD 386 2015-03-22 04:03:07.046768 1 \N f | |
405 0.45 300000650 USD 387 2015-03-22 04:03:07.046768 1 \N \N | |
406 0.49 300000088 USD 388 2015-03-22 04:03:07.046768 1 \N \N | |
407 0.49 300000325 USD 389 2015-03-22 04:03:07.046768 1 \N \N | |
408 1.49 300000325 USD 390 2015-03-22 04:03:07.046768 1 \N f | |
409 0.15 300000308 USD 391 2015-03-22 04:03:07.046768 1 \N \N | |
410 0.49 300000308 USD 392 2015-03-22 04:03:07.046768 1 \N f | |
411 0.40 300000140 USD 393 2015-03-22 04:03:07.046768 1 \N \N | |
412 0.45 300000537 USD 394 2015-03-22 04:03:07.046768 1 \N \N | |
413 0.99 300000495 USD 395 2015-03-22 04:03:07.046768 1 \N \N | |
414 1.79 300000495 USD 396 2015-03-22 04:03:07.046768 1 \N f | |
415 2.99 300000495 USD 397 2015-03-22 04:03:07.046768 1 \N p | |
416 1.00 300000178 USD 398 2015-03-22 04:03:07.046768 1 \N \N | |
417 0.40 300000184 USD 399 2015-03-22 04:03:07.046768 1 \N \N | |
418 0.10 300000057 USD 400 2015-03-22 04:03:07.046768 1 \N \N | |
419 0.15 300000519 USD 401 2015-03-22 04:03:07.046768 1 \N \N | |
420 0.10 300000171 USD 402 2015-03-22 04:03:07.046768 1 \N \N | |
421 0.45 300000510 USD 403 2015-03-22 04:03:07.046768 1 \N \N | |
422 0.10 300000054 USD 404 2015-03-22 04:03:07.046768 1 \N \N | |
423 0.59 300000274 USD 405 2015-03-22 04:03:07.046768 1 \N \N | |
424 0.99 300000274 USD 406 2015-03-22 04:03:07.046768 1 \N f | |
425 0.10 300000181 USD 407 2015-03-22 04:03:07.046768 1 \N \N | |
426 0.10 300000182 USD 408 2015-03-22 04:03:07.046768 1 \N \N | |
427 0.45 300000358 USD 409 2015-03-22 04:03:07.046768 1 \N \N | |
428 0.15 300000359 USD 410 2015-03-22 04:03:07.046768 1 \N \N | |
429 0.25 300000089 USD 411 2015-03-22 04:03:07.046768 1 \N \N | |
430 0.25 300000090 USD 412 2015-03-22 04:03:07.046768 1 \N \N | |
431 0.15 300000511 USD 413 2015-03-22 04:03:07.046768 1 \N \N | |
432 0.15 300000309 USD 414 2015-03-22 04:03:07.046768 1 \N \N | |
433 0.99 300000520 USD 415 2015-03-22 04:03:07.046768 1 \N \N | |
434 1.49 300000520 USD 416 2015-03-22 04:03:07.046768 1 \N f | |
435 0.99 300000578 USD 417 2015-03-22 04:03:07.046768 1 \N \N | |
436 0.40 300000183 USD 418 2015-03-22 04:03:07.046768 1 \N \N | |
437 1.99 300000326 USD 419 2015-03-22 04:03:07.046768 1 \N \N | |
438 0.15 300000521 USD 420 2015-03-22 04:03:07.046768 1 \N \N | |
439 0.99 300000034 USD 421 2015-03-22 04:03:07.046768 1 \N \N | |
440 89.98 300000209 USD 422 2015-03-22 04:03:07.046768 1 \N p | |
441 0.10 300000180 USD 423 2015-03-22 04:03:07.046768 1 \N \N | |
442 0.45 300000327 USD 424 2015-03-22 04:03:07.046768 1 \N \N | |
443 0.10 300000075 USD 425 2015-03-22 04:03:07.046768 1 \N \N | |
444 0.45 300000328 USD 426 2015-03-22 04:03:07.046768 1 \N \N | |
445 0.40 300000115 USD 427 2015-03-22 04:03:07.046768 1 \N \N | |
446 0.40 300000290 USD 428 2015-03-22 04:03:07.046768 1 \N \N | |
447 1.49 300000290 USD 429 2015-03-22 04:03:07.046768 1 \N f | |
448 11.49 300000204 USD 430 2015-03-22 04:03:07.046768 1 \N \N | |
449 0.40 300000047 USD 431 2015-03-22 04:03:07.046768 1 \N \N | |
450 0.10 300000091 USD 432 2015-03-22 04:03:07.046768 1 \N \N | |
451 0.15 300000538 USD 433 2015-03-22 04:03:07.046768 1 \N \N | |
452 1.49 300000538 USD 434 2015-03-22 04:03:07.046768 1 \N f | |
453 0.15 300000232 USD 435 2015-03-22 04:03:07.046768 1 \N \N | |
454 0.99 300000556 USD 436 2015-03-22 04:03:07.046768 1 \N \N | |
455 1.49 300000606 USD 437 2015-03-22 04:03:07.046768 1 \N \N | |
456 0.15 300000398 USD 438 2015-03-22 04:03:07.046768 1 \N \N | |
457 0.40 300000141 USD 439 2015-03-22 04:03:07.046768 1 \N \N | |
458 0.45 300000651 USD 440 2015-03-22 04:03:07.046768 1 \N \N | |
459 0.15 300000522 USD 441 2015-03-22 04:03:07.046768 1 \N \N | |
460 1.49 300000522 USD 442 2015-03-22 04:03:07.046768 1 \N f | |
461 0.10 300000186 USD 443 2015-03-22 04:03:07.046768 1 \N \N | |
462 0.99 300000155 USD 444 2015-03-22 04:03:07.046768 1 \N \N | |
463 1.99 300000155 USD 445 2015-03-22 04:03:07.046768 1 \N f | |
464 0.15 300000557 USD 446 2015-03-22 04:03:07.046768 1 \N \N | |
465 3.99 300000607 USD 447 2015-03-22 04:03:07.046768 1 \N \N | |
466 0.15 300000558 USD 448 2015-03-22 04:03:07.046768 1 \N \N | |
467 0.10 300000072 USD 449 2015-03-22 04:03:07.046768 1 \N \N | |
468 0.10 300000013 USD 450 2015-03-22 04:03:07.046768 1 \N \N | |
469 0.45 300000579 USD 451 2015-03-22 04:03:07.046768 1 \N \N | |
470 0.15 300000275 USD 452 2015-03-22 04:03:07.046768 1 \N \N | |
471 0.15 300000481 USD 453 2015-03-22 04:03:07.046768 1 \N \N | |
472 8.98 300000206 USD 454 2015-03-22 04:03:07.046768 1 \N \N | |
473 0.45 300000291 USD 455 2015-03-22 04:03:07.046768 1 \N \N | |
474 0.49 300000145 USD 456 2015-03-22 04:03:07.046768 1 \N \N | |
475 0.75 300000145 USD 457 2015-03-22 04:03:07.046768 1 \N f | |
476 0.89 300000360 USD 458 2015-03-22 04:03:07.046768 1 \N \N | |
477 0.45 300000608 USD 459 2015-03-22 04:03:07.046768 1 \N \N | |
478 2.99 300000676 USD 460 2015-03-22 04:03:07.046768 1 \N p | |
479 0.45 300000512 USD 461 2015-03-22 04:03:07.046768 1 \N \N | |
480 14.98 300000410 USD 462 2015-03-22 04:03:07.046768 1 \N \N | |
481 0.45 300000513 USD 463 2015-03-22 04:03:07.046768 1 \N \N | |
482 1.49 300000513 USD 464 2015-03-22 04:03:07.046768 1 \N f | |
483 19.99 300000665 USD 465 2015-03-22 04:03:07.046768 1 \N \N | |
484 1.99 300000213 USD 466 2015-03-22 04:03:07.046768 1 \N p | |
485 0.99 300000263 USD 467 2015-03-22 04:03:07.046768 1 \N \N | |
486 1.49 300000263 USD 468 2015-03-22 04:03:07.046768 1 \N f | |
487 0.10 300000045 USD 469 2015-03-22 04:03:07.046768 1 \N \N | |
488 0.49 300000045 USD 470 2015-03-22 04:03:07.046768 1 \N f | |
489 4.99 300000002 USD 471 2015-03-22 04:03:07.046768 1 \N f | |
490 1.20 300000044 USD 472 2015-03-22 04:03:07.046768 1 \N \N | |
491 1.99 300000044 USD 473 2015-03-22 04:03:07.046768 1 \N f | |
492 1.35 300000220 USD 474 2015-03-22 04:03:07.046768 1 \N \N | |
493 0.25 300000046 USD 475 2015-03-22 04:03:07.046768 1 \N \N | |
494 0.74 300000046 USD 476 2015-03-22 04:03:07.046768 1 \N f | |
495 0.49 300000233 USD 477 2015-03-22 04:03:07.046768 1 \N \N | |
496 0.45 300000580 USD 478 2015-03-22 04:03:07.046768 1 \N \N | |
497 1.25 300000580 USD 479 2015-03-22 04:03:07.046768 1 \N f | |
498 1.49 300000329 USD 480 2015-03-22 04:03:07.046768 1 \N \N | |
499 1.99 300000329 USD 481 2015-03-22 04:03:07.046768 1 \N f | |
500 0.99 300000581 USD 482 2015-03-22 04:03:07.046768 1 \N \N | |
501 1.49 300000581 USD 483 2015-03-22 04:03:07.046768 1 \N f | |
502 0.45 300000652 USD 484 2015-03-22 04:03:07.046768 1 \N \N | |
503 2.49 300000609 USD 485 2015-03-22 04:03:07.046768 1 \N \N | |
504 0.45 300000376 USD 486 2015-03-22 04:03:07.046768 1 \N \N | |
505 0.40 300000192 USD 487 2015-03-22 04:03:07.046768 1 \N \N | |
506 0.99 300000610 USD 488 2015-03-22 04:03:07.046768 1 \N \N | |
507 0.10 300000187 USD 489 2015-03-22 04:03:07.046768 1 \N \N | |
508 0.15 300000611 USD 490 2015-03-22 04:03:07.046768 1 \N \N | |
509 0.45 300000514 USD 491 2015-03-22 04:03:07.046768 1 \N \N | |
510 0.15 300000539 USD 492 2015-03-22 04:03:07.046768 1 \N \N | |
511 0.15 300000292 USD 493 2015-03-22 04:03:07.046768 1 \N \N | |
512 0.45 300000377 USD 494 2015-03-22 04:03:07.046768 1 \N \N | |
513 12.99 300000667 USD 495 2015-03-22 04:03:07.046768 1 \N \N | |
514 3.99 300000473 USD 496 2015-03-22 04:03:07.046768 1 \N \N | |
515 1.49 300000559 USD 497 2015-03-22 04:03:07.046768 1 \N f | |
516 0.45 300000311 USD 498 2015-03-22 04:03:07.046768 1 \N \N | |
517 1.19 300000311 USD 499 2015-03-22 04:03:07.046768 1 \N f | |
518 4.99 300000405 USD 500 2015-03-22 04:03:07.046768 1 \N \N | |
519 3.99 300000682 USD 501 2015-03-22 04:03:07.046768 1 \N p | |
520 14.99 300000415 USD 502 2015-03-22 04:03:07.046768 1 \N \N | |
521 19.49 300000207 USD 503 2015-03-22 04:03:07.046768 1 \N \N | |
522 15.98 300000404 USD 504 2015-03-22 04:03:07.046768 1 \N \N | |
523 1.99 300000523 USD 505 2015-03-22 04:03:07.046768 1 \N \N | |
524 1.49 300000523 USD 506 2015-03-22 04:03:07.046768 1 \N f | |
525 49.98 300000411 USD 507 2015-03-22 04:03:07.046768 1 \N \N | |
526 0.45 300000217 USD 508 2015-03-22 04:03:07.046768 1 \N \N | |
527 2.99 300000217 USD 509 2015-03-22 04:03:07.046768 1 \N p | |
528 55.99 300000678 USD 510 2015-03-22 04:03:07.046768 1 \N \N | |
529 0.45 300000361 USD 511 2015-03-22 04:03:07.046768 1 \N \N | |
530 0.10 300000051 USD 512 2015-03-22 04:03:07.046768 1 \N \N | |
531 0.74 300000051 USD 513 2015-03-22 04:03:07.046768 1 \N f | |
532 0.10 300000156 USD 514 2015-03-22 04:03:07.046768 1 \N \N | |
533 0.15 300000258 USD 515 2015-03-22 04:03:07.046768 1 \N \N | |
534 0.15 300000312 USD 516 2015-03-22 04:03:07.046768 1 \N \N | |
535 0.15 300000234 USD 517 2015-03-22 04:03:07.046768 1 \N \N | |
536 0.45 300000482 USD 518 2015-03-22 04:03:07.046768 1 \N \N | |
537 0.45 300000483 USD 519 2015-03-22 04:03:07.046768 1 \N \N | |
538 1.49 300000483 USD 520 2015-03-22 04:03:07.046768 1 \N f | |
539 29.99 300000686 USD 521 2015-03-22 04:03:07.046768 1 \N \N | |
540 0.99 300000236 USD 522 2015-03-22 04:03:07.046768 1 \N \N | |
541 1.49 300000236 USD 523 2015-03-22 04:03:07.046768 1 \N f | |
542 4.99 300000000 USD 524 2015-03-22 04:03:07.046768 1 \N \N | |
543 0.15 300000235 USD 525 2015-03-22 04:03:07.046768 1 \N \N | |
544 0.49 300000235 USD 526 2015-03-22 04:03:07.046768 1 \N f | |
545 0.75 300000218 USD 527 2015-03-22 04:03:07.046768 1 \N \N | |
546 2.99 300000218 USD 528 2015-03-22 04:03:07.046768 1 \N f | |
547 0.99 300000484 USD 529 2015-03-22 04:03:07.046768 1 \N \N | |
548 11.98 300000211 USD 530 2015-03-22 04:03:07.046768 1 \N p | |
549 14.98 300000211 USD 531 2015-03-22 04:03:07.046768 1 \N p | |
550 0.40 300000014 USD 532 2015-03-22 04:03:07.046768 1 \N \N | |
551 0.49 300000014 USD 533 2015-03-22 04:03:07.046768 1 \N f | |
552 42.98 300000197 USD 534 2015-03-22 04:03:07.046768 1 \N \N | |
553 0.45 300000612 USD 535 2015-03-22 04:03:07.046768 1 \N \N | |
554 0.10 300000015 USD 536 2015-03-22 04:03:07.046768 1 \N \N | |
555 0.49 300000015 USD 537 2015-03-22 04:03:07.046768 1 \N f | |
556 0.15 300000485 USD 538 2015-03-22 04:03:07.046768 1 \N \N | |
557 0.99 300000058 USD 539 2015-03-22 04:03:07.046768 1 \N f | |
558 0.99 300000058 USD 540 2015-03-22 04:03:07.046768 1 \N \N | |
559 3.99 300000675 USD 541 2015-03-22 04:03:07.046768 1 \N p | |
560 0.45 300000540 USD 542 2015-03-22 04:03:07.046768 1 \N \N | |
561 0.45 300000541 USD 543 2015-03-22 04:03:07.046768 1 \N \N | |
562 1.49 300000541 USD 544 2015-03-22 04:03:07.046768 1 \N f | |
563 2.99 300000004 USD 545 2015-03-22 04:03:07.046768 1 \N \N | |
564 0.45 300000215 USD 546 2015-03-22 04:03:07.046768 1 \N \N | |
565 0.49 300000215 USD 547 2015-03-22 04:03:07.046768 1 \N f | |
566 2.99 300000215 USD 548 2015-03-22 04:03:07.046768 1 \N p | |
567 0.75 300000223 USD 549 2015-03-22 04:03:07.046768 1 \N \N | |
568 2.99 300000223 USD 550 2015-03-22 04:03:07.046768 1 \N f | |
569 1.29 300000293 USD 551 2015-03-22 04:03:07.046768 1 \N \N | |
570 2.49 300000293 USD 552 2015-03-22 04:03:07.046768 1 \N f | |
571 0.99 300000542 USD 553 2015-03-22 04:03:07.046768 1 \N \N | |
572 0.40 300000076 USD 554 2015-03-22 04:03:07.046768 1 \N \N | |
573 0.99 300000076 USD 555 2015-03-22 04:03:07.046768 1 \N f | |
574 69.98 300000205 USD 556 2015-03-22 04:03:07.046768 1 \N \N | |
575 0.15 300000524 USD 557 2015-03-22 04:03:07.046768 1 \N \N | |
576 0.40 300000188 USD 558 2015-03-22 04:03:07.046768 1 \N \N | |
577 0.45 300000378 USD 559 2015-03-22 04:03:07.046768 1 \N \N | |
578 0.74 300000378 USD 560 2015-03-22 04:03:07.046768 1 \N f | |
579 0.10 300000032 USD 561 2015-03-22 04:03:07.046768 1 \N \N | |
580 0.45 300000362 USD 562 2015-03-22 04:03:07.046768 1 \N \N | |
581 0.99 300000582 USD 563 2015-03-22 04:03:07.046768 1 \N \N | |
582 0.40 300000142 USD 564 2015-03-22 04:03:07.046768 1 \N \N | |
583 0.10 300000074 USD 565 2015-03-22 04:03:07.046768 1 \N \N | |
584 0.45 300000330 USD 566 2015-03-22 04:03:07.046768 1 \N \N | |
585 1.99 300000330 USD 567 2015-03-22 04:03:07.046768 1 \N f | |
586 0.45 300000653 USD 568 2015-03-22 04:03:07.046768 1 \N \N | |
587 0.15 300000525 USD 569 2015-03-22 04:03:07.046768 1 \N \N | |
588 0.45 300000294 USD 570 2015-03-22 04:03:07.046768 1 \N \N | |
589 0.69 300000294 USD 571 2015-03-22 04:03:07.046768 1 \N f | |
590 0.45 300000331 USD 572 2015-03-22 04:03:07.046768 1 \N \N | |
591 0.45 300000399 USD 573 2015-03-22 04:03:07.046768 1 \N \N | |
592 0.10 300000098 USD 574 2015-03-22 04:03:07.046768 1 \N \N | |
593 0.45 300000496 USD 575 2015-03-22 04:03:07.046768 1 \N \N | |
594 0.10 300000077 USD 576 2015-03-22 04:03:07.046768 1 \N \N | |
595 0.45 300000613 USD 577 2015-03-22 04:03:07.046768 1 \N \N | |
596 0.10 300000143 USD 578 2015-03-22 04:03:07.046768 1 \N \N | |
597 0.15 300000237 USD 579 2015-03-22 04:03:07.046768 1 \N \N | |
598 0.40 300000189 USD 580 2015-03-22 04:03:07.046768 1 \N \N | |
599 0.15 300000654 USD 581 2015-03-22 04:03:07.046768 1 \N \N | |
600 0.15 300000295 USD 582 2015-03-22 04:03:07.046768 1 \N \N | |
601 0.25 300000265 USD 583 2015-03-22 04:03:07.046768 1 \N \N | |
602 0.40 300000190 USD 584 2015-03-22 04:03:07.046768 1 \N \N | |
603 0.15 300000655 USD 585 2015-03-22 04:03:07.046768 1 \N \N | |
604 1.19 300000071 USD 586 2015-03-22 04:03:07.046768 1 \N \N | |
605 0.99 300000614 USD 587 2015-03-22 04:03:07.046768 1 \N \N | |
606 0.99 300000016 USD 588 2015-03-22 04:03:07.046768 1 \N \N | |
607 4.99 300000238 USD 589 2015-03-22 04:03:07.046768 1 \N f | |
608 0.15 300000486 USD 590 2015-03-22 04:03:07.046768 1 \N \N | |
609 1.49 300000486 USD 591 2015-03-22 04:03:07.046768 1 \N f | |
610 0.15 300000615 USD 592 2015-03-22 04:03:07.046768 1 \N \N | |
611 8.98 300000201 USD 593 2015-03-22 04:03:07.046768 1 \N \N | |
612 0.99 300000092 USD 594 2015-03-22 04:03:07.046768 1 \N \N | |
613 0.15 300000616 USD 595 2015-03-22 04:03:07.046768 1 \N \N | |
614 0.15 300000276 USD 596 2015-03-22 04:03:07.046768 1 \N \N | |
615 0.15 300000497 USD 597 2015-03-22 04:03:07.046768 1 \N \N | |
616 0.49 300000277 USD 598 2015-03-22 04:03:07.046768 1 \N \N | |
617 0.74 300000277 USD 599 2015-03-22 04:03:07.046768 1 \N f | |
618 0.45 300000526 USD 600 2015-03-22 04:03:07.046768 1 \N \N | |
619 0.99 300000526 USD 601 2015-03-22 04:03:07.046768 1 \N f | |
620 12.99 300000660 USD 602 2015-03-22 04:03:07.046768 1 \N \N | |
621 3.99 300000199 USD 603 2015-03-22 04:03:07.046768 1 \N \N | |
622 0.15 300000239 USD 604 2015-03-22 04:03:07.046768 1 \N \N | |
623 0.15 300000296 USD 605 2015-03-22 04:03:07.046768 1 \N \N | |
624 0.15 300000617 USD 606 2015-03-22 04:03:07.046768 1 \N \N | |
625 0.15 300000527 USD 607 2015-03-22 04:03:07.046768 1 \N \N | |
626 0.49 300000031 USD 608 2015-03-22 04:03:07.046768 1 \N \N | |
627 0.99 300000498 USD 609 2015-03-22 04:03:07.046768 1 \N \N | |
628 0.15 300000618 USD 610 2015-03-22 04:03:07.046768 1 \N \N | |
629 0.99 300000618 USD 611 2015-03-22 04:03:07.046768 1 \N f | |
630 0.99 300000619 USD 612 2015-03-22 04:03:07.046768 1 \N \N | |
631 0.15 300000266 USD 613 2015-03-22 04:03:07.046768 1 \N \N | |
632 0.49 300000048 USD 614 2015-03-22 04:03:07.046768 1 \N \N | |
633 7.99 300000268 USD 615 2015-03-22 04:03:07.046768 1 \N \N | |
634 9.99 300000268 USD 616 2015-03-22 04:03:07.046768 1 \N f | |
635 0.75 300000267 USD 617 2015-03-22 04:03:07.046768 1 \N \N | |
636 0.49 300000363 USD 618 2015-03-22 04:03:07.046768 1 \N \N | |
637 0.15 300000487 USD 619 2015-03-22 04:03:07.046768 1 \N \N | |
638 0.45 300000583 USD 620 2015-03-22 04:03:07.046768 1 \N \N | |
639 0.45 300000400 USD 621 2015-03-22 04:03:07.046768 1 \N \N | |
640 0.49 300000364 USD 622 2015-03-22 04:03:07.046768 1 \N \N | |
641 0.79 300000584 USD 623 2015-03-22 04:03:07.046768 1 \N \N | |
642 0.40 300000191 USD 624 2015-03-22 04:03:07.046768 1 \N \N | |
643 0.79 300000585 USD 625 2015-03-22 04:03:07.046768 1 \N \N | |
644 0.49 300000278 USD 626 2015-03-22 04:03:07.046768 1 \N \N | |
645 0.99 300000278 USD 627 2015-03-22 04:03:07.046768 1 \N f | |
646 0.20 300000017 USD 628 2015-03-22 04:03:07.046768 1 \N \N | |
647 0.49 300000017 USD 629 2015-03-22 04:03:07.046768 1 \N f | |
648 2.99 300000472 USD 630 2015-03-22 04:03:07.046768 1 \N f | |
649 0.99 300000499 USD 631 2015-03-22 04:03:07.046768 1 \N \N | |
650 1.99 300000499 USD 632 2015-03-22 04:03:07.046768 1 \N f | |
651 0.40 300000123 USD 633 2015-03-22 04:03:07.046768 1 \N \N | |
652 12.99 300000661 USD 634 2015-03-22 04:03:07.046768 1 \N \N | |
653 0.15 300000620 USD 635 2015-03-22 04:03:07.046768 1 \N \N | |
654 13.99 300000662 USD 636 2015-03-22 04:03:07.046768 1 \N \N | |
655 0.10 300000094 USD 637 2015-03-22 04:03:07.046768 1 \N \N | |
656 7.99 300000060 USD 638 2015-03-22 04:03:07.046768 1 \N \N | |
657 3.99 300000543 USD 639 2015-03-22 04:03:07.046768 1 \N \N | |
658 0.15 300000240 USD 640 2015-03-22 04:03:07.046768 1 \N \N | |
659 1.00 300000332 USD 641 2015-03-22 04:03:07.046768 1 \N \N | |
660 0.15 300000279 USD 642 2015-03-22 04:03:07.046768 1 \N \N | |
661 0.99 300000586 USD 643 2015-03-22 04:03:07.046768 1 \N \N | |
662 0.15 300000255 USD 644 2015-03-22 04:03:07.046768 1 \N \N | |
663 0.45 300000621 USD 645 2015-03-22 04:03:07.046768 1 \N \N | |
664 0.15 300000401 USD 646 2015-03-22 04:03:07.046768 1 \N \N | |
665 0.25 300000118 USD 647 2015-03-22 04:03:07.046768 1 \N \N | |
666 1.49 300000118 USD 648 2015-03-22 04:03:07.046768 1 \N f | |
667 10.99 300000622 USD 649 2015-03-22 04:03:07.046768 1 \N \N | |
668 0.10 300000078 USD 650 2015-03-22 04:03:07.046768 1 \N \N | |
669 0.25 300000061 USD 651 2015-03-22 04:03:07.046768 1 \N \N | |
670 0.25 300000033 USD 652 2015-03-22 04:03:07.046768 1 \N \N | |
671 3.99 300000379 USD 653 2015-03-22 04:03:07.046768 1 \N \N | |
672 2.69 300000379 USD 654 2015-03-22 04:03:07.046768 1 \N f | |
673 0.79 300000515 USD 655 2015-03-22 04:03:07.046768 1 \N \N | |
674 0.25 300000049 USD 656 2015-03-22 04:03:07.046768 1 \N \N | |
675 0.15 300000269 USD 657 2015-03-22 04:03:07.046768 1 \N \N | |
676 1.99 300000099 USD 658 2015-03-22 04:03:07.046768 1 \N \N | |
677 0.25 300000144 USD 659 2015-03-22 04:03:07.046768 1 \N \N | |
678 0.99 300000144 USD 660 2015-03-22 04:03:07.046768 1 \N f | |
679 7.99 300000414 USD 661 2015-03-22 04:03:07.046768 1 \N \N | |
680 0.15 300000544 USD 662 2015-03-22 04:03:07.046768 1 \N \N | |
681 1.49 300000544 USD 663 2015-03-22 04:03:07.046768 1 \N f | |
682 0.10 300000019 USD 664 2015-03-22 04:03:07.046768 1 \N \N | |
683 0.15 300000656 USD 665 2015-03-22 04:03:07.046768 1 \N \N | |
684 0.40 300000119 USD 666 2015-03-22 04:03:07.046768 1 \N \N | |
685 4.99 300000280 USD 667 2015-03-22 04:03:07.046768 1 \N \N | |
686 0.45 300000500 USD 668 2015-03-22 04:03:07.046768 1 \N \N | |
687 0.15 300000488 USD 669 2015-03-22 04:03:07.046768 1 \N \N | |
688 1.49 300000488 USD 670 2015-03-22 04:03:07.046768 1 \N f | |
689 0.15 300000634 USD 671 2015-03-22 04:03:07.046768 1 \N \N | |
690 0.99 300000634 USD 672 2015-03-22 04:03:07.046768 1 \N f | |
691 0.49 300000120 USD 673 2015-03-22 04:03:07.046768 1 \N \N | |
692 0.15 300000587 USD 674 2015-03-22 04:03:07.046768 1 \N \N | |
693 1.49 300000333 USD 675 2015-03-22 04:03:07.046768 1 \N \N | |
694 0.75 300000121 USD 676 2015-03-22 04:03:07.046768 1 \N \N | |
695 0.99 300000334 USD 677 2015-03-22 04:03:07.046768 1 \N \N | |
696 1.49 300000334 USD 678 2015-03-22 04:03:07.046768 1 \N f | |
697 0.99 300000623 USD 679 2015-03-22 04:03:07.046768 1 \N \N | |
698 1.49 300000623 USD 680 2015-03-22 04:03:07.046768 1 \N f | |
699 14.99 300000673 USD 681 2015-03-22 04:03:07.046768 1 \N \N | |
700 10.99 300000672 USD 682 2015-03-22 04:03:07.046768 1 \N \N | |
701 6.99 300000416 USD 683 2015-03-22 04:03:07.046768 1 \N \N | |
702 9.99 300000417 USD 684 2015-03-22 04:03:07.046768 1 \N \N | |
703 17.99 300000671 USD 685 2015-03-22 04:03:07.046768 1 \N \N | |
704 1.99 300000335 USD 686 2015-03-22 04:03:07.046768 1 \N \N | |
705 0.45 300000365 USD 687 2015-03-22 04:03:07.046768 1 \N \N | |
706 0.40 300000122 USD 688 2015-03-22 04:03:07.046768 1 \N \N | |
707 3.99 300000336 USD 689 2015-03-22 04:03:07.046768 1 \N \N | |
708 0.40 300000146 USD 690 2015-03-22 04:03:07.046768 1 \N \N | |
709 0.99 300000588 USD 691 2015-03-22 04:03:07.046768 1 \N \N | |
710 1.99 300000588 USD 692 2015-03-22 04:03:07.046768 1 \N f | |
711 0.10 300000165 USD 693 2015-03-22 04:03:07.046768 1 \N \N | |
712 1.49 300000657 USD 694 2015-03-22 04:03:07.046768 1 \N \N | |
713 0.45 300000589 USD 695 2015-03-22 04:03:07.046768 1 \N \N | |
714 1.49 300000337 USD 696 2015-03-22 04:03:07.046768 1 \N \N | |
715 0.74 300000366 USD 697 2015-03-22 04:03:07.046768 1 \N \N | |
716 1.49 300000366 USD 698 2015-03-22 04:03:07.046768 1 \N f | |
717 1.00 300000193 USD 699 2015-03-22 04:03:07.046768 1 \N \N | |
718 0.45 300000402 USD 700 2015-03-22 04:03:07.046768 1 \N \N | |
719 0.45 300000658 USD 701 2015-03-22 04:03:07.046768 1 \N \N | |
720 0.45 300000338 USD 702 2015-03-22 04:03:07.046768 1 \N \N | |
721 0.15 300000501 USD 703 2015-03-22 04:03:07.046768 1 \N \N | |
722 0.99 300000528 USD 704 2015-03-22 04:03:07.046768 1 \N \N | |
723 0.40 300000157 USD 705 2015-03-22 04:03:07.046768 1 \N \N | |
724 0.40 300000147 USD 706 2015-03-22 04:03:07.046768 1 \N \N | |
725 0.99 300000403 USD 707 2015-03-22 04:03:07.046768 1 \N \N | |
726 0.99 300000339 USD 708 2015-03-22 04:03:07.046768 1 \N \N | |
727 0.40 300000148 USD 709 2015-03-22 04:03:07.046768 1 \N \N | |
728 0.45 300000529 USD 710 2015-03-22 04:03:07.046768 1 \N \N | |
729 0.75 300000367 USD 711 2015-03-22 04:03:07.046768 1 \N \N | |
730 0.45 300000545 USD 712 2015-03-22 04:03:07.046768 1 \N \N | |
731 0.40 300000149 USD 713 2015-03-22 04:03:07.046768 1 \N \N | |
732 16.99 300000666 USD 714 2015-03-22 04:03:07.046768 1 \N \N | |
733 1.99 300000590 USD 715 2015-03-22 04:03:07.046768 1 \N \N | |
734 2.49 300000590 USD 716 2015-03-22 04:03:07.046768 1 \N f | |
735 0.79 300000591 USD 717 2015-03-22 04:03:07.046768 1 \N \N | |
736 0.74 300000297 USD 718 2015-03-22 04:03:07.046768 1 \N \N | |
737 0.10 300000063 USD 719 2015-03-22 04:03:07.046768 1 \N \N | |
738 0.99 300000063 USD 720 2015-03-22 04:03:07.046768 1 \N f | |
739 0.45 300000530 USD 721 2015-03-22 04:03:07.046768 1 \N \N | |
740 0.45 300000531 USD 722 2015-03-22 04:03:07.046768 1 \N \N | |
741 1.49 300000531 USD 723 2015-03-22 04:03:07.046768 1 \N f | |
742 29.99 300000687 USD 724 2015-03-22 04:03:07.046768 1 \N \N | |
743 2.99 300000281 USD 725 2015-03-22 04:03:07.046768 1 \N \N | |
744 1.99 300000281 USD 726 2015-03-22 04:03:07.046768 1 \N f | |
745 4.99 300000003 USD 727 2015-03-22 04:03:07.046768 1 \N \N | |
746 2.99 300000003 USD 728 2015-03-22 04:03:07.046768 1 \N f | |
747 0.75 300000222 USD 729 2015-03-22 04:03:07.046768 1 \N \N | |
748 11.49 300000412 USD 730 2015-03-22 04:03:07.046768 1 \N \N | |
749 38.99 300000202 USD 731 2015-03-22 04:03:07.046768 1 \N \N | |
750 259.98 300000202 USD 732 2015-03-22 04:03:07.046768 1 \N p | |
751 69.99 300000202 USD 733 2015-03-22 04:03:07.046768 1 \N p | |
752 0.15 300000282 USD 734 2015-03-22 04:03:07.046768 1 \N \N | |
753 0.15 300000516 USD 735 2015-03-22 04:03:07.046768 1 \N \N | |
754 0.99 300000124 USD 736 2015-03-22 04:03:07.046768 1 \N f | |
755 0.25 300000124 USD 737 2015-03-22 04:03:07.046768 1 \N \N | |
756 0.99 300000592 USD 738 2015-03-22 04:03:07.046768 1 \N \N | |
757 2.99 300000368 USD 739 2015-03-22 04:03:07.046768 1 \N \N | |
758 11.99 300000368 USD 740 2015-03-22 04:03:07.046768 1 \N p | |
759 0.45 300000340 USD 741 2015-03-22 04:03:07.046768 1 \N \N | |
760 1.49 300000069 USD 742 2015-03-22 04:03:07.046768 1 \N \N | |
761 0.15 300000369 USD 743 2015-03-22 04:03:07.046768 1 \N \N | |
762 0.40 300000194 USD 744 2015-03-22 04:03:07.046768 1 \N \N | |
763 0.45 300000341 USD 745 2015-03-22 04:03:07.046768 1 \N \N | |
764 0.40 300000125 USD 746 2015-03-22 04:03:07.046768 1 \N \N | |
765 0.74 300000370 USD 747 2015-03-22 04:03:07.046768 1 \N \N | |
766 0.40 300000126 USD 748 2015-03-22 04:03:07.046768 1 \N \N | |
767 1.99 300000342 USD 749 2015-03-22 04:03:07.046768 1 \N \N | |
768 0.15 300000546 USD 750 2015-03-22 04:03:07.046768 1 \N \N | |
769 0.15 300000313 USD 751 2015-03-22 04:03:07.046768 1 \N \N | |
770 0.10 300000179 USD 752 2015-03-22 04:03:07.046768 1 \N \N | |
771 0.25 300000127 USD 753 2015-03-22 04:03:07.046768 1 \N \N | |
772 3.49 300000009 USD 754 2015-03-22 04:03:07.046768 1 \N \N | |
773 5.99 300000009 USD 755 2015-03-22 04:03:07.046768 1 \N f | |
774 1.39 300000635 USD 3 2015-03-22 04:03:07.046768 1 \N \N | |
775 0.15 300000502 USD 4 2015-03-22 04:03:07.046768 1 \N \N | |
776 1.49 300000502 USD 5 2015-03-22 04:03:07.046768 1 \N f | |
777 0.10 300000093 USD 6 2015-03-22 04:03:07.046768 1 \N \N | |
778 0.89 300000093 USD 7 2015-03-22 04:03:07.046768 1 \N f | |
779 0.79 300000624 USD 8 2015-03-22 04:03:07.046768 1 \N \N | |
780 0.99 300000659 USD 9 2015-03-22 04:03:07.046768 1 \N \N | |
781 0.25 300000128 USD 10 2015-03-22 04:03:07.046768 1 \N \N | |
782 1.99 300000128 USD 11 2015-03-22 04:03:07.046768 1 \N f | |
783 0.40 300000195 USD 12 2015-03-22 04:03:07.046768 1 \N \N | |
784 0.40 300000129 USD 13 2015-03-22 04:03:07.046768 1 \N \N | |
785 0.10 300000159 USD 14 2015-03-22 04:03:07.046768 1 \N \N | |
786 1.99 300000593 USD 15 2015-03-22 04:03:07.046768 1 \N \N | |
787 2.99 300000593 USD 16 2015-03-22 04:03:07.046768 1 \N f | |
788 0.50 300000343 USD 17 2015-03-22 04:03:07.046768 1 \N \N | |
789 9.98 300000203 USD 18 2015-03-22 04:03:07.046768 1 \N \N | |
790 0.15 300000283 USD 19 2015-03-22 04:03:07.046768 1 \N \N | |
791 0.24 300000371 USD 756 2015-03-22 04:31:13.463839 2 \N \N | |
792 1.45 300000371 USD 757 2015-03-22 04:31:13.463839 2 \N f | |
793 0.35 300000170 USD 758 2015-03-22 04:31:13.463839 2 \N \N | |
794 0.45 300000380 USD 759 2015-03-22 04:31:13.463839 2 \N \N | |
795 0.35 300000101 USD 760 2015-03-22 04:31:13.463839 2 \N \N | |
796 0.25 300000344 USD 761 2015-03-22 04:31:13.463839 2 \N \N | |
797 3.75 300000560 USD 762 2015-03-22 04:31:13.463839 2 \N \N | |
798 0.50 300000314 USD 763 2015-03-22 04:31:13.463839 2 \N \N | |
799 0.45 300000561 USD 764 2015-03-22 04:31:13.463839 2 \N \N | |
800 0.25 300000381 USD 765 2015-03-22 04:31:13.463839 2 \N \N | |
801 0.20 300000160 USD 766 2015-03-22 04:31:13.463839 2 \N \N | |
802 0.35 300000102 USD 767 2015-03-22 04:31:13.463839 2 \N \N | |
803 0.50 300000103 USD 768 2015-03-22 04:31:13.463839 2 \N \N | |
804 0.15 300000636 USD 769 2015-03-22 04:31:13.463839 2 \N \N | |
805 0.25 300000168 USD 770 2015-03-22 04:31:13.463839 2 \N \N | |
806 0.35 300000270 USD 771 2015-03-22 04:31:13.463839 2 \N \N | |
807 0.25 300000079 USD 772 2015-03-22 04:31:13.463839 2 \N \N | |
808 0.15 300000547 USD 773 2015-03-22 04:31:13.463839 2 \N \N | |
809 0.35 300000382 USD 774 2015-03-22 04:31:13.463839 2 \N \N | |
810 2.50 300000548 USD 775 2015-03-22 04:31:13.463839 2 \N f | |
811 0.15 300000548 USD 776 2015-03-22 04:31:13.463839 2 \N \N | |
812 0.24 300000298 USD 777 2015-03-22 04:31:13.463839 2 \N \N | |
813 1.99 300000562 USD 778 2015-03-22 04:31:13.463839 2 \N \N | |
814 0.50 300000315 USD 779 2015-03-22 04:31:13.463839 2 \N \N | |
815 0.15 300000489 USD 780 2015-03-22 04:31:13.463839 2 \N \N | |
816 3.00 300000489 USD 781 2015-03-22 04:31:13.463839 2 \N f | |
817 0.25 300000035 USD 782 2015-03-22 04:31:13.463839 2 \N \N | |
818 0.25 300000241 USD 783 2015-03-22 04:31:13.463839 2 \N \N | |
819 0.35 300000345 USD 784 2015-03-22 04:31:13.463839 2 \N \N | |
820 0.25 300000021 USD 785 2015-03-22 04:31:13.463839 2 \N \N | |
821 0.15 300000563 USD 786 2015-03-22 04:31:13.463839 2 \N \N | |
822 0.24 300000050 USD 787 2015-03-22 04:31:13.463839 2 \N \N | |
823 1.00 300000445 USD 788 2015-03-22 04:31:13.463839 2 \N \N | |
824 0.25 300000383 USD 789 2015-03-22 04:31:13.463839 2 \N \N | |
825 105.00 300000212 USD 790 2015-03-22 04:31:13.463839 2 \N p | |
826 1.00 300000219 USD 791 2015-03-22 04:31:13.463839 2 \N \N | |
827 0.50 300000243 USD 792 2015-03-22 04:31:13.463839 2 \N \N | |
828 0.70 300000243 USD 793 2015-03-22 04:31:13.463839 2 \N f | |
829 0.24 300000023 USD 794 2015-03-22 04:31:13.463839 2 \N \N | |
830 0.41 300000023 USD 795 2015-03-22 04:31:13.463839 2 \N f | |
831 0.45 300000490 USD 796 2015-03-22 04:31:13.463839 2 \N \N | |
832 0.45 300000491 USD 797 2015-03-22 04:31:13.463839 2 \N \N | |
833 3.00 300000491 USD 798 2015-03-22 04:31:13.463839 2 \N f | |
834 0.84 300000242 USD 799 2015-03-22 04:31:13.463839 2 \N \N | |
835 2.99 300000242 USD 800 2015-03-22 04:31:13.463839 2 \N f | |
836 0.25 300000022 USD 801 2015-03-22 04:31:13.463839 2 \N \N | |
837 4.00 300000444 USD 802 2015-03-22 04:31:13.463839 2 \N p | |
838 0.70 300000130 USD 803 2015-03-22 04:31:13.463839 2 \N \N | |
839 12.50 300000130 USD 804 2015-03-22 04:31:13.463839 2 \N p | |
840 0.24 300000104 USD 805 2015-03-22 04:31:13.463839 2 \N \N | |
841 0.45 300000104 USD 806 2015-03-22 04:31:13.463839 2 \N f | |
842 0.25 300000384 USD 807 2015-03-22 04:31:13.463839 2 \N \N | |
843 0.35 300000024 USD 808 2015-03-22 04:31:13.463839 2 \N \N | |
844 0.24 300000024 USD 809 2015-03-22 04:31:13.463839 2 \N f | |
845 0.25 300000256 USD 810 2015-03-22 04:31:13.463839 2 \N \N | |
846 0.25 300000161 USD 811 2015-03-22 04:31:13.463839 2 \N \N | |
847 16.00 300000668 USD 812 2015-03-22 04:31:13.463839 2 \N \N | |
848 0.25 300000244 USD 813 2015-03-22 04:31:13.463839 2 \N \N | |
849 0.25 300000346 USD 814 2015-03-22 04:31:13.463839 2 \N \N | |
850 1.00 300000347 USD 815 2015-03-22 04:31:13.463839 2 \N \N | |
851 0.25 300000036 USD 816 2015-03-22 04:31:13.463839 2 \N \N | |
852 0.23 300000036 USD 817 2015-03-22 04:31:13.463839 2 \N f | |
853 0.35 300000316 USD 818 2015-03-22 04:31:13.463839 2 \N \N | |
854 0.24 300000245 USD 819 2015-03-22 04:31:13.463839 2 \N \N | |
855 0.35 300000065 USD 820 2015-03-22 04:31:13.463839 2 \N \N | |
856 4.00 300000037 USD 821 2015-03-22 04:31:13.463839 2 \N \N | |
857 0.24 300000299 USD 822 2015-03-22 04:31:13.463839 2 \N \N | |
858 0.25 300000080 USD 823 2015-03-22 04:31:13.463839 2 \N \N | |
859 0.25 300000059 USD 824 2015-03-22 04:31:13.463839 2 \N \N | |
860 0.45 300000475 USD 825 2015-03-22 04:31:13.463839 2 \N \N | |
861 0.15 300000504 USD 826 2015-03-22 04:31:13.463839 2 \N \N | |
862 3.00 300000504 USD 827 2015-03-22 04:31:13.463839 2 \N f | |
863 0.15 300000594 USD 828 2015-03-22 04:31:13.463839 2 \N \N | |
864 0.50 300000385 USD 829 2015-03-22 04:31:13.463839 2 \N \N | |
865 0.15 300000492 USD 830 2015-03-22 04:31:13.463839 2 \N \N | |
866 0.15 300000549 USD 831 2015-03-22 04:31:13.463839 2 \N \N | |
867 0.25 300000152 USD 832 2015-03-22 04:31:13.463839 2 \N \N | |
868 3.95 300000474 USD 833 2015-03-22 04:31:13.463839 2 \N \N | |
869 32.78 300000407 USD 834 2015-03-22 04:31:13.463839 2 \N \N | |
870 2.25 300000476 USD 835 2015-03-22 04:31:13.463839 2 \N \N | |
871 0.50 300000163 USD 836 2015-03-22 04:31:13.463839 2 \N \N | |
872 0.25 300000164 USD 837 2015-03-22 04:31:13.463839 2 \N \N | |
873 1.95 300000564 USD 838 2015-03-22 04:31:13.463839 2 \N \N | |
874 0.45 300000565 USD 839 2015-03-22 04:31:13.463839 2 \N \N | |
875 3.00 300000565 USD 840 2015-03-22 04:31:13.463839 2 \N f | |
876 0.40 300000271 USD 841 2015-03-22 04:31:13.463839 2 \N \N | |
877 0.99 300000271 USD 842 2015-03-22 04:31:13.463839 2 \N f | |
878 0.50 300000348 USD 843 2015-03-22 04:31:13.463839 2 \N \N | |
879 0.24 300000349 USD 844 2015-03-22 04:31:13.463839 2 \N \N | |
880 0.24 300000131 USD 845 2015-03-22 04:31:13.463839 2 \N \N | |
881 0.45 300000131 USD 846 2015-03-22 04:31:13.463839 2 \N f | |
882 1.95 300000637 USD 847 2015-03-22 04:31:13.463839 2 \N \N | |
883 1.95 300000626 USD 848 2015-03-22 04:31:13.463839 2 \N \N | |
884 0.15 300000595 USD 849 2015-03-22 04:31:13.463839 2 \N \N | |
885 3.00 300000595 USD 850 2015-03-22 04:31:13.463839 2 \N f | |
886 0.25 300000007 USD 851 2015-03-22 04:31:13.463839 2 \N \N | |
887 0.50 300000373 USD 852 2015-03-22 04:31:13.463839 2 \N \N | |
888 0.70 300000373 USD 853 2015-03-22 04:31:13.463839 2 \N f | |
889 1.95 300000638 USD 854 2015-03-22 04:31:13.463839 2 \N \N | |
890 0.19 300000038 USD 855 2015-03-22 04:31:13.463839 2 \N \N | |
891 0.15 300000639 USD 856 2015-03-22 04:31:13.463839 2 \N \N | |
892 4.25 300000517 USD 857 2015-03-22 04:31:13.463839 2 \N \N | |
893 0.25 300000386 USD 858 2015-03-22 04:31:13.463839 2 \N \N | |
894 1.95 300000505 USD 859 2015-03-22 04:31:13.463839 2 \N \N | |
895 2.50 300000505 USD 860 2015-03-22 04:31:13.463839 2 \N f | |
896 0.45 300000257 USD 861 2015-03-22 04:31:13.463839 2 \N \N | |
897 1.45 300000257 USD 862 2015-03-22 04:31:13.463839 2 \N f | |
898 0.25 300000246 USD 863 2015-03-22 04:31:13.463839 2 \N \N | |
899 1.50 300000025 USD 864 2015-03-22 04:31:13.463839 2 \N \N | |
900 0.25 300000350 USD 865 2015-03-22 04:31:13.463839 2 \N \N | |
901 0.25 300000351 USD 866 2015-03-22 04:31:13.463839 2 \N \N | |
902 0.48 300000226 USD 867 2015-03-22 04:31:13.463839 2 \N \N | |
903 1.37 300000226 USD 868 2015-03-22 04:31:13.463839 2 \N f | |
904 0.45 300000627 USD 869 2015-03-22 04:31:13.463839 2 \N \N | |
905 0.35 300000227 USD 870 2015-03-22 04:31:13.463839 2 \N \N | |
906 0.35 300000166 USD 871 2015-03-22 04:31:13.463839 2 \N \N | |
907 0.50 300000167 USD 872 2015-03-22 04:31:13.463839 2 \N \N | |
908 0.25 300000247 USD 873 2015-03-22 04:31:13.463839 2 \N \N | |
909 0.45 300000628 USD 874 2015-03-22 04:31:13.463839 2 \N \N | |
910 0.41 300000387 USD 875 2015-03-22 04:31:13.463839 2 \N \N | |
911 0.24 300000026 USD 876 2015-03-22 04:31:13.463839 2 \N \N | |
912 0.15 300000596 USD 877 2015-03-22 04:31:13.463839 2 \N \N | |
913 0.25 300000285 USD 878 2015-03-22 04:31:13.463839 2 \N \N | |
914 0.30 300000352 USD 879 2015-03-22 04:31:13.463839 2 \N \N | |
915 0.15 300000477 USD 880 2015-03-22 04:31:13.463839 2 \N \N | |
916 0.25 300000053 USD 881 2015-03-22 04:31:13.463839 2 \N \N | |
917 0.50 300000388 USD 882 2015-03-22 04:31:13.463839 2 \N \N | |
918 0.25 300000272 USD 883 2015-03-22 04:31:13.463839 2 \N \N | |
919 0.25 300000284 USD 884 2015-03-22 04:31:13.463839 2 \N \N | |
920 1.99 300000493 USD 885 2015-03-22 04:31:13.463839 2 \N \N | |
921 0.25 300000389 USD 886 2015-03-22 04:31:13.463839 2 \N \N | |
922 0.45 300000597 USD 887 2015-03-22 04:31:13.463839 2 \N \N | |
923 0.30 300000106 USD 888 2015-03-22 04:31:13.463839 2 \N \N | |
924 0.50 300000107 USD 889 2015-03-22 04:31:13.463839 2 \N \N | |
925 0.50 300000133 USD 890 2015-03-22 04:31:13.463839 2 \N \N | |
926 0.70 300000317 USD 891 2015-03-22 04:31:13.463839 2 \N \N | |
927 1.95 300000598 USD 892 2015-03-22 04:31:13.463839 2 \N \N | |
928 1.99 300000478 USD 893 2015-03-22 04:31:13.463839 2 \N \N | |
929 0.35 300000248 USD 894 2015-03-22 04:31:13.463839 2 \N \N | |
930 0.24 300000248 USD 895 2015-03-22 04:31:13.463839 2 \N f | |
931 0.25 300000039 USD 896 2015-03-22 04:31:13.463839 2 \N \N | |
932 1.99 300000479 USD 897 2015-03-22 04:31:13.463839 2 \N \N | |
933 0.50 300000390 USD 898 2015-03-22 04:31:13.463839 2 \N \N | |
934 0.45 300000640 USD 899 2015-03-22 04:31:13.463839 2 \N \N | |
935 0.25 300000228 USD 900 2015-03-22 04:31:13.463839 2 \N \N | |
936 0.45 300000599 USD 901 2015-03-22 04:31:13.463839 2 \N \N | |
937 0.45 300000641 USD 902 2015-03-22 04:31:13.463839 2 \N \N | |
938 25.00 300000670 USD 903 2015-03-22 04:31:13.463839 2 \N \N | |
939 0.15 300000629 USD 904 2015-03-22 04:31:13.463839 2 \N \N | |
940 0.15 300000642 USD 905 2015-03-22 04:31:13.463839 2 \N \N | |
941 7.00 300000458 USD 906 2015-03-22 04:31:13.463839 2 \N f | |
942 0.25 300000249 USD 907 2015-03-22 04:31:13.463839 2 \N \N | |
943 3.75 300000300 USD 908 2015-03-22 04:31:13.463839 2 \N \N | |
944 2.25 300000568 USD 909 2015-03-22 04:31:13.463839 2 \N \N | |
945 0.50 300000108 USD 910 2015-03-22 04:31:13.463839 2 \N \N | |
946 0.35 300000109 USD 911 2015-03-22 04:31:13.463839 2 \N \N | |
947 1.95 300000480 USD 912 2015-03-22 04:31:13.463839 2 \N \N | |
948 0.45 300000229 USD 913 2015-03-22 04:31:13.463839 2 \N \N | |
949 0.50 300000600 USD 914 2015-03-22 04:31:13.463839 2 \N \N | |
950 0.25 300000029 USD 915 2015-03-22 04:31:13.463839 2 \N \N | |
951 0.24 300000029 USD 916 2015-03-22 04:31:13.463839 2 \N f | |
952 0.50 300000110 USD 917 2015-03-22 04:31:13.463839 2 \N \N | |
953 0.25 300000301 USD 918 2015-03-22 04:31:13.463839 2 \N \N | |
954 0.24 300000250 USD 919 2015-03-22 04:31:13.463839 2 \N \N | |
955 2.25 300000230 USD 920 2015-03-22 04:31:13.463839 2 \N \N | |
956 0.24 300000111 USD 921 2015-03-22 04:31:13.463839 2 \N \N | |
957 4.00 300000111 USD 922 2015-03-22 04:31:13.463839 2 \N p | |
958 0.49 300000068 USD 923 2015-03-22 04:31:13.463839 2 \N \N | |
959 0.15 300000494 USD 924 2015-03-22 04:31:13.463839 2 \N \N | |
960 0.25 300000011 USD 925 2015-03-22 04:31:13.463839 2 \N \N | |
961 0.50 300000169 USD 926 2015-03-22 04:31:13.463839 2 \N \N | |
962 1.95 300000630 USD 927 2015-03-22 04:31:13.463839 2 \N \N | |
963 0.15 300000643 USD 928 2015-03-22 04:31:13.463839 2 \N \N | |
964 0.15 300000644 USD 929 2015-03-22 04:31:13.463839 2 \N \N | |
965 2.00 300000459 USD 930 2015-03-22 04:31:13.463839 2 \N f | |
966 0.50 300000601 USD 931 2015-03-22 04:31:13.463839 2 \N \N | |
967 6.98 300000081 USD 932 2015-03-22 04:31:13.463839 2 \N \N | |
968 0.15 300000533 USD 933 2015-03-22 04:31:13.463839 2 \N \N | |
969 2.50 300000533 USD 934 2015-03-22 04:31:13.463839 2 \N f | |
970 14.97 300000413 USD 935 2015-03-22 04:31:13.463839 2 \N \N | |
971 0.50 300000185 USD 936 2015-03-22 04:31:13.463839 2 \N \N | |
972 0.45 300000569 USD 937 2015-03-22 04:31:13.463839 2 \N \N | |
973 0.35 300000319 USD 938 2015-03-22 04:31:13.463839 2 \N \N | |
974 0.24 300000251 USD 939 2015-03-22 04:31:13.463839 2 \N \N | |
975 0.50 300000114 USD 940 2015-03-22 04:31:13.463839 2 \N \N | |
976 0.68 300000066 USD 941 2015-03-22 04:31:13.463839 2 \N f | |
977 0.24 300000066 USD 942 2015-03-22 04:31:13.463839 2 \N \N | |
978 0.45 300000602 USD 943 2015-03-22 04:31:13.463839 2 \N \N | |
979 0.45 300000645 USD 944 2015-03-22 04:31:13.463839 2 \N \N | |
980 0.24 300000067 USD 945 2015-03-22 04:31:13.463839 2 \N \N | |
981 0.25 300000134 USD 946 2015-03-22 04:31:13.463839 2 \N \N | |
982 0.25 300000302 USD 947 2015-03-22 04:31:13.463839 2 \N \N | |
983 3.00 300000570 USD 948 2015-03-22 04:31:13.463839 2 \N f | |
984 0.50 300000008 USD 949 2015-03-22 04:31:13.463839 2 \N \N | |
985 0.24 300000008 USD 950 2015-03-22 04:31:13.463839 2 \N f | |
986 0.45 300000571 USD 951 2015-03-22 04:31:13.463839 2 \N \N | |
987 0.50 300000153 USD 952 2015-03-22 04:31:13.463839 2 \N \N | |
988 0.15 300000550 USD 953 2015-03-22 04:31:13.463839 2 \N \N | |
989 0.25 300000286 USD 954 2015-03-22 04:31:13.463839 2 \N \N | |
990 0.50 300000154 USD 955 2015-03-22 04:31:13.463839 2 \N \N | |
991 0.25 300000041 USD 956 2015-03-22 04:31:13.463839 2 \N \N | |
992 13.74 300000419 USD 957 2015-03-22 04:31:13.463839 2 \N \N | |
993 0.50 300000083 USD 958 2015-03-22 04:31:13.463839 2 \N \N | |
994 0.24 300000083 USD 959 2015-03-22 04:31:13.463839 2 \N f | |
995 0.45 300000551 USD 960 2015-03-22 04:31:13.463839 2 \N \N | |
996 0.50 300000303 USD 961 2015-03-22 04:31:13.463839 2 \N \N | |
997 0.24 300000303 USD 962 2015-03-22 04:31:13.463839 2 \N f | |
998 0.45 300000552 USD 963 2015-03-22 04:31:13.463839 2 \N \N | |
999 3.00 300000552 USD 964 2015-03-22 04:31:13.463839 2 \N f | |
1000 0.45 300000304 USD 965 2015-03-22 04:31:13.463839 2 \N \N | |
1001 1.49 300000304 USD 966 2015-03-22 04:31:13.463839 2 \N f | |
1002 1.00 300000224 USD 967 2015-03-22 04:31:13.463839 2 \N \N | |
1003 8.00 300000210 USD 968 2015-03-22 04:31:13.463839 2 \N \N | |
1004 16.00 300000669 USD 969 2015-03-22 04:31:13.463839 2 \N \N | |
1005 0.25 300000135 USD 970 2015-03-22 04:31:13.463839 2 \N \N | |
1006 0.30 300000136 USD 971 2015-03-22 04:31:13.463839 2 \N \N | |
1007 0.25 300000287 USD 972 2015-03-22 04:31:13.463839 2 \N \N | |
1008 0.45 300000646 USD 973 2015-03-22 04:31:13.463839 2 \N \N | |
1009 0.25 300000084 USD 974 2015-03-22 04:31:13.463839 2 \N \N | |
1010 0.25 300000273 USD 975 2015-03-22 04:31:13.463839 2 \N \N | |
1011 0.45 300000572 USD 976 2015-03-22 04:31:13.463839 2 \N \N | |
1012 1.95 300000573 USD 977 2015-03-22 04:31:13.463839 2 \N \N | |
1013 0.50 300000392 USD 978 2015-03-22 04:31:13.463839 2 \N \N | |
1014 0.24 300000393 USD 979 2015-03-22 04:31:13.463839 2 \N \N | |
1015 0.35 300000353 USD 980 2015-03-22 04:31:13.463839 2 \N \N | |
1016 0.24 300000320 USD 981 2015-03-22 04:31:13.463839 2 \N \N | |
1017 0.19 300000020 USD 982 2015-03-22 04:31:13.463839 2 \N \N | |
1018 0.45 300000631 USD 983 2015-03-22 04:31:13.463839 2 \N \N | |
1019 4.00 300000631 USD 984 2015-03-22 04:31:13.463839 2 \N f | |
1020 0.15 300000506 USD 985 2015-03-22 04:31:13.463839 2 \N \N | |
1021 0.45 300000534 USD 986 2015-03-22 04:31:13.463839 2 \N \N | |
1022 0.50 300000259 USD 987 2015-03-22 04:31:13.463839 2 \N \N | |
1023 0.24 300000354 USD 988 2015-03-22 04:31:13.463839 2 \N \N | |
1024 1.49 300000354 USD 989 2015-03-22 04:31:13.463839 2 \N f | |
1025 3.75 300000288 USD 990 2015-03-22 04:31:13.463839 2 \N \N | |
1026 0.25 300000252 USD 991 2015-03-22 04:31:13.463839 2 \N \N | |
1027 0.45 300000252 USD 992 2015-03-22 04:31:13.463839 2 \N f | |
1028 0.19 300000137 USD 993 2015-03-22 04:31:13.463839 2 \N \N | |
1029 0.95 300000137 USD 994 2015-03-22 04:31:13.463839 2 \N f | |
1030 0.15 300000553 USD 995 2015-03-22 04:31:13.463839 2 \N \N | |
1031 0.63 300000042 USD 996 2015-03-22 04:31:13.463839 2 \N \N | |
1032 0.24 300000305 USD 997 2015-03-22 04:31:13.463839 2 \N \N | |
1033 1.99 300000554 USD 998 2015-03-22 04:31:13.463839 2 \N \N | |
1034 3.00 300000554 USD 999 2015-03-22 04:31:13.463839 2 \N f | |
1035 0.24 300000100 USD 1000 2015-03-22 04:31:13.463839 2 \N \N | |
1036 0.25 300000391 USD 1001 2015-03-22 04:31:13.463839 2 \N \N | |
1037 0.25 300000027 USD 1002 2015-03-22 04:31:13.463839 2 \N \N | |
1038 0.24 300000027 USD 1003 2015-03-22 04:31:13.463839 2 \N f | |
1039 6.49 300000408 USD 1004 2015-03-22 04:31:13.463839 2 \N \N | |
1040 0.15 300000632 USD 1005 2015-03-22 04:31:13.463839 2 \N \N | |
1041 2.50 300000632 USD 1006 2015-03-22 04:31:13.463839 2 \N f | |
1042 0.25 300000394 USD 1007 2015-03-22 04:31:13.463839 2 \N \N | |
1043 0.15 300000507 USD 1008 2015-03-22 04:31:13.463839 2 \N \N | |
1044 3.00 300000507 USD 1009 2015-03-22 04:31:13.463839 2 \N f | |
1045 0.45 300000055 USD 1010 2015-03-22 04:31:13.463839 2 \N \N | |
1046 0.25 300000231 USD 1011 2015-03-22 04:31:13.463839 2 \N \N | |
1047 0.50 300000138 USD 1012 2015-03-22 04:31:13.463839 2 \N \N | |
1048 1.99 300000518 USD 1013 2015-03-22 04:31:13.463839 2 \N \N | |
1049 0.50 300000253 USD 1014 2015-03-22 04:31:13.463839 2 \N \N | |
1050 0.45 300000535 USD 1015 2015-03-22 04:31:13.463839 2 \N \N | |
1051 0.50 300000112 USD 1016 2015-03-22 04:31:13.463839 2 \N \N | |
1052 0.25 300000043 USD 1017 2015-03-22 04:31:13.463839 2 \N \N | |
1053 0.24 300000289 USD 1018 2015-03-22 04:31:13.463839 2 \N \N | |
1054 0.25 300000070 USD 1019 2015-03-22 04:31:13.463839 2 \N \N | |
1055 0.25 300000262 USD 1020 2015-03-22 04:31:13.463839 2 \N \N | |
1056 0.35 300000321 USD 1021 2015-03-22 04:31:13.463839 2 \N \N | |
1057 0.25 300000085 USD 1022 2015-03-22 04:31:13.463839 2 \N \N | |
1058 3.75 300000555 USD 1023 2015-03-22 04:31:13.463839 2 \N \N | |
1059 0.25 300000172 USD 1024 2015-03-22 04:31:13.463839 2 \N \N | |
1060 0.25 300000395 USD 1025 2015-03-22 04:31:13.463839 2 \N \N | |
1061 0.45 300000633 USD 1026 2015-03-22 04:31:13.463839 2 \N \N | |
1062 2.00 300000633 USD 1027 2015-03-22 04:31:13.463839 2 \N f | |
1063 0.25 300000173 USD 1028 2015-03-22 04:31:13.463839 2 \N \N | |
1064 0.35 300000322 USD 1029 2015-03-22 04:31:13.463839 2 \N \N | |
1065 0.50 300000174 USD 1030 2015-03-22 04:31:13.463839 2 \N \N | |
1066 2.25 300000574 USD 1031 2015-03-22 04:31:13.463839 2 \N \N | |
1067 0.45 300000647 USD 1032 2015-03-22 04:31:13.463839 2 \N \N | |
1068 0.25 300000028 USD 1033 2015-03-22 04:31:13.463839 2 \N \N | |
1069 0.50 300000396 USD 1034 2015-03-22 04:31:13.463839 2 \N \N | |
1070 0.75 300000323 USD 1035 2015-03-22 04:31:13.463839 2 \N \N | |
1071 6.00 300000323 USD 1036 2015-03-22 04:31:13.463839 2 \N p | |
1072 2.25 300000575 USD 1037 2015-03-22 04:31:13.463839 2 \N \N | |
1073 0.45 300000648 USD 1038 2015-03-22 04:31:13.463839 2 \N \N | |
1074 0.50 300000175 USD 1039 2015-03-22 04:31:13.463839 2 \N \N | |
1075 0.50 300000176 USD 1040 2015-03-22 04:31:13.463839 2 \N \N | |
1076 2.00 300000449 USD 1041 2015-03-22 04:31:13.463839 2 \N \N | |
1077 1.95 300000603 USD 1042 2015-03-22 04:31:13.463839 2 \N \N | |
1078 0.25 300000374 USD 1043 2015-03-22 04:31:13.463839 2 \N \N | |
1079 0.25 300000006 USD 1044 2015-03-22 04:31:13.463839 2 \N \N | |
1080 0.15 300000508 USD 1045 2015-03-22 04:31:13.463839 2 \N \N | |
1081 0.50 300000356 USD 1046 2015-03-22 04:31:13.463839 2 \N \N | |
1082 1.45 300000254 USD 1047 2015-03-22 04:31:13.463839 2 \N \N | |
1083 0.45 300000604 USD 1048 2015-03-22 04:31:13.463839 2 \N \N | |
1084 0.45 300000576 USD 1049 2015-03-22 04:31:13.463839 2 \N \N | |
1085 0.25 300000162 USD 1050 2015-03-22 04:31:13.463839 2 \N \N | |
1086 4.00 300000062 USD 1051 2015-03-22 04:31:13.463839 2 \N \N | |
1087 0.50 300000139 USD 1052 2015-03-22 04:31:13.463839 2 \N \N | |
1088 0.24 300000357 USD 1053 2015-03-22 04:31:13.463839 2 \N \N | |
1089 0.25 300000306 USD 1054 2015-03-22 04:31:13.463839 2 \N \N | |
1090 0.24 300000056 USD 1055 2015-03-22 04:31:13.463839 2 \N \N | |
1091 2.25 300000577 USD 1056 2015-03-22 04:31:13.463839 2 \N \N | |
1092 0.35 300000113 USD 1057 2015-03-22 04:31:13.463839 2 \N \N | |
1093 0.70 300000113 USD 1058 2015-03-22 04:31:13.463839 2 \N f | |
1094 0.25 300000375 USD 1059 2015-03-22 04:31:13.463839 2 \N \N | |
1095 0.24 300000087 USD 1060 2015-03-22 04:31:13.463839 2 \N \N | |
1096 0.24 300000087 USD 1061 2015-03-22 04:31:13.463839 2 \N f | |
1097 0.15 300000536 USD 1062 2015-03-22 04:31:13.463839 2 \N \N | |
1098 0.25 300000307 USD 1063 2015-03-22 04:31:13.463839 2 \N \N | |
1099 0.25 300000177 USD 1064 2015-03-22 04:31:13.463839 2 \N \N | |
1100 0.45 300000649 USD 1065 2015-03-22 04:31:13.463839 2 \N \N | |
1101 0.50 300000397 USD 1066 2015-03-22 04:31:13.463839 2 \N \N | |
1102 0.24 300000073 USD 1067 2015-03-22 04:31:13.463839 2 \N \N | |
1103 0.25 300000261 USD 1068 2015-03-22 04:31:13.463839 2 \N \N | |
1104 0.24 300000040 USD 1069 2015-03-22 04:31:13.463839 2 \N \N | |
1105 8.00 300000200 USD 1070 2015-03-22 04:31:13.463839 2 \N \N | |
1106 1.95 300000509 USD 1071 2015-03-22 04:31:13.463839 2 \N \N | |
1107 3.00 300000509 USD 1072 2015-03-22 04:31:13.463839 2 \N f | |
1108 0.35 300000324 USD 1073 2015-03-22 04:31:13.463839 2 \N \N | |
1109 2.50 300000605 USD 1074 2015-03-22 04:31:13.463839 2 \N \N | |
1110 0.45 300000650 USD 1075 2015-03-22 04:31:13.463839 2 \N \N | |
1111 0.24 300000088 USD 1076 2015-03-22 04:31:13.463839 2 \N \N | |
1112 0.26 300000325 USD 1077 2015-03-22 04:31:13.463839 2 \N \N | |
1113 0.25 300000308 USD 1078 2015-03-22 04:31:13.463839 2 \N \N | |
1114 0.24 300000308 USD 1079 2015-03-22 04:31:13.463839 2 \N f | |
1115 0.50 300000140 USD 1080 2015-03-22 04:31:13.463839 2 \N \N | |
1116 0.45 300000537 USD 1081 2015-03-22 04:31:13.463839 2 \N \N | |
1117 1.95 300000495 USD 1082 2015-03-22 04:31:13.463839 2 \N \N | |
1118 4.00 300000495 USD 1083 2015-03-22 04:31:13.463839 2 \N f | |
1119 7.00 300000457 USD 1084 2015-03-22 04:31:13.463839 2 \N f | |
1120 0.50 300000178 USD 1085 2015-03-22 04:31:13.463839 2 \N \N | |
1121 0.50 300000184 USD 1086 2015-03-22 04:31:13.463839 2 \N \N | |
1122 0.25 300000057 USD 1087 2015-03-22 04:31:13.463839 2 \N \N | |
1123 0.15 300000519 USD 1088 2015-03-22 04:31:13.463839 2 \N \N | |
1124 0.25 300000171 USD 1089 2015-03-22 04:31:13.463839 2 \N \N | |
1125 0.45 300000510 USD 1090 2015-03-22 04:31:13.463839 2 \N \N | |
1126 0.25 300000054 USD 1091 2015-03-22 04:31:13.463839 2 \N \N | |
1127 0.24 300000274 USD 1092 2015-03-22 04:31:13.463839 2 \N \N | |
1128 0.25 300000181 USD 1093 2015-03-22 04:31:13.463839 2 \N \N | |
1129 0.25 300000182 USD 1094 2015-03-22 04:31:13.463839 2 \N \N | |
1130 0.35 300000358 USD 1095 2015-03-22 04:31:13.463839 2 \N \N | |
1131 0.25 300000359 USD 1096 2015-03-22 04:31:13.463839 2 \N \N | |
1132 0.24 300000089 USD 1097 2015-03-22 04:31:13.463839 2 \N \N | |
1133 0.24 300000090 USD 1098 2015-03-22 04:31:13.463839 2 \N \N | |
1134 0.15 300000511 USD 1099 2015-03-22 04:31:13.463839 2 \N \N | |
1135 0.25 300000309 USD 1100 2015-03-22 04:31:13.463839 2 \N \N | |
1136 2.25 300000520 USD 1101 2015-03-22 04:31:13.463839 2 \N \N | |
1137 2.50 300000520 USD 1102 2015-03-22 04:31:13.463839 2 \N f | |
1138 1.95 300000578 USD 1103 2015-03-22 04:31:13.463839 2 \N \N | |
1139 0.50 300000183 USD 1104 2015-03-22 04:31:13.463839 2 \N \N | |
1140 0.34 300000326 USD 1105 2015-03-22 04:31:13.463839 2 \N \N | |
1141 0.15 300000521 USD 1106 2015-03-22 04:31:13.463839 2 \N \N | |
1142 0.45 300000034 USD 1107 2015-03-22 04:31:13.463839 2 \N \N | |
1143 120.00 300000209 USD 1108 2015-03-22 04:31:13.463839 2 \N p | |
1144 0.25 300000180 USD 1109 2015-03-22 04:31:13.463839 2 \N \N | |
1145 0.35 300000327 USD 1110 2015-03-22 04:31:13.463839 2 \N \N | |
1146 0.25 300000075 USD 1111 2015-03-22 04:31:13.463839 2 \N \N | |
1147 0.50 300000328 USD 1112 2015-03-22 04:31:13.463839 2 \N \N | |
1148 0.50 300000115 USD 1113 2015-03-22 04:31:13.463839 2 \N \N | |
1149 0.50 300000290 USD 1114 2015-03-22 04:31:13.463839 2 \N \N | |
1150 1.35 300000290 USD 1115 2015-03-22 04:31:13.463839 2 \N f | |
1151 2.00 300000448 USD 1116 2015-03-22 04:31:13.463839 2 \N \N | |
1152 9.49 300000204 USD 1117 2015-03-22 04:31:13.463839 2 \N \N | |
1153 0.50 300000047 USD 1118 2015-03-22 04:31:13.463839 2 \N \N | |
1154 0.25 300000091 USD 1119 2015-03-22 04:31:13.463839 2 \N \N | |
1155 0.15 300000538 USD 1120 2015-03-22 04:31:13.463839 2 \N \N | |
1156 2.50 300000538 USD 1121 2015-03-22 04:31:13.463839 2 \N f | |
1157 0.25 300000232 USD 1122 2015-03-22 04:31:13.463839 2 \N \N | |
1158 1.95 300000556 USD 1123 2015-03-22 04:31:13.463839 2 \N \N | |
1159 2.25 300000606 USD 1124 2015-03-22 04:31:13.463839 2 \N \N | |
1160 0.25 300000398 USD 1125 2015-03-22 04:31:13.463839 2 \N \N | |
1161 0.50 300000141 USD 1126 2015-03-22 04:31:13.463839 2 \N \N | |
1162 0.45 300000651 USD 1127 2015-03-22 04:31:13.463839 2 \N \N | |
1163 0.15 300000522 USD 1128 2015-03-22 04:31:13.463839 2 \N \N | |
1164 3.00 300000522 USD 1129 2015-03-22 04:31:13.463839 2 \N f | |
1165 0.25 300000186 USD 1130 2015-03-22 04:31:13.463839 2 \N \N | |
1166 0.70 300000155 USD 1131 2015-03-22 04:31:13.463839 2 \N \N | |
1167 1.24 300000155 USD 1132 2015-03-22 04:31:13.463839 2 \N f | |
1168 0.15 300000557 USD 1133 2015-03-22 04:31:13.463839 2 \N \N | |
1169 3.99 300000607 USD 1134 2015-03-22 04:31:13.463839 2 \N \N | |
1170 0.15 300000558 USD 1135 2015-03-22 04:31:13.463839 2 \N \N | |
1171 0.25 300000072 USD 1136 2015-03-22 04:31:13.463839 2 \N \N | |
1172 0.25 300000013 USD 1137 2015-03-22 04:31:13.463839 2 \N \N | |
1173 0.45 300000579 USD 1138 2015-03-22 04:31:13.463839 2 \N \N | |
1174 0.25 300000275 USD 1139 2015-03-22 04:31:13.463839 2 \N \N | |
1175 0.15 300000481 USD 1140 2015-03-22 04:31:13.463839 2 \N \N | |
1176 8.00 300000206 USD 1141 2015-03-22 04:31:13.463839 2 \N \N | |
1177 0.50 300000291 USD 1142 2015-03-22 04:31:13.463839 2 \N \N | |
1178 0.24 300000145 USD 1143 2015-03-22 04:31:13.463839 2 \N \N | |
1179 0.24 300000360 USD 1144 2015-03-22 04:31:13.463839 2 \N \N | |
1180 0.45 300000608 USD 1145 2015-03-22 04:31:13.463839 2 \N \N | |
1181 0.45 300000512 USD 1146 2015-03-22 04:31:13.463839 2 \N \N | |
1182 0.45 300000513 USD 1147 2015-03-22 04:31:13.463839 2 \N \N | |
1183 3.00 300000513 USD 1148 2015-03-22 04:31:13.463839 2 \N f | |
1184 19.00 300000665 USD 1149 2015-03-22 04:31:13.463839 2 \N \N | |
1185 4.00 300000213 USD 1150 2015-03-22 04:31:13.463839 2 \N p | |
1186 0.75 300000263 USD 1151 2015-03-22 04:31:13.463839 2 \N \N | |
1187 0.74 300000263 USD 1152 2015-03-22 04:31:13.463839 2 \N f | |
1188 0.25 300000045 USD 1153 2015-03-22 04:31:13.463839 2 \N \N | |
1189 0.24 300000045 USD 1154 2015-03-22 04:31:13.463839 2 \N f | |
1190 1.70 300000044 USD 1155 2015-03-22 04:31:13.463839 2 \N f | |
1191 1.00 300000220 USD 1156 2015-03-22 04:31:13.463839 2 \N \N | |
1192 0.24 300000046 USD 1157 2015-03-22 04:31:13.463839 2 \N \N | |
1193 0.19 300000233 USD 1158 2015-03-22 04:31:13.463839 2 \N \N | |
1194 0.45 300000580 USD 1159 2015-03-22 04:31:13.463839 2 \N \N | |
1195 2.50 300000580 USD 1160 2015-03-22 04:31:13.463839 2 \N f | |
1196 0.55 300000329 USD 1161 2015-03-22 04:31:13.463839 2 \N \N | |
1197 1.01 300000329 USD 1162 2015-03-22 04:31:13.463839 2 \N f | |
1198 1.95 300000581 USD 1163 2015-03-22 04:31:13.463839 2 \N \N | |
1199 3.00 300000581 USD 1164 2015-03-22 04:31:13.463839 2 \N f | |
1200 0.45 300000652 USD 1165 2015-03-22 04:31:13.463839 2 \N \N | |
1201 0.30 300000376 USD 1166 2015-03-22 04:31:13.463839 2 \N \N | |
1202 0.35 300000192 USD 1167 2015-03-22 04:31:13.463839 2 \N \N | |
1203 2.25 300000610 USD 1168 2015-03-22 04:31:13.463839 2 \N \N | |
1204 0.25 300000187 USD 1169 2015-03-22 04:31:13.463839 2 \N \N | |
1205 0.15 300000611 USD 1170 2015-03-22 04:31:13.463839 2 \N \N | |
1206 0.45 300000514 USD 1171 2015-03-22 04:31:13.463839 2 \N \N | |
1207 0.15 300000539 USD 1172 2015-03-22 04:31:13.463839 2 \N \N | |
1208 0.25 300000292 USD 1173 2015-03-22 04:31:13.463839 2 \N \N | |
1209 0.50 300000377 USD 1174 2015-03-22 04:31:13.463839 2 \N \N | |
1210 2.25 300000559 USD 1175 2015-03-22 04:31:13.463839 2 \N \N | |
1211 5.00 300000559 USD 1176 2015-03-22 04:31:13.463839 2 \N f | |
1212 1.00 300000311 USD 1177 2015-03-22 04:31:13.463839 2 \N \N | |
1213 0.74 300000311 USD 1178 2015-03-22 04:31:13.463839 2 \N f | |
1214 7.50 300000405 USD 1179 2015-03-22 04:31:13.463839 2 \N \N | |
1215 14.99 300000415 USD 1180 2015-03-22 04:31:13.463839 2 \N \N | |
1216 6.00 300000404 USD 1181 2015-03-22 04:31:13.463839 2 \N f | |
1217 10.00 300000404 USD 1182 2015-03-22 04:31:13.463839 2 \N \N | |
1218 2.25 300000523 USD 1183 2015-03-22 04:31:13.463839 2 \N \N | |
1219 1.00 300000217 USD 1184 2015-03-22 04:31:13.463839 2 \N \N | |
1220 15.00 300000217 USD 1185 2015-03-22 04:31:13.463839 2 \N p | |
1221 10.00 300000221 USD 1186 2015-03-22 04:31:13.463839 2 \N f | |
1222 0.50 300000361 USD 1187 2015-03-22 04:31:13.463839 2 \N \N | |
1223 0.25 300000051 USD 1188 2015-03-22 04:31:13.463839 2 \N \N | |
1224 0.24 300000051 USD 1189 2015-03-22 04:31:13.463839 2 \N f | |
1225 0.25 300000156 USD 1190 2015-03-22 04:31:13.463839 2 \N \N | |
1226 0.25 300000258 USD 1191 2015-03-22 04:31:13.463839 2 \N \N | |
1227 2.00 300000456 USD 1192 2015-03-22 04:31:13.463839 2 \N \N | |
1228 0.25 300000312 USD 1193 2015-03-22 04:31:13.463839 2 \N \N | |
1229 0.25 300000234 USD 1194 2015-03-22 04:31:13.463839 2 \N \N | |
1230 15.00 300000686 USD 1195 2015-03-22 04:31:13.463839 2 \N \N | |
1231 0.45 300000482 USD 1196 2015-03-22 04:31:13.463839 2 \N \N | |
1232 0.45 300000483 USD 1197 2015-03-22 04:31:13.463839 2 \N \N | |
1233 4.50 300000483 USD 1198 2015-03-22 04:31:13.463839 2 \N f | |
1234 0.70 300000236 USD 1199 2015-03-22 04:31:13.463839 2 \N \N | |
1235 1.45 300000236 USD 1200 2015-03-22 04:31:13.463839 2 \N f | |
1236 0.25 300000235 USD 1201 2015-03-22 04:31:13.463839 2 \N \N | |
1237 0.40 300000235 USD 1202 2015-03-22 04:31:13.463839 2 \N f | |
1238 0.50 300000218 USD 1203 2015-03-22 04:31:13.463839 2 \N \N | |
1239 7.00 300000218 USD 1204 2015-03-22 04:31:13.463839 2 \N f | |
1240 2.25 300000484 USD 1205 2015-03-22 04:31:13.463839 2 \N \N | |
1241 0.50 300000014 USD 1206 2015-03-22 04:31:13.463839 2 \N \N | |
1242 0.24 300000014 USD 1207 2015-03-22 04:31:13.463839 2 \N f | |
1243 17.21 300000197 USD 1208 2015-03-22 04:31:13.463839 2 \N \N | |
1244 0.45 300000612 USD 1209 2015-03-22 04:31:13.463839 2 \N \N | |
1245 0.25 300000015 USD 1210 2015-03-22 04:31:13.463839 2 \N \N | |
1246 0.24 300000015 USD 1211 2015-03-22 04:31:13.463839 2 \N f | |
1247 0.15 300000485 USD 1212 2015-03-22 04:31:13.463839 2 \N \N | |
1248 0.95 300000058 USD 1213 2015-03-22 04:31:13.463839 2 \N f | |
1249 0.45 300000058 USD 1214 2015-03-22 04:31:13.463839 2 \N \N | |
1250 0.45 300000540 USD 1215 2015-03-22 04:31:13.463839 2 \N \N | |
1251 0.45 300000541 USD 1216 2015-03-22 04:31:13.463839 2 \N \N | |
1252 3.00 300000541 USD 1217 2015-03-22 04:31:13.463839 2 \N f | |
1253 0.50 300000215 USD 1218 2015-03-22 04:31:13.463839 2 \N \N | |
1254 0.45 300000215 USD 1219 2015-03-22 04:31:13.463839 2 \N f | |
1255 15.00 300000215 USD 1220 2015-03-22 04:31:13.463839 2 \N p | |
1256 1.00 300000223 USD 1221 2015-03-22 04:31:13.463839 2 \N \N | |
1257 7.00 300000223 USD 1222 2015-03-22 04:31:13.463839 2 \N f | |
1258 20.00 300000223 USD 1223 2015-03-22 04:31:13.463839 2 \N f | |
1259 0.72 300000293 USD 1224 2015-03-22 04:31:13.463839 2 \N \N | |
1260 2.99 300000293 USD 1225 2015-03-22 04:31:13.463839 2 \N f | |
1261 2.25 300000542 USD 1226 2015-03-22 04:31:13.463839 2 \N \N | |
1262 0.24 300000076 USD 1227 2015-03-22 04:31:13.463839 2 \N f | |
1263 0.50 300000076 USD 1228 2015-03-22 04:31:13.463839 2 \N \N | |
1264 0.15 300000524 USD 1229 2015-03-22 04:31:13.463839 2 \N \N | |
1265 0.50 300000188 USD 1230 2015-03-22 04:31:13.463839 2 \N \N | |
1266 0.35 300000378 USD 1231 2015-03-22 04:31:13.463839 2 \N \N | |
1267 0.45 300000378 USD 1232 2015-03-22 04:31:13.463839 2 \N f | |
1268 0.25 300000032 USD 1233 2015-03-22 04:31:13.463839 2 \N \N | |
1269 0.50 300000362 USD 1234 2015-03-22 04:31:13.463839 2 \N \N | |
1270 2.25 300000582 USD 1235 2015-03-22 04:31:13.463839 2 \N \N | |
1271 0.35 300000142 USD 1236 2015-03-22 04:31:13.463839 2 \N \N | |
1272 0.25 300000074 USD 1237 2015-03-22 04:31:13.463839 2 \N \N | |
1273 2.00 300000450 USD 1238 2015-03-22 04:31:13.463839 2 \N \N | |
1274 0.50 300000330 USD 1239 2015-03-22 04:31:13.463839 2 \N \N | |
1275 0.45 300000653 USD 1240 2015-03-22 04:31:13.463839 2 \N \N | |
1276 0.15 300000525 USD 1241 2015-03-22 04:31:13.463839 2 \N \N | |
1277 0.35 300000294 USD 1242 2015-03-22 04:31:13.463839 2 \N \N | |
1278 0.68 300000294 USD 1243 2015-03-22 04:31:13.463839 2 \N f | |
1279 0.50 300000331 USD 1244 2015-03-22 04:31:13.463839 2 \N \N | |
1280 0.50 300000399 USD 1245 2015-03-22 04:31:13.463839 2 \N \N | |
1281 0.25 300000098 USD 1246 2015-03-22 04:31:13.463839 2 \N \N | |
1282 0.45 300000496 USD 1247 2015-03-22 04:31:13.463839 2 \N \N | |
1283 0.25 300000077 USD 1248 2015-03-22 04:31:13.463839 2 \N \N | |
1284 0.45 300000613 USD 1249 2015-03-22 04:31:13.463839 2 \N \N | |
1285 0.25 300000143 USD 1250 2015-03-22 04:31:13.463839 2 \N \N | |
1286 0.25 300000237 USD 1251 2015-03-22 04:31:13.463839 2 \N \N | |
1287 0.35 300000189 USD 1252 2015-03-22 04:31:13.463839 2 \N \N | |
1288 0.15 300000654 USD 1253 2015-03-22 04:31:13.463839 2 \N \N | |
1289 0.25 300000295 USD 1254 2015-03-22 04:31:13.463839 2 \N \N | |
1290 0.24 300000265 USD 1255 2015-03-22 04:31:13.463839 2 \N \N | |
1291 0.35 300000190 USD 1256 2015-03-22 04:31:13.463839 2 \N \N | |
1292 0.15 300000655 USD 1257 2015-03-22 04:31:13.463839 2 \N \N | |
1293 0.52 300000071 USD 1258 2015-03-22 04:31:13.463839 2 \N \N | |
1294 2.25 300000614 USD 1259 2015-03-22 04:31:13.463839 2 \N \N | |
1295 0.50 300000238 USD 1260 2015-03-22 04:31:13.463839 2 \N \N | |
1296 0.15 300000486 USD 1261 2015-03-22 04:31:13.463839 2 \N \N | |
1297 3.00 300000486 USD 1262 2015-03-22 04:31:13.463839 2 \N f | |
1298 0.15 300000615 USD 1263 2015-03-22 04:31:13.463839 2 \N \N | |
1299 5.96 300000201 USD 1264 2015-03-22 04:31:13.463839 2 \N \N | |
1300 0.95 300000092 USD 1265 2015-03-22 04:31:13.463839 2 \N \N | |
1301 0.25 300000276 USD 1266 2015-03-22 04:31:13.463839 2 \N \N | |
1302 2.00 300000451 USD 1267 2015-03-22 04:31:13.463839 2 \N \N | |
1303 0.15 300000497 USD 1268 2015-03-22 04:31:13.463839 2 \N \N | |
1304 0.45 300000277 USD 1269 2015-03-22 04:31:13.463839 2 \N \N | |
1305 0.45 300000526 USD 1270 2015-03-22 04:31:13.463839 2 \N \N | |
1306 2.50 300000526 USD 1271 2015-03-22 04:31:13.463839 2 \N f | |
1307 3.99 300000199 USD 1272 2015-03-22 04:31:13.463839 2 \N \N | |
1308 0.25 300000239 USD 1273 2015-03-22 04:31:13.463839 2 \N \N | |
1309 0.25 300000296 USD 1274 2015-03-22 04:31:13.463839 2 \N \N | |
1310 0.15 300000617 USD 1275 2015-03-22 04:31:13.463839 2 \N \N | |
1311 0.15 300000527 USD 1276 2015-03-22 04:31:13.463839 2 \N \N | |
1312 0.24 300000031 USD 1277 2015-03-22 04:31:13.463839 2 \N \N | |
1313 2.25 300000498 USD 1278 2015-03-22 04:31:13.463839 2 \N \N | |
1314 0.15 300000618 USD 1279 2015-03-22 04:31:13.463839 2 \N \N | |
1315 2.25 300000619 USD 1280 2015-03-22 04:31:13.463839 2 \N \N | |
1316 0.25 300000266 USD 1281 2015-03-22 04:31:13.463839 2 \N \N | |
1317 0.24 300000048 USD 1282 2015-03-22 04:31:13.463839 2 \N \N | |
1318 0.24 300000267 USD 1283 2015-03-22 04:31:13.463839 2 \N \N | |
1319 0.24 300000363 USD 1284 2015-03-22 04:31:13.463839 2 \N \N | |
1320 0.15 300000487 USD 1285 2015-03-22 04:31:13.463839 2 \N \N | |
1321 0.45 300000583 USD 1286 2015-03-22 04:31:13.463839 2 \N \N | |
1322 0.50 300000400 USD 1287 2015-03-22 04:31:13.463839 2 \N \N | |
1323 0.24 300000364 USD 1288 2015-03-22 04:31:13.463839 2 \N \N | |
1324 1.95 300000584 USD 1289 2015-03-22 04:31:13.463839 2 \N \N | |
1325 0.50 300000191 USD 1290 2015-03-22 04:31:13.463839 2 \N \N | |
1326 1.95 300000585 USD 1291 2015-03-22 04:31:13.463839 2 \N \N | |
1327 0.24 300000278 USD 1292 2015-03-22 04:31:13.463839 2 \N \N | |
1328 0.19 300000017 USD 1293 2015-03-22 04:31:13.463839 2 \N \N | |
1329 0.24 300000017 USD 1294 2015-03-22 04:31:13.463839 2 \N f | |
1330 3.95 300000472 USD 1295 2015-03-22 04:31:13.463839 2 \N \N | |
1331 1.99 300000499 USD 1296 2015-03-22 04:31:13.463839 2 \N \N | |
1332 2.50 300000499 USD 1297 2015-03-22 04:31:13.463839 2 \N f | |
1333 0.35 300000123 USD 1298 2015-03-22 04:31:13.463839 2 \N \N | |
1334 20.98 300000661 USD 1299 2015-03-22 04:31:13.463839 2 \N \N | |
1335 12.00 300000662 USD 1300 2015-03-22 04:31:13.463839 2 \N \N | |
1336 0.25 300000094 USD 1301 2015-03-22 04:31:13.463839 2 \N \N | |
1337 6.50 300000060 USD 1302 2015-03-22 04:31:13.463839 2 \N \N | |
1338 0.25 300000240 USD 1303 2015-03-22 04:31:13.463839 2 \N \N | |
1339 10.00 300000117 USD 1304 2015-03-22 04:31:13.463839 2 \N p | |
1340 0.50 300000332 USD 1305 2015-03-22 04:31:13.463839 2 \N \N | |
1341 0.25 300000279 USD 1306 2015-03-22 04:31:13.463839 2 \N \N | |
1342 1.75 300000586 USD 1307 2015-03-22 04:31:13.463839 2 \N \N | |
1343 0.25 300000255 USD 1308 2015-03-22 04:31:13.463839 2 \N \N | |
1344 0.45 300000621 USD 1309 2015-03-22 04:31:13.463839 2 \N \N | |
1345 0.25 300000401 USD 1310 2015-03-22 04:31:13.463839 2 \N \N | |
1346 0.24 300000118 USD 1311 2015-03-22 04:31:13.463839 2 \N \N | |
1347 0.45 300000118 USD 1312 2015-03-22 04:31:13.463839 2 \N f | |
1348 9.00 300000622 USD 1313 2015-03-22 04:31:13.463839 2 \N \N | |
1349 0.25 300000078 USD 1314 2015-03-22 04:31:13.463839 2 \N \N | |
1350 0.24 300000061 USD 1315 2015-03-22 04:31:13.463839 2 \N \N | |
1351 0.19 300000033 USD 1316 2015-03-22 04:31:13.463839 2 \N \N | |
1352 0.44 300000379 USD 1317 2015-03-22 04:31:13.463839 2 \N \N | |
1353 1.95 300000515 USD 1318 2015-03-22 04:31:13.463839 2 \N \N | |
1354 0.24 300000049 USD 1319 2015-03-22 04:31:13.463839 2 \N \N | |
1355 0.25 300000269 USD 1320 2015-03-22 04:31:13.463839 2 \N \N | |
1356 0.24 300000144 USD 1321 2015-03-22 04:31:13.463839 2 \N \N | |
1357 0.45 300000144 USD 1322 2015-03-22 04:31:13.463839 2 \N f | |
1358 0.15 300000544 USD 1323 2015-03-22 04:31:13.463839 2 \N \N | |
1359 2.50 300000544 USD 1324 2015-03-22 04:31:13.463839 2 \N f | |
1360 0.25 300000019 USD 1325 2015-03-22 04:31:13.463839 2 \N \N | |
1361 0.15 300000656 USD 1326 2015-03-22 04:31:13.463839 2 \N \N | |
1362 0.50 300000119 USD 1327 2015-03-22 04:31:13.463839 2 \N \N | |
1363 4.75 300000280 USD 1328 2015-03-22 04:31:13.463839 2 \N \N | |
1364 0.45 300000500 USD 1329 2015-03-22 04:31:13.463839 2 \N \N | |
1365 3.00 300000488 USD 1330 2015-03-22 04:31:13.463839 2 \N f | |
1366 0.15 300000634 USD 1331 2015-03-22 04:31:13.463839 2 \N \N | |
1367 2.50 300000634 USD 1332 2015-03-22 04:31:13.463839 2 \N f | |
1368 0.24 300000120 USD 1333 2015-03-22 04:31:13.463839 2 \N \N | |
1369 0.15 300000587 USD 1334 2015-03-22 04:31:13.463839 2 \N \N | |
1370 2.25 300000333 USD 1335 2015-03-22 04:31:13.463839 2 \N \N | |
1371 0.35 300000121 USD 1336 2015-03-22 04:31:13.463839 2 \N \N | |
1372 0.45 300000334 USD 1337 2015-03-22 04:31:13.463839 2 \N \N | |
1373 0.70 300000334 USD 1338 2015-03-22 04:31:13.463839 2 \N f | |
1374 1.95 300000623 USD 1339 2015-03-22 04:31:13.463839 2 \N \N | |
1375 3.00 300000623 USD 1340 2015-03-22 04:31:13.463839 2 \N f | |
1376 14.00 300000673 USD 1341 2015-03-22 04:31:13.463839 2 \N \N | |
1377 6.98 300000416 USD 1342 2015-03-22 04:31:13.463839 2 \N \N | |
1378 6.75 300000417 USD 1343 2015-03-22 04:31:13.463839 2 \N \N | |
1379 17.00 300000671 USD 1344 2015-03-22 04:31:13.463839 2 \N \N | |
1380 0.50 300000365 USD 1345 2015-03-22 04:31:13.463839 2 \N \N | |
1381 0.50 300000122 USD 1346 2015-03-22 04:31:13.463839 2 \N \N | |
1382 3.75 300000336 USD 1347 2015-03-22 04:31:13.463839 2 \N \N | |
1383 0.50 300000146 USD 1348 2015-03-22 04:31:13.463839 2 \N \N | |
1384 1.95 300000588 USD 1349 2015-03-22 04:31:13.463839 2 \N \N | |
1385 0.25 300000165 USD 1350 2015-03-22 04:31:13.463839 2 \N \N | |
1386 2.25 300000657 USD 1351 2015-03-22 04:31:13.463839 2 \N \N | |
1387 0.45 300000589 USD 1352 2015-03-22 04:31:13.463839 2 \N \N | |
1388 0.24 300000337 USD 1353 2015-03-22 04:31:13.463839 2 \N \N | |
1389 0.24 300000366 USD 1354 2015-03-22 04:31:13.463839 2 \N \N | |
1390 0.50 300000193 USD 1355 2015-03-22 04:31:13.463839 2 \N \N | |
1391 0.50 300000402 USD 1356 2015-03-22 04:31:13.463839 2 \N \N | |
1392 0.45 300000658 USD 1357 2015-03-22 04:31:13.463839 2 \N \N | |
1393 0.50 300000338 USD 1358 2015-03-22 04:31:13.463839 2 \N \N | |
1394 0.15 300000501 USD 1359 2015-03-22 04:31:13.463839 2 \N \N | |
1395 2.25 300000528 USD 1360 2015-03-22 04:31:13.463839 2 \N \N | |
1396 2.00 300000452 USD 1361 2015-03-22 04:31:13.463839 2 \N \N | |
1397 0.50 300000157 USD 1362 2015-03-22 04:31:13.463839 2 \N \N | |
1398 0.50 300000147 USD 1363 2015-03-22 04:31:13.463839 2 \N \N | |
1399 0.24 300000403 USD 1364 2015-03-22 04:31:13.463839 2 \N \N | |
1400 0.27 300000339 USD 1365 2015-03-22 04:31:13.463839 2 \N \N | |
1401 0.35 300000148 USD 1366 2015-03-22 04:31:13.463839 2 \N \N | |
1402 0.45 300000529 USD 1367 2015-03-22 04:31:13.463839 2 \N \N | |
1403 3.00 300000453 USD 1368 2015-03-22 04:31:13.463839 2 \N \N | |
1404 0.24 300000367 USD 1369 2015-03-22 04:31:13.463839 2 \N \N | |
1405 0.45 300000545 USD 1370 2015-03-22 04:31:13.463839 2 \N \N | |
1406 0.50 300000149 USD 1371 2015-03-22 04:31:13.463839 2 \N \N | |
1407 4.00 300000590 USD 1372 2015-03-22 04:31:13.463839 2 \N f | |
1408 1.95 300000591 USD 1373 2015-03-22 04:31:13.463839 2 \N \N | |
1409 0.19 300000297 USD 1374 2015-03-22 04:31:13.463839 2 \N \N | |
1410 15.00 300000687 USD 1375 2015-03-22 04:31:13.463839 2 \N \N | |
1411 145.00 300000202 USD 1376 2015-03-22 04:31:13.463839 2 \N p | |
1412 0.25 300000063 USD 1377 2015-03-22 04:31:13.463839 2 \N \N | |
1413 0.45 300000530 USD 1378 2015-03-22 04:31:13.463839 2 \N \N | |
1414 0.45 300000531 USD 1379 2015-03-22 04:31:13.463839 2 \N \N | |
1415 3.00 300000531 USD 1380 2015-03-22 04:31:13.463839 2 \N f | |
1416 0.68 300000281 USD 1381 2015-03-22 04:31:13.463839 2 \N \N | |
1417 1.00 300000222 USD 1382 2015-03-22 04:31:13.463839 2 \N \N | |
1418 8.49 300000412 USD 1383 2015-03-22 04:31:13.463839 2 \N \N | |
1419 2.50 300000214 USD 1384 2015-03-22 04:31:13.463839 2 \N p | |
1420 0.25 300000282 USD 1385 2015-03-22 04:31:13.463839 2 \N \N | |
1421 2.00 300000447 USD 1386 2015-03-22 04:31:13.463839 2 \N \N | |
1422 0.15 300000516 USD 1387 2015-03-22 04:31:13.463839 2 \N \N | |
1423 0.24 300000124 USD 1388 2015-03-22 04:31:13.463839 2 \N \N | |
1424 1.75 300000592 USD 1389 2015-03-22 04:31:13.463839 2 \N \N | |
1425 1.00 300000368 USD 1390 2015-03-22 04:31:13.463839 2 \N \N | |
1426 0.35 300000340 USD 1391 2015-03-22 04:31:13.463839 2 \N \N | |
1427 1.50 300000069 USD 1392 2015-03-22 04:31:13.463839 2 \N \N | |
1428 0.25 300000369 USD 1393 2015-03-22 04:31:13.463839 2 \N \N | |
1429 0.35 300000194 USD 1394 2015-03-22 04:31:13.463839 2 \N \N | |
1430 0.35 300000341 USD 1395 2015-03-22 04:31:13.463839 2 \N \N | |
1431 0.35 300000125 USD 1396 2015-03-22 04:31:13.463839 2 \N \N | |
1432 0.24 300000370 USD 1397 2015-03-22 04:31:13.463839 2 \N \N | |
1433 0.50 300000126 USD 1398 2015-03-22 04:31:13.463839 2 \N \N | |
1434 0.24 300000342 USD 1399 2015-03-22 04:31:13.463839 2 \N \N | |
1435 2.00 300000454 USD 1400 2015-03-22 04:31:13.463839 2 \N \N | |
1436 0.15 300000546 USD 1401 2015-03-22 04:31:13.463839 2 \N \N | |
1437 0.25 300000313 USD 1402 2015-03-22 04:31:13.463839 2 \N \N | |
1438 0.25 300000179 USD 1403 2015-03-22 04:31:13.463839 2 \N \N | |
1439 0.24 300000127 USD 1404 2015-03-22 04:31:13.463839 2 \N \N | |
1440 3.25 300000009 USD 1405 2015-03-22 04:31:13.463839 2 \N \N | |
1441 3.73 300000009 USD 1406 2015-03-22 04:31:13.463839 2 \N f | |
1442 0.50 300000158 USD 1407 2015-03-22 04:31:13.463839 2 \N \N | |
1443 0.15 300000502 USD 1408 2015-03-22 04:31:13.463839 2 \N \N | |
1444 4.00 300000502 USD 1409 2015-03-22 04:31:13.463839 2 \N f | |
1445 0.25 300000093 USD 1410 2015-03-22 04:31:13.463839 2 \N \N | |
1446 0.24 300000093 USD 1411 2015-03-22 04:31:13.463839 2 \N f | |
1447 1.95 300000624 USD 1412 2015-03-22 04:31:13.463839 2 \N \N | |
1448 1.95 300000659 USD 1413 2015-03-22 04:31:13.463839 2 \N \N | |
1449 0.24 300000128 USD 1414 2015-03-22 04:31:13.463839 2 \N \N | |
1450 0.45 300000128 USD 1415 2015-03-22 04:31:13.463839 2 \N f | |
1451 0.50 300000195 USD 1416 2015-03-22 04:31:13.463839 2 \N \N | |
1452 0.35 300000129 USD 1417 2015-03-22 04:31:13.463839 2 \N \N | |
1453 0.25 300000159 USD 1418 2015-03-22 04:31:13.463839 2 \N \N | |
1454 1.95 300000593 USD 1419 2015-03-22 04:31:13.463839 2 \N \N | |
1455 3.00 300000593 USD 1420 2015-03-22 04:31:13.463839 2 \N f | |
1456 0.24 300000343 USD 1421 2015-03-22 04:31:13.463839 2 \N \N | |
1457 8.25 300000203 USD 1422 2015-03-22 04:31:13.463839 2 \N \N | |
1458 0.25 300000283 USD 1423 2015-03-22 04:31:13.463839 2 \N \N | |
\. | |
-- | |
-- TOC entry 2039 (class 0 OID 0) | |
-- Dependencies: 175 | |
-- Name: prices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres | |
-- | |
SELECT pg_catalog.setval('prices_id_seq', 1458, true); | |
-- | |
-- TOC entry 2027 (class 0 OID 16435) | |
-- Dependencies: 177 | |
-- Data for Name: stores; Type: TABLE DATA; Schema: public; Owner: postgres | |
-- | |
COPY stores (id, name) FROM stdin; | |
1 Win Condition Cards | |
2 MLP Source | |
3 Troll and Toad | |
4 Amazon | |
5 ToyWiz | |
6 CCG Castle | |
7 EBay | |
\. | |
-- | |
-- TOC entry 2040 (class 0 OID 0) | |
-- Dependencies: 176 | |
-- Name: stores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres | |
-- | |
SELECT pg_catalog.setval('stores_id_seq', 7, true); | |
-- | |
-- TOC entry 2041 (class 0 OID 0) | |
-- Dependencies: 173 | |
-- Name: url_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres | |
-- | |
SELECT pg_catalog.setval('url_id_seq', 1423, true); | |
-- | |
-- TOC entry 2022 (class 0 OID 16395) | |
-- Dependencies: 172 | |
-- Data for Name: urls; Type: TABLE DATA; Schema: public; Owner: postgres | |
-- | |
COPY urls (id, url) FROM stdin; | |
2 sefsefefsves | |
3 /catalog/my_little_pony_ccg_singles-the_crystal_games/windigo__166/200183 | |
4 /catalog/my_little_pony_ccg_singles-the_crystal_games/winona_dependable_pet__32/200883 | |
5 /catalog/my_little_pony_ccg_singles-the_crystal_games/winona_dependable_pet__f14/201423 | |
6 /catalog/my_little_pony_ccg_singles-premiere_edition/winona_on_the_scent__94/97493 | |
7 /catalog/my_little_pony_ccg_singles-premiere_edition/winona_on_the_scent__f30/97413 | |
8 /catalog/my_little_pony_ccg_singles-the_crystal_games/wonderbolt_academy_invitations__155/200133 | |
9 /catalog/my_little_pony_ccg_singles-the_crystal_games/wonderbolts_reserve_exam__190/200193 | |
10 /catalog/my_little_pony_ccg_singles-premiere_edition/working_together__129/97543 | |
11 /catalog/my_little_pony_ccg_singles-premiere_edition/working_together__f35/97273 | |
12 /catalog/my_little_pony_ccg_singles-premiere_edition/wrapping_up_winter__196/97343 | |
13 /catalog/my_little_pony_ccg_singles-premiere_edition/yay__130/97553 | |
14 /catalog/my_little_pony_ccg_singles-premiere_edition/yellow_parasprite__160/97633 | |
15 /catalog/my_little_pony_ccg_singles-the_crystal_games/yoink__124/200203 | |
16 /catalog/my_little_pony_ccg_singles-the_crystal_games/yoink__f42/201703 | |
17 /catalog/my_little_pony_ccg_singles-canterlot_nights/youve_been_up_all_night__128/120333 | |
18 /catalog/my_little_pony_ccg_singles-premiere_edition/zecora_everfree_guru__204/97373 | |
19 /catalog/my_little_pony_ccg_singles-canterlot_nights/zecora_magical_mentor__67/120313 | |
20 /catalog/my_little_pony_ccg_singles-canterlot_nights/princess_mi_amore_cadenza__156/119033 | |
21 /catalog/my_little_pony_ccg_singles-canterlot_nights/princess_mi_amore_cadenza__f49/121173 | |
22 /catalog/my_little_pony_ccg_singles-premiere_edition/795_wing_power__171/95483 | |
23 /catalog/my_little_pony_ccg_singles-canterlot_nights/800_years_of_sweltering_heat__165/119083 | |
24 /catalog/my_little_pony_ccg_singles-premiere_edition/a_bully_and_a_beast__102/95753 | |
25 /catalog/my_little_pony_ccg_singles-canterlot_nights/a_fiery_temper__129/118893 | |
26 /catalog/my_little_pony_ccg_singles-the_crystal_games/a_hasty_retreat__91/200683 | |
27 /catalog/my_little_pony_ccg_singles-canterlot_nights/a_major_problem__99/118793 | |
28 /catalog/my_little_pony_ccg_singles-the_crystal_games/a_simple_mixup__92/199823 | |
29 /catalog/my_little_pony_ccg_singles-canterlot_nights/a_stitch_in_time__166/119093 | |
30 /catalog/my_little_pony_ccg_singles-premiere_edition/a_thorn_in_his_paw__161/95643 | |
31 /catalog/my_little_pony_ccg_singles-premiere_edition/a_touch_of_refinement__103/95423 | |
32 /catalog/my_little_pony_ccg_singles-premiere_edition/a_vision_of_the_future__104/95763 | |
33 /catalog/my_little_pony_ccg_singles-canterlot_nights/a_k_yearling_adventure_writer__191/119263 | |
34 /catalog/my_little_pony_ccg_singles-the_crystal_games/accessorize_the_crystal_ponies__167/201273 | |
35 /catalog/my_little_pony_ccg_singles-premiere_edition/action_shotshutterbug__65/96063 | |
36 /catalog/my_little_pony_ccg_singles-premiere_edition/adventures_in_foalsitting__169/95293 | |
37 /catalog/my_little_pony_ccg_singles-premiere_edition/ahuizotl__f40/95403 | |
38 /catalog/my_little_pony_ccg_singles-promos/ahuizotl_developer_dev_promo__p13/116133 | |
39 /catalog/my_little_pony_ccg_singles-canterlot_nights/amethyst_maresbury_crystal_librarian__53/118593 | |
40 /catalog/my_little_pony_ccg_singles-premiere_edition/amethyst_star_animal_leader__80/95613 | |
41 /catalog/my_little_pony_ccg_singles-the_crystal_games/amethyst_star_calming_presence__77/201283 | |
42 /catalog/my_little_pony_ccg_singles-canterlot_nights/ancient_research__167/119103 | |
43 /catalog/my_little_pony_ccg_singles-the_crystal_games/angel_bossy_pet__78/201253 | |
44 /catalog/my_little_pony_ccg_singles-the_crystal_games/angel_bossy_pet__f30/201583 | |
45 /catalog/my_little_pony_ccg_singles-canterlot_nights/angel_serious_business__83/118693 | |
46 /catalog/my_little_pony_ccg_singles-canterlot_nights/angel_serious_business__f32/121003 | |
47 /catalog/my_little_pony_ccg_singles-the_crystal_games/antiquing__93/200583 | |
48 /catalog/my_little_pony_ccg_singles-canterlot_nights/anything_i_can_do_to_help__100/118803 | |
49 /catalog/my_little_pony_ccg_singles-the_crystal_games/apple_bloom_showstopper__19/201263 | |
50 /catalog/my_little_pony_ccg_singles-the_crystal_games/apple_bloom_showstopper__f10/201383 | |
51 /catalog/my_little_pony_ccg_singles-premiere_edition/apple_brown_betty_pastry_chef__36/95233 | |
52 /catalog/my_little_pony_ccg_singles-canterlot_nights/apple_bumpkin_caramel_coater__24/118403 | |
53 /catalog/my_little_pony_ccg_singles-canterlot_nights/apple_cider__130/118903 | |
54 /catalog/my_little_pony_ccg_singles-canterlot_nights/apple_cider__f43/121113 | |
55 /catalog/my_little_pony_ccg_singles-premiere_edition/apple_cobbler_headstrong__22/95203 | |
56 /catalog/my_little_pony_ccg_singles-the_crystal_games/apple_juice_break__94/201243 | |
57 /catalog/my_little_pony_ccg_singles-premiere_edition/apple_starsfruit_prodigy__51/96053 | |
58 /catalog/my_little_pony_ccg_singles-canterlot_nights/applebucking_day__168/119113 | |
59 /catalog/my_little_pony_ccg_singles-canterlot_nights/applejack_apple_vendor__2/118323 | |
60 /catalog/my_little_pony_ccg_singles-canterlot_nights/applejack_applebucker__26/118423 | |
61 /catalog/my_little_pony_ccg_singles-canterlot_nights/applejack_applebucker__f16/120843 | |
62 /catalog/my_little_pony_ccg_singles-premiere_edition/applejack_barn_raiser__24/95133 | |
63 /catalog/my_little_pony_ccg_singles-premiere_edition/applejack_barn_raiser__f13/95323 | |
64 /catalog/my_little_pony_ccg_singles-the_crystal_games/applejack_breeziefied__20/199813 | |
65 /catalog/my_little_pony_ccg_singles-the_crystal_games/applejack_carboloader__194/199973 | |
66 /catalog/my_little_pony_ccg_singles-the_crystal_games/applejack_crystallized__21/199803 | |
67 /catalog/my_little_pony_ccg_singles-the_crystal_games/applejack_crystallized__f11/201393 | |
68 /catalog/my_little_pony_ccg_singles-canterlot_nights/applejack_element_of_honesty__25/118413 | |
69 /catalog/my_little_pony_ccg_singles-canterlot_nights/applejack_element_of_honesty__f14/120823 | |
70 /catalog/my_little_pony_ccg_singles-promos/applejack_farm_foremare__p2/120453 | |
71 /catalog/my_little_pony_ccg_singles-promos/applejack_farm_foremare_gencon_indy_stamped__p2/163523 | |
72 /catalog/my_little_pony_ccg_singles-promos/applejack_farm_foremare_sdcc_2014_stamped__p2/163393 | |
73 /catalog/my_little_pony_ccg_singles-premiere_edition/applejack_plant_leader__23/95573 | |
74 /catalog/my_little_pony_ccg_singles-premiere_edition/applejack_plant_leader__f12/95683 | |
75 /catalog/my_little_pony_ccg_singles-promos/applejack_reunion_organizer__p3/211853 | |
76 /catalog/my_little_pony_ccg_singles-premiere_edition/applejack_steadfast_farmpony__2/96023 | |
77 /catalog/my_little_pony_ccg_singles-premiere_edition/apples_and_oranges__98/95923 | |
78 /catalog/my_little_pony_ccg_singles-premiere_edition/assault_cake__131/95983 | |
79 /catalog/my_little_pony_ccg_singles-premiere_edition/assertiveness_training__105/95943 | |
80 /catalog/my_little_pony_ccg_singles-premiere_edition/assertiveness_training__f31/95383 | |
81 /catalog/my_little_pony_ccg_singles-canterlot_nights/attitude_and_pizzazz__169/119123 | |
82 /catalog/my_little_pony_ccg_singles-premiere_edition/auntie_applesauce_gum_flapper__25/95743 | |
83 /catalog/my_little_pony_ccg_singles-premiere_edition/auntie_applesauce_gum_flapper__f14/95693 | |
84 /catalog/my_little_pony_ccg_singles-canterlot_nights/aura_really_rambunctious__39/118543 | |
85 /catalog/my_little_pony_ccg_singles-premiere_edition/avalanche__162/95283 | |
86 /catalog/my_little_pony_ccg_singles-the_crystal_games/backup_racer_substitute_flier__199/199983 | |
87 /catalog/my_little_pony_ccg_singles-canterlot_nights/bags_valet_luggage_lackey__27/118433 | |
88 /catalog/my_little_pony_ccg_singles-canterlot_nights/bed_rest__131/118913 | |
89 /catalog/my_little_pony_ccg_singles-canterlot_nights/bell_tower__132/118923 | |
90 /catalog/my_little_pony_ccg_singles-premiere_edition/berry_dreams_pompom_pony__37/95583 | |
91 /catalog/my_little_pony_ccg_singles-premiere_edition/berry_dreams_pompom_pony__f17/95703 | |
92 /catalog/my_little_pony_ccg_singles-the_crystal_games/berry_punch_very_convincing__33/200673 | |
93 /catalog/my_little_pony_ccg_singles-the_crystal_games/biff__156/200533 | |
94 /catalog/my_little_pony_ccg_singles-canterlot_nights/biff_pow__101/118813 | |
95 /catalog/my_little_pony_ccg_singles-canterlot_nights/big_mac_biggest_brother__28/118443 | |
96 /catalog/my_little_pony_ccg_singles-premiere_edition/big_mac_immense_apple__199/95173 | |
97 /catalog/my_little_pony_ccg_singles-premiere_edition/big_shot_wildlife_photographer__66/95883 | |
98 /catalog/my_little_pony_ccg_singles-premiere_edition/big_top_silly_pony__38/95853 | |
99 /catalog/my_little_pony_ccg_singles-canterlot_nights/blossomforth_too_flexible__84/118703 | |
100 /catalog/my_little_pony_ccg_singles-premiere_edition/blue_jay_warbler__81/95263 | |
101 /catalog/my_little_pony_ccg_singles-premiere_edition/blue_moon_ol_blue_eyes__60/95603 | |
102 /catalog/my_little_pony_ccg_singles-the_crystal_games/bolt_pivot__5/199793 | |
103 /catalog/my_little_pony_ccg_singles-the_crystal_games/bon_bon_side_by_side__34/201213 | |
104 /catalog/my_little_pony_ccg_singles-the_crystal_games/bon_bon_side_by_side__f15/201433 | |
105 /catalog/my_little_pony_ccg_singles-the_crystal_games/boneless__125/201203 | |
106 /catalog/my_little_pony_ccg_singles-canterlot_nights/bottom_of_the_well__170/119133 | |
107 /catalog/my_little_pony_ccg_singles-the_crystal_games/braeburn_appleloosan_apple__22/201233 | |
108 /catalog/my_little_pony_ccg_singles-premiere_edition/bright_bulb_seasoned_strategist__53/95523 | |
109 /catalog/my_little_pony_ccg_singles-the_crystal_games/bright_smile_one_of_the_gang__79/201223 | |
110 /catalog/my_little_pony_ccg_singles-premiere_edition/brown_parasprite__153/95633 | |
111 /catalog/my_little_pony_ccg_singles-the_crystal_games/bubbly_mare_helping_hoof__4/200653 | |
112 /catalog/my_little_pony_ccg_singles-canterlot_nights/bulk_biceps_all_muscle__192/119273 | |
113 /catalog/my_little_pony_ccg_singles-the_crystal_games/bulk_biceps_pumped_up__6/200553 | |
114 /catalog/my_little_pony_ccg_singles-premiere_edition/bunny_breakout__164/96013 | |
115 /catalog/my_little_pony_ccg_singles-premiere_edition/bunny_stampede__165/95663 | |
116 /catalog/my_little_pony_ccg_singles-the_crystal_games/burst_of_speed__95/200563 | |
117 /catalog/my_little_pony_ccg_singles-promos/burst_of_speed_promo__p3/201803 | |
118 /catalog/my_little_pony_ccg_singles-the_crystal_games/call_to_action__96/199783 | |
119 /catalog/my_little_pony_ccg_singles-the_crystal_games/call_to_action__f35/201633 | |
120 /catalog/my_little_pony_ccg_singles-canterlot_nights/canterlot_archive_guard_literate_lookout__54/118603 | |
121 /catalog/my_little_pony_ccg_singles-canterlot_nights/canterlot_archive_guard_literate_lookout__f23/120913 | |
122 /catalog/my_little_pony_ccg_singles-canterlot_nights/canterlot_archives__133/118933 | |
123 /catalog/my_little_pony_ccg_singles-canterlot_nights/canterlot_hedge_maze__134/118943 | |
124 /catalog/my_little_pony_ccg_singles-premiere_edition/carousel_boutique__132/96113 | |
125 /catalog/my_little_pony_ccg_singles-premiere_edition/carousel_boutique__f36/95393 | |
126 /catalog/my_little_pony_ccg_singles-the_crystal_games/cart_crafting__168/200543 | |
127 /catalog/my_little_pony_ccg_singles-the_crystal_games/catch_me__97/200663 | |
128 /catalog/my_little_pony_ccg_singles-the_crystal_games/cerberus__157/200573 | |
129 /catalog/my_little_pony_ccg_singles-the_crystal_games/ceremonial_headdress__126/201143 | |
130 /catalog/my_little_pony_ccg_singles-the_crystal_games/ceremonial_headdress__f43/201713 | |
131 /catalog/my_little_pony_ccg_singles-premiere_edition/cerulean_skies_skyward_soarer__8/95563 | |
132 /catalog/my_little_pony_ccg_singles-canterlot_nights/changeling_swarm__158/119053 | |
133 /catalog/my_little_pony_ccg_singles-canterlot_nights/changeling_swarm__f50/121183 | |
134 /catalog/my_little_pony_ccg_singles-the_crystal_games/charge__169/200453 | |
135 /catalog/my_little_pony_ccg_singles-premiere_edition/charged_up_energizer_pony__39/96043 | |
136 /catalog/my_little_pony_ccg_singles-the_crystal_games/cheer_up_the_crystal_ponies__170/201153 | |
137 /catalog/my_little_pony_ccg_singles-the_crystal_games/cheerilee_homeroom_teacher__47/200633 | |
138 /catalog/my_little_pony_ccg_singles-canterlot_nights/cheering_up_a_friend__171/119143 | |
139 /catalog/my_little_pony_ccg_singles-the_crystal_games/cheese_sandwich_heavy_artillery__35/200443 | |
140 /catalog/my_little_pony_ccg_singles-the_crystal_games/cheese_sandwich_heavy_artillery__f16/201443 | |
141 /catalog/my_little_pony_ccg_singles-canterlot_nights/cheese_sandwich_wandering_partier__40/118553 | |
142 /catalog/my_little_pony_ccg_singles-canterlot_nights/cheese_sandwich_wandering_partier__f19/120873 | |
143 /catalog/my_little_pony_ccg_singles-canterlot_nights/cherry_fizzy_stalwart_soldier__29/118453 | |
144 /catalog/my_little_pony_ccg_singles-premiere_edition/cherry_jubilee_queen_of_the_hill__26/95843 | |
145 /catalog/my_little_pony_ccg_singles-canterlot_nights/chic_beret__135/118953 | |
146 /catalog/my_little_pony_ccg_singles-canterlot_nights/chicken_costume__136/118963 | |
147 /catalog/my_little_pony_ccg_singles-canterlot_nights/chicken_costume__f44/121123 | |
148 /catalog/my_little_pony_ccg_singles-canterlot_nights/chief_thunderhooves_buffaloing_buffalo__9/121213 | |
149 /catalog/my_little_pony_ccg_singles-canterlot_nights/chief_thunderhooves_buffaloing_buffalo__f9/118343 | |
150 /catalog/my_little_pony_ccg_singles-the_crystal_games/chimera__158/199773 | |
151 /catalog/my_little_pony_ccg_singles-canterlot_nights/cipher_splash_born_ready__10/118353 | |
152 /catalog/my_little_pony_ccg_singles-premiere_edition/clearing_gloomy_skies__167/95813 | |
153 /catalog/my_little_pony_ccg_singles-premiere_edition/cloudbursting__168/95473 | |
154 /catalog/my_little_pony_ccg_singles-premiere_edition/cloudchaser_flexible_flier__11/95493 | |
155 /catalog/my_little_pony_ccg_singles-promos/cloudchaser_flexible_flier_foil_store_championship_promo_p14/160293 | |
156 /catalog/my_little_pony_ccg_singles-canterlot_nights/cloudy_quartz_concerned_mother__30/118463 | |
157 /catalog/my_little_pony_ccg_singles-the_crystal_games/cockatrice__159/199763 | |
158 /catalog/my_little_pony_ccg_singles-canterlot_nights/cockatrice_on_the_loose__172/119153 | |
159 /catalog/my_little_pony_ccg_singles-premiere_edition/coco_crusoe_thick_skinned__27/95513 | |
160 /catalog/my_little_pony_ccg_singles-the_crystal_games/coco_pommels_thread__127/201173 | |
161 /catalog/my_little_pony_ccg_singles-canterlot_nights/coco_pommel_fashion_apprentice__69/118643 | |
162 /catalog/my_little_pony_ccg_singles-canterlot_nights/coco_pommel_fashion_apprentice__p2/120543 | |
163 /catalog/my_little_pony_ccg_singles-the_crystal_games/coco_pommel_refurbisher__62/200463 | |
164 /catalog/my_little_pony_ccg_singles-the_crystal_games/coco_pommel_refurbisher__f25/201533 | |
165 /catalog/my_little_pony_ccg_singles-canterlot_nights/combat_hat__137/118973 | |
166 /catalog/my_little_pony_ccg_singles-canterlot_nights/combat_hat__f45/121133 | |
167 /catalog/my_little_pony_ccg_singles-the_crystal_games/comet_tail_blaze_of_glory__7/201163 | |
168 /catalog/my_little_pony_ccg_singles-premiere_edition/comet_tail_hale_bopper__54/95253 | |
169 /catalog/my_little_pony_ccg_singles-canterlot_nights/comforting_critters__173/119163 | |
170 /catalog/my_little_pony_ccg_singles-canterlot_nights/compass_star_geography_nut__55/118613 | |
171 /catalog/my_little_pony_ccg_singles-canterlot_nights/cookie_crumbles_fancy_cooker__68/118633 | |
172 /catalog/my_little_pony_ccg_singles-the_crystal_games/cranky_doodle_donkey_crankiest_of_creatures__23/200433 | |
173 /catalog/my_little_pony_ccg_singles-canterlot_nights/crash_course__174/119173 | |
174 /catalog/my_little_pony_ccg_singles-the_crystal_games/creepy_creeping_crystals__128/199753 | |
175 /catalog/my_little_pony_ccg_singles-premiere_edition/creme_de_la_creme__107/95433 | |
176 /catalog/my_little_pony_ccg_singles-premiere_edition/critter_cuisine__134/95993 | |
177 /catalog/my_little_pony_ccg_singles-canterlot_nights/critter_stampede__102/118823 | |
178 /catalog/my_little_pony_ccg_singles-the_crystal_games/crystal_forcefield__129/200513 | |
179 /catalog/my_little_pony_ccg_singles-the_crystal_games/crystal_guard_on_duty__8/200523 | |
180 /catalog/my_little_pony_ccg_singles-the_crystal_games/cutie_mark_crusaders_ponyville_flag_carriers__f1/201293 | |
181 /catalog/my_little_pony_ccg_singles-the_crystal_games/cutie_pox_scare__98/200503 | |
182 /catalog/my_little_pony_ccg_singles-canterlot_nights/daisy_mousy_mare__31/118473 | |
183 /catalog/my_little_pony_ccg_singles-canterlot_nights/daisy_mousy_mare__f15/120833 | |
184 /catalog/my_little_pony_ccg_singles-premiere_edition/dance_fever_disco_king__40/95863 | |
185 /catalog/my_little_pony_ccg_singles-the_crystal_games/daring_do_professional_heroine__9/200493 | |
186 /catalog/my_little_pony_ccg_singles-the_crystal_games/daring_do_professional_heroine__f5/201333 | |
187 /catalog/my_little_pony_ccg_singles-canterlot_nights/dark_dank_dungeon__175/119183 | |
188 /catalog/my_little_pony_ccg_singles-the_crystal_games/dark_magic_surge__171/199743 | |
189 /catalog/my_little_pony_ccg_singles-canterlot_nights/dark_moon_moonlit_colt__11/118363 | |
190 /catalog/my_little_pony_ccg_singles-the_crystal_games/dazzling_jacket__130/199733 | |
191 /catalog/my_little_pony_ccg_singles-the_crystal_games/deep_dark_forest__172/199723 | |
192 /catalog/my_little_pony_ccg_singles-promos/derpy_equestrian_mailmare_special_delivery_promo__p1/163483 | |
193 /catalog/my_little_pony_ccg_singles-the_crystal_games/destiny_drain__201/199963 | |
194 /catalog/my_little_pony_ccg_singles-the_crystal_games/diamond_tiara__160/201183 | |
195 /catalog/my_little_pony_ccg_singles-premiere_edition/dig_deep__97/95913 | |
196 /catalog/my_little_pony_ccg_singles-the_crystal_games/distract_the_crystal_ponies__173/201193 | |
197 /catalog/my_little_pony_ccg_singles-canterlot_nights/doc_top_pony_pediatrician__32/118483 | |
198 /catalog/my_little_pony_ccg_singles-canterlot_nights/doctor_horse_md__85/118713 | |
199 /catalog/my_little_pony_ccg_singles-the_crystal_games/doctors_orders__99/200483 | |
200 /catalog/my_little_pony_ccg_singles-promos/doctors_orders__p5/216803 | |
201 /catalog/my_little_pony_ccg_singles-premiere_edition/doublecheck_the_checklist__109/95773 | |
202 /catalog/my_little_pony_ccg_singles-premiere_edition/downright_dangerous__110/95443 | |
203 /catalog/my_little_pony_ccg_singles-the_crystal_games/dr_hooves_experienced_equine__10/200473 | |
204 /catalog/my_little_pony_ccg_singles-the_crystal_games/dr_hooves_experienced_equine__f6/201343 | |
205 /catalog/my_little_pony_ccg_singles-canterlot_nights/dr_hooves_just_in_time__12/118373 | |
206 /catalog/my_little_pony_ccg_singles-canterlot_nights/dr_hooves_just_in_time__f10/120783 | |
207 /catalog/my_little_pony_ccg_singles-promos/dr_hooves_too_splashy__p4/216793 | |
208 /catalog/my_little_pony_ccg_singles-the_crystal_games/dressed_up__131/199713 | |
209 /catalog/my_little_pony_ccg_singles-premiere_edition/drill_bit_destruction_worker__30/95223 | |
210 /catalog/my_little_pony_ccg_singles-premiere_edition/drill_bit_destruction_worker__f16/95343 | |
211 /catalog/my_little_pony_ccg_singles-premiere_edition/duck_and_cover__111/95783 | |
212 /catalog/my_little_pony_ccg_singles-canterlot_nights/eagle_soaring_raptor__86/118723 | |
213 /catalog/my_little_pony_ccg_singles-canterlot_nights/earth_pony_royal_guard_arresting_officer__33/118493 | |
214 /catalog/my_little_pony_ccg_singles-canterlot_nights/eclair_creme_vicarious_listener__13/118383 | |
215 /catalog/my_little_pony_ccg_singles-canterlot_nights/eep__103/118833 | |
216 /catalog/my_little_pony_ccg_singles-premiere_edition/eeyup__112/95963 | |
217 /catalog/my_little_pony_ccg_singles-premiere_edition/eff_stopmuckraker__69/96083 | |
218 /catalog/my_little_pony_ccg_singles-the_crystal_games/elbow_grease_street_sweeper__24/201003 | |
219 /catalog/my_little_pony_ccg_singles-premiere_edition/emerald_green_cider_aficionado__12/95193 | |
220 /catalog/my_little_pony_ccg_singles-premiere_edition/emergency_dress_order__170/95823 | |
221 /catalog/my_little_pony_ccg_singles-the_crystal_games/enchanted_parasprites__161/200323 | |
222 /catalog/my_little_pony_ccg_singles-the_crystal_games/encourage_the_crystal_ponies__174/201013 | |
223 /catalog/my_little_pony_ccg_singles-the_crystal_games/entertain_the_crystal_ponies__175/201033 | |
224 /catalog/my_little_pony_ccg_singles-the_crystal_games/equestrian_mailmare_special_delivery__80/201023 | |
225 /catalog/my_little_pony_ccg_singles-the_crystal_games/equestrian_mailmare_special_delivery__f31/201593 | |
226 /catalog/my_little_pony_ccg_singles-the_crystal_games/fake_crystal_heart__132/199703 | |
227 /catalog/my_little_pony_ccg_singles-premiere_edition/falcon_fast__furious__82/95533 | |
228 /catalog/my_little_pony_ccg_singles-the_crystal_games/fancy_pants_all_class__63/201043 | |
229 /catalog/my_little_pony_ccg_singles-the_crystal_games/fancy_pants_all_class__f26/201543 | |
230 /catalog/my_little_pony_ccg_singles-canterlot_nights/fancy_pants_trendsetter__198/119303 | |
231 /catalog/my_little_pony_ccg_singles-premiere_edition/fashion_feast__186/95833 | |
232 /catalog/my_little_pony_ccg_singles-the_crystal_games/fashion_upgrade__100/199693 | |
233 /catalog/my_little_pony_ccg_singles-canterlot_nights/fashion_week__104/118843 | |
234 /catalog/my_little_pony_ccg_singles-canterlot_nights/fast_clip_drill_instructor__34/118503 | |
235 /catalog/my_little_pony_ccg_singles-premiere_edition/featherweight_editorinchief__f25/95363 | |
236 /catalog/my_little_pony_ccg_singles-premiere_edition/featherweighteditorinchief__67/96073 | |
237 /catalog/my_little_pony_ccg_singles-the_crystal_games/feedbag__133/199683 | |
238 /catalog/my_little_pony_ccg_singles-the_crystal_games/fending_off_fiends__176/199673 | |
239 /catalog/my_little_pony_ccg_singles-premiere_edition/fiddly_faddlecountry_twang__68/95893 | |
240 /catalog/my_little_pony_ccg_singles-premiere_edition/fighting_for_friendship__135/95273 | |
241 /catalog/my_little_pony_ccg_singles-canterlot_nights/fine_line_au_pair__87/118733 | |
242 /catalog/my_little_pony_ccg_singles-the_crystal_games/finger_snap__101/199663 | |
243 /catalog/my_little_pony_ccg_singles-the_crystal_games/finger_snap__f36/201643 | |
244 /catalog/my_little_pony_ccg_singles-premiere_edition/finish_line_jammer__9/95733 | |
245 /catalog/my_little_pony_ccg_singles-premiere_edition/finish_line_jammer__f7/95673 | |
246 /catalog/my_little_pony_ccg_singles-the_crystal_games/fire_in_the_sky__102/199653 | |
247 /catalog/my_little_pony_ccg_singles-premiere_edition/flam__154/95803 | |
248 /catalog/my_little_pony_ccg_singles-the_crystal_games/flamingo_hot_pink__81/201083 | |
249 /catalog/my_little_pony_ccg_singles-canterlot_nights/fleur_dis_lee_trendy_follower__70/118653 | |
250 /catalog/my_little_pony_ccg_singles-premiere_edition/flim__155/95463 | |
251 /catalog/my_little_pony_ccg_singles-premiere_edition/flitter_ribbon_wielder__42/95243 | |
252 /catalog/my_little_pony_ccg_singles-canterlot_nights/flutterbat__00/118313 | |
253 /catalog/my_little_pony_ccg_singles-premiere_edition/fluttershy_animal_team__84/95413 | |
254 /catalog/my_little_pony_ccg_singles-premiere_edition/fluttershy_animal_team__f28/95713 | |
255 /catalog/my_little_pony_ccg_singles-premiere_edition/fluttershy_beastmaster__f6/95313 | |
256 /catalog/my_little_pony_ccg_singles-the_crystal_games/fluttershy_breeziefied__82/199643 | |
257 /catalog/my_little_pony_ccg_singles-canterlot_nights/fluttershy_critter_caregiver__88/118743 | |
258 /catalog/my_little_pony_ccg_singles-canterlot_nights/fluttershy_critter_caregiver__f33/121013 | |
259 /catalog/my_little_pony_ccg_singles-the_crystal_games/fluttershy_crystallized__83/199633 | |
260 /catalog/my_little_pony_ccg_singles-the_crystal_games/fluttershy_crystallized__f32/201603 | |
261 /catalog/my_little_pony_ccg_singles-canterlot_nights/fluttershy_element_of_kindness__89/118753 | |
262 /catalog/my_little_pony_ccg_singles-canterlot_nights/fluttershy_element_of_kindness__f34/121023 | |
263 /catalog/my_little_pony_ccg_singles-canterlot_nights/fluttershy_friend_to_animals__7/118333 | |
264 /catalog/my_little_pony_ccg_singles-premiere_edition/fluttershy_guidance_counselor__f27/95373 | |
265 /catalog/my_little_pony_ccg_singles-premiere_edition/fluttershy_monster_tamer__211/95553 | |
266 /catalog/my_little_pony_ccg_singles-the_crystal_games/fluttershy_reliable_racer__200/199933 | |
267 /catalog/my_little_pony_ccg_singles-premiere_edition/foal_free_press__136/95653 | |
268 /catalog/my_little_pony_ccg_singles-premiere_edition/focused_study__137/96123 | |
269 /catalog/my_little_pony_ccg_singles-canterlot_nights/foggy_fleece_cloud_crafter__71/118663 | |
270 /catalog/my_little_pony_ccg_singles-the_crystal_games/forced_gem_hunt__177/199623 | |
271 /catalog/my_little_pony_ccg_singles-canterlot_nights/four_step_dance_teacher__56/118623 | |
272 /catalog/my_little_pony_ccg_singles-the_crystal_games/friendly_disagreement__103/199613 | |
273 /catalog/my_little_pony_ccg_singles-the_crystal_games/friends_forever__104/200343 | |
274 /catalog/my_little_pony_ccg_singles-the_crystal_games/friends_forever__f37/201653 | |
275 /catalog/my_little_pony_ccg_singles-canterlot_nights/frown_town__177/119203 | |
276 /catalog/my_little_pony_ccg_singles-canterlot_nights/fruit_bat_roundup__178/119213 | |
277 /catalog/my_little_pony_ccg_singles-premiere_edition/full_steam_smoke_stacked__31/95143 | |
278 /catalog/my_little_pony_ccg_singles-canterlot_nights/funny_glasses__138/118983 | |
279 /catalog/my_little_pony_ccg_singles-canterlot_nights/furry_freeforall__105/118853 | |
280 /catalog/my_little_pony_ccg_singles-premiere_edition/gala_appleby_refined_farmer__21/95503 | |
281 /catalog/my_little_pony_ccg_singles-premiere_edition/getting_hooves_dirty__96/95903 | |
282 /catalog/my_little_pony_ccg_singles-the_crystal_games/gilda__162/199603 | |
283 /catalog/my_little_pony_ccg_singles-the_crystal_games/gilda__f47/201753 | |
284 /catalog/my_little_pony_ccg_singles-the_crystal_games/giselle_thrillseeker__36/201053 | |
285 /catalog/my_little_pony_ccg_singles-the_crystal_games/glamour_gleam_deep_clean__64/199593 | |
286 /catalog/my_little_pony_ccg_singles-canterlot_nights/globe_trotter_sight_seer__42/118563 | |
287 /catalog/my_little_pony_ccg_singles-canterlot_nights/go_feed__139/118993 | |
288 /catalog/my_little_pony_ccg_singles-canterlot_nights/go_feed__f46/121143 | |
289 /catalog/my_little_pony_ccg_singles-canterlot_nights/golden_gavel_fast_talker__72/118673 | |
290 /catalog/my_little_pony_ccg_singles-canterlot_nights/golden_harvest_beyond_her_garden__35/118513 | |
291 /catalog/my_little_pony_ccg_singles-canterlot_nights/golden_harvest_beyond_her_garden__f17/120853 | |
292 /catalog/my_little_pony_ccg_singles-premiere_edition/golden_oak_library__138/95543 | |
293 /catalog/my_little_pony_ccg_singles-premiere_edition/golden_oak_library__f37/95723 | |
294 /catalog/my_little_pony_ccg_singles-the_crystal_games/golden_wheat_happy_to_help__84/201073 | |
295 /catalog/my_little_pony_ccg_singles-premiere_edition/goldengrape_popular_punster__43/108483 | |
296 /catalog/my_little_pony_ccg_singles-canterlot_nights/goldie_delicious_cat_hoarder__90/118763 | |
297 /catalog/my_little_pony_ccg_singles-the_crystal_games/goldie_delicious_dinner_time__85/200333 | |
298 /catalog/my_little_pony_ccg_singles-the_crystal_games/goldie_delicious_dinner_time__f33/201613 | |
299 /catalog/my_little_pony_ccg_singles-premiere_edition/good_hustle__101/95933 | |
300 /catalog/my_little_pony_ccg_singles-canterlot_nights/goof_off__176/119193 | |
301 /catalog/my_little_pony_ccg_singles-premiere_edition/gotta_go_fast__117/95153 | |
302 /catalog/my_little_pony_ccg_singles-promos/gotta_go_fast__p9/120503 | |
303 /catalog/my_little_pony_ccg_singles-premiere_edition/granny_smith_apple_elder__28/95213 | |
304 /catalog/my_little_pony_ccg_singles-premiere_edition/granny_smith_apple_elder__f15/95333 | |
305 /catalog/my_little_pony_ccg_singles-canterlot_nights/granny_smith_jar_judger__193/119283 | |
306 /catalog/my_little_pony_ccg_singles-the_crystal_games/green_dragon__163/201063 | |
307 /catalog/my_little_pony_ccg_singles-the_crystal_games/green_dragon__f48/201763 | |
308 /catalog/my_little_pony_ccg_singles-canterlot_nights/greeting_lots_of_folks_with_clout__179/119223 | |
309 /catalog/my_little_pony_ccg_singles-the_crystal_games/gummy_fun_pet__37/201133 | |
310 /catalog/my_little_pony_ccg_singles-the_crystal_games/gummy_fun_pet__f17/201453 | |
311 /catalog/my_little_pony_ccg_singles-premiere_edition/gyro_poindexter__f22/95353 | |
312 /catalog/my_little_pony_ccg_singles-premiere_edition/gyropoindexter__56/95873 | |
313 /catalog/my_little_pony_ccg_singles-canterlot_nights/hairpin_turn_blocker__14/118393 | |
314 /catalog/my_little_pony_ccg_singles-premiere_edition/hard_hat__139/95793 | |
315 /catalog/my_little_pony_ccg_singles-the_crystal_games/haymaker_tough_trainer__48/200423 | |
316 /catalog/my_little_pony_ccg_singles-canterlot_nights/hayseed_turnip_truck_a_for_effort__36/118523 | |
317 /catalog/my_little_pony_ccg_singles-premiere_edition/hearts_desire__209/95183 | |
318 /catalog/my_little_pony_ccg_singles-the_crystal_games/helia_marathon_mare__65/199583 | |
319 /catalog/my_little_pony_ccg_singles-premiere_edition/heres_your_invitation__113/95973 | |
320 /catalog/my_little_pony_ccg_singles-premiere_edition/high_spirits_life_enthusiast__44/95593 | |
321 /catalog/my_little_pony_ccg_singles-premiere_edition/high_spirits_life_enthusiast__44/97013 | |
322 /catalog/my_little_pony_ccg_singles-canterlot_nights/hoity_toity_fashion_critic__73/118683 | |
323 /catalog/my_little_pony_ccg_singles-premiere_edition/hoity_toity_vogue_authority__71/96643 | |
324 /catalog/my_little_pony_ccg_singles-canterlot_nights/hondo_flanks_big_daddy__45/118583 | |
325 /catalog/my_little_pony_ccg_singles-canterlot_nights/hoofwrasslin__106/118863 | |
326 /catalog/my_little_pony_ccg_singles-premiere_edition/house_mouselittle_pipsqueak__86/96923 | |
327 /catalog/my_little_pony_ccg_singles-the_crystal_games/hummingbird_nimble_flier__86/200623 | |
328 /catalog/my_little_pony_ccg_singles-premiere_edition/hummingwayfine_feathered_friend__87/96933 | |
329 /catalog/my_little_pony_ccg_singles-premiere_edition/hungry_hungry_catepillars__173/96703 | |
330 /catalog/my_little_pony_ccg_singles-canterlot_nights/hungry_hungry_house_guest__180/119233 | |
331 /catalog/my_little_pony_ccg_singles-the_crystal_games/hydra__164/199573 | |
332 /catalog/my_little_pony_ccg_singles-the_crystal_games/hydra__f49/201773 | |
333 /catalog/my_little_pony_ccg_singles-premiere_edition/i_can_fix_it__174/96333 | |
334 /catalog/my_little_pony_ccg_singles-canterlot_nights/i_got_a_golden_ticket__107/118873 | |
335 /catalog/my_little_pony_ccg_singles-promos/i_got_a_golden_ticket_gencon_indy_stamped__p12/163513 | |
336 /catalog/my_little_pony_ccg_singles-promos/i_got_a_golden_ticket_unstamped__p12/194943 | |
337 /catalog/my_little_pony_ccg_singles-canterlot_nights/i_just_cant_decide__f47/121153 | |
338 /catalog/my_little_pony_ccg_singles-premiere_edition/i_need_answers__175/96833 | |
339 /catalog/my_little_pony_ccg_singles-the_crystal_games/ice_archery__105/200413 | |
340 /catalog/my_little_pony_ccg_singles-the_crystal_games/ice_cloud_calamity__178/199563 | |
341 /catalog/my_little_pony_ccg_singles-premiere_edition/igneous_rock_pebble_pusher__29/96603 | |
342 /catalog/my_little_pony_ccg_singles-canterlot_nights/impress_the_inspector__181/119243 | |
343 /catalog/my_little_pony_ccg_singles-canterlot_nights/in_your_dreams__108/118883 | |
344 /catalog/my_little_pony_ccg_singles-canterlot_nights/in_your_dreams__p4/120563 | |
345 /catalog/my_little_pony_ccg_singles-the_crystal_games/inspiration_manifestation__106/200393 | |
346 /catalog/my_little_pony_ccg_singles-the_crystal_games/inspiring_magic__179/199553 | |
347 /catalog/my_little_pony_ccg_singles-premiere_edition/its_a_twister__176/96443 | |
348 /catalog/my_little_pony_ccg_singles-premiere_edition/its_alive__177/96843 | |
349 /catalog/my_little_pony_ccg_singles-the_crystal_games/jester_suit__134/200403 | |
350 /catalog/my_little_pony_ccg_singles-canterlot_nights/jet_set__upper_crust__159/119063 | |
351 /catalog/my_little_pony_ccg_singles-premiere_edition/jetstream_all_heart__7/96213 | |
352 /catalog/my_little_pony_ccg_singles-the_crystal_games/jewel_joy_fair_feaster__38/201123 | |
353 /catalog/my_little_pony_ccg_singles-canterlot_nights/joes_doughnut_shop__141/119013 | |
354 /catalog/my_little_pony_ccg_singles-canterlot_nights/joe_doughnuteer__37/118533 | |
355 /catalog/my_little_pony_ccg_singles-canterlot_nights/joe_doughnuteer__f18/120863 | |
356 /catalog/my_little_pony_ccg_singles-the_crystal_games/jousting_armor__135/199543 | |
357 /catalog/my_little_pony_ccg_singles-the_crystal_games/juggling_routine__107/199533 | |
358 /catalog/my_little_pony_ccg_singles-the_crystal_games/king_sombra__205/199943 | |
359 /catalog/my_little_pony_ccg_singles-premiere_edition/kitchen_au_flamb__163/97103 | |
360 /catalog/my_little_pony_ccg_singles-promos/lady_justice_volunteer_promo__p16/216733 | |
361 /catalog/my_little_pony_ccg_singles-premiere_edition/lady_justicejudge__jury__63/96903 | |
362 /catalog/my_little_pony_ccg_singles-premiere_edition/lead_pony_badge__140/96423 | |
363 /catalog/my_little_pony_ccg_singles-canterlot_nights/learned_lessons__142/119023 | |
364 /catalog/my_little_pony_ccg_singles-canterlot_nights/lemon_hearts_sweetheart__91/118773 | |
365 /catalog/my_little_pony_ccg_singles-premiere_edition/lemony_gemsour_grapes__57/97033 | |
366 /catalog/my_little_pony_ccg_singles-the_crystal_games/less_isnt_more__108/200353 | |
367 /catalog/my_little_pony_ccg_singles-premiere_edition/lets_get_this_party_started__114/97083 | |
368 /catalog/my_little_pony_ccg_singles-premiere_edition/lets_get_this_party_started__f32/96793 | |
369 /catalog/my_little_pony_ccg_singles-canterlot_nights/lightning_dust__160/119073 | |
370 /catalog/my_little_pony_ccg_singles-premiere_edition/lilac_links_superstitious__88/96173 | |
371 /catalog/my_little_pony_ccg_singles-premiere_edition/lilac_links_superstitious__f29/96393 | |
372 /catalog/my_little_pony_ccg_singles-the_crystal_games/lilac_luster_beautiful_beautician__66/201093 | |
373 /catalog/my_little_pony_ccg_singles-canterlot_nights/lily_panicked_pony__f20/120883 | |
374 /catalog/my_little_pony_ccg_singles-canterlot_nights/liza_doolots_boundless_energy__92/118783 | |
375 /catalog/my_little_pony_ccg_singles-premiere_edition/looking_for_trouble__178/96293 | |
376 /catalog/my_little_pony_ccg_singles-the_crystal_games/lost_and_not_found__180/199523 | |
377 /catalog/my_little_pony_ccg_singles-canterlot_nights/lost_in_the_crystal_caves__182/119253 | |
378 /catalog/my_little_pony_ccg_singles-premiere_edition/lotus_blossom_sauna_expert__74/96163 | |
379 /catalog/my_little_pony_ccg_singles-canterlot_nights/lucky_star_charming_cheerer__44/119473 | |
380 /catalog/my_little_pony_ccg_singles-premiere_edition/lucky_streakone_in_a_million__41/97003 | |
381 /catalog/my_little_pony_ccg_singles-premiere_edition/lyra_heartstrings_bonafide__201/96183 | |
382 /catalog/my_little_pony_ccg_singles-the_crystal_games/lyra_very_excitable__39/200373 | |
383 /catalog/my_little_pony_ccg_singles-the_crystal_games/lyra_very_excitable__f18/201463 | |
384 /catalog/my_little_pony_ccg_singles-canterlot_nights/magic_duel__109/119793 | |
385 /catalog/my_little_pony_ccg_singles-the_crystal_games/magical_mailbox__136/200363 | |
386 /catalog/my_little_pony_ccg_singles-the_crystal_games/magical_mailbox__f44/201723 | |
387 /catalog/my_little_pony_ccg_singles-the_crystal_games/magical_tantrum__181/199513 | |
388 /catalog/my_little_pony_ccg_singles-premiere_edition/mane_cureallveteran_vet__89/97053 | |
389 /catalog/my_little_pony_ccg_singles-canterlot_nights/maneraising_experience__110/119803 | |
390 /catalog/my_little_pony_ccg_singles-canterlot_nights/maneraising_experience__f37/121053 | |
391 /catalog/my_little_pony_ccg_singles-canterlot_nights/manny_roar_mild_manticore__93/119743 | |
392 /catalog/my_little_pony_ccg_singles-canterlot_nights/manny_roar_mild_manticore__f35/121033 | |
393 /catalog/my_little_pony_ccg_singles-premiere_edition/marvelous_chapeau__141/96823 | |
394 /catalog/my_little_pony_ccg_singles-the_crystal_games/matilda_full_of_hope__67/199503 | |
395 /catalog/my_little_pony_ccg_singles-the_crystal_games/maud_pie_like_a_rock__25/200383 | |
396 /catalog/my_little_pony_ccg_singles-the_crystal_games/maud_pie_like_a_rock__f12/201403 | |
397 /catalog/my_little_pony_ccg_singles-promos/maud_pie_like_a_rock__p2/201793 | |
398 /catalog/my_little_pony_ccg_singles-premiere_edition/may_the_best_pet_win__179/96963 | |
399 /catalog/my_little_pony_ccg_singles-premiere_edition/maybes_are_for_babies__185/96453 | |
400 /catalog/my_little_pony_ccg_singles-premiere_edition/mayor_mare_elected_official__58/96243 | |
401 /catalog/my_little_pony_ccg_singles-the_crystal_games/mayor_mare_town_leadership__49/201103 | |
402 /catalog/my_little_pony_ccg_singles-premiere_edition/mean_meanie_pants__172/96673 | |
403 /catalog/my_little_pony_ccg_singles-the_crystal_games/mercury_crystal_messenger__40/199493 | |
404 /catalog/my_little_pony_ccg_singles-premiere_edition/mint_jewelup_a_cut_above__55/96633 | |
405 /catalog/my_little_pony_ccg_singles-canterlot_nights/minuette_clocked_up__57/119553 | |
406 /catalog/my_little_pony_ccg_singles-canterlot_nights/minuette_clocked_up__f24/120923 | |
407 /catalog/my_little_pony_ccg_singles-premiere_edition/monitor_everything__182/96303 | |
408 /catalog/my_little_pony_ccg_singles-premiere_edition/monster_of_a_minotaur__183/96343 | |
409 /catalog/my_little_pony_ccg_singles-canterlot_nights/monstrous_cave__143/119983 | |
410 /catalog/my_little_pony_ccg_singles-canterlot_nights/monstrous_manual__144/119993 | |
411 /catalog/my_little_pony_ccg_singles-premiere_edition/mr_beaverton_beaverteeth_dam_builder__90/96523 | |
412 /catalog/my_little_pony_ccg_singles-premiere_edition/mr_breezyfan_fan__91/97063 | |
413 /catalog/my_little_pony_ccg_singles-the_crystal_games/mr_cake_loving_father__41/201113 | |
414 /catalog/my_little_pony_ccg_singles-canterlot_nights/mrs_cake_dessertier__94/119753 | |
415 /catalog/my_little_pony_ccg_singles-the_crystal_games/ms_harshwhinny_officious_official__50/199993 | |
416 /catalog/my_little_pony_ccg_singles-the_crystal_games/ms_harshwhinny_officious_official__f20/201483 | |
417 /catalog/my_little_pony_ccg_singles-the_crystal_games/multigoof_off__109/200003 | |
418 /catalog/my_little_pony_ccg_singles-premiere_edition/my_pinkie_sense_is_tingling__184/97113 | |
419 /catalog/my_little_pony_ccg_singles-canterlot_nights/nice_moves_kid__111/119813 | |
420 /catalog/my_little_pony_ccg_singles-the_crystal_games/night_light_devoted_dad__51/200703 | |
421 /catalog/my_little_pony_ccg_singles-premiere_edition/night_watch_vigilant_patrol__35/96503 | |
422 /catalog/my_little_pony_ccg_singles-promos/nightmare_moon_top_8_regional_championship_promo_p7/160303 | |
423 /catalog/my_little_pony_ccg_singles-premiere_edition/not_enough_pinkie_pies__181/96683 | |
424 /catalog/my_little_pony_ccg_singles-canterlot_nights/not_on_the_list__112/119823 | |
425 /catalog/my_little_pony_ccg_singles-premiere_edition/noteworthy_humdinger__76/96263 | |
426 /catalog/my_little_pony_ccg_singles-canterlot_nights/nothing_to_be_afraid_of__113/119833 | |
427 /catalog/my_little_pony_ccg_singles-premiere_edition/nurture_with_knowledge__116/96943 | |
428 /catalog/my_little_pony_ccg_singles-canterlot_nights/octavia_star_cellist__74/119653 | |
429 /catalog/my_little_pony_ccg_singles-canterlot_nights/octavia_star_cellist__f28/120963 | |
430 /catalog/my_little_pony_ccg_singles-premiere_edition/octavia_virtuoso__205/96193 | |
431 /catalog/my_little_pony_ccg_singles-premiere_edition/ol_salt_salt_blocked__48/96413 | |
432 /catalog/my_little_pony_ccg_singles-premiere_edition/opalescence_curtain_shredder__92/96273 | |
433 /catalog/my_little_pony_ccg_singles-the_crystal_games/opalescence_stylish_pet__68/200693 | |
434 /catalog/my_little_pony_ccg_singles-the_crystal_games/opalescence_stylish_pet__f27/201553 | |
435 /catalog/my_little_pony_ccg_singles-canterlot_nights/orange_swirl_dizzy_daredevil__15/119363 | |
436 /catalog/my_little_pony_ccg_singles-the_crystal_games/orthros_go_fetch__87/200013 | |
437 /catalog/my_little_pony_ccg_singles-the_crystal_games/out_of_action__137/200023 | |
438 /catalog/my_little_pony_ccg_singles-canterlot_nights/out_of_control__183/120153 | |
439 /catalog/my_little_pony_ccg_singles-premiere_edition/outshine_them_all__142/96433 | |
440 /catalog/my_little_pony_ccg_singles-the_crystal_games/overgrown_everfree__182/199483 | |
441 /catalog/my_little_pony_ccg_singles-the_crystal_games/owlowiscious_wise_pet__52/200743 | |
442 /catalog/my_little_pony_ccg_singles-the_crystal_games/owlowiscious_wise_pet__f21/201493 | |
443 /catalog/my_little_pony_ccg_singles-premiere_edition/parasprite_pandemic__187/96353 | |
444 /catalog/my_little_pony_ccg_singles-premiere_edition/parasprite_swarm__156/96533 | |
445 /catalog/my_little_pony_ccg_singles-premiere_edition/parasprite_swarm__f41/96983 | |
446 /catalog/my_little_pony_ccg_singles-the_crystal_games/parcel_post_pushing_the_envelope__88/200733 | |
447 /catalog/my_little_pony_ccg_singles-the_crystal_games/party_bomb__138/200033 | |
448 /catalog/my_little_pony_ccg_singles-the_crystal_games/peachy_pitt_suave_salesmare__89/200713 | |
449 /catalog/my_little_pony_ccg_singles-premiere_edition/pearly_stitch_crotchety_crocheter__73/96253 | |
450 /catalog/my_little_pony_ccg_singles-premiere_edition/pegasus_royal_guard_elite_sentry__14/96593 | |
451 /catalog/my_little_pony_ccg_singles-the_crystal_games/pep_talk__110/199473 | |
452 /catalog/my_little_pony_ccg_singles-canterlot_nights/perfect_pace_time_master__58/119563 | |
453 /catalog/my_little_pony_ccg_singles-the_crystal_games/periwinkle_pace_agile_athlete__11/200723 | |
454 /catalog/my_little_pony_ccg_singles-premiere_edition/philomena_beard_of_a_feather__207/96203 | |
455 /catalog/my_little_pony_ccg_singles-canterlot_nights/photo_finish_picture_perfect_pony__75/119663 | |
456 /catalog/my_little_pony_ccg_singles-premiere_edition/picnic_lunch__146/96953 | |
457 /catalog/my_little_pony_ccg_singles-premiere_edition/picnic_lunch__f39/96803 | |
458 /catalog/my_little_pony_ccg_singles-canterlot_nights/pie_family_rock_farm__145/120003 | |
459 /catalog/my_little_pony_ccg_singles-the_crystal_games/pile_of_presents__139/199463 | |
460 /catalog/my_little_pony_ccg_singles-promos/pinkie_pie_apple_family_member__p7/216743 | |
461 /catalog/my_little_pony_ccg_singles-the_crystal_games/pinkie_pie_breeziefied__42/199453 | |
462 /catalog/my_little_pony_ccg_singles-canterlot_nights/pinkie_pie_clonie_pie__195/120233 | |
463 /catalog/my_little_pony_ccg_singles-the_crystal_games/pinkie_pie_crystallized__43/199443 | |
464 /catalog/my_little_pony_ccg_singles-the_crystal_games/pinkie_pie_crystallized__f19/201473 | |
465 /catalog/my_little_pony_ccg_singles-the_crystal_games/pinkie_pie_distracting_cheerer__196/199843 | |
466 /catalog/my_little_pony_ccg_singles-promos/pinkie_pie_ear_to_ear__p3/120463 | |
467 /catalog/my_little_pony_ccg_singles-canterlot_nights/pinkie_pie_element_of_laughter__46/119483 | |
468 /catalog/my_little_pony_ccg_singles-canterlot_nights/pinkie_pie_element_of_laughter__f21/120893 | |
469 /catalog/my_little_pony_ccg_singles-premiere_edition/pinkie_pie_ice_cutter__46/96233 | |
470 /catalog/my_little_pony_ccg_singles-premiere_edition/pinkie_pie_ice_cutter__f19/96753 | |
471 /catalog/my_little_pony_ccg_singles-premiere_edition/pinkie_pie_party_animal__f3/96723 | |
472 /catalog/my_little_pony_ccg_singles-premiere_edition/pinkie_pie_pinkie_responsibility_pie__45/96153 | |
473 /catalog/my_little_pony_ccg_singles-premiere_edition/pinkie_pie_pinkie_responsibility_pie__f18/96373 | |
474 /catalog/my_little_pony_ccg_singles-canterlot_nights/pinkie_pie_pokey_pony__3/119323 | |
475 /catalog/my_little_pony_ccg_singles-premiere_edition/pinprick_pop_star__47/96513 | |
476 /catalog/my_little_pony_ccg_singles-premiere_edition/pinprick_pop_star__f20/96383 | |
477 /catalog/my_little_pony_ccg_singles-canterlot_nights/pipsqueak_scrappy_squirt__16/119373 | |
478 /catalog/my_little_pony_ccg_singles-the_crystal_games/plowing_the_field__111/199433 | |
479 /catalog/my_little_pony_ccg_singles-the_crystal_games/plowing_the_field__f38/201663 | |
480 /catalog/my_little_pony_ccg_singles-canterlot_nights/plum_tuckered_out__114/119843 | |
481 /catalog/my_little_pony_ccg_singles-canterlot_nights/plum_tuckered_out__f38/121063 | |
482 /catalog/my_little_pony_ccg_singles-the_crystal_games/poetry_slam__112/200063 | |
483 /catalog/my_little_pony_ccg_singles-the_crystal_games/poetry_slam__f39/201673 | |
484 /catalog/my_little_pony_ccg_singles-the_crystal_games/ponies_without_parachutes__183/199423 | |
485 /catalog/my_little_pony_ccg_singles-the_crystal_games/pony_charm__140/200043 | |
486 /catalog/my_little_pony_ccg_singles-canterlot_nights/pony_of_shadows__161/120113 | |
487 /catalog/my_little_pony_ccg_singles-premiere_edition/ponynapped__193/96863 | |
488 /catalog/my_little_pony_ccg_singles-the_crystal_games/ponyville_banner__141/200053 | |
489 /catalog/my_little_pony_ccg_singles-premiere_edition/ponyville_in_a_bottle__188/96693 | |
490 /catalog/my_little_pony_ccg_singles-the_crystal_games/ponyville_mailbox__142/200753 | |
491 /catalog/my_little_pony_ccg_singles-the_crystal_games/press_pass_on_the_scene__44/199413 | |
492 /catalog/my_little_pony_ccg_singles-the_crystal_games/prim_hemline_precise_pony__69/200763 | |
493 /catalog/my_little_pony_ccg_singles-canterlot_nights/prim_posy_fond_of_fronds__76/119673 | |
494 /catalog/my_little_pony_ccg_singles-canterlot_nights/prince_blueblood__162/120123 | |
495 /catalog/my_little_pony_ccg_singles-the_crystal_games/princess_cadance_crystal_princess__198/199833 | |
496 /catalog/my_little_pony_ccg_singles-the_crystal_games/princess_cadance_loving_ruler__3/200593 | |
497 /catalog/my_little_pony_ccg_singles-the_crystal_games/princess_celestia_bane_of_evil__f34/201623 | |
498 /catalog/my_little_pony_ccg_singles-canterlot_nights/princess_celestia_bringer_of_light__96/119773 | |
499 /catalog/my_little_pony_ccg_singles-canterlot_nights/princess_celestia_bringer_of_light__f36/121043 | |
500 /catalog/my_little_pony_ccg_singles-canterlot_nights/princess_celestia_equestrian_leader__190/120223 | |
501 /catalog/my_little_pony_ccg_singles-promos/princess_celestia_gambit_planner__p11/216783 | |
502 /catalog/my_little_pony_ccg_singles-canterlot_nights/princess_celestia_protector_of_equestria__200/120273 | |
503 /catalog/my_little_pony_ccg_singles-premiere_edition/princess_celestia_ray_of_sunshine__208/96583 | |
504 /catalog/my_little_pony_ccg_singles-canterlot_nights/princess_luna_dream_catcher__189/120213 | |
505 /catalog/my_little_pony_ccg_singles-the_crystal_games/princess_luna_good_nights_sleep__53/200113 | |
506 /catalog/my_little_pony_ccg_singles-the_crystal_games/princess_luna_good_nights_sleep__f22/201503 | |
507 /catalog/my_little_pony_ccg_singles-canterlot_nights/princess_luna_mare_in_the_moon__196/120243 | |
508 /catalog/my_little_pony_ccg_singles-canterlot_nights/princess_luna_night_mare__59/119573 | |
509 /catalog/my_little_pony_ccg_singles-promos/princess_luna_night_mare__p1/120533 | |
510 /catalog/my_little_pony_ccg_singles-the_crystal_games/princess_twilight_sparkle_princess_of_friendship__0/199853 | |
511 /catalog/my_little_pony_ccg_singles-canterlot_nights/private_party__146/120013 | |
512 /catalog/my_little_pony_ccg_singles-premiere_edition/professor_neigh_algebraic__52/96623 | |
513 /catalog/my_little_pony_ccg_singles-premiere_edition/professor_neigh_algebraic__f21/96763 | |
514 /catalog/my_little_pony_ccg_singles-premiere_edition/purple_parasprite__157/96283 | |
515 /catalog/my_little_pony_ccg_singles-canterlot_nights/purple_waters_prismatic_poetmusician__41/119463 | |
516 /catalog/my_little_pony_ccg_singles-canterlot_nights/raccoon_scrounger__97/119783 | |
517 /catalog/my_little_pony_ccg_singles-canterlot_nights/rainbow_blaze_dashing_mentor__17/119383 | |
518 /catalog/my_little_pony_ccg_singles-the_crystal_games/rainbow_dash_breeziefied__12/199403 | |
519 /catalog/my_little_pony_ccg_singles-the_crystal_games/rainbow_dash_crystallized__13/199393 | |
520 /catalog/my_little_pony_ccg_singles-the_crystal_games/rainbow_dash_crystallized__f7/201353 | |
521 /catalog/my_little_pony_ccg_singles-promos/rainbow_dash_cutie_mark_consultant__1_f/206413 | |
522 /catalog/my_little_pony_ccg_singles-canterlot_nights/rainbow_dash_element_of_loyalty__19/119403 | |
523 /catalog/my_little_pony_ccg_singles-canterlot_nights/rainbow_dash_element_of_loyalty__f12/120803 | |
524 /catalog/my_little_pony_ccg_singles-premiere_edition/rainbow_dash_flier_extraordinaire__1/96873 | |
525 /catalog/my_little_pony_ccg_singles-canterlot_nights/rainbow_dash_goosebump_giver__18/119393 | |
526 /catalog/my_little_pony_ccg_singles-canterlot_nights/rainbow_dash_goosebump_giver__f11/120793 | |
527 /catalog/my_little_pony_ccg_singles-canterlot_nights/rainbow_dash_hanging_out__1/119313 | |
528 /catalog/my_little_pony_ccg_singles-canterlot_nights/rainbow_dash_hanging_out__f1/120663 | |
529 /catalog/my_little_pony_ccg_singles-the_crystal_games/rainbow_dash_relay_racer__14/200103 | |
530 /catalog/my_little_pony_ccg_singles-promos/rainbow_dash_to_the_rescue_regional_championship_stamped_p1/194913 | |
531 /catalog/my_little_pony_ccg_singles-promos/rainbow_dash_to_the_rescue_unstamped__p1/194923 | |
532 /catalog/my_little_pony_ccg_singles-premiere_edition/rainbow_dash_weather_leader__15/96403 | |
533 /catalog/my_little_pony_ccg_singles-premiere_edition/rainbow_dash_weather_leader__f9/96743 | |
534 /catalog/my_little_pony_ccg_singles-premiere_edition/rainbow_dash_winged_wonder__198/96543 | |
535 /catalog/my_little_pony_ccg_singles-the_crystal_games/rainbowfied__143/199383 | |
536 /catalog/my_little_pony_ccg_singles-premiere_edition/rainbowshine_cloud_wrangler__16/96223 | |
537 /catalog/my_little_pony_ccg_singles-premiere_edition/rainbowshine_cloud_wrangler__f10/96363 | |
538 /catalog/my_little_pony_ccg_singles-the_crystal_games/randolph_highflying_earth_pony__15/200843 | |
539 /catalog/my_little_pony_ccg_singles-premiere_edition/rare_find_a_real_gem__f23/96773 | |
540 /catalog/my_little_pony_ccg_singles-premiere_edition/rare_finda_real_gem__59/97043 | |
541 /catalog/my_little_pony_ccg_singles-promos/rarity_big_sister__p5/216753 | |
542 /catalog/my_little_pony_ccg_singles-the_crystal_games/rarity_breeziefied__70/199373 | |
543 /catalog/my_little_pony_ccg_singles-the_crystal_games/rarity_crystallized__71/199363 | |
544 /catalog/my_little_pony_ccg_singles-the_crystal_games/rarity_crystallized__f28/201563 | |
545 /catalog/my_little_pony_ccg_singles-premiere_edition/rarity_dazzling_fashionista__5/96893 | |
546 /catalog/my_little_pony_ccg_singles-canterlot_nights/rarity_dragon_charmer__77/119683 | |
547 /catalog/my_little_pony_ccg_singles-canterlot_nights/rarity_dragon_charmer__f29/120973 | |
548 /catalog/my_little_pony_ccg_singles-promos/rarity_dragon_charmer__p5/120473 | |
549 /catalog/my_little_pony_ccg_singles-canterlot_nights/rarity_dressmaker__6/119343 | |
550 /catalog/my_little_pony_ccg_singles-canterlot_nights/rarity_dressmaker__f3/120703 | |
551 /catalog/my_little_pony_ccg_singles-canterlot_nights/rarity_element_of_generosity__78/119693 | |
552 /catalog/my_little_pony_ccg_singles-canterlot_nights/rarity_element_of_generosity__f30/120983 | |
553 /catalog/my_little_pony_ccg_singles-the_crystal_games/rarity_equestria_games_designer__72/200093 | |
554 /catalog/my_little_pony_ccg_singles-premiere_edition/rarity_nest_weaver__77/96813 | |
555 /catalog/my_little_pony_ccg_singles-premiere_edition/rarity_nest_weaver__f26/96783 | |
556 /catalog/my_little_pony_ccg_singles-premiere_edition/rarity_truly_outrageous__206/96573 | |
557 /catalog/my_little_pony_ccg_singles-the_crystal_games/raven_event_organizer__54/200853 | |
558 /catalog/my_little_pony_ccg_singles-premiere_edition/raze_this_barn__189/96463 | |
559 /catalog/my_little_pony_ccg_singles-canterlot_nights/red_dragon__163/120133 | |
560 /catalog/my_little_pony_ccg_singles-canterlot_nights/red_dragon__f51/121193 | |
561 /catalog/my_little_pony_ccg_singles-premiere_edition/red_gala_favorite_cousin__33/96613 | |
562 /catalog/my_little_pony_ccg_singles-canterlot_nights/reformed__147/120023 | |
563 /catalog/my_little_pony_ccg_singles-the_crystal_games/relay_race__113/200073 | |
564 /catalog/my_little_pony_ccg_singles-premiere_edition/ridiculous_outfit__143/97093 | |
565 /catalog/my_little_pony_ccg_singles-premiere_edition/rising_star_in_the_spotlight__75/96653 | |
566 /catalog/my_little_pony_ccg_singles-canterlot_nights/rock_paper_scissors_shoot__115/119853 | |
567 /catalog/my_little_pony_ccg_singles-canterlot_nights/rock_paper_scissors_shoot__f39/121073 | |
568 /catalog/my_little_pony_ccg_singles-the_crystal_games/rockslide__184/199353 | |
569 /catalog/my_little_pony_ccg_singles-the_crystal_games/rook_ramparts_chess_champ__55/200773 | |
570 /catalog/my_little_pony_ccg_singles-canterlot_nights/roseluck_fainthearted_filly__79/119703 | |
571 /catalog/my_little_pony_ccg_singles-canterlot_nights/roseluck_fainthearted_filly__f31/120993 | |
572 /catalog/my_little_pony_ccg_singles-canterlot_nights/royal_canterlot_voice__116/119863 | |
573 /catalog/my_little_pony_ccg_singles-canterlot_nights/royal_dress_rehearsal__184/120163 | |
574 /catalog/my_little_pony_ccg_singles-premiere_edition/royal_guidance__99/96313 | |
575 /catalog/my_little_pony_ccg_singles-the_crystal_games/royal_peacekeeper_watchful_eye__26/199343 | |
576 /catalog/my_little_pony_ccg_singles-premiere_edition/royal_riff_songster__78/96663 | |
577 /catalog/my_little_pony_ccg_singles-the_crystal_games/royal_spyglass__144/199333 | |
578 /catalog/my_little_pony_ccg_singles-premiere_edition/rubber_chicken__144/96323 | |
579 /catalog/my_little_pony_ccg_singles-canterlot_nights/rumble_fast_learner__20/119413 | |
580 /catalog/my_little_pony_ccg_singles-premiere_edition/runaway_cart__190/96853 | |
581 /catalog/my_little_pony_ccg_singles-the_crystal_games/runaway_pony__185/200793 | |
582 /catalog/my_little_pony_ccg_singles-canterlot_nights/sapphire_shores_costume_changer__80/119713 | |
583 /catalog/my_little_pony_ccg_singles-canterlot_nights/sassaflash_striking__48/119503 | |
584 /catalog/my_little_pony_ccg_singles-premiere_edition/save_sweet_apple_acres__191/96973 | |
585 /catalog/my_little_pony_ccg_singles-the_crystal_games/save_the_crystal_ponies__186/200783 | |
586 /catalog/my_little_pony_ccg_singles-premiere_edition/savoir_faresnooty_server__72/96913 | |
587 /catalog/my_little_pony_ccg_singles-the_crystal_games/scootaloos_scooter__145/200083 | |
588 /catalog/my_little_pony_ccg_singles-premiere_edition/scootaloo_creature_catcher__17/96133 | |
589 /catalog/my_little_pony_ccg_singles-canterlot_nights/scootaloo_fan_club_founder__f13/120813 | |
590 /catalog/my_little_pony_ccg_singles-the_crystal_games/scootaloo_showstopper__16/200833 | |
591 /catalog/my_little_pony_ccg_singles-the_crystal_games/scootaloo_showstopper__f8/201363 | |
592 /catalog/my_little_pony_ccg_singles-the_crystal_games/scorpans_necklace__146/200823 | |
593 /catalog/my_little_pony_ccg_singles-premiere_edition/screwy_barking_mad__202/96563 | |
594 /catalog/my_little_pony_ccg_singles-premiere_edition/sea_swirlporpoiseful__93/97073 | |
595 /catalog/my_little_pony_ccg_singles-the_crystal_games/seabreezes_flower__147/200803 | |
596 /catalog/my_little_pony_ccg_singles-canterlot_nights/sealed_scroll_studious_scribe__60/119583 | |
597 /catalog/my_little_pony_ccg_singles-the_crystal_games/sheriff_silverstar_confident_constable__27/200813 | |
598 /catalog/my_little_pony_ccg_singles-canterlot_nights/shining_armor_captain_of_the_guard__61/119593 | |
599 /catalog/my_little_pony_ccg_singles-canterlot_nights/shining_armor_captain_of_the_guard__f25/120933 | |
600 /catalog/my_little_pony_ccg_singles-the_crystal_games/shining_armor_crystal_prince__56/199323 | |
601 /catalog/my_little_pony_ccg_singles-the_crystal_games/shining_armor_crystal_prince__f23/201513 | |
602 /catalog/my_little_pony_ccg_singles-the_crystal_games/shining_armorprincess_cadance_fastball_special__191/199923 | |
603 /catalog/my_little_pony_ccg_singles-premiere_edition/ship_shape_heavy_lifter__200/96553 | |
604 /catalog/my_little_pony_ccg_singles-canterlot_nights/shooting_star_tale_teller__22/119433 | |
605 /catalog/my_little_pony_ccg_singles-canterlot_nights/silver_frames_art_curator__81/119723 | |
606 /catalog/my_little_pony_ccg_singles-the_crystal_games/silver_shills_coin__148/200993 | |
607 /catalog/my_little_pony_ccg_singles-the_crystal_games/silver_spanner_dumpster_diver__57/200983 | |
608 /catalog/my_little_pony_ccg_singles-premiere_edition/silver_spanner_nuts_for_bolts__32/96493 | |
609 /catalog/my_little_pony_ccg_singles-the_crystal_games/silverspeed_eye_in_the_sky__28/200313 | |
610 /catalog/my_little_pony_ccg_singles-the_crystal_games/slick_shades__149/200963 | |
611 /catalog/my_little_pony_ccg_singles-the_crystal_games/slick_shades__f45/201733 | |
612 /catalog/my_little_pony_ccg_singles-the_crystal_games/smile_and_wave__150/200303 | |
613 /catalog/my_little_pony_ccg_singles-canterlot_nights/snails_deep_thinker__49/119513 | |
614 /catalog/my_little_pony_ccg_singles-premiere_edition/snips__snails_dynamic_duo__49/97023 | |
615 /catalog/my_little_pony_ccg_singles-canterlot_nights/snips__snails_problem_solvers__51/119533 | |
616 /catalog/my_little_pony_ccg_singles-canterlot_nights/snips__snails_problem_solvers__f22/120903 | |
617 /catalog/my_little_pony_ccg_singles-canterlot_nights/snips_schemer__50/119523 | |
618 /catalog/my_little_pony_ccg_singles-canterlot_nights/snooty_boutique__148/120033 | |
619 /catalog/my_little_pony_ccg_singles-the_crystal_games/soarin_team_player__17/200973 | |
620 /catalog/my_little_pony_ccg_singles-the_crystal_games/social_networking__114/199313 | |
621 /catalog/my_little_pony_ccg_singles-canterlot_nights/social_obligations__185/120173 | |
622 /catalog/my_little_pony_ccg_singles-canterlot_nights/soothe_the_savage_beast__149/120043 | |
623 /catalog/my_little_pony_ccg_singles-the_crystal_games/sound_the_flugelhorn__115/200283 | |
624 /catalog/my_little_pony_ccg_singles-premiere_edition/special_delivery__192/96473 | |
625 /catalog/my_little_pony_ccg_singles-the_crystal_games/spell_off__116/200273 | |
626 /catalog/my_little_pony_ccg_singles-canterlot_nights/spike_assistant_librarian__62/119603 | |
627 /catalog/my_little_pony_ccg_singles-canterlot_nights/spike_assistant_librarian__f26/120943 | |
628 /catalog/my_little_pony_ccg_singles-premiere_edition/spike_baby_dragon__18/96483 | |
629 /catalog/my_little_pony_ccg_singles-premiere_edition/spike_baby_dragon__f11/97243 | |
630 /catalog/my_little_pony_ccg_singles-the_crystal_games/spike_crystal_hero__f2/201303 | |
631 /catalog/my_little_pony_ccg_singles-the_crystal_games/spike_statuesque__29/200293 | |
632 /catalog/my_little_pony_ccg_singles-the_crystal_games/spike_statuesque__f13/201413 | |
633 /catalog/my_little_pony_ccg_singles-premiere_edition/spike_take_a_letter__124/97293 | |
634 /catalog/my_little_pony_ccg_singles-the_crystal_games/spike_the_brave_and_glorious__192/199913 | |
635 /catalog/my_little_pony_ccg_singles-the_crystal_games/spitfires_badge__151/200903 | |
636 /catalog/my_little_pony_ccg_singles-the_crystal_games/spitfire_cloudsdale_captain__193/199903 | |
637 /catalog/my_little_pony_ccg_singles-premiere_edition/spread_your_wings__95/97393 | |
638 /catalog/my_little_pony_ccg_singles-premiere_edition/spring_forward_companianable_filly__61/97163 | |
639 /catalog/my_little_pony_ccg_singles-the_crystal_games/spring_step_multitalented__73/200603 | |
640 /catalog/my_little_pony_ccg_singles-canterlot_nights/sprinkle_medley_drip_dropper__23/119443 | |
641 /catalog/my_little_pony_ccg_singles-canterlot_nights/staring_contest__117/119873 | |
642 /catalog/my_little_pony_ccg_singles-canterlot_nights/starry_eyes_space_cadet__63/119613 | |
643 /catalog/my_little_pony_ccg_singles-the_crystal_games/stay_quiet_the_longest__117/200243 | |
644 /catalog/my_little_pony_ccg_singles-canterlot_nights/steam_roller_juggernaut__38/119453 | |
645 /catalog/my_little_pony_ccg_singles-the_crystal_games/stone_cold__152/199303 | |
646 /catalog/my_little_pony_ccg_singles-canterlot_nights/storming_the_villains_lair__186/120183 | |
647 /catalog/my_little_pony_ccg_singles-premiere_edition/straighten_up__fly_right__119/97363 | |
648 /catalog/my_little_pony_ccg_singles-premiere_edition/straighten_up__fly_right__f33/97263 | |
649 /catalog/my_little_pony_ccg_singles-the_crystal_games/study_session__153/200263 | |
650 /catalog/my_little_pony_ccg_singles-premiere_edition/sugar_twist_twister_sister__79/97213 | |
651 /catalog/my_little_pony_ccg_singles-premiere_edition/sunny_rays_one_bright_mare__62/97353 | |
652 /catalog/my_little_pony_ccg_singles-premiere_edition/sunny_smiles_iconic_friend__34/97143 | |
653 /catalog/my_little_pony_ccg_singles-canterlot_nights/sunset_shimmer__164/120143 | |
654 /catalog/my_little_pony_ccg_singles-canterlot_nights/sunset_shimmer__f52/121203 | |
655 /catalog/my_little_pony_ccg_singles-the_crystal_games/surprise_outta_nowhere__45/200253 | |
656 /catalog/my_little_pony_ccg_singles-premiere_edition/surprise_party_pegasus__50/97153 | |
657 /catalog/my_little_pony_ccg_singles-canterlot_nights/swan_song_funloving_debutante__52/119543 | |
658 /catalog/my_little_pony_ccg_singles-premiere_edition/sweet_and_kind__100/97593 | |
659 /catalog/my_little_pony_ccg_singles-premiere_edition/sweet_apple_acres__145/97623 | |
660 /catalog/my_little_pony_ccg_singles-premiere_edition/sweet_apple_acres__f38/97283 | |
661 /catalog/my_little_pony_ccg_singles-canterlot_nights/sweetie_belle_doting_sister__199/120263 | |
662 /catalog/my_little_pony_ccg_singles-the_crystal_games/sweetie_belle_showstopper__74/200953 | |
663 /catalog/my_little_pony_ccg_singles-the_crystal_games/sweetie_belle_showstopper__f29/201573 | |
664 /catalog/my_little_pony_ccg_singles-premiere_edition/sweetie_sunrise_early_riser__20/97383 | |
665 /catalog/my_little_pony_ccg_singles-the_crystal_games/swindlers_in_town__187/200943 | |
666 /catalog/my_little_pony_ccg_singles-premiere_edition/swing_into_action__120/97433 | |
667 /catalog/my_little_pony_ccg_singles-canterlot_nights/tall_order_council_colt__64/119623 | |
668 /catalog/my_little_pony_ccg_singles-the_crystal_games/tall_tale_too_tall__30/199293 | |
669 /catalog/my_little_pony_ccg_singles-the_crystal_games/tank_loyal_pet__18/200923 | |
670 /catalog/my_little_pony_ccg_singles-the_crystal_games/tank_loyal_pet__f9/201373 | |
671 /catalog/my_little_pony_ccg_singles-the_crystal_games/tatzlwurm__165/200913 | |
672 /catalog/my_little_pony_ccg_singles-the_crystal_games/tatzlwurm__f50/201783 | |
673 /catalog/my_little_pony_ccg_singles-premiere_edition/team_effort__121/97503 | |
674 /catalog/my_little_pony_ccg_singles-the_crystal_games/telekinesis__118/200933 | |
675 /catalog/my_little_pony_ccg_singles-canterlot_nights/the_best_of_friends__118/119883 | |
676 /catalog/my_little_pony_ccg_singles-premiere_edition/the_big_guns__122/97513 | |
677 /catalog/my_little_pony_ccg_singles-canterlot_nights/the_brave_and_the_bold__119/119893 | |
678 /catalog/my_little_pony_ccg_singles-canterlot_nights/the_brave_and_the_bold__f41/121093 | |
679 /catalog/my_little_pony_ccg_singles-the_crystal_games/the_crystal_heart_heart_of_an_empire__154/200173 | |
680 /catalog/my_little_pony_ccg_singles-the_crystal_games/the_crystal_heart_heart_of_an_empire__f46/201743 | |
681 /catalog/my_little_pony_ccg_singles-the_crystal_games/the_element_of_generosity_a_beautiful_heart__204/199863 | |
682 /catalog/my_little_pony_ccg_singles-the_crystal_games/the_element_of_honesty_faithful_and_strong__203/199873 | |
683 /catalog/my_little_pony_ccg_singles-canterlot_nights/the_element_of_kindness_sharing_kindness__201/120283 | |
684 /catalog/my_little_pony_ccg_singles-canterlot_nights/the_element_of_magic_complete_magic__202/120293 | |
685 /catalog/my_little_pony_ccg_singles-the_crystal_games/the_equestria_games__202/199883 | |
686 /catalog/my_little_pony_ccg_singles-canterlot_nights/the_hard_way__120/119903 | |
687 /catalog/my_little_pony_ccg_singles-canterlot_nights/the_high_ground__150/120053 | |
688 /catalog/my_little_pony_ccg_singles-premiere_edition/the_horror_the_horror__123/97523 | |
689 /catalog/my_little_pony_ccg_singles-canterlot_nights/the_magic_of_adventure__121/119913 | |
690 /catalog/my_little_pony_ccg_singles-premiere_edition/the_ponyville_express__147/97453 | |
691 /catalog/my_little_pony_ccg_singles-the_crystal_games/the_power_of_love__119/200153 | |
692 /catalog/my_little_pony_ccg_singles-the_crystal_games/the_power_of_love__f40/201683 | |
693 /catalog/my_little_pony_ccg_singles-premiere_edition/the_problem_with_parasprites__166/97563 | |
694 /catalog/my_little_pony_ccg_singles-the_crystal_games/the_show_must_go_on__188/200163 | |
695 /catalog/my_little_pony_ccg_singles-the_crystal_games/the_soup_incident__120/199283 | |
696 /catalog/my_little_pony_ccg_singles-canterlot_nights/the_sun_and_the_moon__122/119923 | |
697 /catalog/my_little_pony_ccg_singles-canterlot_nights/the_twilicane__151/120063 | |
698 /catalog/my_little_pony_ccg_singles-canterlot_nights/the_twilicane__f48/121163 | |
699 /catalog/my_little_pony_ccg_singles-premiere_edition/this_way_little_ones__194/97573 | |
700 /catalog/my_little_pony_ccg_singles-canterlot_nights/threat_against_canterlot__187/120193 | |
701 /catalog/my_little_pony_ccg_singles-the_crystal_games/through_the_cave__189/199273 | |
702 /catalog/my_little_pony_ccg_singles-canterlot_nights/thunderclap__123/119933 | |
703 /catalog/my_little_pony_ccg_singles-the_crystal_games/thunderlane_nerves_of_steel__31/200863 | |
704 /catalog/my_little_pony_ccg_singles-the_crystal_games/tight_ship_meticulous_planner__58/200143 | |
705 /catalog/my_little_pony_ccg_singles-premiere_edition/timberwolf__158/97473 | |
706 /catalog/my_little_pony_ccg_singles-premiere_edition/too_many_bandages__148/97313 | |
707 /catalog/my_little_pony_ccg_singles-canterlot_nights/too_many_pinkie_pies__188/120203 | |
708 /catalog/my_little_pony_ccg_singles-canterlot_nights/too_much_fun__124/119943 | |
709 /catalog/my_little_pony_ccg_singles-premiere_edition/too_much_pie__149/97463 | |
710 /catalog/my_little_pony_ccg_singles-the_crystal_games/top_marks_longwinded_lecturer__59/199263 | |
711 /catalog/my_little_pony_ccg_singles-canterlot_nights/train_tracks__152/120073 | |
712 /catalog/my_little_pony_ccg_singles-the_crystal_games/trenderhoof_travel_writer__75/199253 | |
713 /catalog/my_little_pony_ccg_singles-premiere_edition/tricksy_hat__150/97323 | |
714 /catalog/my_little_pony_ccg_singles-the_crystal_games/trixie_the_great_and_powerful_showoff__197/199893 | |
715 /catalog/my_little_pony_ccg_singles-the_crystal_games/true_evil__121/200233 | |
716 /catalog/my_little_pony_ccg_singles-the_crystal_games/true_evil__f41/201693 | |
717 /catalog/my_little_pony_ccg_singles-the_crystal_games/tug_of_war__122/200223 | |
718 /catalog/my_little_pony_ccg_singles-canterlot_nights/twilight_sky_stanchion_stallion__82/119733 | |
719 /catalog/my_little_pony_ccg_singles-premiere_edition/twilight_sparkle_allteam_organizer__64/97203 | |
720 /catalog/my_little_pony_ccg_singles-premiere_edition/twilight_sparkle_allteam_organizer__f24/97253 | |
721 /catalog/my_little_pony_ccg_singles-the_crystal_games/twilight_sparkle_breeziefied__60/199243 | |
722 /catalog/my_little_pony_ccg_singles-the_crystal_games/twilight_sparkle_crystallized__61/199233 | |
723 /catalog/my_little_pony_ccg_singles-the_crystal_games/twilight_sparkle_crystallized__f24/201523 | |
724 /catalog/my_little_pony_ccg_singles-promos/twilight_sparkle_cutie_mark_consultant_4_f/206433 | |
725 /catalog/my_little_pony_ccg_singles-canterlot_nights/twilight_sparkle_element_of_magic__65/119633 | |
726 /catalog/my_little_pony_ccg_singles-canterlot_nights/twilight_sparkle_element_of_magic__f27/120953 | |
727 /catalog/my_little_pony_ccg_singles-premiere_edition/twilight_sparkle_faithful_student__4/97583 | |
728 /catalog/my_little_pony_ccg_singles-premiere_edition/twilight_sparkle_faithful_student__f4/97223 | |
729 /catalog/my_little_pony_ccg_singles-canterlot_nights/twilight_sparkle_gala_greeter__5/120343 | |
730 /catalog/my_little_pony_ccg_singles-canterlot_nights/twilight_sparkle_noted_speaker__197/120253 | |
731 /catalog/my_little_pony_ccg_singles-premiere_edition/twilight_sparkle_ursa_vanquisher__203/97193 | |
732 /catalog/my_little_pony_ccg_singles-promos/twilight_sparkle_ursa_vanquisher_continental_finalist_stamped_promo_p14/216763 | |
733 /catalog/my_little_pony_ccg_singles-promos/twilight_sparkle_ursa_vanquisher_promo_p14/163503 | |
734 /catalog/my_little_pony_ccg_singles-canterlot_nights/twilight_velvet_proud_mom__66/119643 | |
735 /catalog/my_little_pony_ccg_singles-the_crystal_games/twist_such_a_treat__46/200893 | |
736 /catalog/my_little_pony_ccg_singles-premiere_edition/undercover_adventure__f34/97423 | |
737 /catalog/my_little_pony_ccg_singles-premiere_edition/undercover_adventure_125/97173 | |
738 /catalog/my_little_pony_ccg_singles-the_crystal_games/unending_nightmare__123/200213 | |
739 /catalog/my_little_pony_ccg_singles-canterlot_nights/varmint_barricade__153/120083 | |
740 /catalog/my_little_pony_ccg_singles-promos/varmint_barricade__p14/216773 | |
741 /catalog/my_little_pony_ccg_singles-canterlot_nights/very_startling__125/119953 | |
742 /catalog/my_little_pony_ccg_singles-premiere_edition/vidala_swoonmane_manager__70/97483 | |
743 /catalog/my_little_pony_ccg_singles-canterlot_nights/vittles_stand__154/120093 | |
744 /catalog/my_little_pony_ccg_singles-premiere_edition/want_it_need_it__195/97643 | |
745 /catalog/my_little_pony_ccg_singles-canterlot_nights/wardrobe_malfunction__126/119963 | |
746 /catalog/my_little_pony_ccg_singles-premiere_edition/watch_in_awe__126/97443 | |
747 /catalog/my_little_pony_ccg_singles-canterlot_nights/welcome_wagon__155/120103 | |
748 /catalog/my_little_pony_ccg_singles-premiere_edition/what_went_wrong__127/97533 | |
749 /catalog/my_little_pony_ccg_singles-canterlot_nights/whats_old_is_new_again__127/119973 | |
750 /catalog/my_little_pony_ccg_singles-the_crystal_games/white_lightning_flip_flapper__76/200873 | |
751 /catalog/my_little_pony_ccg_singles-canterlot_nights/whitewash_amiable_aviator__98/120323 | |
752 /catalog/my_little_pony_ccg_singles-premiere_edition/who_has_gabby_gums__180/97403 | |
753 /catalog/my_little_pony_ccg_singles-premiere_edition/whoa_there_nelly__128/97613 | |
754 /catalog/my_little_pony_ccg_singles-premiere_edition/wild_fire_speed_racer__10/97133 | |
755 /catalog/my_little_pony_ccg_singles-premiere_edition/wild_fire_speed_racer__f8/97233 | |
756 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/princess_mi_amore_cadenza__156/99213 | |
757 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/princess_mi_amore_cadenza__f49/101173 | |
758 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/795_wing_power__171/95483 | |
759 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/800_years_of_sweltering_heat__165/100553 | |
760 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/a_bully_and_a_beast__102/95743 | |
761 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/a_fiery_temper__129/99073 | |
762 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/a_hasty_retreat__91/105793 | |
763 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/a_major_problem__99/98973 | |
764 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/a_simple_mixup__92/105803 | |
765 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/a_stitch_in_time__166/99273 | |
766 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/a_thorn_in_his_paw__161/95633 | |
767 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/a_touch_of_refinement__103/95423 | |
768 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/a_vision_of_the_future__104/95753 | |
769 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/accessorize_the_crystal_ponies__167/106093 | |
770 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/adventures_in_foalsitting__169/95293 | |
771 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/amethyst_maresbury_crystal_librarian__53/98773 | |
772 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/amethyst_star_animal_leader__80/95603 | |
773 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/amethyst_star_calming_presence__77/105723 | |
774 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/ancient_research__167/99283 | |
775 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/angel_bossy_pet__f30/106353 | |
776 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/angel_bossy_pet_78/105733 | |
777 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/angel_serious_business__83/98873 | |
778 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/antiquing__93/105813 | |
779 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/anything_i_can_do_to_help__100/98983 | |
780 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/apple_bloom_showstopper__19/105593 | |
781 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/apple_bloom_showstopper__f10/106293 | |
782 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/apple_brown_betty_pastry_chef__36/95233 | |
783 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/apple_bumpkin_caramel_coater__24/98583 | |
784 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/apple_cider__130/99083 | |
785 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/apple_cobbler_headstrong__22/95203 | |
786 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/apple_juice_break__94/105823 | |
787 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/apple_stars_fruit_prodigy__51/96043 | |
788 http://www.themlpsource.com/catalog/mlp_ccg_singles-rock_n_rave/apple_strudel_well_aged__01/102013 | |
789 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/applebucking_day__168/99293 | |
790 http://www.themlpsource.com/catalog/mlp_ccg_singles-promos/applejack_farm_foremare_sdcc_july_2014_pf2/101763 | |
791 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/applejack_apple_vendor__2/98503 | |
792 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/applejack_applebucker__26/98603 | |
793 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/applejack_applebucker__f16/100843 | |
794 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/applejack_barn_raiser__24/95133 | |
795 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/applejack_barn_raiser__f13/95323 | |
796 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/applejack_breeziefied__20/105603 | |
797 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/applejack_crystallized__21/105613 | |
798 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/applejack_crystallized__f11/106303 | |
799 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/applejack_element_of_honesty__25/98593 | |
800 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/applejack_element_of_honesty__f14/100823 | |
801 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/applejack_plant_leader__23/95573 | |
802 http://www.themlpsource.com/catalog/mlp_ccg_singles-promos/applejack_reunion_organizer__pf3/101923 | |
803 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/assault_cake__131/95973 | |
804 http://www.themlpsource.com/catalog/mlp_ccg_singles-promos/assault_cake__pf12__foil/98023 | |
805 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/assertiveness_training__105/95933 | |
806 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/assertiveness_training__f31/95383 | |
807 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/attitude_and_pizzazz__169/99303 | |
808 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/auntie_applesauce_gum_flapper__25/95733 | |
809 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/auntie_applesauce_gum_flapper__f14/95683 | |
810 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/aura_really_rambunctious__39/98723 | |
811 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/avalanche__162/95283 | |
812 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/backup_racer_substitute_flier__199/106223 | |
813 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/bags_valet_luggage_lackey__27/98613 | |
814 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/bed_rest__131/99093 | |
815 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/bell_tower__132/99103 | |
816 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/berry_dreams_pompom_pony__37/95583 | |
817 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/berry_dreams_pompom_pony__f17/95693 | |
818 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/biff_pow__101/98993 | |
819 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/big_mac_biggest_brother__28/98623 | |
820 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/big_shot_wildlife_photographer__66/95873 | |
821 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/big_top_silly_pony__38/95843 | |
822 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/blossomforth_too_flexible__84/98883 | |
823 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/blue_jay_warbler__81/95263 | |
824 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/blue_moon_ol_blue_eyes__60/95593 | |
825 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/bolt_pivot__5/105533 | |
826 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/bon_bon_side_by_side__34/105663 | |
827 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/bon_bon_side_by_side__f15/106313 | |
828 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/boneless__125/105933 | |
829 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/bottom_of_the_well__170/99313 | |
830 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/braeburn_appleloosan_apple__22/105623 | |
831 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/bright_smile_one_of_the_gang__79/105743 | |
832 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/brown_parasprite__153/95623 | |
833 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/bubbly_mare_helping_hoof__4/105513 | |
834 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/bulk_biceps_all_muscle__192/99453 | |
835 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/bulk_biceps_pumped_up__6/105543 | |
836 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/bunny_breakout__164/96003 | |
837 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/bunny_stampede__165/95653 | |
838 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/burst_of_speed__95/105833 | |
839 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/call_to_action__96/105843 | |
840 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/call_to_action__f35/106383 | |
841 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/canterlot_archive_guard_literate_lookout__54/98783 | |
842 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/canterlot_archive_guard_literate_lookout__f23/100913 | |
843 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/canterlot_archives__133/99113 | |
844 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/canterlot_hedge_maze__134/99123 | |
845 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/carousel_boutique__132/96103 | |
846 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/carousel_boutique__f36/95393 | |
847 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/cart_crafting__168/106103 | |
848 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/cerberus__157/106033 | |
849 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/ceremonial_headdress__126/105943 | |
850 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/ceremonial_headdress__f43/106413 | |
851 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/cerulean_skies_skyward_soarer__8/95563 | |
852 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/changeling_swarm__158/99233 | |
853 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/changeling_swarm__f50/101183 | |
854 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/charge__169/106113 | |
855 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/charged_up_energizer_pony__39/96033 | |
856 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/cheer_up_the_crystal_ponies__170/106123 | |
857 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/cheerilee_homeroom_teacher__47/105693 | |
858 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/cheering_up_a_friend__171/99323 | |
859 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/cheese_sandwich_heavy_artillery__35/105673 | |
860 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/cheese_sandwich_heavy_artillery__f16/106323 | |
861 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/cheese_sandwich_wandering_partier__40/98733 | |
862 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/cheese_sandwich_wandering_partier__f19/100873 | |
863 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/cherry_fizzy_stalwart_soldier__29/98633 | |
864 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/cherry_jubilee_queen_of_the_hill__26/95833 | |
865 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/chic_beret__135/99133 | |
866 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/chicken_costume__136/99143 | |
867 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/chief_thunderhooves_buffaloing_buffalo__9/101213 | |
868 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/chief_thunderhooves_buffaloing_buffalo__f9/98523 | |
869 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/chimera__158/106043 | |
870 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/cipher_splash_born_ready__10/98533 | |
871 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/clearing_gloomy_skies__167/95803 | |
872 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/cloudbursting__168/95473 | |
873 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/cloudy_quartz_concerned_mother__30/98643 | |
874 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/cockatrice__159/106053 | |
875 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/cockatrice_on_the_loose__172/99333 | |
876 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/coco_crusoe_thick_skinned__27/95513 | |
877 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/coco_pommels_thread__127/105953 | |
878 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/coco_pommel_fashion_apprentice__69/98823 | |
879 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/combat_hat__137/99153 | |
880 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/comet_tail_blaze_of_glory__7/105553 | |
881 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/comet_tail_hale_bopper__54/95253 | |
882 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/comforting_critters__173/99343 | |
883 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/compass_star_geography_nut__55/98793 | |
884 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/cookie_crumbles_fancy_cooker__68/98813 | |
885 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/cranky_doodle_donkey_crankiest_of_creatures__23/105633 | |
886 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/crash_course__174/99353 | |
887 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/creepy_creeping_crystals__128/105963 | |
888 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/creme_de_la_creme__107/95433 | |
889 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/critter_cavalry__108/96093 | |
890 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/critter_cuisine__134/95983 | |
891 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/critter_stampede__102/99003 | |
892 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/crystal_forcefield__129/105973 | |
893 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/crystal_guard_on_duty__8/105563 | |
894 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/daisy_mousy_mare__31/98653 | |
895 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/daisy_mousy_mare__f15/100833 | |
896 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/dance_fever_disco_king__40/95853 | |
897 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/daring_do_professional_heroine__9/105573 | |
898 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/dark_dank_dungeon__175/99363 | |
899 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/dark_magic_surge__171/106133 | |
900 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/dark_moon_moonlit_colt__11/98543 | |
901 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/dazzling_jacket__130/105983 | |
902 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/deep_dark_forest__172/106143 | |
903 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/destiny_train__201/106243 | |
904 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/diamond_tiara__160/106063 | |
905 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/distract_the_crystal_ponies__173/106153 | |
906 http://www.themlpsource.com/catalog/mlp_ccg_singles-rock_n_rave/dj_pon3_party_starter__f2a/102153 | |
907 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/doc_top_pony_pediatrician__32/98663 | |
908 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/doctor_horse_md__85/98893 | |
909 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/doctors_orders__99/105873 | |
910 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/doublecheck_the_checklist__109/95763 | |
911 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/downright_dangerous__110/95443 | |
912 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/dr_hooves_experienced_equine__10/105583 | |
913 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/dr_hooves_just_in_time__12/98553 | |
914 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/dressed_up__131/105993 | |
915 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/drill_bit_destruction_worker__30/95223 | |
916 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/drill_bit_destruction_worker__f16/95343 | |
917 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/duck_and_cover__111/95773 | |
918 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/eagle_soaring_raptor__86/98903 | |
919 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/earth_pony_royal_guard_arresting_officer__33/98673 | |
920 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/eclair_crme_vicarious_listener__13/98563 | |
921 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/eeyup__112/95953 | |
922 http://www.themlpsource.com/catalog/mlp_ccg_singles-promos/eeyup__pf8__foil/98043 | |
923 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/eff_stop_muckraker__69/96073 | |
924 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/elbow_grease_street_sweeper__24/105643 | |
925 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/emerald_green_cider_aficionado__12/95193 | |
926 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/emergency_dress_order__170/95813 | |
927 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/enchanted_parasprites__161/106073 | |
928 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/encourage_the_crystal_ponies__174/106163 | |
929 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/entertain_the_crystal_ponies__175/106173 | |
930 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/equestrian_mailmare_special_delivery__f31/106363 | |
931 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/fake_crystal_heart__132/106003 | |
932 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/falcon_fast__furious__82/95533 | |
933 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/fancy_pants_all_class__63/105713 | |
934 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/fancy_pants_all_class__f26/106343 | |
935 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/fancy_pants_trendsetter__198/99483 | |
936 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/fashion_feast__186/95823 | |
937 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/fashion_upgrade__100/105883 | |
938 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/fashion_week__104/99023 | |
939 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/fast_clip_drill_instructor__34/98683 | |
940 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/fears_must_be_faced__115/95453 | |
941 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/featherweight_editorinchief__f25/95363 | |
942 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/featherweighteditorinchief__67/96063 | |
943 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/feedbag__133/106013 | |
944 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/fending_off_fiends__176/106183 | |
945 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/fiddly_faddle_country_twang__68/95883 | |
946 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/fighting_for_friendship__135/95273 | |
947 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/fine_line_au_pair__87/98913 | |
948 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/finger_snap__f36/106393 | |
949 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/finish_line_jammer__9/95723 | |
950 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/finish_line_jammer__f7/95663 | |
951 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/fire_in_the_sky__102/105903 | |
952 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/flam__154/95793 | |
953 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/flamingo_hot_pink__81/105763 | |
954 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/fleur_dis_lee_trendy_follower__70/98833 | |
955 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/flim__155/95463 | |
956 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/flitter_ribbon_wielder__42/95243 | |
957 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/flutterbat__00/98493 | |
958 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/fluttershy_animal_team__84/95413 | |
959 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/fluttershy_animal_team__f28/95703 | |
960 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/fluttershy_breeziefied__82/105773 | |
961 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/fluttershy_critter_caregiver__88/98923 | |
962 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/fluttershy_critter_caregiver__f33/101013 | |
963 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/fluttershy_crystallized__83/105783 | |
964 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/fluttershy_crystallized__f32/106373 | |
965 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/fluttershy_element_of_kindness__89/98933 | |
966 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/fluttershy_element_of_kindness__f34/101023 | |
967 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/fluttershy_friend_to_animals__7/98513 | |
968 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/fluttershy_monster_tamer__211/95553 | |
969 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/fluttershy_reliable_racer__200/106233 | |
970 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/foal_free_press__136/95643 | |
971 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/focused_study__137/96113 | |
972 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/foggy_fleece_cloud_crafter__71/98843 | |
973 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/forced_gen_hunt__177/106193 | |
974 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/forest_owl_novice_assistant__85/95613 | |
975 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/four_step_dance_teacher__56/98803 | |
976 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/friendly_disagreement__103/105913 | |
977 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/friends_forever__104/105923 | |
978 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/frown_town__177/99383 | |
979 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/fruit_bat_roundup__178/99393 | |
980 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/funny_glasses__138/99163 | |
981 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/furry_freeforall__105/99033 | |
982 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/gala_appleby_refined_farmer__21/95503 | |
983 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/gilda__162/106083 | |
984 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/gilda__f47/106423 | |
985 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/giselle_thrillseeker__36/105683 | |
986 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/glamour_gleam_deep_clean__64/106733 | |
987 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/globe_trotter_sight_seer__42/98743 | |
988 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/go_feed__139/99173 | |
989 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/go_feed__f46/101143 | |
990 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/golden_gavel_fast_talker__72/98853 | |
991 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/golden_harvest_beyond_her_garden__35/98693 | |
992 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/golden_harvest_beyond_her_garden__f17/100853 | |
993 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/golden_oak_library__138/95543 | |
994 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/golden_oak_library__f37/95713 | |
995 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/golden_wheat_happy_to_help__84/106823 | |
996 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/goldengrape_popular_punster__43/96123 | |
997 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/goldie_delicious_cat_hoarder__90/98943 | |
998 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/goldie_delicious_dinner_time__85/106833 | |
999 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/goldie_delicious_dinner_time__f33/107343 | |
1000 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/good_hustle__101/95923 | |
1001 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/goof_off__176/99373 | |
1002 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/granny_smith_apple_elder__28/95213 | |
1003 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/granny_smith_apple_elder__f15/95333 | |
1004 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/granny_smith_jar_judger__193/99463 | |
1005 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/green_dragon__163/107093 | |
1006 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/green_dragon__f48/107393 | |
1007 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/greeting_lots_of_folks_with_clout__179/99403 | |
1008 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/gummy_fun_pet__37/106573 | |
1009 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/gummy_fun_pet__f17/107263 | |
1010 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/gyro_poindexter__56/95863 | |
1011 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/hairpin_turn_blocker__14/98573 | |
1012 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/hard_hat__139/95783 | |
1013 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/haymaker_tough_trainer__48/106653 | |
1014 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/hayseed_turnip_truck_a_for_effort__36/98703 | |
1015 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/helia_marathon_mare__65/106743 | |
1016 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/heres_your_invitation__113/95963 | |
1017 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/high_spirits_life_enthusiast__44/97013 | |
1018 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/hoity_toity_fashion_critic__73/98863 | |
1019 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/hoity_toity_vogue_authority__71/96643 | |
1020 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/hondo_flanks_big_daddy__45/98763 | |
1021 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/hoofwrasslin__106/99043 | |
1022 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/house_mouse_little_pipsqueak__86/96923 | |
1023 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/hummingbird_nimble_flier__86/106843 | |
1024 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/hungry_hungry_catepillars__173/96703 | |
1025 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/hungry_hungry_house_guest__180/99413 | |
1026 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/hydra__164/107103 | |
1027 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/hydra__f49/107403 | |
1028 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/i_can_fix_it__174/96333 | |
1029 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/i_got_a_golden_ticket__107/99053 | |
1030 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/i_need_answers__175/96833 | |
1031 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/ice_archery__105/106893 | |
1032 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/ice_cloud_calamity__178/107113 | |
1033 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/igneous_rock_pebble_pusher__29/96603 | |
1034 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/impress_the_inspector__181/99423 | |
1035 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/in_your_dreams__108/99063 | |
1036 http://www.themlpsource.com/catalog/mlp_ccg_singles-promos/in_your_dreams__pf4/101933 | |
1037 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/inspiration_manifestation__106/106903 | |
1038 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/inspiring_magic__179/107123 | |
1039 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/its_a_twister__176/96443 | |
1040 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/its_alive__177/96843 | |
1041 http://www.themlpsource.com/catalog/mlp_ccg_singles-rock_n_rave/its_elementary__05/102053 | |
1042 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/jester_suit__134/106983 | |
1043 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/jet_set__upper_crust__159/99243 | |
1044 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/jetstream_all_heart__7/96213 | |
1045 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/jewel_joy_fair_feaster__38/106583 | |
1046 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/joes_doughnut_shop__141/99193 | |
1047 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/joe_doughnuteer__37/98713 | |
1048 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/jousting_armor__135/106993 | |
1049 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/juggling_routine__107/106913 | |
1050 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/kitchen_au_flamb__163/97103 | |
1051 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/lady_justicejudge__jury__63/96903 | |
1052 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/lead_pony_badge__140/96423 | |
1053 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/learned_lessons__142/99203 | |
1054 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/lemon_hearts_sweetheart__91/98953 | |
1055 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/lemony_gem_sour_grapes__57/97033 | |
1056 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/less_isnt_more__108/106923 | |
1057 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/lets_get_this_party_started__114/97083 | |
1058 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/lets_get_this_party_started__f32/96793 | |
1059 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/lightning_dust__160/99253 | |
1060 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/lilac_links_superstitious__88/96173 | |
1061 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/lilac_links_superstitious__f29/96393 | |
1062 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/lilac_luster_beautiful_beautician__66/106753 | |
1063 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/liza_doolots_boundless_energy__92/98963 | |
1064 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/looking_for_trouble__178/96293 | |
1065 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/lost_and_not_found__180/107133 | |
1066 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/lost_in_the_crystal_caves__182/99433 | |
1067 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/lotus_blossom_sauna_expert__74/96163 | |
1068 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/lucky_star_charming_cheerer__44/99663 | |
1069 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/lucky_streak_one_in_a_million__41/97003 | |
1070 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/lyra_heartstrings_bonafide__201/96183 | |
1071 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/lyra_very_excitable__39/106593 | |
1072 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/lyra_very_excitable__f18/107273 | |
1073 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/magic_duel__109/99983 | |
1074 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/magical_mailbox__136/107003 | |
1075 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/magical_tantrum__181/107143 | |
1076 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/mane_cureall_veteran_vet__89/97053 | |
1077 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/maneraising_experience__110/99993 | |
1078 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/manny_roar_mild_manticore__93/99933 | |
1079 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/manny_roar_mild_manticore__f35/101033 | |
1080 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/marvelous_chapeau__141/96823 | |
1081 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/matilda_full_of_hope__67/106763 | |
1082 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/maud_pie_like_a_rock__25/106553 | |
1083 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/maud_pie_like_a_rock__f12/107253 | |
1084 http://www.themlpsource.com/catalog/mlp_ccg_singles-rock_n_rave/maud_pie_rockin__f1a/102133 | |
1085 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/may_the_best_pet_win__179/96963 | |
1086 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/maybes_are_for_babies__185/96453 | |
1087 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/mayor_mare_elected_official__58/96243 | |
1088 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/mayor_mare_town_leadership__49/106663 | |
1089 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/mean_meanie_pants__172/96673 | |
1090 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/mercury_crystal_messenger__40/106603 | |
1091 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/mint_jewelup_a_cut_above__55/96633 | |
1092 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/minuette_clocked_up__57/99743 | |
1093 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/monitor_everything__182/96303 | |
1094 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/monster_of_a_minotaur__183/96343 | |
1095 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/monstrous_cave__143/100163 | |
1096 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/monstrous_manual__144/100173 | |
1097 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/mr_beaverton_beaverteeth_dam_builder__90/96523 | |
1098 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/mr_breezy_fan_fan__91/97063 | |
1099 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/mr_cake_loving_father__41/106613 | |
1100 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/mrs_cake_dessertier__94/99943 | |
1101 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/ms_harshwhinny_officious_official__50/106673 | |
1102 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/ms_harshwhinny_officious_official__f20/107293 | |
1103 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/multigoof_off__109/106933 | |
1104 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/my_pinkie_sense_is_tingling__184/97113 | |
1105 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/nice_moves_kid__111/100003 | |
1106 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/night_light_devoted_dad__51/106683 | |
1107 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/night_watch_vigilant_patrol__35/96503 | |
1108 http://www.themlpsource.com/catalog/mlp_ccg_singles-promos/nightmare_moon_regional_championship_2014__top_8__pf7/101583 | |
1109 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/not_enough_pinkie_pies__181/96683 | |
1110 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/not_on_the_list__112/100013 | |
1111 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/noteworthy_humdinger__76/96263 | |
1112 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/nothing_to_be_afraid_of__113/100023 | |
1113 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/nurture_with_knowledge__116/96943 | |
1114 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/octavia_star_cellist__74/99843 | |
1115 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/octavia_star_cellist__f28/100963 | |
1116 http://www.themlpsource.com/catalog/mlp_ccg_singles-rock_n_rave/octavia_sweet_symphony__04/102043 | |
1117 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/octavia_virtuoso__205/96193 | |
1118 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/ol_salt_salt_blocked__48/96413 | |
1119 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/opalescence_curtain_shredder__92/96273 | |
1120 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/opalescence_stylish_pet__68/106773 | |
1121 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/opalescence_stylish_pet__f27/107323 | |
1122 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/orange_swirl_dizzy_daredevil__15/99553 | |
1123 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/orthos_go_fetch__87/106853 | |
1124 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/out_of_action__137/107013 | |
1125 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/out_of_control__183/100333 | |
1126 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/outshine_them_all__142/96433 | |
1127 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/overgrown_everfree__182/107153 | |
1128 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/owlowiscious_wise_pet__52/106693 | |
1129 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/owlowiscious_wise_pet__f21/107303 | |
1130 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/parasprite_pandemic__187/96353 | |
1131 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/parasprite_swarm__156/96533 | |
1132 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/parasprite_swarm__f41/96983 | |
1133 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/parcel_post_pushing_the_envelope__88/106863 | |
1134 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/party_bomb__138/107023 | |
1135 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/peachy_pitt_suave_salesmare__89/106873 | |
1136 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/pearly_stitch_crotchety_crocheter__73/96253 | |
1137 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/pegasus_royal_guard_elite_sentry__14/96593 | |
1138 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/pep_talk__110/106943 | |
1139 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/perfect_pace_time_master__58/99753 | |
1140 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/periwinkle_pace_agile_athlete__11/106503 | |
1141 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/philomena_bird_of_a_feather__207/96203 | |
1142 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/photo_finish_picture_perfect_pony__75/99853 | |
1143 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/picnic_lunch__146/96953 | |
1144 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/pie_family_rock_farm__145/100183 | |
1145 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/pile_of_presents__139/107033 | |
1146 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/pinkie_pie_breeziefied__42/106623 | |
1147 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/pinkie_pie_crystallized__43/106633 | |
1148 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/pinkie_pie_crystallized__f19/107283 | |
1149 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/pinkie_pie_distracting_cheerer__196/107203 | |
1150 http://www.themlpsource.com/catalog/mlp_ccg_singles-promos/pinkie_pie_ear_to_ear__pf3__foil/98483 | |
1151 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/pinkie_pie_element_of_laughter__46/99673 | |
1152 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/pinkie_pie_element_of_laughter__f21/100893 | |
1153 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/pinkie_pie_ice_cutter__46/96233 | |
1154 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/pinkie_pie_ice_cutter__f19/96753 | |
1155 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/pinkie_pie_pinkie_responsibility_pie__f18/96373 | |
1156 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/pinkie_pie_pokey_pony__3/99503 | |
1157 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/pinprick_pop_star__47/96513 | |
1158 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/pipsqueak_scrappy_squirt__16/99563 | |
1159 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/plowing_the_field__111/106953 | |
1160 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/plowing_the_field__f38/107363 | |
1161 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/plum_tuckered_out__114/100033 | |
1162 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/plum_tuckered_out__f38/101063 | |
1163 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/poetry_slam__112/106963 | |
1164 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/poetry_slam__f39/107373 | |
1165 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/ponies_without_parachutes__183/107163 | |
1166 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/pony_of_shadows__161/100293 | |
1167 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/ponynapped__193/96863 | |
1168 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/ponyville_banner__141/107053 | |
1169 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/ponyville_in_a_bottle__188/96693 | |
1170 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/ponyville_mailbox__142/107063 | |
1171 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/press_pass_on_the_scene__44/106643 | |
1172 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/prim_hemline_precise_pony__69/106783 | |
1173 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/prim_posy_fond_of_fronds__76/99863 | |
1174 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/prince_blueblood__162/100303 | |
1175 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/princess_celestia_bane_of_evil__90/106883 | |
1176 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/princess_celestia_bane_of_evil__f34/107353 | |
1177 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/princess_celestia_bringer_of_light__96/99963 | |
1178 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/princess_celestia_bringer_of_light__f36/101043 | |
1179 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/princess_celestia_equestrian_leader__190/100403 | |
1180 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/princess_celestia_protector_of_equestria__200/100453 | |
1181 http://www.themlpsource.com/catalog/mlp_ccg_singles-promos/princess_luna_series_2_trading_card_foil_promo__f45/101223 | |
1182 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/princess_luna_dream_catcher__189/100393 | |
1183 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/princess_luna_good_nights_sleep__53/106703 | |
1184 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/princess_luna_night_mare__59/99763 | |
1185 http://www.themlpsource.com/catalog/mlp_ccg_singles-promos/princess_luna_night_mare__pf1__foil/98193 | |
1186 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/princess_luna_princess_of_the_night__f2a/100703 | |
1187 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/private_party__146/100193 | |
1188 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/professor_neigh_algebraic__52/96623 | |
1189 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/professor_neigh_algebraic__f21/96763 | |
1190 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/purple_parasprite__157/96283 | |
1191 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/purple_waters_prismatic_poetmusician__41/99653 | |
1192 http://www.themlpsource.com/catalog/mlp_ccg_singles-rock_n_rave/quarray_eels__12/102123 | |
1193 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/raccoon_scrounger__97/99973 | |
1194 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/rainbow_blaze_dashing_mentor__17/99573 | |
1195 http://www.themlpsource.com/catalog/mlp_ccg_singles-promos/rainbow_dash_cutie_mark_consultant_1_f_foil/108263 | |
1196 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/rainbow_dash_breeziefied__12/106513 | |
1197 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/rainbow_dash_crystallized__13/106523 | |
1198 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/rainbow_dash_crystallized__f7/107243 | |
1199 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/rainbow_dash_element_of_loyalty__19/99593 | |
1200 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/rainbow_dash_element_of_loyalty__f12/100803 | |
1201 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/rainbow_dash_goosebump_giver__18/99583 | |
1202 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/rainbow_dash_goosebump_giver__f11/100793 | |
1203 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/rainbow_dash_hanging_out__1/99493 | |
1204 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/rainbow_dash_hanging_out__f1a/100693 | |
1205 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/rainbow_dash_relay_racer__14/106533 | |
1206 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/rainbow_dash_weather_leader__15/96403 | |
1207 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/rainbow_dash_weather_leader__f9/96743 | |
1208 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/rainbow_dash_winged_wonder__198/96543 | |
1209 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/rainbowfield__143/107073 | |
1210 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/rainbowshine_cloud_wrangler__16/96223 | |
1211 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/rainbowshine_cloud_wrangler__f10/96363 | |
1212 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/randolph_highflying_earth_pony__15/106543 | |
1213 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/rare_find_a_real_gem__f23/96773 | |
1214 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/rare_finda_real_gem__59/97043 | |
1215 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/rarity_breeziefied__70/106793 | |
1216 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/rarity_crystallized__71/106803 | |
1217 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/rarity_crystallized__f28/107333 | |
1218 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/rarity_dragon_charmer__77/99873 | |
1219 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/rarity_dragon_charmer__f29/100973 | |
1220 http://www.themlpsource.com/catalog/mlp_ccg_singles-promos/rarity_dragon_charmer__pf5__foil/98083 | |
1221 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/rarity_dressmaker__6/99533 | |
1222 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/rarity_dressmaker__f3a/100713 | |
1223 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/rarity_dressmaker__f3b__alternate_art/101963 | |
1224 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/rarity_element_of_generosity__78/99883 | |
1225 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/rarity_element_of_generosity__f30/100983 | |
1226 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/rarity_equestria_games_designer__72/106813 | |
1227 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/rarity_nest_warmer__f26/96783 | |
1228 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/rarity_nest_weaver__77/96813 | |
1229 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/raven_event_organizer__54/106713 | |
1230 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/raze_this_barn__189/96463 | |
1231 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/red_dragon__163/100313 | |
1232 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/red_dragon__f51/101193 | |
1233 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/red_gala_favorite_cousin__33/96613 | |
1234 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/reformed__147/100203 | |
1235 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/relay_race__113/106973 | |
1236 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/ridiculous_outfit__143/97093 | |
1237 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/rising_star_in_the_spotlight__75/96653 | |
1238 http://www.themlpsource.com/catalog/mlp_ccg_singles-rock_n_rave/rock_solid_fashion__06/102063 | |
1239 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/rock_paper_scissors_shoot__115/100043 | |
1240 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/rockslide__184/107173 | |
1241 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/rook_ramparts_chess_champ__55/106723 | |
1242 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/roseluck_fainthearted_filly__79/99893 | |
1243 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/roseluck_fainthearted_filly__f31/100993 | |
1244 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/royal_canterlot_voice__116/100053 | |
1245 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/royal_dress_rehearsal__184/100343 | |
1246 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/royal_guidance__99/96313 | |
1247 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/royal_peacekeeper_watchful_eye__26/106563 | |
1248 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/royal_riff_songster__78/96663 | |
1249 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/royal_spyglass__144/107083 | |
1250 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/rubber_chicken__144/96323 | |
1251 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/rumble_fast_learner__20/99603 | |
1252 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/runaway_cart__190/96853 | |
1253 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/runaway_pony__185/107183 | |
1254 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/sapphire_shores_costume_changer__80/99903 | |
1255 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/sassaflash_striking__48/99693 | |
1256 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/save_sweet_apple_acres__191/96973 | |
1257 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/save_the_crystal_ponies__186/107963 | |
1258 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/savoir_fare_snooty_server__72/96913 | |
1259 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/scootaloos_scooter__145/107833 | |
1260 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/scootaloo_fan_club_founder__21/99613 | |
1261 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/scootaloo_showstopper__16/107513 | |
1262 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/scootaloo_showstopper__f8/108103 | |
1263 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/scorpans_necklace__146/107843 | |
1264 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/screwy_barking_mad__202/96563 | |
1265 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/sea_swirl_porpoiseful__93/97073 | |
1266 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/sealed_scroll_studious_scribe__60/99773 | |
1267 http://www.themlpsource.com/catalog/mlp_ccg_singles-rock_n_rave/secret_mission__07/102073 | |
1268 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/sheriff_silverstar_confident_constable__27/107543 | |
1269 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/shining_armor_captain_of_the_guard__61/99783 | |
1270 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/shining_armor_crystal_prince__56/107623 | |
1271 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/shining_armor_crystal_prince__f23/108143 | |
1272 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/ship_shape_heavy_lifter__200/96553 | |
1273 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/shooting_star_tale_teller__22/99623 | |
1274 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/silver_frames_art_curator__81/99913 | |
1275 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/silver_shills_coin__148/107863 | |
1276 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/silver_spanner_dumpster_diver__57/107633 | |
1277 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/silver_spanner_nuts_for_bolts__32/96493 | |
1278 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/silverspeed_eye_in_the_sky__28/107553 | |
1279 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/slick_shades__149/107873 | |
1280 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/smile_and_wave__150/107883 | |
1281 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/snails_deep_thinker__49/99703 | |
1282 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/snips__snails_dynamic_duo__49/97023 | |
1283 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/snips_schemer__50/99713 | |
1284 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/snooty_boutique__148/100213 | |
1285 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/soarin_team_player__17/107523 | |
1286 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/social_networking__114/107723 | |
1287 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/social_obligations__185/100353 | |
1288 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/soothe_the_savage_beast__149/100223 | |
1289 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/sound_the_flugelhorn__115/107733 | |
1290 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/special_delivery__192/96473 | |
1291 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/spell_off__116/107743 | |
1292 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/spike_assistant_librarian__62/99793 | |
1293 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/spike_baby_dragon__18/96483 | |
1294 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/spike_baby_dragon__f11/97243 | |
1295 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/spike_crystal_hero__2/107493 | |
1296 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/spike_statuesque__29/107563 | |
1297 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/spike_statuesque__f13/108123 | |
1298 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/spike_take_a_letter__124/97293 | |
1299 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/spike_the_brave_and_glorious__192/108023 | |
1300 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/spitfire_cloudsdale_captain__193/108043 | |
1301 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/spread_your_wings__95/97393 | |
1302 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/spring_forward_companianable_filly__61/97163 | |
1303 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/sprinkle_medley_drip_dropper__23/99633 | |
1304 http://www.themlpsource.com/catalog/mlp_ccg_singles-promos/stand_still__pf10__foil/98463 | |
1305 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/staring_contest__117/100063 | |
1306 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/starry_eyes_space_cadet__63/99803 | |
1307 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/stay_quiet_the_longest__117/107753 | |
1308 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/steam_roller_juggernaut__38/99643 | |
1309 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/stone_cold__152/107903 | |
1310 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/storming_the_villains_lair__186/100363 | |
1311 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/straighten_up__fly_right__119/97363 | |
1312 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/straighten_up__fly_right__f33/97263 | |
1313 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/study_session__153/107913 | |
1314 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/sugar_twist_twister_sister__79/97213 | |
1315 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/sunny_rays_one_bright_mare__62/97353 | |
1316 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/sunny_smiles_iconic_friend__34/97143 | |
1317 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/sunset_shimmer__164/100323 | |
1318 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/surprise_outta_nowhere__45/107603 | |
1319 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/surprise_party_pegasus__50/97153 | |
1320 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/swan_song_funloving_debutante__52/99733 | |
1321 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/sweet_apple_acres__145/97623 | |
1322 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/sweet_apple_acres__f38/97283 | |
1323 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/sweetie_belle_showstopper__74/107693 | |
1324 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/sweetie_belle_showstopper__f29/108163 | |
1325 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/sweetie_sunrise_early_riser__20/97383 | |
1326 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/swindlers_in_town__187/107973 | |
1327 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/swing_into_action__120/97433 | |
1328 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/tall_order_council_colt__64/99813 | |
1329 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/tall_tale_too_tall__30/107573 | |
1330 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/tank_loyal_pet__f9/108113 | |
1331 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/tatzlwurm__165/107943 | |
1332 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/tatzlwurm__f50/108223 | |
1333 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/team_effort__121/97503 | |
1334 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/telekinesis__118/107763 | |
1335 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/the_best_of_friends__118/100073 | |
1336 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/the_big_guns__122/97513 | |
1337 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/the_brave_and_the_bold__119/100083 | |
1338 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/the_brave_and_the_bold__f41/101093 | |
1339 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/the_crystal_heart_heart_of_an_empire__154/107923 | |
1340 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/the_crystal_heart_heart_of_an_empire__f46/108213 | |
1341 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/the_element_of_generosity_a_beautiful_heart__204/108083 | |
1342 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/the_element_of_kindness_sharing_kindness__201/100463 | |
1343 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/the_element_of_magic_complete_magic__202/100473 | |
1344 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/the_equestria_games__202/108063 | |
1345 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/the_high_ground__150/100233 | |
1346 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/the_horror_the_horror__123/97523 | |
1347 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/the_magic_of_adventure__121/100103 | |
1348 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/the_ponyville_express__147/97453 | |
1349 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/the_power_of_love__119/107773 | |
1350 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/the_problem_with_parasprites__166/97563 | |
1351 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/the_show_must_go_on__188/107983 | |
1352 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/the_soup_incident__120/107783 | |
1353 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/the_sun_and_the_moon__122/100113 | |
1354 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/the_twilicane__151/100243 | |
1355 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/this_way_little_ones__194/97573 | |
1356 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/threat_against_canterlot__187/100373 | |
1357 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/through_the_cave__189/107993 | |
1358 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/thunderclap__123/100123 | |
1359 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/thunderlane_nerves_of_steel__31/107583 | |
1360 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/tight_ship_meticulous_planner__58/107643 | |
1361 http://www.themlpsource.com/catalog/mlp_ccg_singles-rock_n_rave/timber__08/102083 | |
1362 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/timberwolf__158/97473 | |
1363 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/too_many_bandages__148/97313 | |
1364 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/too_many_pinkie_pies__188/100383 | |
1365 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/too_much_fun__124/100133 | |
1366 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/too_much_pie__149/97463 | |
1367 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/top_marks_longwinded_lecturer__59/107653 | |
1368 http://www.themlpsource.com/catalog/mlp_ccg_singles-rock_n_rave/trade_dispute__09/102093 | |
1369 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/train_tracks__152/100253 | |
1370 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/trenderhoof_travel_writer__75/107703 | |
1371 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/tricksy_hat__150/97323 | |
1372 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/true_evil__f41/108183 | |
1373 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/tug_of_war__122/107803 | |
1374 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/twilight_sky_stanchion_stallion__82/99923 | |
1375 http://www.themlpsource.com/catalog/mlp_ccg_singles-promos/twilight_sparkle_cutie_mark_consultant_4_f_foil/108333 | |
1376 http://www.themlpsource.com/catalog/mlp_ccg_singles-promos/twilight_sparkle_ursa_vanquisher__pf14__foil/101593 | |
1377 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/twilight_sparkle_allteam_organizer__64/97203 | |
1378 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/twilight_sparkle_breeziefied__60/107663 | |
1379 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/twilight_sparkle_crystallized__61/107673 | |
1380 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/twilight_sparkle_crystallized__f24/108153 | |
1381 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/twilight_sparkle_element_of_magic__65/99823 | |
1382 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/twilight_sparkle_gala_greeter__5/99523 | |
1383 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/twilight_sparkle_noted_speaker__197/100433 | |
1384 http://www.themlpsource.com/catalog/mlp_ccg_singles-promos/twilight_sparkle_research_student__pf4__foil/98033 | |
1385 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/twilight_velvet_proud_mom__66/99833 | |
1386 http://www.themlpsource.com/catalog/mlp_ccg_singles-rock_n_rave/twinkleshine_overachiever__03/102033 | |
1387 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/twist_such_a_treat__46/107613 | |
1388 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/undercover__125/97173 | |
1389 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/unending_nightmare__123/107813 | |
1390 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/varmint_barricade__153/100263 | |
1391 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/very_startling__125/100143 | |
1392 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/vidala_swoonmane_manager__70/97483 | |
1393 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/vittles_stand__154/100273 | |
1394 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/want_it_need_it__195/97643 | |
1395 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/wardrobe_malfunction__126/100153 | |
1396 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/watch_in_awe__126/97443 | |
1397 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/welcome_wagon__155/100283 | |
1398 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/what_went_wrong__127/97533 | |
1399 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/whats_old_is_new_again__127/100513 | |
1400 http://www.themlpsource.com/catalog/mlp_ccg_singles-rock_n_rave/which_pinkie_is_which__10/102103 | |
1401 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/white_lightning_flip_flapper__76/107713 | |
1402 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/whitewash_amiable_aviator__98/100503 | |
1403 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/who_has_gabby_gums__180/97403 | |
1404 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/whoa_there_nelly__128/97613 | |
1405 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/wild_fire_speed_racer__10/97133 | |
1406 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/wild_fire_speed_racer__f8/97233 | |
1407 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/wild_manticore__159/97333 | |
1408 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/winona_dependable_pet__32/107593 | |
1409 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/winona_dependable_pet__f14/108133 | |
1410 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/winona_on_the_scent__94/97493 | |
1411 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/winona_on_the_scent__f30/97413 | |
1412 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/wonderbolt_academy_invitations__155/107933 | |
1413 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/wonderbolts_reserve_exam__190/108003 | |
1414 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/working_together__129/97543 | |
1415 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/working_together__f35/97273 | |
1416 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/wrapping_up_winter__196/97343 | |
1417 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/yay__130/97553 | |
1418 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/yellow_parasprite__160/97633 | |
1419 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/yoink__124/107823 | |
1420 http://www.themlpsource.com/catalog/mlp_ccg_singles-the_crystal_games/yoink__f42/108193 | |
1421 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/youve_been_up_all_night__128/100523 | |
1422 http://www.themlpsource.com/catalog/mlp_ccg_singles-premiere_edition/zecora_everfree_guru__204/97373 | |
1423 http://www.themlpsource.com/catalog/mlp_ccg_singles-canterlot_nights/zecora_magical_mentor__67/100493 | |
\. | |
-- | |
-- TOC entry 1905 (class 2606 OID 16422) | |
-- Name: prices_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: | |
-- | |
ALTER TABLE ONLY prices | |
ADD CONSTRAINT prices_pkey PRIMARY KEY (id); | |
-- | |
-- TOC entry 1910 (class 2606 OID 16443) | |
-- Name: stores_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: | |
-- | |
ALTER TABLE ONLY stores | |
ADD CONSTRAINT stores_pkey PRIMARY KEY (id); | |
-- | |
-- TOC entry 1899 (class 2606 OID 16407) | |
-- Name: url_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: | |
-- | |
ALTER TABLE ONLY urls | |
ADD CONSTRAINT url_pkey PRIMARY KEY (id); | |
-- | |
-- TOC entry 1902 (class 1259 OID 16450) | |
-- Name: fki_prices_stores_fkey -> store; Type: INDEX; Schema: public; Owner: postgres; Tablespace: | |
-- | |
CREATE INDEX "fki_prices_stores_fkey -> store" ON prices USING btree (store); | |
-- | |
-- TOC entry 1903 (class 1259 OID 16456) | |
-- Name: fki_prices_urls_fkey -> url; Type: INDEX; Schema: public; Owner: postgres; Tablespace: | |
-- | |
CREATE INDEX "fki_prices_urls_fkey -> url" ON prices USING btree (url); | |
-- | |
-- TOC entry 1906 (class 1259 OID 16460) | |
-- Name: prices_price_idx; Type: INDEX; Schema: public; Owner: postgres; Tablespace: | |
-- | |
CREATE INDEX prices_price_idx ON prices USING btree (price); | |
-- | |
-- TOC entry 1907 (class 1259 OID 16459) | |
-- Name: stores_id_idx; Type: INDEX; Schema: public; Owner: postgres; Tablespace: | |
-- | |
CREATE INDEX stores_id_idx ON stores USING btree (id); | |
-- | |
-- TOC entry 1908 (class 1259 OID 16444) | |
-- Name: stores_name_idx; Type: INDEX; Schema: public; Owner: postgres; Tablespace: | |
-- | |
CREATE INDEX stores_name_idx ON stores USING btree (name); | |
-- | |
-- TOC entry 1900 (class 1259 OID 16432) | |
-- Name: url_url_idx; Type: INDEX; Schema: public; Owner: postgres; Tablespace: | |
-- | |
CREATE INDEX url_url_idx ON urls USING btree (url); | |
-- | |
-- TOC entry 1901 (class 1259 OID 16458) | |
-- Name: urls_id_idx; Type: INDEX; Schema: public; Owner: postgres; Tablespace: | |
-- | |
CREATE INDEX urls_id_idx ON urls USING btree (id); | |
-- | |
-- TOC entry 1911 (class 2606 OID 16445) | |
-- Name: prices_stores_fkey -> store; Type: FK CONSTRAINT; Schema: public; Owner: postgres | |
-- | |
ALTER TABLE ONLY prices | |
ADD CONSTRAINT "prices_stores_fkey -> store" FOREIGN KEY (store) REFERENCES stores(id); | |
-- | |
-- TOC entry 1912 (class 2606 OID 16451) | |
-- Name: prices_urls_fkey -> url; Type: FK CONSTRAINT; Schema: public; Owner: postgres | |
-- | |
ALTER TABLE ONLY prices | |
ADD CONSTRAINT "prices_urls_fkey -> url" FOREIGN KEY (url) REFERENCES urls(id); | |
-- | |
-- TOC entry 2034 (class 0 OID 0) | |
-- Dependencies: 5 | |
-- Name: public; Type: ACL; Schema: -; Owner: postgres | |
-- | |
REVOKE ALL ON SCHEMA public FROM PUBLIC; | |
REVOKE ALL ON SCHEMA public FROM postgres; | |
GRANT ALL ON SCHEMA public TO postgres; | |
GRANT ALL ON SCHEMA public TO PUBLIC; | |
-- Completed on 2015-03-22 05:38:53 | |
-- | |
-- PostgreSQL database dump complete | |
-- | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment