SELECT 
  SQL_CALC_FOUND_ROWS products.product_id, 
  descr1.product as product, 
  companies.company as company_name, 
  products.product_type, 
  products.parent_product_id, 
  products.variation_sku, 
  companies.discreet_shipping as company_discreet_shipping 
FROM 
  cscart_products as products 
  LEFT JOIN cscart_product_descriptions as descr1 ON descr1.product_id = products.product_id 
  AND descr1.lang_code = 'en' 
  LEFT JOIN cscart_product_prices as prices ON prices.product_id = products.product_id 
  AND prices.lower_limit = 1 
  LEFT JOIN cscart_companies AS companies ON companies.company_id = products.company_id 
  INNER JOIN cscart_products_categories as products_categories ON products_categories.product_id = products.product_id 
  INNER JOIN cscart_categories ON cscart_categories.category_id = products_categories.category_id 
  AND (
    cscart_categories.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, cscart_categories.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, cscart_categories.usergroup_ids
    )
  ) 
  AND cscart_categories.status IN ('A', 'H') 
  AND cscart_categories.storefront_id IN (0, 1) 
  LEFT JOIN cscart_product_popularity as popularity ON popularity.product_id = products.product_id 
WHERE 
  1 
  AND companies.status IN ('A') 
  AND products.company_id = 6 
  AND products.amount > 0 
  AND (
    products.usergroup_ids = '' 
    OR FIND_IN_SET(0, products.usergroup_ids) 
    OR FIND_IN_SET(1, products.usergroup_ids)
  ) 
  AND products.status IN ('A') 
  AND prices.usergroup_id IN (0, 0, 1) 
  AND products.company_id = 6 
  AND products.parent_product_id = 0 
GROUP BY 
  products.product_id 
ORDER BY 
  popularity.total desc, 
  products.product_id ASC

Query time 0.06733

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "3092.60"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "companies",
              "access_type": "const",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "company_id"
              ],
              "key_length": "4",
              "ref": [
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 1,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.00",
                "eval_cost": "0.10",
                "prefix_cost": "0.00",
                "data_read_per_join": "15K"
              },
              "used_columns": [
                "company_id",
                "status",
                "company",
                "discreet_shipping"
              ]
            }
          },
          {
            "table": {
              "table_name": "products",
              "access_type": "ref",
              "possible_keys": [
                "PRIMARY",
                "status",
                "idx_parent_product_id"
              ],
              "key": "idx_parent_product_id",
              "used_key_parts": [
                "parent_product_id"
              ],
              "key_length": "4",
              "ref": [
                "const"
              ],
              "rows_examined_per_scan": 15524,
              "rows_produced_per_join": 305,
              "filtered": "1.97",
              "cost_info": {
                "read_cost": "884.27",
                "eval_cost": "30.53",
                "prefix_cost": "2436.68",
                "data_read_per_join": "1M"
              },
              "used_columns": [
                "product_id",
                "product_type",
                "status",
                "company_id",
                "amount",
                "usergroup_ids",
                "parent_product_id",
                "variation_sku"
              ],
              "attached_condition": "((`cscartdb`.`products`.`company_id` = 6) and (`cscartdb`.`products`.`amount` > 0) and ((`cscartdb`.`products`.`usergroup_ids` = '') or (0 <> find_in_set(0,`cscartdb`.`products`.`usergroup_ids`)) or (0 <> find_in_set(1,`cscartdb`.`products`.`usergroup_ids`))) and (`cscartdb`.`products`.`status` = 'A'))"
            }
          },
          {
            "table": {
              "table_name": "prices",
              "access_type": "ref",
              "possible_keys": [
                "usergroup",
                "product_id",
                "lower_limit",
                "usergroup_id"
              ],
              "key": "product_id",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "cscartdb.products.product_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 305,
              "filtered": "99.99",
              "cost_info": {
                "read_cost": "76.33",
                "eval_cost": "30.53",
                "prefix_cost": "2543.53",
                "data_read_per_join": "7K"
              },
              "used_columns": [
                "product_id",
                "lower_limit",
                "usergroup_id"
              ],
              "attached_condition": "((`cscartdb`.`prices`.`lower_limit` = 1) and (`cscartdb`.`prices`.`usergroup_id` in (0,0,1)))"
            }
          },
          {
            "table": {
              "table_name": "popularity",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "total"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "cscartdb.products.product_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 305,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "76.32",
                "eval_cost": "30.53",
                "prefix_cost": "2650.38",
                "data_read_per_join": "9K"
              },
              "used_columns": [
                "product_id",
                "total"
              ]
            }
          },
          {
            "table": {
              "table_name": "products_categories",
              "access_type": "ref",
              "possible_keys": [
                "PRIMARY",
                "pt"
              ],
              "key": "pt",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "cscartdb.products.product_id"
              ],
              "rows_examined_per_scan": 2,
              "rows_produced_per_join": 610,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "152.64",
                "eval_cost": "61.06",
                "prefix_cost": "2864.08",
                "data_read_per_join": "9K"
              },
              "used_columns": [
                "product_id",
                "category_id"
              ]
            }
          },
          {
            "table": {
              "table_name": "cscart_categories",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "c_status",
                "p_category_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "category_id"
              ],
              "key_length": "3",
              "ref": [
                "cscartdb.products_categories.category_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 30,
              "filtered": "5.00",
              "cost_info": {
                "read_cost": "152.64",
                "eval_cost": "3.05",
                "prefix_cost": "3077.77",
                "data_read_per_join": "102K"
              },
              "used_columns": [
                "category_id",
                "storefront_id",
                "usergroup_ids",
                "status"
              ],
              "attached_condition": "(((`cscartdb`.`cscart_categories`.`usergroup_ids` = '') or (0 <> find_in_set(0,`cscartdb`.`cscart_categories`.`usergroup_ids`)) or (0 <> find_in_set(1,`cscartdb`.`cscart_categories`.`usergroup_ids`))) and (`cscartdb`.`cscart_categories`.`status` in ('A','H')) and (`cscartdb`.`cscart_categories`.`storefront_id` in (0,1)))"
            }
          },
          {
            "table": {
              "table_name": "descr1",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "product_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id",
                "lang_code"
              ],
              "key_length": "9",
              "ref": [
                "cscartdb.products.product_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 30,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "11.78",
                "eval_cost": "3.05",
                "prefix_cost": "3092.60",
                "data_read_per_join": "116K"
              },
              "used_columns": [
                "product_id",
                "lang_code",
                "product"
              ]
            }
          }
        ]
      }
    }
  }
}

Result

product_id product company_name product_type parent_product_id variation_sku company_discreet_shipping
12972 Solo Saddle Dildo Mount Twisted Fantasies P 0 SADDLE-BLK Y
9959 Custom Peach Pie à la Mode Dildo Twisted Fantasies P 0 MINI-PPIE Y
9982 DIY Dildo Party Kit Twisted Fantasies P 0 Y
9939 Custom Mastr Mount Dildo Platform Twisted Fantasies P 0 Y
9923 Fantasy Dildo Teenies Bundle Pack Twisted Fantasies P 0 TEENIES Y
9966 Custom Horny Unicorn Sex Grinder Twisted Fantasies P 0 Y
9989 Silicone Firmness Sample Kit 3pk Twisted Fantasies P 0 Y
10092 Custom Stinger Jellyfish Sex Grinder Twisted Fantasies P 0 Y
9943 Custom Unicorn Tail Butt Plug Twisted Fantasies P 0 Y
9952 Custom Monarch the Butterfly Grinder Sex Toy Twisted Fantasies P 0 Y
9954 Custom Muscaria Mushroom Fantasy Sex Grinder Twisted Fantasies P 0 Y
9956 Custom Nathara Serpent Fantasy Snake Sex Grinder Twisted Fantasies P 0 Y
9948 Custom Stinger Jellyfish Dildo Twisted Fantasies P 0 MINI-STINGER Y
9957 Custom Novus Beginner Dildo Twisted Fantasies P 0 Y
12041 Peach Pie à la Mode Dildo Twisted Fantasies P 0 MINI-PPIE-29A Y
9936 Custom DAKKEN Tentacle Fantasy Dildo Twisted Fantasies P 0 MINI-DAKKEN Y
9968 DAKKEN Tentacle Fantasy Sex Grinder Twisted Fantasies P 0 Y
26583 Dakken Cock Ring Twisted Fantasies P 0 RING-DAKKEN-8A Y
9953 Custom Muscaria Mushroom Fantasy Dildo Twisted Fantasies P 0 MINI-MUSCARIA Y
9971 DAKKEN Tentacle Fantasy Sex Grinder Twisted Fantasies P 0 Y
9933 Custom Brümhilda Witches Broom Halloween Sex Grinder Twisted Fantasies P 0 Y
26577 Custom Muscaria Mushroom Butt Plug Twisted Fantasies P 0 BPLUG-SHROOMMUSCARIA Y
12832 Nathara Serpent Fantasy Snake Sex Grinder Twisted Fantasies P 0 Y
26603 DOZNUTZ Cock Ring UV Twisted Fantasies P 0 RING-DOZNUTZ-3A Y
9950 Monarch Butterfly Fantasy Dildo Twisted Fantasies P 0 MINI-MONARCH-10AA Y
26602 DOZNUTZ Cock Ring Twisted Fantasies P 0 RING-DOZNUTZ-4A Y
9949 Custom Lingus Tongue Fantasy Dildo Twisted Fantasies P 0 Y
26571 DOMINUS the Knotted Demon Insertable Sex Grinder Twisted Fantasies P 0 Y
9935 Custom Cannoli Dessert Fantasy Dildo Twisted Fantasies P 0 MINI-CANNOLI Y
9940 Custom Dominus Knotted Alien Fantasy Dildo Twisted Fantasies P 0 Y
26588 Custom Dakken Cock Ring Twisted Fantasies P 0 RING-DAKKEN Y
26579 Dakken Cock Ring Twisted Fantasies P 0 RING-DAKKEN-6A Y
12762 Novus Beginner Dildo Twisted Fantasies P 0 Y
9967 Custom XÆON Alien Dildo Twisted Fantasies P 0 Y
12085 Unicorn Tail Butt Plug Twisted Fantasies P 0 Y
26543 Muscaria Mushroom Butt Plug Twisted Fantasies P 0 BPLUG-MUSCARIA-15A Y
12761 Novus Beginner Dildo Twisted Fantasies P 0 Y
26539 Muscaria Mushroom Butt Plug Twisted Fantasies P 0 BPLUG-MUSCARIA-2A Y
12034 Brümhilda Witches Broom Halloween Sex Grinder Twisted Fantasies P 0 Y
9913 Brümhilda Witches Broom Dildo Twisted Fantasies P 0 BRUMHILDA-6A Y
12086 Unicorn Tail Butt Plug Twisted Fantasies P 0 Y
9928 Cannoli Dessert Fantasy Dildo Twisted Fantasies P 0 MINI-CANNOLI-5AA Y
26586 Dakken Cock Ring Twisted Fantasies P 0 RING-DAKKEN-4A Y
26585 Dakken Cock Ring Twisted Fantasies P 0 RING-DAKKEN-3A Y
9931 Custom Amphora Enchanting Vase Dildo Twisted Fantasies P 0 Y
9955 Custom Nathara Serpent Fantasy Dildo Twisted Fantasies P 0 MINI-NATHARA Y
12093 Custom Monarch Butterfly Fantasy Dildo Twisted Fantasies P 0 MINI-MONARCH Y
26594 DOMINUS the Knotted Demon Insertable Sex Grinder Twisted Fantasies P 0 Y
26597 DOZNUTZ Cock Ring Twisted Fantasies P 0 RING-DOZNUTZ-1A Y
12750 Muscaria Mushroom Fantasy Sex Grinder Twisted Fantasies P 0 Y
9984 Dominus Knotted Alien Fantasy Dildo Twisted Fantasies P 0 Y
12088 Unicorn Tail Butt Plug Twisted Fantasies P 0 Y
12033 Brümhilda Witches Broom Halloween Sex Grinder Twisted Fantasies P 0 Y
13034 Stinger Jellyfish Dildo Twisted Fantasies P 0 MINI-STINGER-6A Y
12084 Horny Unicorn Sex Grinder Twisted Fantasies P 0 Y
26563 Mt. FukMi Volcano Insertable Sex Grinder Twisted Fantasies P 0 Y
12057 Horny Unicorn Fantasy Dildo Twisted Fantasies P 0 Y
12087 Unicorn Tail Butt Plug Twisted Fantasies P 0 Y
9964 Custom Tessa Tulip Flower Dildo Twisted Fantasies P 0 Y
26526 Custom Ol' Faithful Sock Stroker Twisted Fantasies P 0 OLFAITHFUL Y
26542 Muscaria Mushroom Butt Plug Twisted Fantasies P 0 BPLUG-MUSCARIA-16A Y
9965 Custom Horny Unicorn Dildo Twisted Fantasies P 0 Y
12082 Horny Unicorn Sex Grinder Twisted Fantasies P 0 Y
12834 Peach Pie à la Mode Dildo Twisted Fantasies P 0 MINI-PPIE-2A Y
13053 XÆON Alien Dildo Twisted Fantasies P 0 Y
12090 Monarch Butterfly Fantasy Sex Grinder Twisted Fantasies P 0 Y
26589 DOMINUS the Knotted Demon Insertable Sex Grinder Twisted Fantasies P 0 Y
27008 Lingus the Tongue Sex Grinder Twisted Fantasies P 0 Y
9920 Brümhilda Witches Broom Halloween Sex Grinder Twisted Fantasies P 0 Y
12751 Muscaria Mushroom Fantasy Sex Grinder Twisted Fantasies P 0 Y
12683 Muscaria Mushroom Fantasy Dildo Twisted Fantasies P 0 MINI-MUSCARIA-2A Y
12092 Monarch Butterfly Fantasy Sex Grinder Twisted Fantasies P 0 Y
9926 Cannoli Dessert Fantasy Dildo Twisted Fantasies P 0 MINI-CANNOLI-2AA Y
12091 Monarch Butterfly Fantasy Sex Grinder Twisted Fantasies P 0 Y
35979 Custom Dick Realistic Dildo Twisted Fantasies P 0 Y
12021 DAKKEN Tentacle Fantasy Dildo Twisted Fantasies P 0 MINI-DAKKEN-26A Y
9975 DAKKEN Tentacle Fantasy Dildo Twisted Fantasies P 0 MINI-DAKKEN-10A Y
26537 Muscaria Mushroom Butt Plug Twisted Fantasies P 0 BPLUG-MUSCARIA-3A Y
26591 DOMINUS the Knotted Demon Insertable Sex Grinder Twisted Fantasies P 0 Y
26532 O Method Crystal Sex Handheld Grinder Twisted Fantasies P 0 Y
9961 Custom Ryoto Dragon Fantasy Dildo Twisted Fantasies P 0 RYOTO Y
9917 Brümhilda Witches Broom Dildo Twisted Fantasies P 0 BRUMHILDA-5AA Y
9924 Cannoli Dessert Fantasy Dildo Twisted Fantasies P 0 MINI-CANNOLI-7AA Y
12685 Muscaria Mushroom Fantasy Sex Grinder Twisted Fantasies P 0 Y
12097 Monarch Butterfly Fantasy Dildo Twisted Fantasies P 0 MINI-MONARCH-14A Y
12969 Ryoto Dragon Sex Grinder Twisted Fantasies P 0 Y
12202 Muscaria Mushroom Fantasy Dildo Twisted Fantasies P 0 MINI-MUSCARIA-1A Y
9960 Custom Peach Pie à la Mode Sex Grinder Twisted Fantasies P 0 Y
12682 Muscaria Mushroom Fantasy Dildo Twisted Fantasies P 0 MINI-MUSCARIA-10A Y
13052 XÆON Alien Dildo Twisted Fantasies P 0 Y
12025 DAKKEN Tentacle Fantasy Sex Grinder Twisted Fantasies P 0 Y
9914 Brümhilda Witches Broom Dildo Twisted Fantasies P 0 BRUMHILDA-9A Y
26578 Custom O Method Crystal Sex Handheld Grinder Twisted Fantasies P 0 Y
13044 Stinger Jellyfish Sex Grinder Twisted Fantasies P 0 Y
35980 Custom Tom Realistic Dildo Twisted Fantasies P 0 Y
26557 Mt. FukMi Volcano Insertable Sex Grinder Twisted Fantasies P 0 Y
12749 Muscaria Mushroom Fantasy Sex Grinder Twisted Fantasies P 0 Y
13047 Tessa Tulip Flower Dildo Twisted Fantasies P 0 Y
26527 The Ol' Faithful Sock Stroker UV Twisted Fantasies P 0 OLFAITHFUL-8A Y
9912 Amphora Enchanting Vase Dildo Twisted Fantasies P 0 Y
10022 Monarch Butterfly Fantasy Sex Grinder Twisted Fantasies P 0 Y
26573 Custom Ectogasm Planchette Ouija Handheld Sex Grinder Twisted Fantasies P 0 Y
12043 Dominus Knotted Alien Fantasy Dildo Twisted Fantasies P 0 Y
26576 Custom Mt. FukMi Volcano Insertable Sex Grinder Twisted Fantasies P 0 Y
12024 DAKKEN Tentacle Fantasy Sex Grinder Twisted Fantasies P 0 Y
12060 Horny Unicorn Fantasy Dildo Twisted Fantasies P 0 UNI-24 Y
26535 O Method Crystal Sex Handheld Grinder Twisted Fantasies P 0 Y
13038 Stinger Jellyfish Dildo Twisted Fantasies P 0 MINI-STINGER-8A Y
26607 Ectogasm Planchette Ouija Handheld Sex Grinder Twisted Fantasies P 0 Y
12023 DAKKEN Tentacle Fantasy Sex Grinder Twisted Fantasies P 0 Y
13046 Tessa Tulip Flower Dildo Twisted Fantasies P 0 Y
12970 Stinger Jellyfish Dildo Twisted Fantasies P 0 MINI-STINGER-1A Y
13043 Stinger Jellyfish Sex Grinder Twisted Fantasies P 0 Y
26599 DOZNUTZ Cock Ring Twisted Fantasies P 0 RING-DOZNUTZ-8A Y
13042 Stinger Jellyfish Sex Grinder Twisted Fantasies P 0 Y
9910 Amphora Enchanting Vase Dildo Twisted Fantasies P 0 Y
12020 DAKKEN Tentacle Fantasy Dildo Twisted Fantasies P 0 MINI-DAKKEN-39A Y
26521 The Ol' Faithful Sock Stroker Twisted Fantasies P 0 OLFAITHFUL-2A Y
12063 Horny Unicorn Sex Grinder Twisted Fantasies P 0 Y
12200 Lingus Tongue Fantasy Dildo Twisted Fantasies P 0 Y
12831 Nathara Serpent Fantasy Snake Sex Grinder Twisted Fantasies P 0 Y
9978 DAKKEN Tentacle Fantasy Dildo Twisted Fantasies P 0 MINI-DAKKEN-5A Y
13051 XÆON Alien Dildo Twisted Fantasies P 0 Y
26575 Custom Mt. Fukmi Volcano Dildo Twisted Fantasies P 0 Y
35213 Custom Harry Realistic Dildo Twisted Fantasies P 0 Y
26554 Mt. Fukmi Volcano Dildo Twisted Fantasies P 0 Y
12960 Ryoto Dragon Fantasy Dildo Twisted Fantasies P 0 RYOTO-33A Y
26605 Ectogasm Planchette Ouija Handheld Sex Grinder UV Twisted Fantasies P 0 Y
26572 Custom DOMINUS the Knotted Demon Insertable Sex Grinder Twisted Fantasies P 0 Y
12752 Nathara Serpent Fantasy Dildo Twisted Fantasies P 0 MINI-NATHARA-2A Y
9907 Amphora Enchanting Vase Dildo Twisted Fantasies P 0 Y
12197 Lingus Tongue Fantasy Dildo Twisted Fantasies P 0 Y
12842 Peach Pie à la Mode Sex Grinder Twisted Fantasies P 0 Y
9918 Brümhilda Witches Broom Dildo Twisted Fantasies P 0 BRUMHILDA-20A Y
12055 Dominus Knotted Alien Fantasy Dildo Twisted Fantasies P 0 Y
26520 The Ol' Faithful Sock Stroker Twisted Fantasies P 0 LG-OLFAITHFUL-4A Y
26604 Ectogasm Planchette Ouija Handheld Sex Grinder Twisted Fantasies P 0 Y
12061 Horny Unicorn Fantasy Dildo Twisted Fantasies P 0 UNI-24A Y
9906 Amphora Enchanting Vase Dildo Twisted Fantasies P 0 Y
12756 Nathara Serpent Fantasy Dildo Twisted Fantasies P 0 MINI-NATHARA-26A Y
13050 XÆON Alien Dildo Twisted Fantasies P 0 Y
26533 O Method Crystal Sex Handheld Grinder Twisted Fantasies P 0 Y
12684 Muscaria Mushroom Fantasy Dildo Twisted Fantasies P 0 MINI-MUSCARIA-3A Y
13036 Stinger Jellyfish Dildo Twisted Fantasies P 0 MINI-STINGER-5A Y
12198 Lingus Tongue Fantasy Dildo Twisted Fantasies P 0 Y
12843 Peach Pie à la Mode Sex Grinder Twisted Fantasies P 0 Y
26561 Mt. FukMi Volcano Insertable Sex Grinder Twisted Fantasies P 0 Y
26569 Lingus the Tongue Sex Grinder Twisted Fantasies P 0 Y
9925 Cannoli Dessert Fantasy Dildo Twisted Fantasies P 0 MINI-CANNOLI-1AA Y
36006 Dick Realistic Dildo Twisted Fantasies P 0 Y
26534 O Method Crystal Sex Handheld Grinder Twisted Fantasies P 0 Y
26555 Mt. Fukmi Volcano Dildo Twisted Fantasies P 0 Y
26595 Custom DOZNUTZ Cock Ring Twisted Fantasies P 0 RING-DOZNUTZ Y
26525 The Ol' Faithful Sock Stroker Twisted Fantasies P 0 OLFAITHFUL-7A Y
12758 Nathara Serpent Fantasy Dildo Twisted Fantasies P 0 MINI-NATHARA-17A Y
26608 Ectogasm Planchette Ouija Handheld Sex Grinder Twisted Fantasies P 0 Y
12083 Horny Unicorn Sex Grinder Twisted Fantasies P 0 Y
35996 Harry Realistic Dildo Twisted Fantasies P 0 Y
12036 Dominus Knotted Alien Fantasy Dildo Twisted Fantasies P 0 Y
12840 Peach Pie à la Mode Sex Grinder Twisted Fantasies P 0 Y
12964 Ryoto Dragon Fantasy Dildo Twisted Fantasies P 0 RYOTO-15A Y
35997 Harry Realistic Dildo Twisted Fantasies P 0 Y
12962 Ryoto Dragon Fantasy Dildo Twisted Fantasies P 0 RYOTO-37A Y
13045 Stinger Jellyfish Sex Grinder Twisted Fantasies P 0 Y
12754 Nathara Serpent Fantasy Dildo Twisted Fantasies P 0 MINI-NATHARA-12A Y
35981 Harry Realistic Dildo Twisted Fantasies P 0 Y
12193 Monarch Butterfly Fantasy Dildo Twisted Fantasies P 0 MINI-MONARCH-5AA Y
26552 Mt. Fukmi Volcano Dildo Twisted Fantasies P 0 Y
12968 Ryoto Dragon Sex Grinder Twisted Fantasies P 0 Y
13049 Tessa Tulip Flower Dildo Twisted Fantasies P 0 Y
27787 Custom Ryoto Dragon Sex Grinder Twisted Fantasies P 0 Y
12838 Peach Pie à la Mode Dildo Twisted Fantasies P 0 MINI-PPIE-5AA Y
12195 Monarch Butterfly Fantasy Dildo Twisted Fantasies P 0 MINI-MONARCH-6A Y
26547 Mt. Fukmi Volcano Dildo Twisted Fantasies P 0 Y
12966 Ryoto Dragon Sex Grinder Twisted Fantasies P 0 Y
12836 Peach Pie à la Mode Dildo Twisted Fantasies P 0 MINI-PPIE-6A Y
26559 Mt. FukMi Volcano Insertable Sex Grinder Twisted Fantasies P 0 Y
35999 Tom Realistic Dildo Twisted Fantasies P 0 Y
36008 Dick Realistic Dildo UV Twisted Fantasies P 0 Y
12958 Ryoto Dragon Fantasy Dildo Twisted Fantasies P 0 RYOTO-26A Y
26568 Lingus the Tongue Sex Grinder Twisted Fantasies P 0 Y
12062 Horny Unicorn Fantasy Dildo Twisted Fantasies P 0 UNI-24A Y
36007 Dick Realistic Dildo Twisted Fantasies P 0 Y
12841 Peach Pie à la Mode Sex Grinder Twisted Fantasies P 0 Y
26566 Lingus the Tongue Sex Grinder Twisted Fantasies P 0 Y
35998 Harry Realistic Dildo UV Twisted Fantasies P 0 Y
12199 Lingus Tongue Fantasy Dildo Twisted Fantasies P 0 Y
12760 Nathara Serpent Fantasy Snake Sex Grinder Twisted Fantasies P 0 Y
12967 Ryoto Dragon Sex Grinder Twisted Fantasies P 0 Y
36002 Tom Realistic Dildo Twisted Fantasies P 0 Y
36009 Dick Realistic Dildo Twisted Fantasies P 0 Y
13048 Tessa Tulip Flower Dildo Twisted Fantasies P 0 Y
26570 Lingus the Tongue Sex Grinder UV Twisted Fantasies P 0 Y
36000 Tom Realistic Dildo Twisted Fantasies P 0 Y
36001 Tom Realistic Dildo Twisted Fantasies P 0 Y
27758 Custom Brümhilda Witches Broom Dildo Twisted Fantasies P 0 BRUMHILDA Y
38670 Knaughty Spanker the Spanking Paddle Twisted Fantasies P 0 Y
38292 Custom Knaughty Cuffs the BDSM Restraint Twisted Fantasies P 0 Y
38675 Knaughty Cuffs the BDSM Restraint Twisted Fantasies P 0 Y
38649 Knaughty Spanker the Spanking Paddle Twisted Fantasies P 0 Y
38671 Knaughty Spanker the Spanking Paddle Twisted Fantasies P 0 Y
38677 Knaughty Cuffs the BDSM Restraint UV Twisted Fantasies P 0 Y
38291 Custom Knaughty Spanker the Spanking Paddle Twisted Fantasies P 0 Y
38674 Knaughty Cuffs the BDSM Restraint Twisted Fantasies P 0 Y
38676 Knaughty Cuffs the BDSM Restraint Twisted Fantasies P 0 Y
38672 Knaughty Spanker the Spanking Paddle UV Twisted Fantasies P 0 Y
38293 Custom Knaughty Spanker & Cuffs Bundle Twisted Fantasies P 0 Y
68826 Custom Pounder the Knotted Drum Dildo Twisted Fantasies P 0 Y
68439 Custom G-String the Knotted Guitar Dildo Twisted Fantasies P 0 Y
70271 Custom G-String the Guitar Sex Grinder Twisted Fantasies P 0 Y
69085 Custom Pienist the Piano Dildo Twisted Fantasies P 0 Y
70267 Custom Pienist the Piano Sex Grinder Twisted Fantasies P 0 Y
70269 Custom Sax Appeal the Saxophone Sex Grinder Twisted Fantasies P 0 Y
70270 Custom Pounder the Drum Sex Grinder Twisted Fantasies P 0 Y
70266 Custom Sax Appeal the Saxophone Dildo Twisted Fantasies P 0 Y
70273 G-String the Knotted Guitar Dildo Twisted Fantasies P 0 Y
70284 G-String the Guitar Sex Grinder Twisted Fantasies P 0 Y
70285 Pounder the Knotted Drum Dildo Twisted Fantasies P 0 Y
70287 Pounder the Drum Sex Grinder Twisted Fantasies P 0 Y
70291 Pienist the Piano Sex Grinder Twisted Fantasies P 0 Y
70299 [Copy of #70279] Sax Appeal the Saxophone Dildo Twisted Fantasies P 0 Y
70274 G-String the Guitar Sex Grinder Twisted Fantasies P 0 Y
70276 Pounder the Drum Sex Grinder Twisted Fantasies P 0 Y
70283 G-String the Guitar Sex Grinder Twisted Fantasies P 0 Y
70275 Pounder the Knotted Drum Dildo Twisted Fantasies P 0 Y
70277 Pienist the Piano Dildo Twisted Fantasies P 0 Y
70278 Pienist the Piano Sex Grinder Twisted Fantasies P 0 Y
70279 Sax Appeal the Saxophone Dildo Twisted Fantasies P 0 Y
70280 Sax Appeal the Saxophone Sex Grinder Twisted Fantasies P 0 Y
70281 G-String the Knotted Guitar Dildo Twisted Fantasies P 0 Y
70282 G-String the Knotted Guitar Dildo Twisted Fantasies P 0 Y
70286 Pounder the Knotted Drum Dildo Twisted Fantasies P 0 Y
70288 Pounder the Drum Sex Grinder Twisted Fantasies P 0 Y
70289 Pienist the Piano Dildo Twisted Fantasies P 0 Y
70290 Pienist the Piano Dildo Twisted Fantasies P 0 Y
70292 Pienist the Piano Sex Grinder Twisted Fantasies P 0 Y
70300 Sax Appeal the Saxophone Dildo Twisted Fantasies P 0 Y
70302 Sax Appeal the Saxophone Sex Grinder Twisted Fantasies P 0 Y
70301 Sax Appeal the Saxophone Sex Grinder Twisted Fantasies P 0 Y