chess_openings 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +2 -0
- data/.rspec +2 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +31 -0
- data/LICENSE +22 -0
- data/README.md +52 -0
- data/chess_openings.gemspec +28 -0
- data/lib/chess_openings.rb +77 -0
- data/lib/chess_openings/json_openings/openings.json +2017 -0
- data/lib/chess_openings/opening.rb +40 -0
- data/lib/chess_openings/search_tree.rb +163 -0
- data/openings_parser.rb +85 -0
- metadata +128 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 89b8c112a3b10f18cd68aa2374b969be3387ff8b
|
4
|
+
data.tar.gz: 492ca8ad3ee08e1abe58eeb26d9b8e04a9d348ee
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e64af794c2b1e2ef2485bf9e818d2c47a7657fcb3b590c4a468165e134e19f6df714d502f88fa1987ba3914d10a3ecd13a7d3dd5da5cb37713a2df4b0e351899
|
7
|
+
data.tar.gz: e59132099dc7b7551c55fba4b7d7ec762c9f1c47fc0f0243a17fcb9f031614d0fbacdc2e43d59d0351c7e6d4c8d6f62e195026a9c78b9104f88db104310326bb
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
GEM
|
2
|
+
remote: https://rubygems.org/
|
3
|
+
specs:
|
4
|
+
diff-lcs (1.2.5)
|
5
|
+
mini_portile (0.6.2)
|
6
|
+
nokogiri (1.6.6.2)
|
7
|
+
mini_portile (~> 0.6.0)
|
8
|
+
pgn (0.0.6)
|
9
|
+
whittle
|
10
|
+
rspec (3.3.0)
|
11
|
+
rspec-core (~> 3.3.0)
|
12
|
+
rspec-expectations (~> 3.3.0)
|
13
|
+
rspec-mocks (~> 3.3.0)
|
14
|
+
rspec-core (3.3.2)
|
15
|
+
rspec-support (~> 3.3.0)
|
16
|
+
rspec-expectations (3.3.1)
|
17
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
18
|
+
rspec-support (~> 3.3.0)
|
19
|
+
rspec-mocks (3.3.2)
|
20
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
21
|
+
rspec-support (~> 3.3.0)
|
22
|
+
rspec-support (3.3.0)
|
23
|
+
whittle (0.0.8)
|
24
|
+
|
25
|
+
PLATFORMS
|
26
|
+
ruby
|
27
|
+
|
28
|
+
DEPENDENCIES
|
29
|
+
nokogiri (= 1.6.6.2)
|
30
|
+
pgn (= 0.0.6)
|
31
|
+
rspec (~> 3.3.0)
|
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 Simão Neves
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
22
|
+
|
data/README.md
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
Chess Openings
|
2
|
+
==========================
|
3
|
+
Future Ruby gem to calculate Chess Openings from a PGN file (and others)
|
4
|
+
|
5
|
+
## TODOS:
|
6
|
+
- Write documentation
|
7
|
+
- Wrap everything up in a Ruby gem
|
8
|
+
- Get opening from FEN
|
9
|
+
- Make CLI to parse openings from website
|
10
|
+
|
11
|
+
## Features:
|
12
|
+
- Get opening from PGN file
|
13
|
+
- Get opening from PGN string
|
14
|
+
- Get opening from array with moves
|
15
|
+
- Get opening from FEN (maybe?)
|
16
|
+
- Search opening by name
|
17
|
+
- Get all openings
|
18
|
+
- Get all openings that start with some determined moves
|
19
|
+
- Get PGN string from an opening
|
20
|
+
- Get opening from FEN
|
21
|
+
|
22
|
+
## Installation
|
23
|
+
|
24
|
+
Add this line to your application's Gemfile:
|
25
|
+
|
26
|
+
```ruby
|
27
|
+
gem 'chess_openings'
|
28
|
+
```
|
29
|
+
|
30
|
+
And then execute:
|
31
|
+
|
32
|
+
$ bundle
|
33
|
+
|
34
|
+
Or install it yourself as:
|
35
|
+
|
36
|
+
$ gem install chess_openings
|
37
|
+
|
38
|
+
## Usage
|
39
|
+
|
40
|
+
TODO: Write usage instructions here
|
41
|
+
|
42
|
+
## Development
|
43
|
+
|
44
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
45
|
+
|
46
|
+
## Contributing
|
47
|
+
|
48
|
+
1. Fork it ( https://github.com/simaoneves/chess_openings/fork )
|
49
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
50
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
51
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
52
|
+
5. Create a new Pull Request
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "chess_openings"
|
7
|
+
spec.version = "0.0.3"
|
8
|
+
spec.authors = ["Simão Neves"]
|
9
|
+
spec.email = ["simaocostaneves@gmail.com"]
|
10
|
+
|
11
|
+
if spec.respond_to?(:metadata)
|
12
|
+
end
|
13
|
+
|
14
|
+
spec.summary = "Gem that allows you to calculate which opening was used in a chess game"
|
15
|
+
spec.description = "Gem that allows you to know what chess opening was used in a chess game, find chess openings by name or get all openings that start with certain moves"
|
16
|
+
spec.homepage = "http://www.github.com/simaoneves/chess_openings"
|
17
|
+
spec.license = "MIT"
|
18
|
+
|
19
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
20
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
21
|
+
spec.require_paths = ["lib"]
|
22
|
+
|
23
|
+
spec.add_dependency "pgn", '0.0.6'
|
24
|
+
spec.add_dependency 'nokogiri', '1.6.6.2'
|
25
|
+
spec.add_development_dependency "bundler", '~> 1.8'
|
26
|
+
spec.add_development_dependency "rspec", '~> 3.3.0'
|
27
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
28
|
+
end
|
@@ -0,0 +1,77 @@
|
|
1
|
+
require 'pgn'
|
2
|
+
require 'json'
|
3
|
+
|
4
|
+
require 'chess_openings/opening.rb'
|
5
|
+
require 'chess_openings/search_tree.rb'
|
6
|
+
|
7
|
+
class ChessOpenings
|
8
|
+
|
9
|
+
attr_accessor :tree, :list
|
10
|
+
|
11
|
+
def initialize
|
12
|
+
@tree = SearchTree.new
|
13
|
+
@list = []
|
14
|
+
|
15
|
+
file = "/chess_openings/json_openings/openings.json"
|
16
|
+
openings_file = File.join(File.dirname(__FILE__), file)
|
17
|
+
|
18
|
+
openings = JSON.load(File.open(openings_file))["openings"]
|
19
|
+
openings.each do |op|
|
20
|
+
opening = Opening.new(op["name"], op["eco_code"], op["moves"])
|
21
|
+
@list << opening
|
22
|
+
@tree.insert opening.moves, opening
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
26
|
+
|
27
|
+
def get_all
|
28
|
+
@list.dup
|
29
|
+
end
|
30
|
+
|
31
|
+
def from_moves(moves)
|
32
|
+
# moves.map! { |move| move.to_s if move.is_a? Symbol }
|
33
|
+
@tree.search moves
|
34
|
+
end
|
35
|
+
|
36
|
+
def from_pgn(file_name)
|
37
|
+
raise LoadError, "File does not exist" unless File.exist?(file_name)
|
38
|
+
begin
|
39
|
+
game = PGN.parse(File.read(file_name)).first
|
40
|
+
@tree.search game.moves
|
41
|
+
rescue
|
42
|
+
raise InvalidPGNError, "Invalid PGN file"
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
def with_name(name)
|
47
|
+
@list.select { |op| op.name.downcase.include?(name.downcase) }
|
48
|
+
end
|
49
|
+
|
50
|
+
def that_start_with(moves)
|
51
|
+
@tree.search_all_with_moves moves
|
52
|
+
end
|
53
|
+
|
54
|
+
def from_string(string)
|
55
|
+
array = string.split
|
56
|
+
moves = []
|
57
|
+
array.each do |move|
|
58
|
+
if move.include?(".")
|
59
|
+
next if move.end_with?(".")
|
60
|
+
move = move.split(".").last
|
61
|
+
end
|
62
|
+
moves << move
|
63
|
+
end
|
64
|
+
@tree.search moves
|
65
|
+
end
|
66
|
+
|
67
|
+
private
|
68
|
+
|
69
|
+
def to_s
|
70
|
+
@tree.to_s
|
71
|
+
end
|
72
|
+
|
73
|
+
end
|
74
|
+
|
75
|
+
class InvalidPGNError < RuntimeError
|
76
|
+
|
77
|
+
end
|
@@ -0,0 +1,2017 @@
|
|
1
|
+
{
|
2
|
+
"openings": [
|
3
|
+
{"name":"Polish (Sokolsky) opening","eco_code":"A00","moves":["b4"]},
|
4
|
+
{"name":"Polish, Tuebingen variation","eco_code":"A00","moves":["b4","Nh6"]},
|
5
|
+
{"name":"Polish, Outflank variation","eco_code":"A00","moves":["b4","c6"]},
|
6
|
+
{"name":"Benko's opening","eco_code":"A00","moves":["g3"]},
|
7
|
+
{"name":"Lasker simul special","eco_code":"A00","moves":["g3","h5"]},
|
8
|
+
{"name":"Benko's opening, reversed Alekhine","eco_code":"A00","moves":["g3","e5","Nf3"]},
|
9
|
+
{"name":"Grob's attack","eco_code":"A00","moves":["g4"]},
|
10
|
+
{"name":"Grob, spike attack","eco_code":"A00","moves":["g4","d5","Bg2","c6","g5"]},
|
11
|
+
{"name":"Grob, Fritz gambit","eco_code":"A00","moves":["g4","d5","Bg2","Bxg4","c4"]},
|
12
|
+
{"name":"Grob, Romford counter-gambit","eco_code":"A00","moves":["g4","d5","Bg2","Bxg4","c4","d4"]},
|
13
|
+
{"name":"Clemenz (Mead's, Basman's or de Klerk's) opening","eco_code":"A00","moves":["h3"]},
|
14
|
+
{"name":"Global opening","eco_code":"A00","moves":["h3","e5","a3"]},
|
15
|
+
{"name":"Amar (Paris) opening","eco_code":"A00","moves":["Nh3"]},
|
16
|
+
{"name":"Amar gambit","eco_code":"A00","moves":["Nh3","d5","g3","e5","f4","Bxh3","Bxh3","exf4"]},
|
17
|
+
{"name":"Dunst (Sleipner, Heinrichsen) opening","eco_code":"A00","moves":["Nc3"]},
|
18
|
+
{"name":"Dunst (Sleipner,Heinrichsen) opening","eco_code":"A00","moves":["Nc3","e5"]},
|
19
|
+
{"name":"Battambang opening","eco_code":"A00","moves":["Nc3","e5","a3"]},
|
20
|
+
{"name":"Novosibirsk opening","eco_code":"A00","moves":["Nc3","c5","d4","cxd4","Qxd4","Nc6","Qh4"]},
|
21
|
+
{"name":"Anderssen's opening","eco_code":"A00","moves":["a3"]},
|
22
|
+
{"name":"Ware (Meadow Hay) opening","eco_code":"A00","moves":["a4"]},
|
23
|
+
{"name":"Crab opening","eco_code":"A00","moves":["a4","e5","h4"]},
|
24
|
+
{"name":"Saragossa opening","eco_code":"A00","moves":["c3"]},
|
25
|
+
{"name":"Mieses opening","eco_code":"A00","moves":["d3"]},
|
26
|
+
{"name":"Mieses opening","eco_code":"A00","moves":["d3","e5"]},
|
27
|
+
{"name":"Valencia opening","eco_code":"A00","moves":["d3","e5","Nd2"]},
|
28
|
+
{"name":"Venezolana opening","eco_code":"A00","moves":["d3","c5","Nc3","Nc6","g3"]},
|
29
|
+
{"name":"Van't Kruijs opening","eco_code":"A00","moves":["e3"]},
|
30
|
+
{"name":"Amsterdam attack","eco_code":"A00","moves":["e3","e5","c4","d6","Nc3","Nc6","b3","Nf6"]},
|
31
|
+
{"name":"Gedult's opening","eco_code":"A00","moves":["f3"]},
|
32
|
+
{"name":"Hammerschlag (Fried fox/Pork chop opening)","eco_code":"A00","moves":["f3","e5","Kf2"]},
|
33
|
+
{"name":"Anti-Borg (Desprez) opening","eco_code":"A00","moves":["h4"]},
|
34
|
+
{"name":"Durkin's attack","eco_code":"A00","moves":["Na3"]},
|
35
|
+
{"name":"Nimzovich-Larsen attack","eco_code":"A01","moves":["b3"]},
|
36
|
+
{"name":"Nimzovich-Larsen attack, modern variation","eco_code":"A01","moves":["b3","e5"]},
|
37
|
+
{"name":"Nimzovich-Larsen attack, Indian variation","eco_code":"A01","moves":["b3","Nf6"]},
|
38
|
+
{"name":"Nimzovich-Larsen attack, classical variation","eco_code":"A01","moves":["b3","d5"]},
|
39
|
+
{"name":"Nimzovich-Larsen attack, English variation","eco_code":"A01","moves":["b3","c5"]},
|
40
|
+
{"name":"Nimzovich-Larsen attack, Dutch variation","eco_code":"A01","moves":["b3","f5"]},
|
41
|
+
{"name":"Nimzovich-Larsen attack, Polish variation","eco_code":"A01","moves":["b3","b5"]},
|
42
|
+
{"name":"Nimzovich-Larsen attack, symmetrical variation","eco_code":"A01","moves":["b3","b6"]},
|
43
|
+
{"name":"Modern defence, Averbakh system","eco_code":"A42","moves":["d4","d6","c4","g6","Nc3","Bg7","e4"]},
|
44
|
+
{"name":"Pterodactyl defence","eco_code":"A42","moves":["d4","d6","c4","g6","Nc3","Bg7","e4","c5","Nf3","Qa5"]},
|
45
|
+
{"name":"Modern defence, Averbakh system, Randspringer variation","eco_code":"A42","moves":["d4","d6","c4","g6","Nc3","Bg7","e4","f5"]},
|
46
|
+
{"name":"Modern defence, Averbakh system, Kotov variation","eco_code":"A42","moves":["d4","d6","c4","g6","Nc3","Bg7","e4","Nc6"]},
|
47
|
+
{"name":"Queen's Indian defence","eco_code":"A47","moves":["d4","Nf6","Nf3","b6"]},
|
48
|
+
{"name":"Queen's Indian, Marienbad system","eco_code":"A47","moves":["d4","Nf6","Nf3","b6","g3","Bb7","Bg2","c5"]},
|
49
|
+
{"name":"Queen's Indian, Marienbad system, Berg variation","eco_code":"A47","moves":["d4","Nf6","Nf3","b6","g3","Bb7","Bg2","c5","c4","cxd4","Qxd4"]},
|
50
|
+
{"name":"Queen's pawn game","eco_code":"A50","moves":["d4","Nf6","c4"]},
|
51
|
+
{"name":"Kevitz-Trajkovich defence","eco_code":"A50","moves":["d4","Nf6","c4","Nc6"]},
|
52
|
+
{"name":"Queen's Indian accelerated","eco_code":"A50","moves":["d4","Nf6","c4","b6"]},
|
53
|
+
{"name":"Benoni defence","eco_code":"A56","moves":["d4","Nf6","c4","c5"]},
|
54
|
+
{"name":"Benoni defence, Hromodka system","eco_code":"A56","moves":["d4","Nf6","c4","c5","d5","d6"]},
|
55
|
+
{"name":"Vulture defence","eco_code":"A56","moves":["d4","Nf6","c4","c5","d5","Ne4"]},
|
56
|
+
{"name":"Czech Benoni defence","eco_code":"A56","moves":["d4","Nf6","c4","c5","d5","e5"]},
|
57
|
+
{"name":"Czech Benoni, King's Indian system","eco_code":"A56","moves":["d4","Nf6","c4","c5","d5","e5","Nc3","d6","e4","g6"]},
|
58
|
+
{"name":"King's pawn opening","eco_code":"B00","moves":["e4"]},
|
59
|
+
{"name":"Hippopotamus defence","eco_code":"B00","moves":["e4","Nh6","d4","g6","c4","f6"]},
|
60
|
+
{"name":"Corn stalk defence","eco_code":"B00","moves":["e4","a5"]},
|
61
|
+
{"name":"Lemming defence","eco_code":"B00","moves":["e4","Na6"]},
|
62
|
+
{"name":"Fred","eco_code":"B00","moves":["e4","f5"]},
|
63
|
+
{"name":"Barnes defence","eco_code":"B00","moves":["e4","f6"]},
|
64
|
+
{"name":"Fried fox defence","eco_code":"B00","moves":["e4","f6","d4","Kf7"]},
|
65
|
+
{"name":"Carr's defence","eco_code":"B00","moves":["e4","h6"]},
|
66
|
+
{"name":"Reversed Grob (Borg/Basman defence/macho Grob)","eco_code":"B00","moves":["e4","g5"]},
|
67
|
+
{"name":"St. George (Baker) defence","eco_code":"B00","moves":["e4","a6"]},
|
68
|
+
{"name":"Owen defence","eco_code":"B00","moves":["e4","b6"]},
|
69
|
+
{"name":"Guatemala defence","eco_code":"B00","moves":["e4","b6","d4","Ba6"]},
|
70
|
+
{"name":"KP, Nimzovich defence","eco_code":"B00","moves":["e4","Nc6"]},
|
71
|
+
{"name":"KP, Nimzovich defence, Wheeler gambit","eco_code":"B00","moves":["e4","Nc6","b4","Nxb4","c3","Nc6","d4"]},
|
72
|
+
{"name":"KP, Nimzovich defence","eco_code":"B00","moves":["e4","Nc6","Nf3"]},
|
73
|
+
{"name":"KP, Colorado counter","eco_code":"B00","moves":["e4","Nc6","Nf3","f5"]},
|
74
|
+
{"name":"KP, Nimzovich defence","eco_code":"B00","moves":["e4","Nc6","d4"]},
|
75
|
+
{"name":"KP, Nimzovich defence, Marshall gambit","eco_code":"B00","moves":["e4","Nc6","d4","d5","exd5","Qxd5","Nc3"]},
|
76
|
+
{"name":"KP, Nimzovich defence, Bogolyubov variation","eco_code":"B00","moves":["e4","Nc6","d4","d5","Nc3"]},
|
77
|
+
{"name":"KP, Neo-Mongoloid defence","eco_code":"B00","moves":["e4","Nc6","d4","f6"]},
|
78
|
+
{"name":"Scandinavian (centre counter) defence","eco_code":"B01","moves":["e4","d5"]},
|
79
|
+
{"name":"Scandinavian defence, Lasker variation","eco_code":"B01","moves":["e4","d5","exd5","Qxd5","Nc3","Qa5","d4","Nf6","Nf3","Bg4","h3"]},
|
80
|
+
{"name":"Scandinavian defence","eco_code":"B01","moves":["e4","d5","exd5","Qxd5","Nc3","Qa5","d4","Nf6","Nf3","Bf5"]},
|
81
|
+
{"name":"Scandinavian defence, Gruenfeld variation","eco_code":"B01","moves":["e4","d5","exd5","Qxd5","Nc3","Qa5","d4","Nf6","Nf3","Bf5","Ne5","c6","g4"]},
|
82
|
+
{"name":"Scandinavian, Anderssen counter-attack","eco_code":"B01","moves":["e4","d5","exd5","Qxd5","Nc3","Qa5","d4","e5"]},
|
83
|
+
{"name":"Scandinavian, Anderssen counter-attack orthodox attack","eco_code":"B01","moves":["e4","d5","exd5","Qxd5","Nc3","Qa5","d4","e5","dxe5","Bb4","Bd2","Nc6","Nf3"]},
|
84
|
+
{"name":"Scandinavian, Anderssen counter-attack, Goteborg system","eco_code":"B01","moves":["e4","d5","exd5","Qxd5","Nc3","Qa5","d4","e5","Nf3"]},
|
85
|
+
{"name":"Scandinavian, Anderssen counter-attack, Collijn variation","eco_code":"B01","moves":["e4","d5","exd5","Qxd5","Nc3","Qa5","d4","e5","Nf3","Bg4"]},
|
86
|
+
{"name":"Scandinavian, Mieses-Kotrvc gambit","eco_code":"B01","moves":["e4","d5","exd5","Qxd5","Nc3","Qa5","b4"]},
|
87
|
+
{"name":"Scandinavian, Pytel-Wade variation","eco_code":"B01","moves":["e4","d5","exd5","Qxd5","Nc3","Qd6"]},
|
88
|
+
{"name":"Scandinavian defence","eco_code":"B01","moves":["e4","d5","exd5","Nf6"]},
|
89
|
+
{"name":"Scandinavian, Icelandic gambit","eco_code":"B01","moves":["e4","d5","exd5","Nf6","c4","e6"]},
|
90
|
+
{"name":"Scandinavian gambit","eco_code":"B01","moves":["e4","d5","exd5","Nf6","c4","c6"]},
|
91
|
+
{"name":"Scandinavian defence","eco_code":"B01","moves":["e4","d5","exd5","Nf6","d4"]},
|
92
|
+
{"name":"Scandinavian, Marshall variation","eco_code":"B01","moves":["e4","d5","exd5","Nf6","d4","Nxd5"]},
|
93
|
+
{"name":"Scandinavian, Kiel variation","eco_code":"B01","moves":["e4","d5","exd5","Nf6","d4","Nxd5","c4","Nb4"]},
|
94
|
+
{"name":"Scandinavian, Richter variation","eco_code":"B01","moves":["e4","d5","exd5","Nf6","d4","g6"]},
|
95
|
+
{"name":"Robatsch (modern) defence","eco_code":"B06","moves":["e4","g6"]},
|
96
|
+
{"name":"Norwegian defence","eco_code":"B06","moves":["e4","g6","d4","Nf6","e5","Nh5","g4","Ng7"]},
|
97
|
+
{"name":"Robatsch (modern) defence","eco_code":"B06","moves":["e4","g6","d4","Bg7"]},
|
98
|
+
{"name":"Robatsch defence, three pawns attack","eco_code":"B06","moves":["e4","g6","d4","Bg7","f4"]},
|
99
|
+
{"name":"Robatsch defence","eco_code":"B06","moves":["e4","g6","d4","Bg7","Nc3"]},
|
100
|
+
{"name":"Robatsch defence, Gurgenidze variation","eco_code":"B06","moves":["e4","g6","d4","Bg7","Nc3","c6","f4","d5","e5","h5"]},
|
101
|
+
{"name":"Robatsch (modern) defence","eco_code":"B06","moves":["e4","g6","d4","Bg7","Nc3","d6"]},
|
102
|
+
{"name":"Robatsch defence, two knights variation","eco_code":"B06","moves":["e4","g6","d4","Bg7","Nc3","d6","Nf3"]},
|
103
|
+
{"name":"Robatsch defence, two knights, Suttles variation","eco_code":"B06","moves":["e4","g6","d4","Bg7","Nc3","d6","Nf3","c6"]},
|
104
|
+
{"name":"Robatsch defence, Pseudo-Austrian attack","eco_code":"B06","moves":["e4","g6","d4","Bg7","Nc3","d6","f4"]},
|
105
|
+
{"name":"King's pawn game","eco_code":"C20","moves":["e4","e5"]},
|
106
|
+
{"name":"KP, Indian opening","eco_code":"C20","moves":["e4","e5","d3"]},
|
107
|
+
{"name":"KP, Mengarini's opening","eco_code":"C20","moves":["e4","e5","a3"]},
|
108
|
+
{"name":"KP, King's head opening","eco_code":"C20","moves":["e4","e5","f3"]},
|
109
|
+
{"name":"KP, Patzer opening","eco_code":"C20","moves":["e4","e5","Qh5"]},
|
110
|
+
{"name":"KP, Napoleon's opening","eco_code":"C20","moves":["e4","e5","Qf3"]},
|
111
|
+
{"name":"KP, Lopez opening","eco_code":"C20","moves":["e4","e5","c3"]},
|
112
|
+
{"name":"Alapin's opening","eco_code":"C20","moves":["e4","e5","Ne2"]},
|
113
|
+
{"name":"King's knight opening","eco_code":"C40","moves":["e4","e5","Nf3"]},
|
114
|
+
{"name":"Gunderam defence","eco_code":"C40","moves":["e4","e5","Nf3","Qe7"]},
|
115
|
+
{"name":"Greco defence","eco_code":"C40","moves":["e4","e5","Nf3","Qf6"]},
|
116
|
+
{"name":"Damiano's defence","eco_code":"C40","moves":["e4","e5","Nf3","f6"]},
|
117
|
+
{"name":"QP counter-gambit (elephant gambit)","eco_code":"C40","moves":["e4","e5","Nf3","d5"]},
|
118
|
+
{"name":"QP counter-gambit, Maroczy gambit","eco_code":"C40","moves":["e4","e5","Nf3","d5","exd5","Bd6"]},
|
119
|
+
{"name":"Latvian counter-gambit","eco_code":"C40","moves":["e4","e5","Nf3","f5"]},
|
120
|
+
{"name":"Latvian, Nimzovich variation","eco_code":"C40","moves":["e4","e5","Nf3","f5","Nxe5","Qf6","d4","d6","Nc4","fxe4","Ne3"]},
|
121
|
+
{"name":"Latvian, Fraser defence","eco_code":"C40","moves":["e4","e5","Nf3","f5","Nxe5","Nc6"]},
|
122
|
+
{"name":"Latvian gambit, 3.Bc4","eco_code":"C40","moves":["e4","e5","Nf3","f5","Bc4"]},
|
123
|
+
{"name":"Latvian, Behting variation","eco_code":"C40","moves":["e4","e5","Nf3","f5","Bc4","fxe4","Nxe5","Qg5","Nf7","Qxg2","Rf1","d5","Nxh8","Nf6"]},
|
124
|
+
{"name":"Latvian, Polerio variation","eco_code":"C40","moves":["e4","e5","Nf3","f5","Bc4","fxe4","Nxe5","d5"]},
|
125
|
+
{"name":"Latvian, corkscrew counter-gambit","eco_code":"C40","moves":["e4","e5","Nf3","f5","Bc4","fxe4","Nxe5","Nf6"]},
|
126
|
+
{"name":"Philidor's defence","eco_code":"C41","moves":["e4","e5","Nf3","d6"]},
|
127
|
+
{"name":"Philidor, Steinitz variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","Bc4","Be7","c3"]},
|
128
|
+
{"name":"Philidor, Lopez counter-gambit","eco_code":"C41","moves":["e4","e5","Nf3","d6","Bc4","f5"]},
|
129
|
+
{"name":"Philidor, Lopez counter-gambit, Jaenisch variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","Bc4","f5","d4","exd4","Ng5","Nh6","Nxh7"]},
|
130
|
+
{"name":"Philidor's defence","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4"]},
|
131
|
+
{"name":"Philidor, Philidor counter-gambit","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","f5"]},
|
132
|
+
{"name":"Philidor, Philidor counter-gambit, del Rio attack","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","f5","dxe5","fxe4","Ng5","d5","e6"]},
|
133
|
+
{"name":"Philidor, Philidor counter-gambit, Berger variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","f5","dxe5","fxe4","Ng5","d5","e6","Bc5","Nc3"]},
|
134
|
+
{"name":"Philidor, Philidor counter-gambit, Zukertort variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","f5","Nc3"]},
|
135
|
+
{"name":"Philidor, exchange variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","exd4"]},
|
136
|
+
{"name":"Philidor, Boden variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","exd4","Qxd4","Bd7"]},
|
137
|
+
{"name":"Philidor, exchange variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","exd4","Nxd4"]},
|
138
|
+
{"name":"Philidor, Paulsen attack","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","exd4","Nxd4","d5","exd5"]},
|
139
|
+
{"name":"Philidor, exchange variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","exd4","Nxd4","Nf6"]},
|
140
|
+
{"name":"Philidor, Berger variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","exd4","Nxd4","Nf6","Nc3","Be7","Be2","O-O","O-O","c5","Nf3","Nc6","Bg5","Be6","Re1"]},
|
141
|
+
{"name":"Philidor, Larsen variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","exd4","Nxd4","g6"]},
|
142
|
+
{"name":"Philidor, Nimzovich (Jaenisch) variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","Nf6"]},
|
143
|
+
{"name":"Philidor, Improved Hanham variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","Nf6","Nc3","Nbd7"]},
|
144
|
+
{"name":"Philidor, Nimzovich, Sozin variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","Nf6","Nc3","Nbd7","Bc4","Be7","O-O","O-O","Qe2","c6","a4","exd4"]},
|
145
|
+
{"name":"Philidor, Nimzovich, Larobok variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","Nf6","Nc3","Nbd7","Bc4","Be7","Ng5","O-O","Bxf7+"]},
|
146
|
+
{"name":"Philidor, Nimzovich variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","Nf6","dxe5"]},
|
147
|
+
{"name":"Philidor, Nimzovich, Sokolsky variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","Nf6","dxe5","Nxe4","Nbd2"]},
|
148
|
+
{"name":"Philidor, Nimzovich, Rellstab variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","Nf6","dxe5","Nxe4","Qd5"]},
|
149
|
+
{"name":"Philidor, Nimzovich, Locock variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","Nf6","Ng5"]},
|
150
|
+
{"name":"Philidor, Nimzovich, Klein variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","Nf6","Bc4"]},
|
151
|
+
{"name":"Philidor, Hanham variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","Nd7"]},
|
152
|
+
{"name":"Philidor, Hanham, Krause variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","Nd7","Bc4","c6","O-O"]},
|
153
|
+
{"name":"Philidor, Hanham, Steiner variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","Nd7","Bc4","c6","O-O","Be7","dxe5"]},
|
154
|
+
{"name":"Philidor, Hanham, Kmoch variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","Nd7","Bc4","c6","Ng5"]},
|
155
|
+
{"name":"Philidor, Hanham, Berger variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","Nd7","Bc4","c6","Ng5","Nh6","f4","Be7","O-O","O-O","c3","d5"]},
|
156
|
+
{"name":"Philidor, Hanham, Schlechter variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","Nd7","Bc4","c6","Nc3"]},
|
157
|
+
{"name":"Philidor, Hanham, Delmar variation","eco_code":"C41","moves":["e4","e5","Nf3","d6","d4","Nd7","Bc4","c6","c3"]},
|
158
|
+
{"name":"King's pawn game","eco_code":"C44","moves":["e4","e5","Nf3","Nc6"]},
|
159
|
+
{"name":"Irish (Chicago) gambit","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","Nxe5","Nxe5","d4"]},
|
160
|
+
{"name":"Konstantinopolsky opening","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","g3"]},
|
161
|
+
{"name":"Dresden opening","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","c4"]},
|
162
|
+
{"name":"Inverted Hungarian","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","Be2"]},
|
163
|
+
{"name":"Inverted Hanham","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","Be2","Nf6","d3","d5","Nbd2"]},
|
164
|
+
{"name":"Tayler opening","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","Be2","Nf6","d4"]},
|
165
|
+
{"name":"Ponziani opening","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","c3"]},
|
166
|
+
{"name":"Ponziani, Caro variation","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","c3","d5","Qa4","Bd7"]},
|
167
|
+
{"name":"Ponziani, Leonhardt variation","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","c3","d5","Qa4","Nf6"]},
|
168
|
+
{"name":"Ponziani, Steinitz variation","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","c3","d5","Qa4","f6"]},
|
169
|
+
{"name":"Ponziani, Jaenisch counter-attack","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","c3","Nf6"]},
|
170
|
+
{"name":"Ponziani, Fraser defence","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","c3","Nf6","d4","Nxe4","d5","Bc5"]},
|
171
|
+
{"name":"Ponziani, Reti variation","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","c3","Nge7"]},
|
172
|
+
{"name":"Ponziani, Romanishin variation","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","c3","Be7"]},
|
173
|
+
{"name":"Ponziani counter-gambit","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","c3","f5"]},
|
174
|
+
{"name":"Ponziani counter-gambit, Schmidt attack","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","c3","f5","d4","d6","d5"]},
|
175
|
+
{"name":"Ponziani counter-gambit, Cordel variation","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","c3","f5","d4","d6","d5","fxe4","Ng5","Nb8","Nxe4","Nf6","Bd3","Be7"]},
|
176
|
+
{"name":"Scotch opening","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4"]},
|
177
|
+
{"name":"Scotch, Lolli variation","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4","Nxd4"]},
|
178
|
+
{"name":"Scotch, Cochrane variation","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4","Nxd4","Nxe5","Ne6","Bc4","c6","O-O","Nf6","Nxf7"]},
|
179
|
+
{"name":"Scotch, Relfsson gambit ('MacLopez')","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4","exd4","Bb5"]},
|
180
|
+
{"name":"Scotch, Goering gambit","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4","exd4","c3"]},
|
181
|
+
{"name":"Scotch, Sea-cadet mate","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4","exd4","c3","dxc3","Nxc3","d6","Bc4","Bg4","O-O","Ne5","Nxe5","Bxd1","Bxf7+","Ke7","Nd5+"]},
|
182
|
+
{"name":"Scotch, Goering gambit","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4","exd4","c3","dxc3","Nxc3","Bb4"]},
|
183
|
+
{"name":"Scotch, Goering gambit, Bardeleben variation","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4","exd4","c3","dxc3","Nxc3","Bb4","Bc4","Nf6"]},
|
184
|
+
{"name":"Scotch gambit","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4","exd4","Bc4"]},
|
185
|
+
{"name":"Scotch gambit, Anderssen (Paulsen, Suhle) counter-attack","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4","exd4","Bc4","Bc5","O-O","d6","c3","Bg4"]},
|
186
|
+
{"name":"Scotch gambit","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4","exd4","Bc4","Bc5","Ng5"]},
|
187
|
+
{"name":"Scotch gambit, Cochrane-Shumov defence","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4","exd4","Bc4","Bc5","Ng5","Nh6","Nxf7","Nxf7","Bxf7+","Kxf7","Qh5+","g6","Qxc5","d5"]},
|
188
|
+
{"name":"Scotch gambit, Vitzhum attack","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4","exd4","Bc4","Bc5","Ng5","Nh6","Qh5"]},
|
189
|
+
{"name":"Scotch gambit","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4","exd4","Bc4","Bb4+"]},
|
190
|
+
{"name":"Scotch gambit, Hanneken variation","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4","exd4","Bc4","Bb4+","c3","dxc3","O-O","cxb2","Bxb2","Nf6","Ng5","O-O","e5","Nxe5"]},
|
191
|
+
{"name":"Scotch gambit","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4","exd4","Bc4","Bb4+","c3","dxc3","bxc3"]},
|
192
|
+
{"name":"Scotch gambit, Cochrane variation","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4","exd4","Bc4","Bb4+","c3","dxc3","bxc3","Ba5","e5"]},
|
193
|
+
{"name":"Scotch gambit, Benima defence","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4","exd4","Bc4","Be7"]},
|
194
|
+
{"name":"Scotch gambit, Dubois-Reti defence","eco_code":"C44","moves":["e4","e5","Nf3","Nc6","d4","exd4","Bc4","Nf6"]},
|
195
|
+
{"name":"Scotch game","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4"]},
|
196
|
+
{"name":"Scotch, Ghulam Kassim variation","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Nxd4","Qxd4","d6","Bd3"]},
|
197
|
+
{"name":"Scotch, Pulling counter-attack","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Qh4"]},
|
198
|
+
{"name":"Scotch, Horwitz attack","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Qh4","Nb5"]},
|
199
|
+
{"name":"Scotch, Berger variation","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Qh4","Nb5","Bb4+","Nd2","Qxe4+","Be2","Qxg2","Bf3","Qh3","Nxc7+","Kd8","Nxa8","Nf6","a3"]},
|
200
|
+
{"name":"Scotch game","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Qh4","Nb5","Bb4+","Bd2"]},
|
201
|
+
{"name":"Scotch, Rosenthal variation","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Qh4","Nb5","Bb4+","Bd2","Qxe4+","Be2","Kd8","O-O","Bxd2","Nxd2","Qg6"]},
|
202
|
+
{"name":"Scotch, Fraser attack","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Qh4","Nf3"]},
|
203
|
+
{"name":"Scotch, Steinitz variation","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Qh4","Nc3"]},
|
204
|
+
{"name":"Scotch, Schmidt variation","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Nf6"]},
|
205
|
+
{"name":"Scotch, Mieses variation","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Nf6","Nxc6","bxc6","e5"]},
|
206
|
+
{"name":"Scotch, Tartakower variation","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Nf6","Nxc6","bxc6","Nd2"]},
|
207
|
+
{"name":"Scotch game","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Bc5"]},
|
208
|
+
{"name":"Scotch, Blackburne attack","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Bc5","Be3","Qf6","c3","Nge7","Qd2"]},
|
209
|
+
{"name":"Scotch, Gottschall variation","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Bc5","Be3","Qf6","c3","Nge7","Qd2","d5","Nb5","Bxe3","Qxe3","O-O","Nxc7","Rb8","Nxd5","Nxd5","exd5","Nb4"]},
|
210
|
+
{"name":"Scotch, Paulsen attack","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Bc5","Be3","Qf6","c3","Nge7","Bb5"]},
|
211
|
+
{"name":"Scotch, Paulsen, Gunsberg defence","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Bc5","Be3","Qf6","c3","Nge7","Bb5","Nd8"]},
|
212
|
+
{"name":"Scotch, Meitner variation","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Bc5","Be3","Qf6","c3","Nge7","Nc2"]},
|
213
|
+
{"name":"Scotch, Blumenfeld attack","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Bc5","Be3","Qf6","Nb5"]},
|
214
|
+
{"name":"Scotch, Potter variation","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Bc5","Nb3"]},
|
215
|
+
{"name":"Scotch, Romanishin variation","eco_code":"C45","moves":["e4","e5","Nf3","Nc6","d4","exd4","Nxd4","Bc5","Nb3","Bb4+"]},
|
216
|
+
{"name":"Three knights game","eco_code":"C46","moves":["e4","e5","Nf3","Nc6","Nc3"]},
|
217
|
+
{"name":"Three knights, Schlechter variation","eco_code":"C46","moves":["e4","e5","Nf3","Nc6","Nc3","Bb4","Nd5","Nf6"]},
|
218
|
+
{"name":"Three knights, Winawer defence (Gothic defence)","eco_code":"C46","moves":["e4","e5","Nf3","Nc6","Nc3","f5"]},
|
219
|
+
{"name":"Three knights, Steinitz variation","eco_code":"C46","moves":["e4","e5","Nf3","Nc6","Nc3","g6"]},
|
220
|
+
{"name":"Three knights, Steinitz, Rosenthal variation","eco_code":"C46","moves":["e4","e5","Nf3","Nc6","Nc3","g6","d4","exd4","Nd5"]},
|
221
|
+
{"name":"Four knights game","eco_code":"C46","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6"]},
|
222
|
+
{"name":"Four knights, Schultze-Mueller gambit","eco_code":"C46","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Nxe5"]},
|
223
|
+
{"name":"Four knights, Italian variation","eco_code":"C46","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bc4"]},
|
224
|
+
{"name":"Four knights, Gunsberg variation","eco_code":"C46","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","a3"]},
|
225
|
+
{"name":"King's pawn game","eco_code":"C50","moves":["e4","e5","Nf3","Nc6","Bc4"]},
|
226
|
+
{"name":"Blackburne shilling gambit","eco_code":"C50","moves":["e4","e5","Nf3","Nc6","Bc4","Nd4","Nxe5","Qg5","Nxf7","Qxg2","Rf1","Qxe4+","Be2","Nf3+"]},
|
227
|
+
{"name":"Rousseau gambit","eco_code":"C50","moves":["e4","e5","Nf3","Nc6","Bc4","f5"]},
|
228
|
+
{"name":"Hungarian defence","eco_code":"C50","moves":["e4","e5","Nf3","Nc6","Bc4","Be7"]},
|
229
|
+
{"name":"Hungarian defence, Tartakower variation","eco_code":"C50","moves":["e4","e5","Nf3","Nc6","Bc4","Be7","d4","exd4","c3","Nf6","e5","Ne4"]},
|
230
|
+
{"name":"Giuoco Piano","eco_code":"C50","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5"]},
|
231
|
+
{"name":"Giuoco Piano, four knights variation","eco_code":"C50","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","Nc3","Nf6"]},
|
232
|
+
{"name":"Giuoco Piano, Jerome gambit","eco_code":"C50","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","Bxf7+"]},
|
233
|
+
{"name":"Giuoco Pianissimo","eco_code":"C50","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","d3"]},
|
234
|
+
{"name":"Giuoco Pianissimo, Dubois variation","eco_code":"C50","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","d3","f5","Ng5","f4"]},
|
235
|
+
{"name":"Giuoco Pianissimo","eco_code":"C50","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","d3","Nf6"]},
|
236
|
+
{"name":"Giuoco Pianissimo, Italian four knights variation","eco_code":"C50","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","d3","Nf6","Nc3"]},
|
237
|
+
{"name":"Giuoco Pianissimo, Canal variation","eco_code":"C50","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","d3","Nf6","Nc3","d6","Bg5"]},
|
238
|
+
{"name":"Queen's pawn game","eco_code":"D00","moves":["d4","d5"]},
|
239
|
+
{"name":"Queen's pawn, Mason variation","eco_code":"D00","moves":["d4","d5","Bf4"]},
|
240
|
+
{"name":"Queen's pawn, Mason variation, Steinitz counter-gambit","eco_code":"D00","moves":["d4","d5","Bf4","c5"]},
|
241
|
+
{"name":"Levitsky attack (Queen's bishop attack)","eco_code":"D00","moves":["d4","d5","Bg5"]},
|
242
|
+
{"name":"Blackmar gambit","eco_code":"D00","moves":["d4","d5","e4"]},
|
243
|
+
{"name":"Queen's pawn, stonewall attack","eco_code":"D00","moves":["d4","d5","e3","Nf6","Bd3"]},
|
244
|
+
{"name":"Queen's pawn, Chigorin variation","eco_code":"D00","moves":["d4","d5","Nc3"]},
|
245
|
+
{"name":"Queen's pawn, Anti-Veresov","eco_code":"D00","moves":["d4","d5","Nc3","Bg4"]},
|
246
|
+
{"name":"Blackmar-Diemer gambit","eco_code":"D00","moves":["d4","d5","Nc3","Nf6","e4"]},
|
247
|
+
{"name":"Blackmar-Diemer, Euwe defence","eco_code":"D00","moves":["d4","d5","Nc3","Nf6","e4","dxe4","f3","exf3","Nxf3","e6"]},
|
248
|
+
{"name":"Blackmar-Diemer, Lemberg counter-gambit","eco_code":"D00","moves":["d4","d5","Nc3","Nf6","e4","e5"]},
|
249
|
+
{"name":"Richter-Veresov attack","eco_code":"D01","moves":["d4","d5","Nc3","Nf6","Bg5"]},
|
250
|
+
{"name":"Richter-Veresov attack, Veresov variation","eco_code":"D01","moves":["d4","d5","Nc3","Nf6","Bg5","Bf5","Bxf6"]},
|
251
|
+
{"name":"Richter-Veresov attack, Richter variation","eco_code":"D01","moves":["d4","d5","Nc3","Nf6","Bg5","Bf5","f3"]},
|
252
|
+
{"name":"Queen's pawn game","eco_code":"D02","moves":["d4","d5","Nf3"]},
|
253
|
+
{"name":"Queen's pawn game, Chigorin variation","eco_code":"D02","moves":["d4","d5","Nf3","Nc6"]},
|
254
|
+
{"name":"Queen's pawn game, Krause variation","eco_code":"D02","moves":["d4","d5","Nf3","c5"]},
|
255
|
+
{"name":"Queen's pawn game","eco_code":"D02","moves":["d4","d5","Nf3","Nf6"]},
|
256
|
+
{"name":"Queen's bishop game","eco_code":"D02","moves":["d4","d5","Nf3","Nf6","Bf4"]},
|
257
|
+
{"name":"Torre attack (Tartakower variation)","eco_code":"D03","moves":["d4","d5","Nf3","Nf6","Bg5"]},
|
258
|
+
{"name":"Queen's Gambit","eco_code":"D06","moves":["d4","d5","c4"]},
|
259
|
+
{"name":"Queen's Gambit Declined, Grau (Sahovic) defence","eco_code":"D06","moves":["d4","d5","c4","Bf5"]},
|
260
|
+
{"name":"Queen's Gambit Declined, Marshall defence","eco_code":"D06","moves":["d4","d5","c4","Nf6"]},
|
261
|
+
{"name":"Queen's Gambit Declined, symmetrical (Austrian) defence","eco_code":"D06","moves":["d4","d5","c4","c5"]},
|
262
|
+
{"name":"Queen's Gambit Declined Slav accepted, Alapin variation","eco_code":"D16","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","dxc4","a4"]},
|
263
|
+
{"name":"Queen's Gambit Declined Slav, Smyslov variation","eco_code":"D16","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","dxc4","a4","Na6","e4","Bg4"]},
|
264
|
+
{"name":"Queen's Gambit Declined Slav, Soultanbeieff variation","eco_code":"D16","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","dxc4","a4","e6"]},
|
265
|
+
{"name":"Queen's Gambit Declined Slav, Steiner variation","eco_code":"D16","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","dxc4","a4","Bg4"]},
|
266
|
+
{"name":"Queen's pawn game","eco_code":"E00","moves":["d4","Nf6","c4","e6"]},
|
267
|
+
{"name":"Neo-Indian (Seirawan) attack","eco_code":"E00","moves":["d4","Nf6","c4","e6","Bg5"]},
|
268
|
+
{"name":"Catalan opening","eco_code":"E00","moves":["d4","Nf6","c4","e6","g3"]},
|
269
|
+
{"name":"Queen's pawn game","eco_code":"E10","moves":["d4","Nf6","c4","e6","Nf3"]},
|
270
|
+
{"name":"Blumenfeld counter-gambit","eco_code":"E10","moves":["d4","Nf6","c4","e6","Nf3","c5","d5","b5"]},
|
271
|
+
{"name":"Blumenfeld counter-gambit accepted","eco_code":"E10","moves":["d4","Nf6","c4","e6","Nf3","c5","d5","b5","dxe6","fxe6","cxb5","d5"]},
|
272
|
+
{"name":"Blumenfeld counter-gambit, Dus-Chotimursky variation","eco_code":"E10","moves":["d4","Nf6","c4","e6","Nf3","c5","d5","b5","Bg5"]},
|
273
|
+
{"name":"Blumenfeld counter-gambit, Spielmann variation","eco_code":"E10","moves":["d4","Nf6","c4","e6","Nf3","c5","d5","b5","Bg5","exd5","cxd5","h6"]},
|
274
|
+
{"name":"Dzindzikhashvili defence","eco_code":"E10","moves":["d4","Nf6","c4","e6","Nf3","a6"]},
|
275
|
+
{"name":"Doery defence","eco_code":"E10","moves":["d4","Nf6","c4","e6","Nf3","Ne4"]},
|
276
|
+
{"name":"Bogo-Indian defence","eco_code":"E11","moves":["d4","Nf6","c4","e6","Nf3","Bb4+"]},
|
277
|
+
{"name":"Bogo-Indian defence, Gruenfeld variation","eco_code":"E11","moves":["d4","Nf6","c4","e6","Nf3","Bb4+","Nbd2"]},
|
278
|
+
{"name":"Bogo-Indian defence, Nimzovich variation","eco_code":"E11","moves":["d4","Nf6","c4","e6","Nf3","Bb4+","Bd2","Qe7"]},
|
279
|
+
{"name":"Bogo-Indian defence, Monticelli trap","eco_code":"E11","moves":["d4","Nf6","c4","e6","Nf3","Bb4+","Bd2","Bxd2+","Qxd2","b6","g3","Bb7","Bg2","O-O","Nc3","Ne4","Qc2","Nxc3","Ng5"]},
|
280
|
+
{"name":"Bird's opening","eco_code":"A02","moves":["f4"]},
|
281
|
+
{"name":"Bird, From gambit","eco_code":"A02","moves":["f4","e5"]},
|
282
|
+
{"name":"Bird, From gambit, Lasker variation","eco_code":"A02","moves":["f4","e5","fxe5","d6","exd6","Bxd6","Nf3","g5"]},
|
283
|
+
{"name":"Bird, From gambit, Lipke variation","eco_code":"A02","moves":["f4","e5","fxe5","d6","exd6","Bxd6","Nf3","Nh6","d4"]},
|
284
|
+
{"name":"Bird's opening, Swiss gambit","eco_code":"A02","moves":["f4","f5","e4","fxe4","Nc3","Nf6","g4"]},
|
285
|
+
{"name":"Bird, Hobbs gambit","eco_code":"A02","moves":["f4","g5"]},
|
286
|
+
{"name":"Bird's opening","eco_code":"A03","moves":["f4","d5"]},
|
287
|
+
{"name":"Mujannah opening","eco_code":"A03","moves":["f4","d5","c4"]},
|
288
|
+
{"name":"Bird's opening, Williams gambit","eco_code":"A03","moves":["f4","d5","e4"]},
|
289
|
+
{"name":"Bird's opening, Lasker variation","eco_code":"A03","moves":["f4","d5","Nf3","Nf6","e3","c5"]},
|
290
|
+
{"name":"Reti opening","eco_code":"A04","moves":["Nf3"]},
|
291
|
+
{"name":"Reti v Dutch","eco_code":"A04","moves":["Nf3","f5"]},
|
292
|
+
{"name":"Reti, Pirc-Lisitsin gambit","eco_code":"A04","moves":["Nf3","f5","e4"]},
|
293
|
+
{"name":"Reti, Lisitsin gambit deferred","eco_code":"A04","moves":["Nf3","f5","d3","Nf6","e4"]},
|
294
|
+
{"name":"Reti opening","eco_code":"A04","moves":["Nf3","d6"]},
|
295
|
+
{"name":"Reti, Wade defence","eco_code":"A04","moves":["Nf3","d6","e4","Bg4"]},
|
296
|
+
{"name":"Reti, Herrstroem gambit","eco_code":"A04","moves":["Nf3","g5"]},
|
297
|
+
{"name":"Reti opening","eco_code":"A05","moves":["Nf3","Nf6"]},
|
298
|
+
{"name":"Reti, King's Indian attack, Spassky's variation","eco_code":"A05","moves":["Nf3","Nf6","g3","b5"]},
|
299
|
+
{"name":"Reti, King's Indian attack","eco_code":"A05","moves":["Nf3","Nf6","g3","g6"]},
|
300
|
+
{"name":"Reti, King's Indian attack, Reti-Smyslov variation","eco_code":"A05","moves":["Nf3","Nf6","g3","g6","b4"]},
|
301
|
+
{"name":"Reti opening","eco_code":"A06","moves":["Nf3","d5"]},
|
302
|
+
{"name":"Reti, old Indian attack","eco_code":"A06","moves":["Nf3","d5","d3"]},
|
303
|
+
{"name":"Santasiere's folly","eco_code":"A06","moves":["Nf3","d5","b4"]},
|
304
|
+
{"name":"Tennison (Lemberg, Zukertort) gambit","eco_code":"A06","moves":["Nf3","d5","e4"]},
|
305
|
+
{"name":"Reti, Nimzovich-Larsen attack","eco_code":"A06","moves":["Nf3","d5","b3"]},
|
306
|
+
{"name":"Reti, King's Indian attack (Barcza system)","eco_code":"A07","moves":["Nf3","d5","g3"]},
|
307
|
+
{"name":"Reti, King's Indian attack, Yugoslav variation","eco_code":"A07","moves":["Nf3","d5","g3","Nf6","Bg2","c6","O-O","Bg4"]},
|
308
|
+
{"name":"Reti, King's Indian attack, Keres variation","eco_code":"A07","moves":["Nf3","d5","g3","Bg4","Bg2","Nd7"]},
|
309
|
+
{"name":"Reti, King's Indian attack","eco_code":"A07","moves":["Nf3","d5","g3","g6"]},
|
310
|
+
{"name":"Reti, King's Indian attack, Pachman system","eco_code":"A07","moves":["Nf3","d5","g3","g6","Bg2","Bg7","O-O","e5","d3","Ne7"]},
|
311
|
+
{"name":"Reti, King's Indian attack (with ...c5)","eco_code":"A07","moves":["Nf3","d5","g3","c5"]},
|
312
|
+
{"name":"Reti, King's Indian attack","eco_code":"A08","moves":["Nf3","d5","g3","c5","Bg2"]},
|
313
|
+
{"name":"Reti, King's Indian attack, French variation","eco_code":"A08","moves":["Nf3","d5","g3","c5","Bg2","Nc6","O-O","e6","d3","Nf6","Nbd2","Be7","e4","O-O","Re1"]},
|
314
|
+
{"name":"Reti opening","eco_code":"A09","moves":["Nf3","d5","c4"]},
|
315
|
+
{"name":"Reti, advance variation","eco_code":"A09","moves":["Nf3","d5","c4","d4"]},
|
316
|
+
{"name":"Reti accepted","eco_code":"A09","moves":["Nf3","d5","c4","dxc4"]},
|
317
|
+
{"name":"Reti accepted, Keres variation","eco_code":"A09","moves":["Nf3","d5","c4","dxc4","e3","Be6"]},
|
318
|
+
{"name":"English opening","eco_code":"A10","moves":["c4"]},
|
319
|
+
{"name":"English opening","eco_code":"A10","moves":["c4","g6"]},
|
320
|
+
{"name":"English, Adorjan defence","eco_code":"A10","moves":["c4","g6","e4","e5"]},
|
321
|
+
{"name":"English, Jaenisch gambit","eco_code":"A10","moves":["c4","b5"]},
|
322
|
+
{"name":"English, Anglo-Dutch defense","eco_code":"A10","moves":["c4","f5"]},
|
323
|
+
{"name":"English opening","eco_code":"A13","moves":["c4","e6"]},
|
324
|
+
{"name":"English, Romanishin gambit","eco_code":"A13","moves":["c4","e6","Nf3","Nf6","g3","a6","Bg2","b5"]},
|
325
|
+
{"name":"English opening, Agincourt variation","eco_code":"A13","moves":["c4","e6","Nf3","d5"]},
|
326
|
+
{"name":"English, Wimpey system","eco_code":"A13","moves":["c4","e6","Nf3","d5","b3","Nf6","Bb2","c5","e3"]},
|
327
|
+
{"name":"English opening, Agincourt variation","eco_code":"A13","moves":["c4","e6","Nf3","d5","g3"]},
|
328
|
+
{"name":"English, Kurajica defence","eco_code":"A13","moves":["c4","e6","Nf3","d5","g3","c6"]},
|
329
|
+
{"name":"English, Neo-Catalan","eco_code":"A13","moves":["c4","e6","Nf3","d5","g3","Nf6"]},
|
330
|
+
{"name":"English, Neo-Catalan accepted","eco_code":"A13","moves":["c4","e6","Nf3","d5","g3","Nf6","Bg2","dxc4"]},
|
331
|
+
{"name":"English, Neo-Catalan declined","eco_code":"A14","moves":["c4","e6","Nf3","d5","g3","Nf6","Bg2","Be7","O-O"]},
|
332
|
+
{"name":"English, Symmetrical, Keres defence","eco_code":"A14","moves":["c4","e6","Nf3","d5","g3","Nf6","Bg2","Be7","O-O","c5","cxd5","Nxd5","Nc3","Nc6"]},
|
333
|
+
{"name":"English, 1...Nf6 (Anglo-Indian defense)","eco_code":"A15","moves":["c4","Nf6"]},
|
334
|
+
{"name":"English orang-utan","eco_code":"A15","moves":["c4","Nf6","b4"]},
|
335
|
+
{"name":"English opening","eco_code":"A15","moves":["c4","Nf6","Nf3"]},
|
336
|
+
{"name":"English opening","eco_code":"A16","moves":["c4","Nf6","Nc3"]},
|
337
|
+
{"name":"English, Anglo-Gruenfeld defense","eco_code":"A16","moves":["c4","Nf6","Nc3","d5"]},
|
338
|
+
{"name":"English, Anglo-Gruenfeld, Smyslov defense","eco_code":"A16","moves":["c4","Nf6","Nc3","d5","cxd5","Nxd5","g3","g6","Bg2","Nxc3"]},
|
339
|
+
{"name":"English, Anglo-Gruenfeld, Czech defense","eco_code":"A16","moves":["c4","Nf6","Nc3","d5","cxd5","Nxd5","g3","g6","Bg2","Nb6"]},
|
340
|
+
{"name":"English, Anglo-Gruenfeld defense","eco_code":"A16","moves":["c4","Nf6","Nc3","d5","cxd5","Nxd5","Nf3"]},
|
341
|
+
{"name":"English, Anglo-Gruenfeld defense, Korchnoi variation","eco_code":"A16","moves":["c4","Nf6","Nc3","d5","cxd5","Nxd5","Nf3","g6","g3","Bg7","Bg2","e5"]},
|
342
|
+
{"name":"English opening","eco_code":"A17","moves":["c4","Nf6","Nc3","e6"]},
|
343
|
+
{"name":"English, Queens Indian formation","eco_code":"A17","moves":["c4","Nf6","Nc3","e6","Nf3","b6"]},
|
344
|
+
{"name":"English, Queens Indian, Romanishin variation","eco_code":"A17","moves":["c4","Nf6","Nc3","e6","Nf3","b6","e4","Bb7","Bd3"]},
|
345
|
+
{"name":"English, Nimzo-English opening","eco_code":"A17","moves":["c4","Nf6","Nc3","e6","Nf3","Bb4"]},
|
346
|
+
{"name":"English opening","eco_code":"A20","moves":["c4","e5"]},
|
347
|
+
{"name":"English, Nimzovich variation","eco_code":"A20","moves":["c4","e5","Nf3"]},
|
348
|
+
{"name":"English, Nimzovich, Flohr variation","eco_code":"A20","moves":["c4","e5","Nf3","e4"]},
|
349
|
+
{"name":"English opening","eco_code":"A21","moves":["c4","e5","Nc3"]},
|
350
|
+
{"name":"English, Troeger defence","eco_code":"A21","moves":["c4","e5","Nc3","d6","g3","Be6","Bg2","Nc6"]},
|
351
|
+
{"name":"English, Keres variation","eco_code":"A21","moves":["c4","e5","Nc3","d6","g3","c6"]},
|
352
|
+
{"name":"English opening","eco_code":"A21","moves":["c4","e5","Nc3","d6","Nf3"]},
|
353
|
+
{"name":"English, Smyslov defence","eco_code":"A21","moves":["c4","e5","Nc3","d6","Nf3","Bg4"]},
|
354
|
+
{"name":"English, Kramnik-Shirov counterattack","eco_code":"A21","moves":["c4","e5","Nc3","Bb4"]},
|
355
|
+
{"name":"English opening","eco_code":"A22","moves":["c4","e5","Nc3","Nf6"]},
|
356
|
+
{"name":"English, Bellon gambit","eco_code":"A22","moves":["c4","e5","Nc3","Nf6","Nf3","e4","Ng5","b5"]},
|
357
|
+
{"name":"English, Carls' Bremen system","eco_code":"A22","moves":["c4","e5","Nc3","Nf6","g3"]},
|
358
|
+
{"name":"English, Bremen, reverse dragon","eco_code":"A22","moves":["c4","e5","Nc3","Nf6","g3","d5"]},
|
359
|
+
{"name":"English, Bremen, Smyslov system","eco_code":"A22","moves":["c4","e5","Nc3","Nf6","g3","Bb4"]},
|
360
|
+
{"name":"English, Sicilian reversed","eco_code":"A25","moves":["c4","e5","Nc3","Nc6"]},
|
361
|
+
{"name":"English, closed system","eco_code":"A25","moves":["c4","e5","Nc3","Nc6","g3","g6","Bg2","Bg7"]},
|
362
|
+
{"name":"English, closed, Taimanov variation","eco_code":"A25","moves":["c4","e5","Nc3","Nc6","g3","g6","Bg2","Bg7","e3","d6","Nge2","Nh6"]},
|
363
|
+
{"name":"English, closed, Hort variation","eco_code":"A25","moves":["c4","e5","Nc3","Nc6","g3","g6","Bg2","Bg7","e3","d6","Nge2","Be6"]},
|
364
|
+
{"name":"English, closed, 5.Rb1","eco_code":"A25","moves":["c4","e5","Nc3","Nc6","g3","g6","Bg2","Bg7","Rb1"]},
|
365
|
+
{"name":"English, closed, 5.Rb1 Taimanov variation","eco_code":"A25","moves":["c4","e5","Nc3","Nc6","g3","g6","Bg2","Bg7","Rb1","Nh6"]},
|
366
|
+
{"name":"English, closed system (without ...d6)","eco_code":"A25","moves":["c4","e5","Nc3","Nc6","g3","g6","Bg2","Bg7","d3"]},
|
367
|
+
{"name":"English, closed system","eco_code":"A26","moves":["c4","e5","Nc3","Nc6","g3","g6","Bg2","Bg7","d3","d6"]},
|
368
|
+
{"name":"English, Botvinnik system","eco_code":"A26","moves":["c4","e5","Nc3","Nc6","g3","g6","Bg2","Bg7","d3","d6","e4"]},
|
369
|
+
{"name":"English, three knights system","eco_code":"A27","moves":["c4","e5","Nc3","Nc6","Nf3"]},
|
370
|
+
{"name":"Queen's pawn","eco_code":"A40","moves":["d4"]},
|
371
|
+
{"name":"Queen's pawn, Lundin (Kevitz-Mikenas) defence","eco_code":"A40","moves":["d4","Nc6"]},
|
372
|
+
{"name":"Queen's pawn, Charlick (Englund) gambit","eco_code":"A40","moves":["d4","e5"]},
|
373
|
+
{"name":"Queen's pawn, Englund gambit","eco_code":"A40","moves":["d4","e5","dxe5","Nc6","Nf3","Qe7","Qd5","f6","exf6","Nxf6"]},
|
374
|
+
{"name":"Queen's pawn, English defence","eco_code":"A40","moves":["d4","b6"]},
|
375
|
+
{"name":"Polish defence","eco_code":"A40","moves":["d4","b5"]},
|
376
|
+
{"name":"Queen's pawn","eco_code":"A40","moves":["d4","e6"]},
|
377
|
+
{"name":"Queen's pawn, Keres defence","eco_code":"A40","moves":["d4","e6","c4","b6"]},
|
378
|
+
{"name":"Queen's pawn, Franco-Indian (Keres) defence","eco_code":"A40","moves":["d4","e6","c4","Bb4+"]},
|
379
|
+
{"name":"Modern defence","eco_code":"A40","moves":["d4","g6"]},
|
380
|
+
{"name":"Beefeater defence","eco_code":"A40","moves":["d4","g6","c4","Bg7","Nc3","c5","d5","Bxc3+","bxc3","f5"]},
|
381
|
+
{"name":"Queen's Pawn","eco_code":"A41","moves":["d4","d6"]},
|
382
|
+
{"name":"Old Indian, Tartakower (Wade) variation","eco_code":"A41","moves":["d4","d6","Nf3","Bg4"]},
|
383
|
+
{"name":"Old Indian defence","eco_code":"A41","moves":["d4","d6","c4"]},
|
384
|
+
{"name":"Modern defence","eco_code":"A41","moves":["d4","d6","c4","g6","Nc3","Bg7"]},
|
385
|
+
{"name":"Robatsch defence, Rossolimo variation","eco_code":"A41","moves":["e4","g6","d4","Bg7","Nf3","d6","c4","Bg4"]},
|
386
|
+
{"name":"Old Benoni defence","eco_code":"A43","moves":["d4","c5"]},
|
387
|
+
{"name":"Old Benoni, Franco-Benoni defence","eco_code":"A43","moves":["d4","c5","d5","e6","e4"]},
|
388
|
+
{"name":"Old Benoni, Mujannah formation","eco_code":"A43","moves":["d4","c5","d5","f5"]},
|
389
|
+
{"name":"Old Benoni defence","eco_code":"A43","moves":["d4","c5","d5","Nf6"]},
|
390
|
+
{"name":"Woozle defence","eco_code":"A43","moves":["d4","c5","d5","Nf6","Nc3","Qa5"]},
|
391
|
+
{"name":"Old Benoni defence","eco_code":"A43","moves":["d4","c5","d5","Nf6","Nf3"]},
|
392
|
+
{"name":"Hawk (Habichd) defence","eco_code":"A43","moves":["d4","c5","d5","Nf6","Nf3","c4"]},
|
393
|
+
{"name":"Old Benoni defence","eco_code":"A43","moves":["d4","c5","d5","d6"]},
|
394
|
+
{"name":"Old Benoni, Schmid's system","eco_code":"A43","moves":["d4","c5","d5","d6","Nc3","g6"]},
|
395
|
+
{"name":"Old Benoni defence","eco_code":"A44","moves":["d4","c5","d5","e5"]},
|
396
|
+
{"name":"Semi-Benoni (`blockade variation')","eco_code":"A44","moves":["d4","c5","d5","e5","e4","d6"]},
|
397
|
+
{"name":"Queen's pawn game","eco_code":"A45","moves":["d4","Nf6"]},
|
398
|
+
{"name":"Queen's pawn, Bronstein gambit","eco_code":"A45","moves":["d4","Nf6","g4"]},
|
399
|
+
{"name":"Canard opening","eco_code":"A45","moves":["d4","Nf6","f4"]},
|
400
|
+
{"name":"Paleface attack","eco_code":"A45","moves":["d4","Nf6","f3"]},
|
401
|
+
{"name":"Blackmar-Diemer gambit","eco_code":"A45","moves":["d4","Nf6","f3","d5","e4"]},
|
402
|
+
{"name":"Gedult attack","eco_code":"A45","moves":["d4","Nf6","f3","d5","g4"]},
|
403
|
+
{"name":"Trompovsky attack (Ruth, Opovcensky opening)","eco_code":"A45","moves":["d4","Nf6","Bg5"]},
|
404
|
+
{"name":"Queen's pawn game","eco_code":"A46","moves":["d4","Nf6","Nf3"]},
|
405
|
+
{"name":"Queen's pawn, Torre attack","eco_code":"A46","moves":["d4","Nf6","Nf3","e6","Bg5"]},
|
406
|
+
{"name":"Queen's pawn, Torre attack, Wagner gambit","eco_code":"A46","moves":["d4","Nf6","Nf3","e6","Bg5","c5","e4"]},
|
407
|
+
{"name":"Queen's pawn, Yusupov-Rubinstein system","eco_code":"A46","moves":["d4","Nf6","Nf3","e6","e3"]},
|
408
|
+
{"name":"Doery defence","eco_code":"A46","moves":["d4","Nf6","Nf3","Ne4"]},
|
409
|
+
{"name":"King's Indian, East Indian defence","eco_code":"A48","moves":["d4","Nf6","Nf3","g6"]},
|
410
|
+
{"name":"King's Indian, Torre attack","eco_code":"A48","moves":["d4","Nf6","Nf3","g6","Bg5"]},
|
411
|
+
{"name":"King's Indian, London system","eco_code":"A48","moves":["d4","Nf6","Nf3","g6","Bf4"]},
|
412
|
+
{"name":"King's Indian, fianchetto without c4","eco_code":"A49","moves":["d4","Nf6","Nf3","g6","g3"]},
|
413
|
+
{"name":"Budapest defence declined","eco_code":"A51","moves":["d4","Nf6","c4","e5"]},
|
414
|
+
{"name":"Budapest, Fajarowicz variation","eco_code":"A51","moves":["d4","Nf6","c4","e5","dxe5","Ne4"]},
|
415
|
+
{"name":"Budapest, Fajarowicz, Steiner variation","eco_code":"A51","moves":["d4","Nf6","c4","e5","dxe5","Ne4","Qc2"]},
|
416
|
+
{"name":"Budapest defence","eco_code":"A52","moves":["d4","Nf6","c4","e5","dxe5","Ng4"]},
|
417
|
+
{"name":"Budapest, Adler variation","eco_code":"A52","moves":["d4","Nf6","c4","e5","dxe5","Ng4","Nf3"]},
|
418
|
+
{"name":"Budapest, Rubinstein variation","eco_code":"A52","moves":["d4","Nf6","c4","e5","dxe5","Ng4","Bf4"]},
|
419
|
+
{"name":"Budapest, Alekhine variation","eco_code":"A52","moves":["d4","Nf6","c4","e5","dxe5","Ng4","e4"]},
|
420
|
+
{"name":"Budapest, Alekhine, Abonyi variation","eco_code":"A52","moves":["d4","Nf6","c4","e5","dxe5","Ng4","e4","Nxe5","f4","Nec6"]},
|
421
|
+
{"name":"Budapest, Alekhine variation, Balogh gambit","eco_code":"A52","moves":["d4","Nf6","c4","e5","dxe5","Ng4","e4","d6"]},
|
422
|
+
{"name":"Old Indian defence","eco_code":"A53","moves":["d4","Nf6","c4","d6"]},
|
423
|
+
{"name":"Old Indian, Janowski variation","eco_code":"A53","moves":["d4","Nf6","c4","d6","Nc3","Bf5"]},
|
424
|
+
{"name":"Old Indian, Ukrainian variation","eco_code":"A54","moves":["d4","Nf6","c4","d6","Nc3","e5"]},
|
425
|
+
{"name":"Old Indian, Dus-Khotimirsky variation","eco_code":"A54","moves":["d4","Nf6","c4","d6","Nc3","e5","e3","Nbd7","Bd3"]},
|
426
|
+
{"name":"Old Indian, Ukrainian variation, 4.Nf3","eco_code":"A54","moves":["d4","Nf6","c4","d6","Nc3","e5","Nf3"]},
|
427
|
+
{"name":"Old Indian, main line","eco_code":"A55","moves":["d4","Nf6","c4","d6","Nc3","e5","Nf3","Nbd7","e4"]},
|
428
|
+
{"name":"Benko gambit","eco_code":"A57","moves":["d4","Nf6","c4","c5","d5","b5"]},
|
429
|
+
{"name":"Benko gambit half accepted","eco_code":"A57","moves":["d4","Nf6","c4","c5","d5","b5","cxb5","a6"]},
|
430
|
+
{"name":"Benko gambit, Zaitsev system","eco_code":"A57","moves":["d4","Nf6","c4","c5","d5","b5","cxb5","a6","Nc3"]},
|
431
|
+
{"name":"Benko gambit, Nescafe Frappe attack","eco_code":"A57","moves":["d4","Nf6","c4","c5","d5","b5","cxb5","a6","Nc3","axb5","e4","b4","Nb5","d6","Bc4"]},
|
432
|
+
{"name":"Benko gambit accepted","eco_code":"A58","moves":["d4","Nf6","c4","c5","d5","b5","cxb5","a6","bxa6"]},
|
433
|
+
{"name":"Benko gambit, Nd2 variation","eco_code":"A58","moves":["d4","Nf6","c4","c5","d5","b5","cxb5","a6","bxa6","Bxa6","Nc3","d6","Nf3","g6","Nd2"]},
|
434
|
+
{"name":"Benko gambit, fianchetto variation","eco_code":"A58","moves":["d4","Nf6","c4","c5","d5","b5","cxb5","a6","bxa6","Bxa6","Nc3","d6","Nf3","g6","g3"]},
|
435
|
+
{"name":"Benko gambit, 7.e4","eco_code":"A59","moves":["d4","Nf6","c4","c5","d5","b5","cxb5","a6","bxa6","Bxa6","Nc3","d6","e4"]},
|
436
|
+
{"name":"Benko gambit, Ne2 variation","eco_code":"A59","moves":["d4","Nf6","c4","c5","d5","b5","cxb5","a6","bxa6","Bxa6","Nc3","d6","e4","Bxf1","Kxf1","g6","Nge2"]},
|
437
|
+
{"name":"Benko gambit","eco_code":"A59","moves":["d4","Nf6","c4","c5","d5","b5","cxb5","a6","bxa6","Bxa6","Nc3","d6","e4","Bxf1","Kxf1","g6","g3"]},
|
438
|
+
{"name":"Benko gambit, main line","eco_code":"A59","moves":["d4","Nf6","c4","c5","d5","b5","cxb5","a6","bxa6","Bxa6","Nc3","d6","e4","Bxf1","Kxf1","g6","g3","Bg7","Kg2","O-O","Nf3"]},
|
439
|
+
{"name":"Benoni defence","eco_code":"A60","moves":["d4","Nf6","c4","c5","d5","e6"]},
|
440
|
+
{"name":"Benoni defence","eco_code":"A61","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","Nf3","g6"]},
|
441
|
+
{"name":"Benoni, Uhlmann variation","eco_code":"A61","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","Nf3","g6","Bg5"]},
|
442
|
+
{"name":"Benoni, Nimzovich (knight's tour) variation","eco_code":"A61","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","Nf3","g6","Nd2"]},
|
443
|
+
{"name":"Benoni, fianchetto variation","eco_code":"A61","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","Nf3","g6","g3"]},
|
444
|
+
{"name":"Benoni, 6.e4","eco_code":"A65","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","e4"]},
|
445
|
+
{"name":"Benoni, pawn storm variation","eco_code":"A66","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","e4","g6","f4"]},
|
446
|
+
{"name":"Benoni, Mikenas variation","eco_code":"A66","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","e4","g6","f4","Bg7","e5"]},
|
447
|
+
{"name":"Benoni, Taimanov variation","eco_code":"A67","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","e4","g6","f4","Bg7","Bb5+"]},
|
448
|
+
{"name":"Dutch","eco_code":"A80","moves":["d4","f5"]},
|
449
|
+
{"name":"Dutch, Spielmann gambit","eco_code":"A80","moves":["d4","f5","Nc3","Nf6","g4"]},
|
450
|
+
{"name":"Dutch, Manhattan (Alapin, Ulvestad) variation","eco_code":"A80","moves":["d4","f5","Qd3"]},
|
451
|
+
{"name":"Dutch, Von Pretzel gambit","eco_code":"A80","moves":["d4","f5","Qd3","e6","g4"]},
|
452
|
+
{"name":"Dutch, Korchnoi attack","eco_code":"A80","moves":["d4","f5","h3"]},
|
453
|
+
{"name":"Dutch, Krejcik gambit","eco_code":"A80","moves":["d4","f5","g4"]},
|
454
|
+
{"name":"Dutch, 2.Bg5 variation","eco_code":"A80","moves":["d4","f5","Bg5"]},
|
455
|
+
{"name":"Dutch defence","eco_code":"A81","moves":["d4","f5","g3"]},
|
456
|
+
{"name":"Dutch defence, Blackburne variation","eco_code":"A81","moves":["d4","f5","g3","Nf6","Bg2","e6","Nh3"]},
|
457
|
+
{"name":"Dutch defence","eco_code":"A81","moves":["d4","f5","g3","Nf6","Bg2","g6"]},
|
458
|
+
{"name":"Dutch, Leningrad, Basman system","eco_code":"A81","moves":["d4","f5","g3","g6","Bg2","Bg7","Nf3","c6","O-O","Nh6"]},
|
459
|
+
{"name":"Dutch, Leningrad, Karlsbad variation","eco_code":"A81","moves":["d4","f5","g3","g6","Bg2","Bg7","Nh3"]},
|
460
|
+
{"name":"Dutch defence","eco_code":"A84","moves":["d4","f5","c4"]},
|
461
|
+
{"name":"Dutch defence, Bladel variation","eco_code":"A84","moves":["d4","f5","c4","g6","Nc3","Nh6"]},
|
462
|
+
{"name":"Dutch defence","eco_code":"A84","moves":["d4","f5","c4","e6"]},
|
463
|
+
{"name":"Dutch defence, Rubinstein variation","eco_code":"A84","moves":["d4","f5","c4","e6","Nc3"]},
|
464
|
+
{"name":"Dutch, Staunton gambit deferred","eco_code":"A84","moves":["d4","f5","c4","e6","e4"]},
|
465
|
+
{"name":"Dutch defence","eco_code":"A84","moves":["d4","f5","c4","Nf6"]},
|
466
|
+
{"name":"Dutch with c4 & Nc3","eco_code":"A85","moves":["d4","f5","c4","Nf6","Nc3"]},
|
467
|
+
{"name":"Dutch with c4 & g3","eco_code":"A86","moves":["d4","f5","c4","Nf6","g3"]},
|
468
|
+
{"name":"Dutch, Hort-Antoshin system","eco_code":"A86","moves":["d4","f5","c4","Nf6","g3","d6","Bg2","c6","Nc3","Qc7"]},
|
469
|
+
{"name":"Dutch, Leningrad variation","eco_code":"A86","moves":["d4","f5","c4","Nf6","g3","g6"]},
|
470
|
+
{"name":"Dutch defence","eco_code":"A90","moves":["d4","f5","c4","Nf6","g3","e6","Bg2"]},
|
471
|
+
{"name":"Dutch defence, Dutch-Indian (Nimzo-Dutch) variation","eco_code":"A90","moves":["d4","f5","c4","Nf6","g3","e6","Bg2","Bb4+"]},
|
472
|
+
{"name":"Dutch-Indian, Alekhine variation","eco_code":"A90","moves":["d4","f5","c4","Nf6","g3","e6","Bg2","Bb4+","Bd2","Be7"]},
|
473
|
+
{"name":"Dutch defence","eco_code":"A91","moves":["d4","f5","c4","Nf6","g3","e6","Bg2","Be7"]},
|
474
|
+
{"name":"Dutch defence","eco_code":"A92","moves":["d4","f5","c4","Nf6","g3","e6","Bg2","Be7","Nf3","O-O"]},
|
475
|
+
{"name":"Dutch defence, Alekhine variation","eco_code":"A92","moves":["d4","f5","c4","Nf6","g3","e6","Bg2","Be7","Nf3","O-O","O-O","Ne4"]},
|
476
|
+
{"name":"Dutch, stonewall variation","eco_code":"A92","moves":["d4","f5","c4","Nf6","g3","e6","Bg2","Be7","Nf3","O-O","O-O","d5"]},
|
477
|
+
{"name":"Dutch, stonewall with Nc3","eco_code":"A92","moves":["d4","f5","c4","Nf6","g3","e6","Bg2","Be7","Nf3","O-O","O-O","d5","Nc3"]},
|
478
|
+
{"name":"Dutch, stonewall, Botwinnik variation","eco_code":"A93","moves":["d4","f5","c4","Nf6","g3","e6","Bg2","Be7","Nf3","O-O","O-O","d5","b3"]},
|
479
|
+
{"name":"Dutch, stonewall with Ba3","eco_code":"A94","moves":["d4","f5","c4","Nf6","g3","e6","Bg2","Be7","Nf3","O-O","O-O","d5","b3","c6","Ba3"]},
|
480
|
+
{"name":"Dutch, stonewall with Nc3","eco_code":"A95","moves":["d4","f5","c4","Nf6","g3","e6","Bg2","Be7","Nf3","O-O","O-O","d5","Nc3","c6"]},
|
481
|
+
{"name":"Dutch, stonewall: Chekhover variation","eco_code":"A95","moves":["d4","f5","c4","Nf6","g3","e6","Bg2","Be7","Nf3","O-O","O-O","d5","Nc3","c6","Qc2","Qe8","Bg5"]},
|
482
|
+
{"name":"Dutch, classical variation","eco_code":"A96","moves":["d4","f5","c4","Nf6","g3","e6","Bg2","Be7","Nf3","O-O","O-O","d6"]},
|
483
|
+
{"name":"Alekhine's defence","eco_code":"B02","moves":["e4","Nf6"]},
|
484
|
+
{"name":"Alekhine's defence, Scandinavian variation","eco_code":"B02","moves":["e4","Nf6","Nc3","d5"]},
|
485
|
+
{"name":"Alekhine's defence, Spielmann variation","eco_code":"B02","moves":["e4","Nf6","Nc3","d5","e5","Nfd7","e6"]},
|
486
|
+
{"name":"Alekhine's defence, Maroczy variation","eco_code":"B02","moves":["e4","Nf6","d3"]},
|
487
|
+
{"name":"Alekhine's defence, Krejcik variation","eco_code":"B02","moves":["e4","Nf6","Bc4"]},
|
488
|
+
{"name":"Alekhine's defence, Mokele Mbembe (Buecker) variation","eco_code":"B02","moves":["e4","Nf6","e5","Ne4"]},
|
489
|
+
{"name":"Alekhine's defence, Brooklyn defence","eco_code":"B02","moves":["e4","Nf6","e5","Ng8"]},
|
490
|
+
{"name":"Alekhine's defence","eco_code":"B02","moves":["e4","Nf6","e5","Nd5"]},
|
491
|
+
{"name":"Alekhine's defence, Kmoch variation","eco_code":"B02","moves":["e4","Nf6","e5","Nd5","Bc4","Nb6","Bb3","c5","d3"]},
|
492
|
+
{"name":"Alekhine's defence, Saemisch attack","eco_code":"B02","moves":["e4","Nf6","e5","Nd5","Nc3"]},
|
493
|
+
{"name":"Alekhine's defence, Welling variation","eco_code":"B02","moves":["e4","Nf6","e5","Nd5","b3"]},
|
494
|
+
{"name":"Alekhine's defence","eco_code":"B02","moves":["e4","Nf6","e5","Nd5","c4"]},
|
495
|
+
{"name":"Alekhine's defence, Steiner variation","eco_code":"B02","moves":["e4","Nf6","e5","Nd5","c4","Nb6","b3"]},
|
496
|
+
{"name":"Alekhine's defence, two pawns' (Lasker's) attack","eco_code":"B02","moves":["e4","Nf6","e5","Nd5","c4","Nb6","c5"]},
|
497
|
+
{"name":"Alekhine's defence, two pawns' attack, Mikenas variation","eco_code":"B02","moves":["e4","Nf6","e5","Nd5","c4","Nb6","c5","Nd5","Bc4","e6","Nc3","d6"]},
|
498
|
+
{"name":"Alekhine's defence","eco_code":"B03","moves":["e4","Nf6","e5","Nd5","d4"]},
|
499
|
+
{"name":"Alekhine's defence, O'Sullivan gambit","eco_code":"B03","moves":["e4","Nf6","e5","Nd5","d4","b5"]},
|
500
|
+
{"name":"Alekhine's defence","eco_code":"B03","moves":["e4","Nf6","e5","Nd5","d4","d6"]},
|
501
|
+
{"name":"Alekhine's defence, Balogh variation","eco_code":"B03","moves":["e4","Nf6","e5","Nd5","d4","d6","Bc4"]},
|
502
|
+
{"name":"Alekhine's defence","eco_code":"B03","moves":["e4","Nf6","e5","Nd5","d4","d6","c4"]},
|
503
|
+
{"name":"Alekhine's defence, exchange variation","eco_code":"B03","moves":["e4","Nf6","e5","Nd5","d4","d6","c4","Nb6","exd6"]},
|
504
|
+
{"name":"Alekhine's defence, exchange, Karpov variation","eco_code":"B03","moves":["e4","Nf6","e5","Nd5","d4","d6","c4","Nb6","exd6","cxd6","Nf3","g6","Be2","Bg7","O-O","O-O","h3","Nc6","Nc3","Bf5","Bf4"]},
|
505
|
+
{"name":"Alekhine's defence, four pawns attack","eco_code":"B03","moves":["e4","Nf6","e5","Nd5","d4","d6","c4","Nb6","f4"]},
|
506
|
+
{"name":"Alekhine's defence, four pawns attack, Korchnoi variation","eco_code":"B03","moves":["e4","Nf6","e5","Nd5","d4","d6","c4","Nb6","f4","dxe5","fxe5","Bf5","Nc3","e6","Nf3","Be7","Be2","O-O","O-O","f6"]},
|
507
|
+
{"name":"Alekhine's defence, four pawns attack, 6...Nc6","eco_code":"B03","moves":["e4","Nf6","e5","Nd5","d4","d6","c4","Nb6","f4","dxe5","fxe5","Nc6"]},
|
508
|
+
{"name":"Alekhine's defence, four pawns attack, Ilyin-Genevsky var.","eco_code":"B03","moves":["e4","Nf6","e5","Nd5","d4","d6","c4","Nb6","f4","dxe5","fxe5","Nc6","Nf3","Bg4","e6","fxe6","c5"]},
|
509
|
+
{"name":"Alekhine's defence, four pawns attack, 7.Be3","eco_code":"B03","moves":["e4","Nf6","e5","Nd5","d4","d6","c4","Nb6","f4","dxe5","fxe5","Nc6","Be3"]},
|
510
|
+
{"name":"Alekhine's defence, four pawns attack, Tartakower variation","eco_code":"B03","moves":["e4","Nf6","e5","Nd5","d4","d6","c4","Nb6","f4","dxe5","fxe5","Nc6","Be3","Bf5","Nc3","e6","Nf3","Qd7","Be2","O-O-O","O-O","Be7"]},
|
511
|
+
{"name":"Alekhine's defence, four pawns attack, Planinc variation","eco_code":"B03","moves":["e4","Nf6","e5","Nd5","d4","d6","c4","Nb6","f4","g5"]},
|
512
|
+
{"name":"Alekhine's defence, four pawns attack, fianchetto variation","eco_code":"B03","moves":["e4","Nf6","e5","Nd5","d4","d6","c4","Nb6","f4","g6"]},
|
513
|
+
{"name":"Alekhine's defence, four pawns attack, Trifunovic variation","eco_code":"B03","moves":["e4","Nf6","e5","Nd5","d4","d6","c4","Nb6","f4","Bf5"]},
|
514
|
+
{"name":"Alekhine's defence, modern variation","eco_code":"B04","moves":["e4","Nf6","e5","Nd5","d4","d6","Nf3"]},
|
515
|
+
{"name":"Alekhine's defence, modern, Larsen variation","eco_code":"B04","moves":["e4","Nf6","e5","Nd5","d4","d6","Nf3","dxe5"]},
|
516
|
+
{"name":"Alekhine's defence, modern, Schmid variation","eco_code":"B04","moves":["e4","Nf6","e5","Nd5","d4","d6","Nf3","Nb6"]},
|
517
|
+
{"name":"Alekhine's defence, modern, fianchetto variation","eco_code":"B04","moves":["e4","Nf6","e5","Nd5","d4","d6","Nf3","g6"]},
|
518
|
+
{"name":"Alekhine's defence, modern, Keres variation","eco_code":"B04","moves":["e4","Nf6","e5","Nd5","d4","d6","Nf3","g6","Bc4","Nb6","Bb3","Bg7","a4"]},
|
519
|
+
{"name":"Alekhine's defence, modern variation, 4...Bg4","eco_code":"B05","moves":["e4","Nf6","e5","Nd5","d4","d6","Nf3","Bg4"]},
|
520
|
+
{"name":"Alekhine's defence, modern, Flohr variation","eco_code":"B05","moves":["e4","Nf6","e5","Nd5","d4","d6","Nf3","Bg4","Be2","c6"]},
|
521
|
+
{"name":"Alekhine's defence, modern, Panov variation","eco_code":"B05","moves":["e4","Nf6","e5","Nd5","d4","d6","Nf3","Bg4","h3"]},
|
522
|
+
{"name":"Alekhine's defence, modern, Alekhine variation","eco_code":"B05","moves":["e4","Nf6","e5","Nd5","d4","d6","Nf3","Bg4","c4"]},
|
523
|
+
{"name":"Alekhine's defence, modern, Vitolins attack","eco_code":"B05","moves":["e4","Nf6","e5","Nd5","d4","d6","Nf3","Bg4","c4","Nb6","d5"]},
|
524
|
+
{"name":"Pirc defence","eco_code":"B07","moves":["e4","d6","d4","Nf6","Nc3"]},
|
525
|
+
{"name":"Pirc, Ufimtsev-Pytel variation","eco_code":"B07","moves":["e4","d6","d4","Nf6","Nc3","c6"]},
|
526
|
+
{"name":"Pirc defence","eco_code":"B07","moves":["e4","d6","d4","Nf6","Nc3","g6"]},
|
527
|
+
{"name":"Pirc, 150 attack","eco_code":"B07","moves":["e4","d6","d4","Nf6","Nc3","g6","Be3","c6","Qd2"]},
|
528
|
+
{"name":"Pirc, Sveshnikov system","eco_code":"B07","moves":["e4","d6","d4","Nf6","Nc3","g6","g3"]},
|
529
|
+
{"name":"Pirc, Holmov system","eco_code":"B07","moves":["e4","d6","d4","Nf6","Nc3","g6","Bc4"]},
|
530
|
+
{"name":"Pirc, Byrne variation","eco_code":"B07","moves":["e4","d6","d4","Nf6","Nc3","g6","Bg5"]},
|
531
|
+
{"name":"Pirc defence","eco_code":"B07","moves":["e4","d6","d4","Nf6","Nc3","g6","Be2"]},
|
532
|
+
{"name":"Pirc, Chinese variation","eco_code":"B07","moves":["e4","d6","d4","Nf6","Nc3","g6","Be2","Bg7","g4"]},
|
533
|
+
{"name":"Pirc, bayonet (Mariotti) attack","eco_code":"B07","moves":["e4","d6","d4","Nf6","Nc3","g6","Be2","Bg7","h4"]},
|
534
|
+
{"name":"Robatsch defence, Geller's system","eco_code":"B07","moves":["e4","g6","d4","Bg7","Nf3","d6","c3"]},
|
535
|
+
{"name":"Pirc, classical (two knights) system","eco_code":"B08","moves":["e4","d6","d4","Nf6","Nc3","g6","Nf3"]},
|
536
|
+
{"name":"Pirc, classical (two knights) system","eco_code":"B08","moves":["e4","d6","d4","Nf6","Nc3","g6","Nf3","Bg7"]},
|
537
|
+
{"name":"Pirc, classical, h3 system","eco_code":"B08","moves":["e4","d6","d4","Nf6","Nc3","g6","Nf3","Bg7","h3"]},
|
538
|
+
{"name":"Pirc, classical system, 5.Be2","eco_code":"B08","moves":["e4","d6","d4","Nf6","Nc3","g6","Nf3","Bg7","Be2"]},
|
539
|
+
{"name":"Pirc, Austrian attack","eco_code":"B09","moves":["e4","d6","d4","Nf6","Nc3","g6","f4"]},
|
540
|
+
{"name":"Pirc, Austrian attack","eco_code":"B09","moves":["e4","d6","d4","Nf6","Nc3","g6","f4","Bg7","Nf3","O-O"]},
|
541
|
+
{"name":"Pirc, Austrian attack, 6.e5","eco_code":"B09","moves":["e4","d6","d4","Nf6","Nc3","g6","f4","Bg7","Nf3","O-O","e5"]},
|
542
|
+
{"name":"Pirc, Austrian attack, 6.Be3","eco_code":"B09","moves":["e4","d6","d4","Nf6","Nc3","g6","f4","Bg7","Nf3","O-O","Be3"]},
|
543
|
+
{"name":"Pirc, Austrian attack, 6.Bd3","eco_code":"B09","moves":["e4","d6","d4","Nf6","Nc3","g6","f4","Bg7","Nf3","O-O","Bd3"]},
|
544
|
+
{"name":"Pirc, Austrian attack, dragon formation","eco_code":"B09","moves":["e4","d6","d4","Nf6","Nc3","g6","f4","Bg7","Nf3","c5"]},
|
545
|
+
{"name":"Pirc, Austrian attack, Ljubojevic variation","eco_code":"B09","moves":["e4","d6","d4","Nf6","Nc3","g6","f4","Bg7","Bc4"]},
|
546
|
+
{"name":"Caro-Kann defence","eco_code":"B10","moves":["e4","c6"]},
|
547
|
+
{"name":"Caro-Kann, Hillbilly attack","eco_code":"B10","moves":["e4","c6","Bc4"]},
|
548
|
+
{"name":"Caro-Kann, anti-Caro-Kann defence","eco_code":"B10","moves":["e4","c6","c4"]},
|
549
|
+
{"name":"Caro-Kann, anti-anti-Caro-Kann defence","eco_code":"B10","moves":["e4","c6","c4","d5"]},
|
550
|
+
{"name":"Caro-Kann, closed (Breyer) variation","eco_code":"B10","moves":["e4","c6","d3"]},
|
551
|
+
{"name":"Caro-Kann defence","eco_code":"B10","moves":["e4","c6","Nc3"]},
|
552
|
+
{"name":"Caro-Kann, Goldman (Spielmann) variation","eco_code":"B10","moves":["e4","c6","Nc3","d5","Qf3"]},
|
553
|
+
{"name":"Caro-Kann, two knights variation","eco_code":"B10","moves":["e4","c6","Nc3","d5","Nf3"]},
|
554
|
+
{"name":"Caro-Kann, two knights, 3...Bg4","eco_code":"B11","moves":["e4","c6","Nc3","d5","Nf3","Bg4"]},
|
555
|
+
{"name":"Caro-Kann defence","eco_code":"B12","moves":["e4","c6","d4"]},
|
556
|
+
{"name":"de Bruycker defence","eco_code":"B12","moves":["e4","c6","d4","Na6","Nc3","Nc7"]},
|
557
|
+
{"name":"Caro-Masi defence","eco_code":"B12","moves":["e4","c6","d4","Nf6"]},
|
558
|
+
{"name":"Caro-Kann defence","eco_code":"B12","moves":["e4","c6","d4","d5"]},
|
559
|
+
{"name":"Caro-Kann, Tartakower (fantasy) variation","eco_code":"B12","moves":["e4","c6","d4","d5","f3"]},
|
560
|
+
{"name":"Caro-Kann, 3.Nd2","eco_code":"B12","moves":["e4","c6","d4","d5","Nd2"]},
|
561
|
+
{"name":"Caro-Kann, Edinburgh variation","eco_code":"B12","moves":["e4","c6","d4","d5","Nd2","Qb6"]},
|
562
|
+
{"name":"Caro-Kann, advance variation","eco_code":"B12","moves":["e4","c6","d4","d5","e5"]},
|
563
|
+
{"name":"Caro-Kann, advance, Short variation","eco_code":"B12","moves":["e4","c6","d4","d5","e5","Bf5","c3","e6","Be2"]},
|
564
|
+
{"name":"Caro-Kann, exchange variation","eco_code":"B13","moves":["e4","c6","d4","d5","exd5"]},
|
565
|
+
{"name":"Caro-Kann, exchange, Rubinstein variation","eco_code":"B13","moves":["e4","c6","d4","d5","exd5","cxd5","Bd3","Nc6","c3","Nf6","Bf4"]},
|
566
|
+
{"name":"Caro-Kann, Panov-Botvinnik attack","eco_code":"B13","moves":["e4","c6","d4","d5","exd5","cxd5","c4"]},
|
567
|
+
{"name":"Caro-Kann, Panov-Botvinnik, Gunderam attack","eco_code":"B13","moves":["e4","c6","d4","d5","exd5","cxd5","c4","Nf6","c5"]},
|
568
|
+
{"name":"Caro-Kann, Panov-Botvinnik attack","eco_code":"B13","moves":["e4","c6","d4","d5","exd5","cxd5","c4","Nf6","Nc3"]},
|
569
|
+
{"name":"Caro-Kann, Panov-Botvinnik, Herzog defence","eco_code":"B13","moves":["e4","c6","d4","d5","exd5","cxd5","c4","Nf6","Nc3","Nc6","Bg5","dxc4","d5","Na5"]},
|
570
|
+
{"name":"Caro-Kann, Panov-Botvinnik, normal variation","eco_code":"B13","moves":["e4","c6","d4","d5","exd5","cxd5","c4","Nf6","Nc3","Nc6","Bg5","e6"]},
|
571
|
+
{"name":"Caro-Kann, Panov-Botvinnik, Czerniak variation","eco_code":"B13","moves":["e4","c6","d4","d5","exd5","cxd5","c4","Nf6","Nc3","Nc6","Bg5","Qa5"]},
|
572
|
+
{"name":"Caro-Kann, Panov-Botvinnik, Reifir (Spielmann) variation","eco_code":"B13","moves":["e4","c6","d4","d5","exd5","cxd5","c4","Nf6","Nc3","Nc6","Bg5","Qb6"]},
|
573
|
+
{"name":"Caro-Kann, Panov-Botvinnik attack, 5...e6","eco_code":"B14","moves":["e4","c6","d4","d5","exd5","cxd5","c4","Nf6","Nc3","e6"]},
|
574
|
+
{"name":"Caro-Kann, Panov-Botvinnik attack, 5...g6","eco_code":"B14","moves":["e4","c6","d4","d5","exd5","cxd5","c4","Nf6","Nc3","g6"]},
|
575
|
+
{"name":"Caro-Kann defence","eco_code":"B15","moves":["e4","c6","d4","d5","Nc3"]},
|
576
|
+
{"name":"Caro-Kann, Gurgenidze counter-attack","eco_code":"B15","moves":["e4","c6","d4","d5","Nc3","b5"]},
|
577
|
+
{"name":"Caro-Kann, Gurgenidze system","eco_code":"B15","moves":["e4","c6","d4","d5","Nc3","g6"]},
|
578
|
+
{"name":"Caro-Kann, Rasa-Studier gambit","eco_code":"B15","moves":["e4","c6","d4","d5","Nc3","dxe4","f3"]},
|
579
|
+
{"name":"Caro-Kann defence","eco_code":"B15","moves":["e4","c6","d4","d5","Nc3","dxe4","Nxe4"]},
|
580
|
+
{"name":"Caro-Kann, Alekhine gambit","eco_code":"B15","moves":["e4","c6","d4","d5","Nc3","dxe4","Nxe4","Nf6","Bd3"]},
|
581
|
+
{"name":"Caro-Kann, Tartakower (Nimzovich) variation","eco_code":"B15","moves":["e4","c6","d4","d5","Nc3","dxe4","Nxe4","Nf6","Nxf6+","exf6"]},
|
582
|
+
{"name":"Caro-Kann, Forgacs variation","eco_code":"B15","moves":["e4","c6","d4","d5","Nc3","dxe4","Nxe4","Nf6","Nxf6+","exf6","Bc4"]},
|
583
|
+
{"name":"Caro-Kann, Bronstein-Larsen variation","eco_code":"B16","moves":["e4","c6","d4","d5","Nc3","dxe4","Nxe4","Nf6","Nxf6+","gxf6"]},
|
584
|
+
{"name":"Caro-Kann, Steinitz variation","eco_code":"B17","moves":["e4","c6","d4","d5","Nc3","dxe4","Nxe4","Nd7"]},
|
585
|
+
{"name":"Caro-Kann, classical variation","eco_code":"B18","moves":["e4","c6","d4","d5","Nc3","dxe4","Nxe4","Bf5"]},
|
586
|
+
{"name":"Caro-Kann, classical, Flohr variation","eco_code":"B18","moves":["e4","c6","d4","d5","Nc3","dxe4","Nxe4","Bf5","Ng3","Bg6","Nh3"]},
|
587
|
+
{"name":"Caro-Kann, classical, Maroczy attack","eco_code":"B18","moves":["e4","c6","d4","d5","Nc3","dxe4","Nxe4","Bf5","Ng3","Bg6","f4"]},
|
588
|
+
{"name":"Caro-Kann, classical, 6.h4","eco_code":"B18","moves":["e4","c6","d4","d5","Nc3","dxe4","Nxe4","Bf5","Ng3","Bg6","h4"]},
|
589
|
+
{"name":"Caro-Kann, classical, 7...Nd7","eco_code":"B19","moves":["e4","c6","d4","d5","Nc3","dxe4","Nxe4","Bf5","Ng3","Bg6","h4","h6","Nf3","Nd7"]},
|
590
|
+
{"name":"Caro-Kann, classical, Spassky variation","eco_code":"B19","moves":["e4","c6","d4","d5","Nc3","dxe4","Nxe4","Bf5","Ng3","Bg6","h4","h6","Nf3","Nd7","h5"]},
|
591
|
+
{"name":"Sicilian defence","eco_code":"B20","moves":["e4","c5"]},
|
592
|
+
{"name":"Sicilian, Gloria variation","eco_code":"B20","moves":["e4","c5","c4","d6","Nc3","Nc6","g3","h5"]},
|
593
|
+
{"name":"Sicilian, Steinitz variation","eco_code":"B20","moves":["e4","c5","g3"]},
|
594
|
+
{"name":"Sicilian, wing gambit","eco_code":"B20","moves":["e4","c5","b4"]},
|
595
|
+
{"name":"Sicilian, wing gambit, Santasiere variation","eco_code":"B20","moves":["e4","c5","b4","cxb4","c4"]},
|
596
|
+
{"name":"Sicilian, wing gambit, Marshall variation","eco_code":"B20","moves":["e4","c5","b4","cxb4","a3"]},
|
597
|
+
{"name":"Sicilian, wing gambit, Marienbad variation","eco_code":"B20","moves":["e4","c5","b4","cxb4","a3","d5","exd5","Qxd5","Bb2"]},
|
598
|
+
{"name":"Sicilian, wing gambit, Carlsbad variation","eco_code":"B20","moves":["e4","c5","b4","cxb4","a3","bxa3"]},
|
599
|
+
{"name":"Sicilian, Keres variation (2.Ne2)","eco_code":"B20","moves":["e4","c5","Ne2"]},
|
600
|
+
{"name":"Sicilian, Grand Prix attack","eco_code":"B21","moves":["e4","c5","f4"]},
|
601
|
+
{"name":"Sicilian, Smith-Morra gambit","eco_code":"B21","moves":["e4","c5","d4"]},
|
602
|
+
{"name":"Sicilian, Andreaschek gambit","eco_code":"B21","moves":["e4","c5","d4","cxd4","Nf3","e5","c3"]},
|
603
|
+
{"name":"Sicilian, Smith-Morra gambit","eco_code":"B21","moves":["e4","c5","d4","cxd4","c3"]},
|
604
|
+
{"name":"Sicilian, Smith-Morra gambit, Chicago defence","eco_code":"B21","moves":["e4","c5","d4","cxd4","c3","dxc3","Nxc3","Nc6","Nf3","d6","Bc4","e6","O-O","a6","Qe2","b5","Bb3","Ra7"]},
|
605
|
+
{"name":"Sicilian, Alapin's variation (2.c3)","eco_code":"B22","moves":["e4","c5","c3"]},
|
606
|
+
{"name":"Sicilian, 2.c3, Heidenfeld variation","eco_code":"B22","moves":["e4","c5","c3","Nf6","e5","Nd5","Nf3","Nc6","Na3"]},
|
607
|
+
{"name":"Sicilian defence","eco_code":"B27","moves":["e4","c5","Nf3"]},
|
608
|
+
{"name":"Sicilian, Stiletto (Althouse) variation","eco_code":"B27","moves":["e4","c5","Nf3","Qa5"]},
|
609
|
+
{"name":"Sicilian, Quinteros variation","eco_code":"B27","moves":["e4","c5","Nf3","Qc7"]},
|
610
|
+
{"name":"Sicilian, Katalimov variation","eco_code":"B27","moves":["e4","c5","Nf3","b6"]},
|
611
|
+
{"name":"Sicilian, Hungarian variation","eco_code":"B27","moves":["e4","c5","Nf3","g6"]},
|
612
|
+
{"name":"Sicilian, Acton extension","eco_code":"B27","moves":["e4","c5","Nf3","g6","c4","Bh6"]},
|
613
|
+
{"name":"Sicilian, O'Kelly variation","eco_code":"B28","moves":["e4","c5","Nf3","a6"]},
|
614
|
+
{"name":"Sicilian, Nimzovich-Rubinstein variation","eco_code":"B29","moves":["e4","c5","Nf3","Nf6"]},
|
615
|
+
{"name":"Sicilian, Nimzovich-Rubinstein; Rubinstein counter-gambit","eco_code":"B29","moves":["e4","c5","Nf3","Nf6","e5","Nd5","Nc3","e6","Nxd5","exd5","d4","Nc6"]},
|
616
|
+
{"name":"Sicilian defence","eco_code":"B30","moves":["e4","c5","Nf3","Nc6"]},
|
617
|
+
{"name":"Sicilian, Nimzovich-Rossolimo attack (without ...d6)","eco_code":"B30","moves":["e4","c5","Nf3","Nc6","Bb5"]},
|
618
|
+
{"name":"Sicilian, Nimzovich-Rossolimo attack (with ...g6, without ...d6)","eco_code":"B31","moves":["e4","c5","Nf3","Nc6","Bb5","g6"]},
|
619
|
+
{"name":"Sicilian, Nimzovich-Rossolimo attack, Gurgenidze variation","eco_code":"B31","moves":["e4","c5","Nf3","Nc6","Bb5","g6","O-O","Bg7","Re1","e5","b4"]},
|
620
|
+
{"name":"Sicilian defence","eco_code":"B32","moves":["e4","c5","Nf3","Nc6","d4"]},
|
621
|
+
{"name":"Sicilian, Flohr variation","eco_code":"B32","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","Qc7"]},
|
622
|
+
{"name":"Sicilian, Nimzovich variation","eco_code":"B32","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","d5"]},
|
623
|
+
{"name":"Sicilian, Labourdonnais-Loewenthal variation","eco_code":"B32","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","e5"]},
|
624
|
+
{"name":"Sicilian, Labourdonnais-Loewenthal (Kalashnikov) variation","eco_code":"B32","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","e5","Nb5","d6"]},
|
625
|
+
{"name":"Sicilian defence","eco_code":"B33","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","Nf6"]},
|
626
|
+
{"name":"Sicilian, Pelikan (Lasker/Sveshnikov) variation","eco_code":"B33","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","Nf6","Nc3","e5"]},
|
627
|
+
{"name":"Sicilian, Pelikan, Bird variation","eco_code":"B33","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","Nf6","Nc3","e5","Ndb5","d6","Bg5","a6","Na3","Be6"]},
|
628
|
+
{"name":"Sicilian, Pelikan, Chelyabinsk variation","eco_code":"B33","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","Nf6","Nc3","e5","Ndb5","d6","Bg5","a6","Na3","b5"]},
|
629
|
+
{"name":"Sicilian, Sveshnikov variation","eco_code":"B33","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","Nf6","Nc3","e5","Ndb5","d6","Bg5","a6","Na3","b5","Bxf6","gxf6","Nd5","f5"]},
|
630
|
+
{"name":"Sicilian defence","eco_code":"B40","moves":["e4","c5","Nf3","e6"]},
|
631
|
+
{"name":"Sicilian, Marshall variation","eco_code":"B40","moves":["e4","c5","Nf3","e6","d4","d5"]},
|
632
|
+
{"name":"Sicilian defence","eco_code":"B40","moves":["e4","c5","Nf3","e6","d4","cxd4"]},
|
633
|
+
{"name":"Sicilian, Anderssen variation","eco_code":"B40","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","Nf6"]},
|
634
|
+
{"name":"Sicilian, Pin variation (Sicilian counter-attack)","eco_code":"B40","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","Nf6","Nc3","Bb4"]},
|
635
|
+
{"name":"Sicilian, Pin, Jaffe variation","eco_code":"B40","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","Nf6","Nc3","Bb4","Bd3","e5"]},
|
636
|
+
{"name":"Sicilian, Pin, Koch variation","eco_code":"B40","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","Nf6","Nc3","Bb4","e5"]},
|
637
|
+
{"name":"Sicilian defence","eco_code":"B44","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","Nc6"]},
|
638
|
+
{"name":"Sicilian, Szen (`anti-Taimanov') variation","eco_code":"B44","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","Nc6","Nb5"]},
|
639
|
+
{"name":"Sicilian, Szen, hedgehog variation","eco_code":"B44","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","Nc6","Nb5","d6","c4","Nf6","Nb1-c3","a6","Na3","Be7","Be2","O-O","O-O","b6"]},
|
640
|
+
{"name":"Sicilian, Szen variation, Dely-Kasparov gambit","eco_code":"B44","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","Nc6","Nb5","d6","c4","Nf6","Nb1-c3","a6","Na3","d5"]},
|
641
|
+
{"name":"Sicilian","eco_code":"B50","moves":["e4","c5","Nf3","d6"]},
|
642
|
+
{"name":"Sicilian, wing gambit deferred","eco_code":"B50","moves":["e4","c5","Nf3","d6","b4"]},
|
643
|
+
{"name":"Sicilian, Chekhover variation","eco_code":"B53","moves":["e4","c5","Nf3","d6","d4","cxd4","Qxd4"]},
|
644
|
+
{"name":"Sicilian, Chekhover, Zaitsev variation","eco_code":"B53","moves":["e4","c5","Nf3","d6","d4","cxd4","Qxd4","Nc6","Bb5","Qd7"]},
|
645
|
+
{"name":"Sicilian","eco_code":"B54","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4"]},
|
646
|
+
{"name":"Sicilian, Prins (Moscow) variation","eco_code":"B54","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","f3"]},
|
647
|
+
{"name":"Sicilian, Prins variation, Venice attack","eco_code":"B55","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","f3","e5","Bb5+"]},
|
648
|
+
{"name":"Sicilian","eco_code":"B56","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3"]},
|
649
|
+
{"name":"Sicilian, Venice attack","eco_code":"B56","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e5","Bb5+"]},
|
650
|
+
{"name":"Sicilian","eco_code":"B56","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6"]},
|
651
|
+
{"name":"Sicilian, Sozin, not Scheveningen","eco_code":"B57","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bc4"]},
|
652
|
+
{"name":"Sicilian, Magnus Smith trap","eco_code":"B57","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bc4","g6","Nxc6","bxc6","e5"]},
|
653
|
+
{"name":"Sicilian, Sozin, Benko variation","eco_code":"B57","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bc4","Qb6"]},
|
654
|
+
{"name":"Sicilian, classical","eco_code":"B58","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","Nf6","Nc3","d6","Be2"]},
|
655
|
+
{"name":"Sicilian, Boleslavsky variation","eco_code":"B58","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","Nf6","Nc3","d6","Be2","e5"]},
|
656
|
+
{"name":"Sicilian, Boleslavsky, Louma variation","eco_code":"B58","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","Nf6","Nc3","d6","Be2","e5","Nxc6"]},
|
657
|
+
{"name":"Sicilian, Boleslavsky variation, 7.Nb3","eco_code":"B59","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","Nf6","Nc3","d6","Be2","e5","Nb3"]},
|
658
|
+
{"name":"French defence","eco_code":"C00","moves":["e4","e6"]},
|
659
|
+
{"name":"French defence, Steiner variation","eco_code":"C00","moves":["e4","e6","c4"]},
|
660
|
+
{"name":"French, Reti (Spielmann) variation","eco_code":"C00","moves":["e4","e6","b3"]},
|
661
|
+
{"name":"French, Steinitz attack","eco_code":"C00","moves":["e4","e6","e5"]},
|
662
|
+
{"name":"French, Labourdonnais variation","eco_code":"C00","moves":["e4","e6","f4"]},
|
663
|
+
{"name":"French defence","eco_code":"C00","moves":["e4","e6","Nf3"]},
|
664
|
+
{"name":"French, Wing gambit","eco_code":"C00","moves":["e4","e6","Nf3","d5","e5","c5","b4"]},
|
665
|
+
{"name":"French defence","eco_code":"C00","moves":["e4","e6","Nc3"]},
|
666
|
+
{"name":"French, Pelikan variation","eco_code":"C00","moves":["e4","e6","Nc3","d5","f4"]},
|
667
|
+
{"name":"French, Two knights variation","eco_code":"C00","moves":["e4","e6","Nc3","d5","Nf3"]},
|
668
|
+
{"name":"French, Chigorin variation","eco_code":"C00","moves":["e4","e6","Qe2"]},
|
669
|
+
{"name":"French, King's Indian attack","eco_code":"C00","moves":["e4","e6","d3"]},
|
670
|
+
{"name":"French, Reversed Philidor formation","eco_code":"C00","moves":["e4","e6","d3","d5","Nd2","Nf6","Ngf3","Nc6","Be2"]},
|
671
|
+
{"name":"French defence","eco_code":"C00","moves":["e4","e6","d4"]},
|
672
|
+
{"name":"Lengfellner system","eco_code":"C00","moves":["e4","e6","d4","d6"]},
|
673
|
+
{"name":"St. George defence","eco_code":"C00","moves":["e4","e6","d4","a6"]},
|
674
|
+
{"name":"French defence","eco_code":"C00","moves":["e4","e6","d4","d5"]},
|
675
|
+
{"name":"French, Schlechter variation","eco_code":"C00","moves":["e4","e6","d4","d5","Bd3"]},
|
676
|
+
{"name":"French, Alapin variation","eco_code":"C00","moves":["e4","e6","d4","d5","Be3"]},
|
677
|
+
{"name":"French, exchange variation","eco_code":"C01","moves":["e4","e6","d4","d5","exd5"]},
|
678
|
+
{"name":"French, exchange, Svenonius variation","eco_code":"C01","moves":["e4","e6","d4","d5","exd5","exd5","Nc3","Nf6","Bg5"]},
|
679
|
+
{"name":"French, exchange, Bogolyubov variation","eco_code":"C01","moves":["e4","e6","d4","d5","exd5","exd5","Nc3","Nf6","Bg5","Nc6"]},
|
680
|
+
{"name":"French, advance variation","eco_code":"C02","moves":["e4","e6","d4","d5","e5"]},
|
681
|
+
{"name":"French, advance, Steinitz variation","eco_code":"C02","moves":["e4","e6","d4","d5","e5","c5","dxc5"]},
|
682
|
+
{"name":"French, advance, Nimzovich variation","eco_code":"C02","moves":["e4","e6","d4","d5","e5","c5","Qg4"]},
|
683
|
+
{"name":"French, advance, Nimzovich system","eco_code":"C02","moves":["e4","e6","d4","d5","e5","c5","Nf3"]},
|
684
|
+
{"name":"French, advance variation","eco_code":"C02","moves":["e4","e6","d4","d5","e5","c5","c3"]},
|
685
|
+
{"name":"French, advance, Wade variation","eco_code":"C02","moves":["e4","e6","d4","d5","e5","c5","c3","Qb6","Nf3","Bd7"]},
|
686
|
+
{"name":"French, advance variation","eco_code":"C02","moves":["e4","e6","d4","d5","e5","c5","c3","Nc6"]},
|
687
|
+
{"name":"French, advance, Paulsen attack","eco_code":"C02","moves":["e4","e6","d4","d5","e5","c5","c3","Nc6","Nf3"]},
|
688
|
+
{"name":"French, advance, Milner-Barry gambit","eco_code":"C02","moves":["e4","e6","d4","d5","e5","c5","c3","Nc6","Nf3","Qb6","Bd3"]},
|
689
|
+
{"name":"French, advance, Euwe variation","eco_code":"C02","moves":["e4","e6","d4","d5","e5","c5","c3","Nc6","Nf3","Bd7"]},
|
690
|
+
{"name":"French, Paulsen variation","eco_code":"C10","moves":["e4","e6","d4","d5","Nc3"]},
|
691
|
+
{"name":"French, Marshall variation","eco_code":"C10","moves":["e4","e6","d4","d5","Nc3","c5"]},
|
692
|
+
{"name":"French, Rubinstein variation","eco_code":"C10","moves":["e4","e6","d4","d5","Nc3","dxe4"]},
|
693
|
+
{"name":"French, Fort Knox variation","eco_code":"C10","moves":["e4","e6","d4","d5","Nc3","dxe4","Nxe4","Bd7","Nf3","Bc6"]},
|
694
|
+
{"name":"French, Rubinstein variation","eco_code":"C10","moves":["e4","e6","d4","d5","Nc3","dxe4","Nxe4","Nd7"]},
|
695
|
+
{"name":"French, Rubinstein, Capablanca line","eco_code":"C10","moves":["e4","e6","d4","d5","Nc3","dxe4","Nxe4","Nd7","Nf3","Ngf6","Nxf6+","Nxf6","Ne5"]},
|
696
|
+
{"name":"French, Frere (Becker) variation","eco_code":"C10","moves":["e4","e6","d4","d5","Nc3","dxe4","Nxe4","Qd5"]},
|
697
|
+
{"name":"French defence","eco_code":"C11","moves":["e4","e6","d4","d5","Nc3","Nf6"]},
|
698
|
+
{"name":"French, Swiss variation","eco_code":"C11","moves":["e4","e6","d4","d5","Nc3","Nf6","Bd3"]},
|
699
|
+
{"name":"French, Henneberger variation","eco_code":"C11","moves":["e4","e6","d4","d5","Nc3","Nf6","Be3"]},
|
700
|
+
{"name":"French, Steinitz variation","eco_code":"C11","moves":["e4","e6","d4","d5","Nc3","Nf6","e5"]},
|
701
|
+
{"name":"French, Steinitz, Bradford attack","eco_code":"C11","moves":["e4","e6","d4","d5","Nc3","Nf6","e5","Nfd7","f4","c5","dxc5","Bxc5","Qg4"]},
|
702
|
+
{"name":"French, Steinitz variation","eco_code":"C11","moves":["e4","e6","d4","d5","Nc3","Nf6","e5","Nfd7","f4","c5","dxc5","Nc6"]},
|
703
|
+
{"name":"French, Steinitz, Brodsky-Jones variation","eco_code":"C11","moves":["e4","e6","d4","d5","Nc3","Nf6","e5","Nfd7","f4","c5","dxc5","Nc6","a3","Bxc5","Qg4","O-O","Nf3","f6"]},
|
704
|
+
{"name":"French, Steinitz variation","eco_code":"C11","moves":["e4","e6","d4","d5","Nc3","Nf6","e5","Nfd7","f4","c5","Nf3"]},
|
705
|
+
{"name":"French, Steinitz, Boleslavsky variation","eco_code":"C11","moves":["e4","e6","d4","d5","Nc3","Nf6","e5","Nfd7","f4","c5","Nf3","Nc6","Be3"]},
|
706
|
+
{"name":"French, Steinitz, Gledhill attack","eco_code":"C11","moves":["e4","e6","d4","d5","Nc3","Nf6","e5","Nfd7","Qg4"]},
|
707
|
+
{"name":"French, Burn variation","eco_code":"C11","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","dxe4"]},
|
708
|
+
{"name":"French, MacCutcheon variation","eco_code":"C12","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Bb4"]},
|
709
|
+
{"name":"French, MacCutcheon, Bogolyubov variation","eco_code":"C12","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Bb4","exd5","Qxd5","Bxf6","gxf6","Qd2","Qa5"]},
|
710
|
+
{"name":"French, MacCutcheon, advance variation","eco_code":"C12","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Bb4","e5"]},
|
711
|
+
{"name":"French, MacCutcheon, Chigorin variation","eco_code":"C12","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Bb4","e5","h6","exf6"]},
|
712
|
+
{"name":"French, MacCutcheon, Grigoriev variation","eco_code":"C12","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Bb4","e5","h6","exf6","hxg5","fxg7","Rg8","h4","gxh4","Qg4"]},
|
713
|
+
{"name":"French, MacCutcheon, Bernstein variation","eco_code":"C12","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Bb4","e5","h6","Bh4"]},
|
714
|
+
{"name":"French, MacCutcheon, Janowski variation","eco_code":"C12","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Bb4","e5","h6","Be3"]},
|
715
|
+
{"name":"French, MacCutcheon, Dr. Olland (Dutch) variation","eco_code":"C12","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Bb4","e5","h6","Bc1"]},
|
716
|
+
{"name":"French, MacCutcheon, Tartakower variation","eco_code":"C12","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Bb4","e5","h6","Bd2","Nfd7"]},
|
717
|
+
{"name":"French, MacCutcheon, Lasker variation","eco_code":"C12","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Bb4","e5","h6","Bd2","Bxc3"]},
|
718
|
+
{"name":"French, MacCutcheon, Duras variation","eco_code":"C12","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Bb4","e5","h6","Bd2","Bxc3","bxc3","Ne4","Qg4","Kf8","Bc1"]},
|
719
|
+
{"name":"French, MacCutcheon, Lasker variation, 8...g6","eco_code":"C12","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Bb4","e5","h6","Bd2","Bxc3","bxc3","Ne4","Qg4","g6"]},
|
720
|
+
{"name":"Centre game","eco_code":"C21","moves":["e4","e5","d4","exd4"]},
|
721
|
+
{"name":"Centre game, Kieseritsky variation","eco_code":"C21","moves":["e4","e5","d4","exd4","Nf3","c5","Bc4","b5"]},
|
722
|
+
{"name":"Halasz gambit","eco_code":"C21","moves":["e4","e5","d4","exd4","f4"]},
|
723
|
+
{"name":"Danish gambit","eco_code":"C21","moves":["e4","e5","d4","exd4","c3"]},
|
724
|
+
{"name":"Danish gambit, Collijn defence","eco_code":"C21","moves":["e4","e5","d4","exd4","c3","dxc3","Bc4","cxb2","Bxb2","Qe7"]},
|
725
|
+
{"name":"Danish gambit, Schlechter defence","eco_code":"C21","moves":["e4","e5","d4","exd4","c3","dxc3","Bc4","cxb2","Bxb2","d5"]},
|
726
|
+
{"name":"Danish gambit, Soerensen defence","eco_code":"C21","moves":["e4","e5","d4","exd4","c3","d5"]},
|
727
|
+
{"name":"Centre game","eco_code":"C21","moves":["e4","e5","d4","exd4","Qxd4"]},
|
728
|
+
{"name":"Centre game","eco_code":"C22","moves":["e4","e5","d4","exd4","Qxd4","Nc6"]},
|
729
|
+
{"name":"Centre game, Paulsen attack","eco_code":"C22","moves":["e4","e5","d4","exd4","Qxd4","Nc6","Qe3"]},
|
730
|
+
{"name":"Centre game, Charousek variation","eco_code":"C22","moves":["e4","e5","d4","exd4","Qxd4","Nc6","Qe3","Bb4+","c3","Be7"]},
|
731
|
+
{"name":"Centre game, l'Hermet variation","eco_code":"C22","moves":["e4","e5","d4","exd4","Qxd4","Nc6","Qe3","f5"]},
|
732
|
+
{"name":"Centre game, Berger variation","eco_code":"C22","moves":["e4","e5","d4","exd4","Qxd4","Nc6","Qe3","Nf6"]},
|
733
|
+
{"name":"Centre game, Kupreichik variation","eco_code":"C22","moves":["e4","e5","d4","exd4","Qxd4","Nc6","Qe3","Nf6","Nc3","Bb4","Bd2","O-O","O-O-O","Re8","Bc4","d6","Nh3"]},
|
734
|
+
{"name":"Centre game, Hall variation","eco_code":"C22","moves":["e4","e5","d4","exd4","Qxd4","Nc6","Qc4"]},
|
735
|
+
{"name":"Bishop's opening","eco_code":"C23","moves":["e4","e5","Bc4"]},
|
736
|
+
{"name":"Bishop's opening, Philidor counter-attack","eco_code":"C23","moves":["e4","e5","Bc4","c6"]},
|
737
|
+
{"name":"Bishop's opening, Lisitsyn variation","eco_code":"C23","moves":["e4","e5","Bc4","c6","d4","d5","exd5","cxd5","Bb5+","Bd7","Bxd7+","Nxd7","dxe5","Nxe5","Ne2"]},
|
738
|
+
{"name":"Bishop's opening, Calabrese counter-gambit","eco_code":"C23","moves":["e4","e5","Bc4","f5"]},
|
739
|
+
{"name":"Bishop's opening, Calabrese counter-gambit, Jaenisch variation","eco_code":"C23","moves":["e4","e5","Bc4","f5","d3"]},
|
740
|
+
{"name":"Bishop's opening, Classical variation","eco_code":"C23","moves":["e4","e5","Bc4","Bc5"]},
|
741
|
+
{"name":"Bishop's opening, Lopez gambit","eco_code":"C23","moves":["e4","e5","Bc4","Bc5","Qe2","Nc6","c3","Nf6","f4"]},
|
742
|
+
{"name":"Bishop's opening, Philidor variation","eco_code":"C23","moves":["e4","e5","Bc4","Bc5","c3"]},
|
743
|
+
{"name":"Bishop's opening, Pratt variation","eco_code":"C23","moves":["e4","e5","Bc4","Bc5","c3","Nf6","d4","exd4","e5","d5","exf6","dxc4","Qh5","O-O"]},
|
744
|
+
{"name":"Bishop's opening, Lewis counter-gambit","eco_code":"C23","moves":["e4","e5","Bc4","Bc5","c3","d5"]},
|
745
|
+
{"name":"Bishop's opening, del Rio variation","eco_code":"C23","moves":["e4","e5","Bc4","Bc5","c3","Qg5"]},
|
746
|
+
{"name":"Bishop's opening, Lewis gambit","eco_code":"C23","moves":["e4","e5","Bc4","Bc5","d4"]},
|
747
|
+
{"name":"Bishop's opening, Wing gambit","eco_code":"C23","moves":["e4","e5","Bc4","Bc5","b4"]},
|
748
|
+
{"name":"Bishop's opening, MacDonnell double gambit","eco_code":"C23","moves":["e4","e5","Bc4","Bc5","b4","Bxb4","f4"]},
|
749
|
+
{"name":"Bishop's opening, Four pawns' gambit","eco_code":"C23","moves":["e4","e5","Bc4","Bc5","b4","Bxb4","f4","exf4","Nf3","Be7","d4","Bh4+","g3","fxg3","O-O","gxh2+","Kh1"]},
|
750
|
+
{"name":"Bishop's opening, Berlin defence","eco_code":"C24","moves":["e4","e5","Bc4","Nf6"]},
|
751
|
+
{"name":"Bishop's opening, Greco gambit","eco_code":"C24","moves":["e4","e5","Bc4","Nf6","f4"]},
|
752
|
+
{"name":"Bishop's opening, Ponziani gambit","eco_code":"C24","moves":["e4","e5","Bc4","Nf6","d4"]},
|
753
|
+
{"name":"Bishop's opening, Urusov gambit","eco_code":"C24","moves":["e4","e5","Bc4","Nf6","d4","exd4","Nf3"]},
|
754
|
+
{"name":"Bishop's opening, Urusov gambit, Panov variation","eco_code":"C24","moves":["e4","e5","Bc4","Nf6","d4","exd4","Nf3","d5","exd5","Bb4+","c3","Qe7+"]},
|
755
|
+
{"name":"Vienna game","eco_code":"C25","moves":["e4","e5","Nc3"]},
|
756
|
+
{"name":"Vienna, Zhuravlev countergambit","eco_code":"C25","moves":["e4","e5","Nc3","Bb4","Qg4","Nf6"]},
|
757
|
+
{"name":"Vienna game, Max Lange defence","eco_code":"C25","moves":["e4","e5","Nc3","Nc6"]},
|
758
|
+
{"name":"Vienna, Paulsen variation","eco_code":"C25","moves":["e4","e5","Nc3","Nc6","g3"]},
|
759
|
+
{"name":"Vienna, Fyfe gambit","eco_code":"C25","moves":["e4","e5","Nc3","Nc6","d4"]},
|
760
|
+
{"name":"Vienna gambit","eco_code":"C25","moves":["e4","e5","Nc3","Nc6","f4"]},
|
761
|
+
{"name":"Vienna, Steinitz gambit","eco_code":"C25","moves":["e4","e5","Nc3","Nc6","f4","exf4","d4"]},
|
762
|
+
{"name":"Vienna, Steinitz gambit, Zukertort defence","eco_code":"C25","moves":["e4","e5","Nc3","Nc6","f4","exf4","d4","Qh4+","Ke2","d5"]},
|
763
|
+
{"name":"Vienna, Steinitz gambit, Fraser-Minckwitz variation","eco_code":"C25","moves":["e4","e5","Nc3","Nc6","f4","exf4","d4","Qh4+","Ke2","b6"]},
|
764
|
+
{"name":"Vienna gambit","eco_code":"C25","moves":["e4","e5","Nc3","Nc6","f4","exf4","Nf3"]},
|
765
|
+
{"name":"Vienna, Hamppe-Allgaier gambit","eco_code":"C25","moves":["e4","e5","Nc3","Nc6","f4","exf4","Nf3","g5","h4","g4","Ng5"]},
|
766
|
+
{"name":"Vienna, Hamppe-Allgaier gambit, Alapin variation","eco_code":"C25","moves":["e4","e5","Nc3","Nc6","f4","exf4","Nf3","g5","h4","g4","Ng5","d6"]},
|
767
|
+
{"name":"Vienna, Hamppe-Muzio gambit","eco_code":"C25","moves":["e4","e5","Nc3","Nc6","f4","exf4","Nf3","g5","Bc4","g4","O-O"]},
|
768
|
+
{"name":"Vienna, Hamppe-Muzio, Dubois variation","eco_code":"C25","moves":["e4","e5","Nc3","Nc6","f4","exf4","Nf3","g5","Bc4","g4","O-O","gxf3","Qxf3","Ne5","Qxf4","Qf6"]},
|
769
|
+
{"name":"Vienna, Pierce gambit","eco_code":"C25","moves":["e4","e5","Nc3","Nc6","f4","exf4","Nf3","g5","d4"]},
|
770
|
+
{"name":"Vienna, Pierce gambit, Rushmere attack","eco_code":"C25","moves":["e4","e5","Nc3","Nc6","f4","exf4","Nf3","g5","d4","g4","Bc4","gxf3","O-O","d5","exd5","Bg4","dxc6"]},
|
771
|
+
{"name":"Vienna, Falkbeer variation","eco_code":"C26","moves":["e4","e5","Nc3","Nf6"]},
|
772
|
+
{"name":"Vienna, Mengarini variation","eco_code":"C26","moves":["e4","e5","Nc3","Nf6","a3"]},
|
773
|
+
{"name":"Vienna, Paulsen-Mieses variation","eco_code":"C26","moves":["e4","e5","Nc3","Nf6","g3"]},
|
774
|
+
{"name":"Vienna game","eco_code":"C26","moves":["e4","e5","Nc3","Nf6","Bc4"]},
|
775
|
+
{"name":"Vienna game","eco_code":"C27","moves":["e4","e5","Nc3","Nf6","Bc4","Nxe4"]},
|
776
|
+
{"name":"Vienna, `Frankenstein-Dracula' variation","eco_code":"C27","moves":["e4","e5","Nc3","Nf6","Bc4","Nxe4","Qh5","Nd6","Bb3","Nc6","Nb5","g6","Qf3","f5","Qd5","Qe7","Nxc7+","Kd8","Nxa8","b6"]},
|
777
|
+
{"name":"Vienna, Adams' gambit","eco_code":"C27","moves":["e4","e5","Nc3","Nf6","Bc4","Nxe4","Qh5","Nd6","Bb3","Nc6","d4"]},
|
778
|
+
{"name":"Vienna game","eco_code":"C27","moves":["e4","e5","Nc3","Nf6","Bc4","Nxe4","Qh5","Nd6","Bb3","Be7"]},
|
779
|
+
{"name":"Vienna, Alekhine variation","eco_code":"C27","moves":["e4","e5","Nc3","Nf6","Bc4","Nxe4","Qh5","Nd6","Bb3","Be7","Nf3","Nc6","Nxe5"]},
|
780
|
+
{"name":"Boden-Kieseritsky gambit","eco_code":"C27","moves":["e4","e5","Nc3","Nf6","Bc4","Nxe4","Nf3"]},
|
781
|
+
{"name":"Boden-Kieseritsky gambit, Lichtenhein defence","eco_code":"C27","moves":["e4","e5","Nc3","Nf6","Bc4","Nxe4","Nf3","d5"]},
|
782
|
+
{"name":"Vienna game","eco_code":"C28","moves":["e4","e5","Nc3","Nf6","Bc4","Nc6"]},
|
783
|
+
{"name":"Vienna gambit","eco_code":"C29","moves":["e4","e5","Nc3","Nf6","f4","d5"]},
|
784
|
+
{"name":"Vienna gambit, Kaufmann variation","eco_code":"C29","moves":["e4","e5","Nc3","Nf6","f4","d5","fxe5","Nxe4","Nf3","Bg4","Qe2"]},
|
785
|
+
{"name":"Vienna gambit, Breyer variation","eco_code":"C29","moves":["e4","e5","Nc3","Nf6","f4","d5","fxe5","Nxe4","Nf3","Be7"]},
|
786
|
+
{"name":"Vienna gambit, Paulsen attack","eco_code":"C29","moves":["e4","e5","Nc3","Nf6","f4","d5","fxe5","Nxe4","Qf3"]},
|
787
|
+
{"name":"Vienna gambit, Bardeleben variation","eco_code":"C29","moves":["e4","e5","Nc3","Nf6","f4","d5","fxe5","Nxe4","Qf3","f5"]},
|
788
|
+
{"name":"Vienna gambit, Heyde variation","eco_code":"C29","moves":["e4","e5","Nc3","Nf6","f4","d5","fxe5","Nxe4","Qf3","f5","d4"]},
|
789
|
+
{"name":"Vienna gambit","eco_code":"C29","moves":["e4","e5","Nc3","Nf6","f4","d5","fxe5","Nxe4","d3"]},
|
790
|
+
{"name":"Vienna gambit, Wurzburger trap","eco_code":"C29","moves":["e4","e5","Nc3","Nf6","f4","d5","fxe5","Nxe4","d3","Qh4+","g3","Nxg3","Nf3","Qh5","Nxd5"]},
|
791
|
+
{"name":"Vienna gambit, Steinitz variation","eco_code":"C29","moves":["e4","e5","Nc3","Nf6","f4","d5","d3"]},
|
792
|
+
{"name":"King's gambit","eco_code":"C30","moves":["e4","e5","f4"]},
|
793
|
+
{"name":"King's Gambit Declined, Keene's defence","eco_code":"C30","moves":["e4","e5","f4","Qh4+","g3","Qe7"]},
|
794
|
+
{"name":"King's Gambit Declined, Mafia defence","eco_code":"C30","moves":["e4","e5","f4","c5"]},
|
795
|
+
{"name":"King's Gambit Declined, Norwalde variation","eco_code":"C30","moves":["e4","e5","f4","Qf6"]},
|
796
|
+
{"name":"King's Gambit Declined, Norwalde variation, Buecker gambit","eco_code":"C30","moves":["e4","e5","f4","Qf6","Nf3","Qxf4","Nc3","Bb4","Bc4"]},
|
797
|
+
{"name":"King's Gambit Declined, classical variation","eco_code":"C30","moves":["e4","e5","f4","Bc5"]},
|
798
|
+
{"name":"King's Gambit Declined, classical, Svenonius variation","eco_code":"C30","moves":["e4","e5","f4","Bc5","Nf3","d6","Nc3","Nf6","Bc4","Nc6","d3","Bg4","h3","Bxf3","Qxf3","exf4"]},
|
799
|
+
{"name":"King's Gambit Declined, classical, Hanham variation","eco_code":"C30","moves":["e4","e5","f4","Bc5","Nf3","d6","Nc3","Nd7"]},
|
800
|
+
{"name":"King's Gambit Declined, classical, 4.c3","eco_code":"C30","moves":["e4","e5","f4","Bc5","Nf3","d6","c3"]},
|
801
|
+
{"name":"King's Gambit Declined, classical, Marshall attack","eco_code":"C30","moves":["e4","e5","f4","Bc5","Nf3","d6","c3","Bg4","fxe5","dxe5","Qa4+"]},
|
802
|
+
{"name":"King's Gambit Declined, classical counter-gambit","eco_code":"C30","moves":["e4","e5","f4","Bc5","Nf3","d6","c3","f5"]},
|
803
|
+
{"name":"King's Gambit Declined, classical, Reti variation","eco_code":"C30","moves":["e4","e5","f4","Bc5","Nf3","d6","c3","f5","fxe5","dxe5","d4","exd4","Bc4"]},
|
804
|
+
{"name":"King's Gambit Declined, classical, Soldatenkov variation","eco_code":"C30","moves":["e4","e5","f4","Bc5","Nf3","d6","fxe5"]},
|
805
|
+
{"name":"King's Gambit Declined, classical, Heath variation","eco_code":"C30","moves":["e4","e5","f4","Bc5","Nf3","d6","b4"]},
|
806
|
+
{"name":"King's Gambit Declined, 2...Nf6","eco_code":"C30","moves":["e4","e5","f4","Nf6"]},
|
807
|
+
{"name":"King's Gambit Declined, Falkbeer counter-gambit","eco_code":"C31","moves":["e4","e5","f4","d5"]},
|
808
|
+
{"name":"King's Gambit Declined, Falkbeer, Tartakower variation","eco_code":"C31","moves":["e4","e5","f4","d5","Nf3"]},
|
809
|
+
{"name":"King's Gambit Declined, Falkbeer, Milner-Barry variation","eco_code":"C31","moves":["e4","e5","f4","d5","Nc3"]},
|
810
|
+
{"name":"King's Gambit Declined, Falkbeer counter-gambit","eco_code":"C31","moves":["e4","e5","f4","d5","exd5"]},
|
811
|
+
{"name":"King's Gambit Declined, Nimzovich counter-gambit","eco_code":"C31","moves":["e4","e5","f4","d5","exd5","c6"]},
|
812
|
+
{"name":"King's Gambit Declined, Falkbeer, 3...e4","eco_code":"C31","moves":["e4","e5","f4","d5","exd5","e4"]},
|
813
|
+
{"name":"King's Gambit Declined, Falkbeer, Rubinstein variation","eco_code":"C31","moves":["e4","e5","f4","d5","exd5","e4","Nc3","Nf6","Qe2"]},
|
814
|
+
{"name":"King's Gambit Declined, Falkbeer, Nimzovich variation","eco_code":"C31","moves":["e4","e5","f4","d5","exd5","e4","Bb5+"]},
|
815
|
+
{"name":"King's Gambit Declined, Falkbeer, 4.d3","eco_code":"C31","moves":["e4","e5","f4","d5","exd5","e4","d3"]},
|
816
|
+
{"name":"King's Gambit Declined, Falkbeer, Morphy gambit","eco_code":"C31","moves":["e4","e5","f4","d5","exd5","e4","d3","Nf6","Nc3","Bb4","Bd2","e3"]},
|
817
|
+
{"name":"King's Gambit Declined, Falkbeer, 5.de","eco_code":"C32","moves":["e4","e5","f4","d5","exd5","e4","d3","Nf6","dxe4"]},
|
818
|
+
{"name":"King's Gambit Declined, Falkbeer, Alapin variation","eco_code":"C32","moves":["e4","e5","f4","d5","exd5","e4","d3","Nf6","dxe4","Nxe4","Nf3","Bc5","Qe2","Bf2+","Kd1","Qxd5+","Nfd2"]},
|
819
|
+
{"name":"King's Gambit Declined, Falkbeer, main line, 7...Bf5","eco_code":"C32","moves":["e4","e5","f4","d5","exd5","e4","d3","Nf6","dxe4","Nxe4","Nf3","Bc5","Qe2","Bf5"]},
|
820
|
+
{"name":"King's Gambit Declined, Falkbeer, Tarrasch variation","eco_code":"C32","moves":["e4","e5","f4","d5","exd5","e4","d3","Nf6","dxe4","Nxe4","Nf3","Bc5","Qe2","Bf5","g4","O-O"]},
|
821
|
+
{"name":"King's Gambit Declined, Falkbeer, Charousek gambit","eco_code":"C32","moves":["e4","e5","f4","d5","exd5","e4","d3","Nf6","dxe4","Nxe4","Qe2"]},
|
822
|
+
{"name":"King's Gambit Declined, Falkbeer, Charousek variation","eco_code":"C32","moves":["e4","e5","f4","d5","exd5","e4","d3","Nf6","dxe4","Nxe4","Qe2","Qxd5","Nd2","f5","g4"]},
|
823
|
+
{"name":"King's Gambit Declined, Falkbeer, Keres variation","eco_code":"C32","moves":["e4","e5","f4","d5","exd5","e4","d3","Nf6","Nd2"]},
|
824
|
+
{"name":"King's Gambit Declined, Falkbeer, Reti variation","eco_code":"C32","moves":["e4","e5","f4","d5","exd5","e4","d3","Nf6","Qe2"]},
|
825
|
+
{"name":"King's gambit accepted","eco_code":"C33","moves":["e4","e5","f4","exf4"]},
|
826
|
+
{"name":"King's Gambit Accepted, Tumbleweed gambit","eco_code":"C33","moves":["e4","e5","f4","exf4","Kf2"]},
|
827
|
+
{"name":"King's Gambit Accepted, Orsini gambit","eco_code":"C33","moves":["e4","e5","f4","exf4","b3"]},
|
828
|
+
{"name":"King's Gambit Accepted, Pawn's gambit (Stamma gambit)","eco_code":"C33","moves":["e4","e5","f4","exf4","h4"]},
|
829
|
+
{"name":"King's Gambit Accepted, Schurig gambit","eco_code":"C33","moves":["e4","e5","f4","exf4","Bd3"]},
|
830
|
+
{"name":"King's Gambit Accepted, Carrera (Basman) gambit","eco_code":"C33","moves":["e4","e5","f4","exf4","Qe2"]},
|
831
|
+
{"name":"King's Gambit Accepted, Villemson (Steinitz) gambit","eco_code":"C33","moves":["e4","e5","f4","exf4","d4"]},
|
832
|
+
{"name":"King's Gambit Accepted, Keres (Mason-Steinitz) gambit","eco_code":"C33","moves":["e4","e5","f4","exf4","Nc3"]},
|
833
|
+
{"name":"King's Gambit Accepted, Breyer gambit","eco_code":"C33","moves":["e4","e5","f4","exf4","Qf3"]},
|
834
|
+
{"name":"King's Gambit Accepted, Lesser bishop's (Petroff-Jaenisch-Tartakower) gambit","eco_code":"C33","moves":["e4","e5","f4","exf4","Be2"]},
|
835
|
+
{"name":"King's Gambit Accepted, bishop's gambit","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4"]},
|
836
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Chigorin's attack","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","Qh4+","Kf1","d5","Bxd5","g5","g3"]},
|
837
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Greco variation","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","Qh4+","Kf1","Bc5"]},
|
838
|
+
{"name":"King's Gambit Accepted, bishop's gambit, classical defence","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","Qh4+","Kf1","g5"]},
|
839
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Grimm attack","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","Qh4+","Kf1","g5","Nc3","Bg7","d4","d6","e5"]},
|
840
|
+
{"name":"King's Gambit Accepted, bishop's gambit, classical defence","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","Qh4+","Kf1","g5","Nc3","Bg7","d4","Ne7"]},
|
841
|
+
{"name":"King's Gambit Accepted, bishop's gambit, McDonnell attack","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","Qh4+","Kf1","g5","Nc3","Bg7","d4","Ne7","g3"]},
|
842
|
+
{"name":"King's Gambit Accepted, bishop's gambit, McDonnell attack","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","Qh4+","Kf1","g5","Nc3","Bg7","g3"]},
|
843
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Fraser variation","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","Qh4+","Kf1","g5","Nc3","Bg7","g3","fxg3","Qf3"]},
|
844
|
+
{"name":"King's Gambit Accepted, bishop's gambit, classical defence, Cozio attack","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","Qh4+","Kf1","g5","Qf3"]},
|
845
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Boden defence","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","Qh4+","Kf1","Nc6"]},
|
846
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Bryan counter-gambit","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","Qh4+","Kf1","b5"]},
|
847
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Bryan counter-gambit","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","b5"]},
|
848
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Steinitz defence","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","Ne7"]},
|
849
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Maurian defence","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","Nc6"]},
|
850
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Ruy Lopez defence","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","c6"]},
|
851
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Lopez-Gianutio counter-gambit","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","f5"]},
|
852
|
+
{"name":"King's Gambit Accepted, Lopez-Gianutio counter-gambit, Hein variation","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","f5","Qe2","Qh4+","Kd1","fxe4","Nc3","Kd8"]},
|
853
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Bledow variation","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","d5"]},
|
854
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Gifford variation","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","d5","Bxd5","Qh4+","Kf1","g5","g3"]},
|
855
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Boren-Svenonius variation","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","d5","Bxd5","Qh4+","Kf1","Bd6"]},
|
856
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Anderssen variation","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","d5","Bxd5","c6"]},
|
857
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Morphy variation","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","d5","Bxd5","Nf6"]},
|
858
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Cozio (Morphy) defence","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","Nf6"]},
|
859
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Bogolyubov variation","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","Nf6","Nc3"]},
|
860
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Paulsen attack","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","Nf6","Nc3","Bb4","e5"]},
|
861
|
+
{"name":"King's Gambit Accepted, bishop's gambit, Jaenisch variation","eco_code":"C33","moves":["e4","e5","f4","exf4","Bc4","Nf6","Nc3","c6"]},
|
862
|
+
{"name":"King's Gambit Accepted","eco_code":"C34","moves":["e4","e5","f4","exf4","Nf3"]},
|
863
|
+
{"name":"King's Gambit Accepted, Bonsch-Osmolovsky variation","eco_code":"C34","moves":["e4","e5","f4","exf4","Nf3","Ne7"]},
|
864
|
+
{"name":"King's Gambit Accepted, Gianutio counter-gambit","eco_code":"C34","moves":["e4","e5","f4","exf4","Nf3","f5"]},
|
865
|
+
{"name":"King's Gambit Accepted, Fischer defence","eco_code":"C34","moves":["e4","e5","f4","exf4","Nf3","d6"]},
|
866
|
+
{"name":"King's Gambit Accepted, Becker defence","eco_code":"C34","moves":["e4","e5","f4","exf4","Nf3","h6"]},
|
867
|
+
{"name":"King's Gambit Accepted, Schallop defence","eco_code":"C34","moves":["e4","e5","f4","exf4","Nf3","Nf6"]},
|
868
|
+
{"name":"King's Gambit Accepted, Cunningham defence","eco_code":"C35","moves":["e4","e5","f4","exf4","Nf3","Be7"]},
|
869
|
+
{"name":"King's Gambit Accepted, Cunningham, Bertin gambit","eco_code":"C35","moves":["e4","e5","f4","exf4","Nf3","Be7","Bc4","Bh4+","g3"]},
|
870
|
+
{"name":"King's Gambit Accepted, Cunningham, three pawns gambit","eco_code":"C35","moves":["e4","e5","f4","exf4","Nf3","Be7","Bc4","Bh4+","g3","fxg3","O-O","gxh2+","Kh1"]},
|
871
|
+
{"name":"King's Gambit Accepted, Cunningham, Euwe defence","eco_code":"C35","moves":["e4","e5","f4","exf4","Nf3","Be7","Bc4","Nf6"]},
|
872
|
+
{"name":"King's Gambit Accepted, Abbazia defence (classical defence, modern defence[!])","eco_code":"C36","moves":["e4","e5","f4","exf4","Nf3","d5"]},
|
873
|
+
{"name":"King's Gambit Accepted, Abbazia defence, modern variation","eco_code":"C36","moves":["e4","e5","f4","exf4","Nf3","d5","exd5","Nf6"]},
|
874
|
+
{"name":"King's Gambit Accepted, Abbazia defence, Botvinnik variation","eco_code":"C36","moves":["e4","e5","f4","exf4","Nf3","d5","exd5","Nf6","Bb5+","c6","dxc6","bxc6","Bc4","Nd5"]},
|
875
|
+
{"name":"King's Gambit Accepted, Quaade gambit","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Nc3"]},
|
876
|
+
{"name":"King's Gambit Accepted, Rosentreter gambit","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","d4"]},
|
877
|
+
{"name":"King's Gambit Accepted, Soerensen gambit","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","d4","g4","Ne5"]},
|
878
|
+
{"name":"King's Gambit Accepted, King's knight's gambit","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4"]},
|
879
|
+
{"name":"King's Gambit Accepted, Blachly gambit","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","Nc6"]},
|
880
|
+
{"name":"King's Gambit Accepted, Lolli gambit (wild Muzio gambit)","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","g4","Bxf7+"]},
|
881
|
+
{"name":"King's Gambit Accepted, Lolli gambit, Young variation","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","g4","Bxf7+","Kxf7","O-O","gxf3","Qxf3","Qf6","d4","Qxd4+","Be3","Qf6","Nc3"]},
|
882
|
+
{"name":"King's Gambit Accepted, Ghulam Kassim gambit","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","g4","d4"]},
|
883
|
+
{"name":"King's Gambit Accepted, MacDonnell gambit","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","g4","Nc3"]},
|
884
|
+
{"name":"King's Gambit Accepted, Salvio gambit","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","g4","Ne5"]},
|
885
|
+
{"name":"King's Gambit Accepted, Silberschmidt gambit","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","g4","Ne5","Qh4+","Kf1","Nh6","d4","f3"]},
|
886
|
+
{"name":"King's Gambit Accepted, Salvio gambit, Anderssen counter-attack","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","g4","Ne5","Qh4+","Kf1","Nh6","d4","d6"]},
|
887
|
+
{"name":"King's Gambit Accepted, Cochrane gambit","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","g4","Ne5","Qh4+","Kf1","f3"]},
|
888
|
+
{"name":"King's Gambit Accepted, Herzfeld gambit","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","g4","Ne5","Qh4+","Kf1","Nc6"]},
|
889
|
+
{"name":"King's Gambit Accepted, Muzio gambit","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","g4","O-O"]},
|
890
|
+
{"name":"King's Gambit Accepted, Muzio gambit, Paulsen variation","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","g4","O-O","gxf3","Qxf3","Qf6","e5","Qxe5","d3","Bh6","Nc3","Ne7","Bd2","Nbc6","Rae1"]},
|
891
|
+
{"name":"King's Gambit Accepted, double Muzio gambit","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","g4","O-O","gxf3","Qxf3","Qf6","e5","Qxe5","Bxf7+"]},
|
892
|
+
{"name":"King's Gambit Accepted, Muzio gambit, From defence","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","g4","O-O","gxf3","Qxf3","Qe7"]},
|
893
|
+
{"name":"King's Gambit Accepted, Muzio gambit, Holloway defence","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","g4","O-O","gxf3","Qxf3","Nc6"]},
|
894
|
+
{"name":"King's Gambit Accepted, Muzio gambit, Kling and Horwitz counter-attack","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","g4","O-O","Qe7"]},
|
895
|
+
{"name":"King's Gambit Accepted, Muzio gambit, Brentano defence","eco_code":"C37","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","g4","O-O","d5"]},
|
896
|
+
{"name":"King's Gambit Accepted","eco_code":"C38","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","Bg7"]},
|
897
|
+
{"name":"King's Gambit Accepted, Hanstein gambit","eco_code":"C38","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","Bg7","O-O"]},
|
898
|
+
{"name":"King's Gambit Accepted, Philidor gambit","eco_code":"C38","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","Bg7","h4"]},
|
899
|
+
{"name":"King's Gambit Accepted, Greco gambit","eco_code":"C38","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","Bg7","h4","h6","d4","d6","Nc3","c6","hxg5","hxg5","Rxh8","Bxh8","Ne5"]},
|
900
|
+
{"name":"King's Gambit Accepted, Philidor gambit, Schultz variation","eco_code":"C38","moves":["e4","e5","f4","exf4","Nf3","g5","Bc4","Bg7","h4","h6","d4","d6","Qd3"]},
|
901
|
+
{"name":"King's Gambit Accepted","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4"]},
|
902
|
+
{"name":"King's Gambit Accepted, Allgaier gambit","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ng5"]},
|
903
|
+
{"name":"King's Gambit Accepted, Allgaier, Horny defence","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ng5","h6","Nxf7","Kxf7","Qxg4","Nf6","Qxf4","Bd6"]},
|
904
|
+
{"name":"King's Gambit Accepted, Allgaier, Thorold variation","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ng5","h6","Nxf7","Kxf7","d4"]},
|
905
|
+
{"name":"King's Gambit Accepted, Allgaier, Cook variation","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ng5","h6","Nxf7","Kxf7","d4","d5","Bxf4","dxe4","Bc4+","Kg7","Be5+"]},
|
906
|
+
{"name":"King's Gambit Accepted, Allgaier, Blackburne gambit","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ng5","h6","Nxf7","Kxf7","Nc3"]},
|
907
|
+
{"name":"King's Gambit Accepted, Allgaier, Walker attack","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ng5","h6","Nxf7","Kxf7","Bc4+"]},
|
908
|
+
{"name":"King's Gambit Accepted, Allgaier, Urusov attack","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ng5","h6","Nxf7","Kxf7","Bc4+","d5","Bxd5+","Kg7","d4"]},
|
909
|
+
{"name":"King's Gambit Accepted, Allgaier, Schlechter defence","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ng5","Nf6"]},
|
910
|
+
{"name":"King's Gambit Accepted, Kieseritsky, Paulsen defence","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ne5","Bg7"]},
|
911
|
+
{"name":"King's Gambit Accepted, Kieseritsky, long whip (Stockwhip, classical) defence","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ne5","h5"]},
|
912
|
+
{"name":"King's Gambit Accepted, Kieseritsky, long whip defence, Jaenisch variation","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ne5","h5","Bc4","Rh7","d4","Bh6","Nc3"]},
|
913
|
+
{"name":"King's Gambit Accepted, Kieseritsky, Brentano (Campbell) defence","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ne5","d5"]},
|
914
|
+
{"name":"King's Gambit Accepted, Kieseritsky, Brentano defence, Kaplanek variation","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ne5","d5","d4","Nf6","exd5","Qxd5","Nc3","Bb4","Kf2"]},
|
915
|
+
{"name":"King's Gambit Accepted, Kieseritsky, Brentano defence","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ne5","d5","d4","Nf6","Bxf4"]},
|
916
|
+
{"name":"King's Gambit Accepted, Kieseritsky, Brentano defence, Caro variation","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ne5","d5","d4","Nf6","Bxf4","Nxe4","Nd2"]},
|
917
|
+
{"name":"King's Gambit Accepted, Kieseritsky, Salvio (Rosenthal) defence","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ne5","Qe7"]},
|
918
|
+
{"name":"King's Gambit Accepted, Kieseritsky, Salvio defence, Cozio variation","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ne5","Qe7","d4","f5","Bc4"]},
|
919
|
+
{"name":"King's Gambit Accepted, Kieseritsky, Polerio defence","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ne5","Be7"]},
|
920
|
+
{"name":"King's Gambit Accepted, Kieseritsky, Neumann defence","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ne5","Nc6"]},
|
921
|
+
{"name":"King's Gambit Accepted, Kieseritsky, Kolisch defence","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ne5","d6"]},
|
922
|
+
{"name":"King's Gambit Accepted, Kieseritsky, Berlin defence","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ne5","Nf6"]},
|
923
|
+
{"name":"King's Gambit Accepted, Kieseritsky, Berlin defence, Riviere variation","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ne5","Nf6","Nxg4","d5"]},
|
924
|
+
{"name":"King's Gambit Accepted, Kieseritsky, Berlin defence, 6.Bc4","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ne5","Nf6","Bc4"]},
|
925
|
+
{"name":"King's Gambit Accepted, Kieseritsky, Rice gambit","eco_code":"C39","moves":["e4","e5","f4","exf4","Nf3","g5","h4","g4","Ne5","Nf6","Bc4","d5","exd5","Bd6","O-O"]},
|
926
|
+
{"name":"Petrov's defence","eco_code":"C42","moves":["e4","e5","Nf3","Nf6"]},
|
927
|
+
{"name":"Petrov, French attack","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nxe5","d6","Nf3","Nxe4","d3"]},
|
928
|
+
{"name":"Petrov, Kaufmann attack","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nxe5","d6","Nf3","Nxe4","c4"]},
|
929
|
+
{"name":"Petrov, Nimzovich attack","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nxe5","d6","Nf3","Nxe4","Nc3"]},
|
930
|
+
{"name":"Petrov, Cozio (Lasker) attack","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nxe5","d6","Nf3","Nxe4","Qe2"]},
|
931
|
+
{"name":"Petrov, classical attack","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nxe5","d6","Nf3","Nxe4","d4"]},
|
932
|
+
{"name":"Petrov, classical attack, Chigorin variation","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nxe5","d6","Nf3","Nxe4","d4","d5","Bd3","Be7","O-O","Nc6","Re1"]},
|
933
|
+
{"name":"Petrov, classical attack, Berger variation","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nxe5","d6","Nf3","Nxe4","d4","d5","Bd3","Be7","O-O","Nc6","Re1","Bg4","c3","f5","Nbd2"]},
|
934
|
+
{"name":"Petrov, classical attack, Krause variation","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nxe5","d6","Nf3","Nxe4","d4","d5","Bd3","Be7","O-O","Nc6","Re1","Bg4","c3","f5","c4"]},
|
935
|
+
{"name":"Petrov, classical attack, Maroczy variation","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nxe5","d6","Nf3","Nxe4","d4","d5","Bd3","Be7","O-O","Nc6","Re1","Bg4","c3","f5","c4","Bh4"]},
|
936
|
+
{"name":"Petrov, classical attack, Jaenisch variation","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nxe5","d6","Nf3","Nxe4","d4","d5","Bd3","Be7","O-O","Nc6","c4"]},
|
937
|
+
{"name":"Petrov, classical attack, Mason variation","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nxe5","d6","Nf3","Nxe4","d4","d5","Bd3","Be7","O-O","O-O"]},
|
938
|
+
{"name":"Petrov, classical attack, Marshall variation","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nxe5","d6","Nf3","Nxe4","d4","d5","Bd3","Bd6"]},
|
939
|
+
{"name":"Petrov, classical attack, Tarrasch variation","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nxe5","d6","Nf3","Nxe4","d4","d5","Bd3","Bd6","O-O","O-O","c4","Bg4"]},
|
940
|
+
{"name":"Petrov, classical attack, Marshall trap","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nxe5","d6","Nf3","Nxe4","d4","d5","Bd3","Bd6","O-O","O-O","c4","Bg4","cxd5","f5","Re1","Bxh2+"]},
|
941
|
+
{"name":"Petrov, classical attack, close variation","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nxe5","d6","Nf3","Nxe4","d4","Nf6"]},
|
942
|
+
{"name":"Petrov, Cochrane gambit","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nxe5","d6","Nxf7"]},
|
943
|
+
{"name":"Petrov, Paulsen attack","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nxe5","d6","Nc4"]},
|
944
|
+
{"name":"Petrov, Damiano variation","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nxe5","Nxe4"]},
|
945
|
+
{"name":"Petrov three knights game","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Nc3"]},
|
946
|
+
{"name":"Petrov, Italian variation","eco_code":"C42","moves":["e4","e5","Nf3","Nf6","Bc4"]},
|
947
|
+
{"name":"Petrov, modern (Steinitz) attack","eco_code":"C43","moves":["e4","e5","Nf3","Nf6","d4"]},
|
948
|
+
{"name":"Petrov, modern attack, main line","eco_code":"C43","moves":["e4","e5","Nf3","Nf6","d4","exd4","e5","Ne4","Qxd4"]},
|
949
|
+
{"name":"Petrov, modern attack, Steinitz variation","eco_code":"C43","moves":["e4","e5","Nf3","Nf6","d4","exd4","e5","Ne4","Qe2"]},
|
950
|
+
{"name":"Petrov, modern attack, Bardeleben variation","eco_code":"C43","moves":["e4","e5","Nf3","Nf6","d4","exd4","e5","Ne4","Qe2","Nc5","Nxd4","Nc6"]},
|
951
|
+
{"name":"Petrov, Urusov gambit","eco_code":"C43","moves":["e4","e5","Nf3","Nf6","d4","exd4","Bc4"]},
|
952
|
+
{"name":"Petrov, modern attack, Symmetrical variation","eco_code":"C43","moves":["e4","e5","Nf3","Nf6","d4","Nxe4"]},
|
953
|
+
{"name":"Petrov, modern attack, Trifunovic variation","eco_code":"C43","moves":["e4","e5","Nf3","Nf6","d4","Nxe4","Bd3","d5","Nxe5","Bd6","O-O","O-O","c4","Bxe5"]},
|
954
|
+
{"name":"Four knights, Scotch variation","eco_code":"C47","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","d4"]},
|
955
|
+
{"name":"Four knights, Scotch, Krause variation","eco_code":"C47","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","d4","Bb4","Nxe5"]},
|
956
|
+
{"name":"Four knights, Scotch, 4...exd4","eco_code":"C47","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","d4","exd4"]},
|
957
|
+
{"name":"Four knights, Belgrade gambit","eco_code":"C47","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","d4","exd4","Nd5"]},
|
958
|
+
{"name":"Four knights, Spanish variation","eco_code":"C48","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5"]},
|
959
|
+
{"name":"Four knights, Ranken variation","eco_code":"C48","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","a6","Bxc6"]},
|
960
|
+
{"name":"Four knights, Spielmann variation","eco_code":"C48","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","a6","Bxc6","dxc6","Nxe5","Nxe4","Nxe4","Qd4","O-O","Qxe5","Re1","Be6","d4","Qd5"]},
|
961
|
+
{"name":"Four knights, Spanish, classical defence","eco_code":"C48","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Bc5"]},
|
962
|
+
{"name":"Four knights, Bardeleben variation","eco_code":"C48","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Bc5","O-O","O-O","Nxe5","Nxe5","d4","Bd6","f4","Nc6","e5","Bb4"]},
|
963
|
+
{"name":"Four knights, Marshall variation","eco_code":"C48","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Bc5","O-O","O-O","Nxe5","Nd4"]},
|
964
|
+
{"name":"Four knights, Rubinstein counter-gambit","eco_code":"C48","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Nd4"]},
|
965
|
+
{"name":"Four knights, Rubinstein counter-gambit, Bogolyubov variation","eco_code":"C48","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Nd4","Nxe5","Qe7","f4"]},
|
966
|
+
{"name":"Four knights, Rubinstein counter-gambit, 5.Be2","eco_code":"C48","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Nd4","Be2"]},
|
967
|
+
{"name":"Four knights, Rubinstein counter-gambit Maroczy variation","eco_code":"C48","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Nd4","Be2","Nxf3+","Bxf3","Bc5","O-O","O-O","d3","d6","Na4","Bb6"]},
|
968
|
+
{"name":"Four knights, Rubinstein counter-gambit, exchange variation","eco_code":"C48","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Nd4","Nxd4"]},
|
969
|
+
{"name":"Four knights, Rubinstein counter-gambit, Henneberger variation","eco_code":"C48","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Nd4","O-O"]},
|
970
|
+
{"name":"Four knights, double Ruy Lopez","eco_code":"C49","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Bb4"]},
|
971
|
+
{"name":"Four knights, Gunsberg counter-attack","eco_code":"C49","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Bb4","O-O","O-O","Nd5","Nxd5","exd5","e4"]},
|
972
|
+
{"name":"Four knights, double Ruy Lopez","eco_code":"C49","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Bb4","O-O","O-O","d3"]},
|
973
|
+
{"name":"Four knights, Alatortsev variation","eco_code":"C49","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Bb4","O-O","O-O","d3","Qe7","Ne2","d5"]},
|
974
|
+
{"name":"Four knights","eco_code":"C49","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Bb4","O-O","O-O","d3","Bxc3"]},
|
975
|
+
{"name":"Four knights, Janowski variation","eco_code":"C49","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Bb4","O-O","O-O","d3","Bxc3","bxc3","d6","Re1"]},
|
976
|
+
{"name":"Four knights, Svenonius variation","eco_code":"C49","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Bb4","O-O","O-O","d3","Bxc3","bxc3","d5"]},
|
977
|
+
{"name":"Four knights, symmetrical variation","eco_code":"C49","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Bb4","O-O","O-O","d3","d6"]},
|
978
|
+
{"name":"Four knights, symmetrical, Metger unpin","eco_code":"C49","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Bb4","O-O","O-O","d3","d6","Bg5","Bxc3","bxc3","Qe7"]},
|
979
|
+
{"name":"Four knights, symmetrical, Capablanca variation","eco_code":"C49","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Bb4","O-O","O-O","d3","d6","Bg5","Bxc3","bxc3","Qe7","Re1","Nd8","d4","Bg4"]},
|
980
|
+
{"name":"Four knights, symmetrical, Pillsbury variation","eco_code":"C49","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Bb4","O-O","O-O","d3","d6","Bg5","Ne7"]},
|
981
|
+
{"name":"Four knights, symmetrical, Blake variation","eco_code":"C49","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Bb4","O-O","O-O","d3","d6","Bg5","Ne7","Nh4","c6","Bc4","d5","Bb3","Qd6"]},
|
982
|
+
{"name":"Four knights, symmetrical, Tarrasch variation","eco_code":"C49","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Bb4","O-O","O-O","d3","d6","Bg5","Be6"]},
|
983
|
+
{"name":"Four knights, symmetrical, Maroczy system","eco_code":"C49","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Bb4","O-O","O-O","d3","d6","Ne2"]},
|
984
|
+
{"name":"Four knights, Nimzovich (Paulsen) variation","eco_code":"C49","moves":["e4","e5","Nf3","Nc6","Nc3","Nf6","Bb5","Bb4","O-O","O-O","Bxc6"]},
|
985
|
+
{"name":"Evans gambit declined","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4"]},
|
986
|
+
{"name":"Evans gambit declined, Lange variation","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bb6","b5","Na5","Nxe5","Nh6"]},
|
987
|
+
{"name":"Evans gambit declined, Pavlov variation","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bb6","b5","Na5","Nxe5","Nh6","d4","d6","Bxh6","dxe5","Bxg7","Rg8","Bxf7+","Kxf7","Bxe5","Qg5","Nd2"]},
|
988
|
+
{"name":"Evans gambit declined, Hirschbach variation","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bb6","b5","Na5","Nxe5","Qg5"]},
|
989
|
+
{"name":"Evans gambit declined, Vasquez variation","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bb6","b5","Na5","Nxe5","Qg5","Bxf7+","Ke7","Qh5"]},
|
990
|
+
{"name":"Evans gambit declined, Hicken variation","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bb6","b5","Na5","Nxe5","Qg5","Qf3","Qxe5","Qxf7+","Kd8","Bb2"]},
|
991
|
+
{"name":"Evans gambit declined, 5.a4","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bb6","a4"]},
|
992
|
+
{"name":"Evans gambit declined, Showalter variation","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bb6","a4","a6","Nc3"]},
|
993
|
+
{"name":"Evans gambit declined, Cordel variation","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bb6","Bb2"]},
|
994
|
+
{"name":"Evans counter-gambit","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","d5"]},
|
995
|
+
{"name":"Evans gambit","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4"]},
|
996
|
+
{"name":"Evans gambit, normal variation","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Bc5","d4","exd4","O-O","d6","cxd4","Bb6"]},
|
997
|
+
{"name":"Evans gambit, Ulvestad variation","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Bc5","d4","exd4","O-O","d6","cxd4","Bb6","d5","Na5","Bb2"]},
|
998
|
+
{"name":"Evans gambit, Paulsen variation","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Bc5","d4","exd4","O-O","d6","cxd4","Bb6","d5","Na5","Bb2","Ne7"]},
|
999
|
+
{"name":"Evans gambit, Morphy attack","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Bc5","d4","exd4","O-O","d6","cxd4","Bb6","Nc3"]},
|
1000
|
+
{"name":"Evans gambit, Goering attack","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Bc5","d4","exd4","O-O","d6","cxd4","Bb6","Nc3","Na5","Bg5"]},
|
1001
|
+
{"name":"Evans gambit, Steinitz variation","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Bc5","d4","exd4","O-O","d6","cxd4","Bb6","Nc3","Na5","Bg5","f6","Be3"]},
|
1002
|
+
{"name":"Evans gambit","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Bc5","d4","exd4","O-O","d6","cxd4","Bb6","Nc3","Bg4"]},
|
1003
|
+
{"name":"Evans gambit, Fraser attack","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Bc5","d4","exd4","O-O","d6","cxd4","Bb6","Nc3","Bg4","Qa4"]},
|
1004
|
+
{"name":"Evans gambit, Fraser-Mortimer attack","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Bc5","d4","exd4","O-O","d6","cxd4","Bb6","Nc3","Bg4","Qa4","Bd7","Qb3","Na5","Bxf7+","Kf8","Qc2"]},
|
1005
|
+
{"name":"Evans gambit, Stone-Ware variation","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Bd6"]},
|
1006
|
+
{"name":"Evans gambit, Mayet defence","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Bf8"]},
|
1007
|
+
{"name":"Evans gambit, 5...Be7","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Be7"]},
|
1008
|
+
{"name":"Evans gambit, Cordel variation","eco_code":"C51","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Be7","d4","Na5"]},
|
1009
|
+
{"name":"Evans gambit","eco_code":"C52","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Ba5"]},
|
1010
|
+
{"name":"Evans gambit, compromised defence","eco_code":"C52","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Ba5","d4","exd4","O-O","dxc3"]},
|
1011
|
+
{"name":"Evans gambit, compromised defence, Paulsen variation","eco_code":"C52","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Ba5","d4","exd4","O-O","dxc3","Qb3","Qf6","e5","Qg6","Nxc3","Nge7","Ba3"]},
|
1012
|
+
{"name":"Evans gambit, compromised defence, Potter variation","eco_code":"C52","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Ba5","d4","exd4","O-O","dxc3","Qb3","Qf6","e5","Qg6","Nxc3","Nge7","Rd1"]},
|
1013
|
+
{"name":"Evans gambit, Leonhardt variation","eco_code":"C52","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Ba5","d4","b5"]},
|
1014
|
+
{"name":"Evans gambit","eco_code":"C52","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Ba5","d4","d6"]},
|
1015
|
+
{"name":"Evans gambit, Tartakower attack","eco_code":"C52","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Ba5","d4","d6","Qb3"]},
|
1016
|
+
{"name":"Evans gambit, Levenfish variation","eco_code":"C52","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Ba5","d4","d6","Qb3","Qd7","dxe5","dxe5","O-O","Bb6","Ba3","Na5","Nxe5"]},
|
1017
|
+
{"name":"Evans gambit, Sokolsky variation","eco_code":"C52","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Ba5","d4","d6","Bg5"]},
|
1018
|
+
{"name":"Evans gambit","eco_code":"C52","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Ba5","O-O"]},
|
1019
|
+
{"name":"Evans gambit, Richardson attack","eco_code":"C52","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Ba5","O-O","Nf6","d4","O-O","Nxe5"]},
|
1020
|
+
{"name":"Evans gambit","eco_code":"C52","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Ba5","O-O","d6"]},
|
1021
|
+
{"name":"Evans gambit, Waller attack","eco_code":"C52","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Ba5","O-O","d6","d4","exd4","Qb3"]},
|
1022
|
+
{"name":"Evans gambit, Lasker defence","eco_code":"C52","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Ba5","O-O","d6","d4","Bb6"]},
|
1023
|
+
{"name":"Evans gambit, Sanders-Alapin variation","eco_code":"C52","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Ba5","O-O","d6","d4","Bd7"]},
|
1024
|
+
{"name":"Evans gambit, Alapin-Steinitz variation","eco_code":"C52","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","b4","Bxb4","c3","Ba5","O-O","d6","d4","Bg4"]},
|
1025
|
+
{"name":"Giuoco Piano","eco_code":"C53","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3"]},
|
1026
|
+
{"name":"Giuoco Piano, LaBourdonnais variation","eco_code":"C53","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","d6","d4","exd4","cxd4","Bb6"]},
|
1027
|
+
{"name":"Giuoco Piano, close variation","eco_code":"C53","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Qe7"]},
|
1028
|
+
{"name":"Giuoco Piano, centre-holding variation","eco_code":"C53","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Qe7","d4","Bb6"]},
|
1029
|
+
{"name":"Giuoco Piano, Tarrasch variation","eco_code":"C53","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Qe7","d4","Bb6","O-O","Nf6","a4","a6","Re1","d6","h3"]},
|
1030
|
+
{"name":"Giuoco Piano, Mestel variation","eco_code":"C53","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Qe7","d4","Bb6","Bg5"]},
|
1031
|
+
{"name":"Giuoco Piano, Eisinger variation","eco_code":"C53","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Qe7","d4","Bb6","d5","Nb8","d6"]},
|
1032
|
+
{"name":"Giuoco Piano","eco_code":"C53","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Nf6"]},
|
1033
|
+
{"name":"Giuoco Piano, Bird's attack","eco_code":"C53","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Nf6","b4"]},
|
1034
|
+
{"name":"Giuoco Piano","eco_code":"C53","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Nf6","d4"]},
|
1035
|
+
{"name":"Giuoco Piano, Ghulam Kassim variation","eco_code":"C53","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Nf6","d4","exd4","e5","Ne4","Bd5","Nxf2","Kxf2","dxc3+","Kg3"]},
|
1036
|
+
{"name":"Giuoco Piano","eco_code":"C53","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Nf6","d4","exd4","e5","d5"]},
|
1037
|
+
{"name":"Giuoco Piano, Anderssen variation","eco_code":"C53","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Nf6","d4","exd4","e5","d5","Bb5","Ne4","cxd4","Bb4+"]},
|
1038
|
+
{"name":"Giuoco Piano","eco_code":"C54","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Nf6","d4","exd4","cxd4"]},
|
1039
|
+
{"name":"Giuoco Piano, Krause variation","eco_code":"C54","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Nf6","d4","exd4","cxd4","Bb4+","Bd2","Nxe4","Bxb4","Nxb4","Bxf7+","Kxf7","Qb3+","d5","Ne5+","Kf6","f3"]},
|
1040
|
+
{"name":"Giuoco Piano, Cracow variation","eco_code":"C54","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Nf6","d4","exd4","cxd4","Bb4+","Kf1"]},
|
1041
|
+
{"name":"Giuoco Piano, Greco's attack","eco_code":"C54","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Nf6","d4","exd4","cxd4","Bb4+","Nc3"]},
|
1042
|
+
{"name":"Giuoco Piano, Greco variation","eco_code":"C54","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Nf6","d4","exd4","cxd4","Bb4+","Nc3","Nxe4","O-O","Nxc3"]},
|
1043
|
+
{"name":"Giuoco Piano, Bernstein variation","eco_code":"C54","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Nf6","d4","exd4","cxd4","Bb4+","Nc3","Nxe4","O-O","Nxc3","bxc3","Bxc3","Qb3","d5"]},
|
1044
|
+
{"name":"Giuoco Piano, Aitken variation","eco_code":"C54","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Nf6","d4","exd4","cxd4","Bb4+","Nc3","Nxe4","O-O","Nxc3","bxc3","Bxc3","Ba3"]},
|
1045
|
+
{"name":"Giuoco Piano","eco_code":"C54","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Nf6","d4","exd4","cxd4","Bb4+","Nc3","Nxe4","O-O","Bxc3"]},
|
1046
|
+
{"name":"Giuoco Piano, Steinitz variation","eco_code":"C54","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Nf6","d4","exd4","cxd4","Bb4+","Nc3","Nxe4","O-O","Bxc3","bxc3","d5","Ba3"]},
|
1047
|
+
{"name":"Giuoco Piano, Moeller (Therkatz) attack","eco_code":"C54","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Nf6","d4","exd4","cxd4","Bb4+","Nc3","Nxe4","O-O","Bxc3","d5"]},
|
1048
|
+
{"name":"Giuoco Piano, Therkatz-Herzog variation","eco_code":"C54","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Nf6","d4","exd4","cxd4","Bb4+","Nc3","Nxe4","O-O","Bxc3","d5","Bf6","Re1","Ne7","Rxe4","d6","Bg5","Bxg5","Nxg5","O-O","Nxh7"]},
|
1049
|
+
{"name":"Giuoco Piano, Moeller, bayonet attack","eco_code":"C54","moves":["e4","e5","Nf3","Nc6","Bc4","Bc5","c3","Nf6","d4","exd4","cxd4","Bb4+","Nc3","Nxe4","O-O","Bxc3","d5","Bf6","Re1","Ne7","Rxe4","d6","g4"]},
|
1050
|
+
{"name":"Two knights defence","eco_code":"C55","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6"]},
|
1051
|
+
{"name":"Giuoco piano, Rosentreter variation","eco_code":"C55","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","O-O","Bc5","d4","Bxd4","Nxd4","Nxd4","Bg5","h6","Bh4","g5","f4"]},
|
1052
|
+
{"name":"Giuoco piano","eco_code":"C55","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","O-O","Bc5","d4","Bxd4","Nxd4","Nxd4","Bg5","d6"]},
|
1053
|
+
{"name":"Giuoco piano, Holzhausen attack","eco_code":"C55","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","O-O","Bc5","d4","Bxd4","Nxd4","Nxd4","Bg5","d6","f4","Qe7","fxe5","dxe5","Nc3"]},
|
1054
|
+
{"name":"Two knights defence (Modern bishop's opening)","eco_code":"C55","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","d3"]},
|
1055
|
+
{"name":"Two knights defence","eco_code":"C55","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","d4"]},
|
1056
|
+
{"name":"Two knights defence, Keidanz variation","eco_code":"C55","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","d4","exd4","e5","d5","Bb5","Ne4","Nxd4","Bc5","Nxc6","Bxf2+","Kf1","Qh4"]},
|
1057
|
+
{"name":"Two knights defence, Perreux variation","eco_code":"C55","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","d4","exd4","Ng5"]},
|
1058
|
+
{"name":"Two knights defence","eco_code":"C55","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","d4","exd4","O-O"]},
|
1059
|
+
{"name":"two knights, Max Lange attack","eco_code":"C55","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","d4","exd4","O-O","Bc5","e5"]},
|
1060
|
+
{"name":"two knights, Max Lange attack, Berger variation","eco_code":"C55","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","d4","exd4","O-O","Bc5","e5","d5","exf6","dxc4","Re1+","Be6","Ng5","Qd5","Nc3","Qf5","g4","Qg6","Nce4","Bb6","f4","O-O-O"]},
|
1061
|
+
{"name":"two knights, Max Lange attack, Marshall variation","eco_code":"C55","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","d4","exd4","O-O","Bc5","e5","d5","exf6","dxc4","Re1+","Be6","Ng5","Qd5","Nc3","Qf5","Nce4"]},
|
1062
|
+
{"name":"two knights, Max Lange attack, Rubinstein variation","eco_code":"C55","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","d4","exd4","O-O","Bc5","e5","d5","exf6","dxc4","Re1+","Be6","Ng5","Qd5","Nc3","Qf5","Nce4","Bf8"]},
|
1063
|
+
{"name":"two knights, Max Lange attack, Loman defence","eco_code":"C55","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","d4","exd4","O-O","Bc5","e5","d5","exf6","dxc4","Re1+","Be6","Ng5","g6"]},
|
1064
|
+
{"name":"two knights, Max Lange attack, Schlechter variation","eco_code":"C55","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","d4","exd4","O-O","Bc5","e5","d5","exf6","dxc4","Re1+","Be6","fxg7"]},
|
1065
|
+
{"name":"two knights, Max Lange attack, Steinitz variation","eco_code":"C55","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","d4","exd4","O-O","Bc5","e5","Ng4"]},
|
1066
|
+
{"name":"two knights, Max Lange attack, Krause variation","eco_code":"C55","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","d4","exd4","O-O","Bc5","e5","Ng4","c3"]},
|
1067
|
+
{"name":"Two knights defence","eco_code":"C56","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","d4","exd4","O-O","Nxe4"]},
|
1068
|
+
{"name":"two knights defence, Yurdansky attack","eco_code":"C56","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","d4","exd4","O-O","Nxe4","Re1","d5","Bxd5","Qxd5","Nc3","Qa5","Nxe4","Be6","Bg5","h6","Bh4","g5","Nf6+","Ke7","b4"]},
|
1069
|
+
{"name":"two knights defence, Canal variation","eco_code":"C56","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","d4","exd4","O-O","Nxe4","Re1","d5","Nc3"]},
|
1070
|
+
{"name":"Two knights defence","eco_code":"C57","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5"]},
|
1071
|
+
{"name":"two knights defence, Wilkes Barre (Traxler) variation","eco_code":"C57","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","Bc5"]},
|
1072
|
+
{"name":"two knights defence, Ulvestad variation","eco_code":"C57","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","b5"]},
|
1073
|
+
{"name":"two knights defence, Fritz variation","eco_code":"C57","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Nd4"]},
|
1074
|
+
{"name":"two knights defence, Fritz, Gruber variation","eco_code":"C57","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Nd4","c3","b5","Bf1","Nxd5","Ne4"]},
|
1075
|
+
{"name":"two knights defence, Lolli attack","eco_code":"C57","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Nxd5","d4"]},
|
1076
|
+
{"name":"two knights defence, Pincus variation","eco_code":"C57","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Nxd5","d4","Bb4+"]},
|
1077
|
+
{"name":"two knights defence, Fegatello attack","eco_code":"C57","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Nxd5","Nxf7"]},
|
1078
|
+
{"name":"two knights defence, Fegatello attack, Leonhardt variation","eco_code":"C57","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Nxd5","Nxf7","Kxf7","Qf3+","Ke6","Nc3","Ncb4","Qe4","c6","a3","Na6","d4","Nac7"]},
|
1079
|
+
{"name":"two knights defence, Fegatello attack, Polerio defence","eco_code":"C57","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Nxd5","Nxf7","Kxf7","Qf3+","Ke6","Nc3","Nce7"]},
|
1080
|
+
{"name":"two knights defence","eco_code":"C58","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Na5"]},
|
1081
|
+
{"name":"two knights defence, Kieseritsky variation","eco_code":"C58","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Na5","d3"]},
|
1082
|
+
{"name":"two knights defence, Yankovich variation","eco_code":"C58","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Na5","d3","h6","Nf3","e4","Qe2","Nxc4","dxc4","Bc5","Nfd2"]},
|
1083
|
+
{"name":"two knights defence, Maroczy variation","eco_code":"C58","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Na5","d3","h6","Nf3","e4","Qe2","Nxc4","dxc4","Be7"]},
|
1084
|
+
{"name":"Two knights defence","eco_code":"C58","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Na5","Bb5+"]},
|
1085
|
+
{"name":"two knights defence, Bogolyubov variation","eco_code":"C58","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Na5","Bb5+","c6","dxc6","bxc6","Qf3"]},
|
1086
|
+
{"name":"two knights defence, Paoli variation","eco_code":"C58","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Na5","Bb5+","c6","dxc6","bxc6","Qf3","Qc7","Bd3"]},
|
1087
|
+
{"name":"two knights defence, Colman variation","eco_code":"C58","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Na5","Bb5+","c6","dxc6","bxc6","Qf3","Rb8"]},
|
1088
|
+
{"name":"two knights defence, Blackburne variation","eco_code":"C58","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Na5","Bb5+","c6","dxc6","bxc6","Qf3","cxb5"]},
|
1089
|
+
{"name":"Two knights defence","eco_code":"C58","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Na5","Bb5+","c6","dxc6","bxc6","Be2"]},
|
1090
|
+
{"name":"Two knights defence","eco_code":"C59","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Na5","Bb5+","c6","dxc6","bxc6","Be2","h6"]},
|
1091
|
+
{"name":"two knights defence, Knorre variation","eco_code":"C59","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Na5","Bb5+","c6","dxc6","bxc6","Be2","h6","Nf3","e4","Ne5","Bd6","d4","Qc7","Bd2"]},
|
1092
|
+
{"name":"two knights defence, Goering variation","eco_code":"C59","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Na5","Bb5+","c6","dxc6","bxc6","Be2","h6","Nf3","e4","Ne5","Qc7"]},
|
1093
|
+
{"name":"two knights defence, Steinitz variation","eco_code":"C59","moves":["e4","e5","Nf3","Nc6","Bc4","Nf6","Ng5","d5","exd5","Na5","Bb5+","c6","dxc6","bxc6","Be2","h6","Nh3"]},
|
1094
|
+
{"name":"Ruy Lopez (Spanish opening)","eco_code":"C60","moves":["e4","e5","Nf3","Nc6","Bb5"]},
|
1095
|
+
{"name":"Ruy Lopez, Nuernberg variation","eco_code":"C60","moves":["e4","e5","Nf3","Nc6","Bb5","f6"]},
|
1096
|
+
{"name":"Ruy Lopez, Pollock defence","eco_code":"C60","moves":["e4","e5","Nf3","Nc6","Bb5","Na5"]},
|
1097
|
+
{"name":"Ruy Lopez, Lucena defence","eco_code":"C60","moves":["e4","e5","Nf3","Nc6","Bb5","Be7"]},
|
1098
|
+
{"name":"Ruy Lopez, Vinogradov variation","eco_code":"C60","moves":["e4","e5","Nf3","Nc6","Bb5","Qe7"]},
|
1099
|
+
{"name":"Ruy Lopez, Brentano defence","eco_code":"C60","moves":["e4","e5","Nf3","Nc6","Bb5","g5"]},
|
1100
|
+
{"name":"Ruy Lopez, fianchetto (Smyslov/Barnes) defence","eco_code":"C60","moves":["e4","e5","Nf3","Nc6","Bb5","g6"]},
|
1101
|
+
{"name":"Ruy Lopez, Cozio defence","eco_code":"C60","moves":["e4","e5","Nf3","Nc6","Bb5","Nge7"]},
|
1102
|
+
{"name":"Ruy Lopez, Cozio defence, Paulsen variation","eco_code":"C60","moves":["e4","e5","Nf3","Nc6","Bb5","Nge7","Nc3","g6"]},
|
1103
|
+
{"name":"Ruy Lopez, Bird's defence","eco_code":"C61","moves":["e4","e5","Nf3","Nc6","Bb5","Nd4"]},
|
1104
|
+
{"name":"Ruy Lopez, Bird's defence, Paulsen variation","eco_code":"C61","moves":["e4","e5","Nf3","Nc6","Bb5","Nd4","Nxd4","exd4","O-O","Ne7"]},
|
1105
|
+
{"name":"Ruy Lopez, old Steinitz defence","eco_code":"C62","moves":["e4","e5","Nf3","Nc6","Bb5","d6"]},
|
1106
|
+
{"name":"Ruy Lopez, old Steinitz defence, Nimzovich attack","eco_code":"C62","moves":["e4","e5","Nf3","Nc6","Bb5","d6","d4","Bd7","Nc3","Nf6","Bxc6"]},
|
1107
|
+
{"name":"Ruy Lopez, old Steinitz defence, semi-Duras variation","eco_code":"C62","moves":["e4","e5","Nf3","Nc6","Bb5","d6","d4","Bd7","c4"]},
|
1108
|
+
{"name":"Ruy Lopez, Schliemann defence","eco_code":"C63","moves":["e4","e5","Nf3","Nc6","Bb5","f5"]},
|
1109
|
+
{"name":"Ruy Lopez, Schliemann defence, Berger variation","eco_code":"C63","moves":["e4","e5","Nf3","Nc6","Bb5","f5","Nc3"]},
|
1110
|
+
{"name":"Ruy Lopez, classical (Cordel) defence","eco_code":"C64","moves":["e4","e5","Nf3","Nc6","Bb5","Bc5"]},
|
1111
|
+
{"name":"Ruy Lopez, classical defence, Zaitsev variation","eco_code":"C64","moves":["e4","e5","Nf3","Nc6","Bb5","Bc5","O-O","Nd4","b4"]},
|
1112
|
+
{"name":"Ruy Lopez, classical defence, 4.c3","eco_code":"C64","moves":["e4","e5","Nf3","Nc6","Bb5","Bc5","c3"]},
|
1113
|
+
{"name":"Ruy Lopez, classical defence, Benelux variation","eco_code":"C64","moves":["e4","e5","Nf3","Nc6","Bb5","Bc5","c3","Nf6","O-O","O-O","d4","Bb6"]},
|
1114
|
+
{"name":"Ruy Lopez, classical defence, Charousek variation","eco_code":"C64","moves":["e4","e5","Nf3","Nc6","Bb5","Bc5","c3","Bb6"]},
|
1115
|
+
{"name":"Ruy Lopez, classical defence, Boden variation","eco_code":"C64","moves":["e4","e5","Nf3","Nc6","Bb5","Bc5","c3","Qe7"]},
|
1116
|
+
{"name":"Ruy Lopez, Cordel gambit","eco_code":"C64","moves":["e4","e5","Nf3","Nc6","Bb5","Bc5","c3","f5"]},
|
1117
|
+
{"name":"Ruy Lopez","eco_code":"C70","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4"]},
|
1118
|
+
{"name":"Ruy Lopez, fianchetto defence deferred","eco_code":"C70","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","g6"]},
|
1119
|
+
{"name":"Ruy Lopez, Cozio defence deferred","eco_code":"C70","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nge7"]},
|
1120
|
+
{"name":"Ruy Lopez, Bird's defence deferred","eco_code":"C70","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nd4"]},
|
1121
|
+
{"name":"Ruy Lopez, Alapin's defence deferred","eco_code":"C70","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Bb4"]},
|
1122
|
+
{"name":"Ruy Lopez, Classical defence deferred","eco_code":"C70","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Bc5"]},
|
1123
|
+
{"name":"Ruy Lopez, Caro variation","eco_code":"C70","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","b5"]},
|
1124
|
+
{"name":"Ruy Lopez, Graz variation","eco_code":"C70","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","b5","Bb3","Bc5"]},
|
1125
|
+
{"name":"Ruy Lopez, Taimanov (chase/wing/accelerated counterthrust) variation","eco_code":"C70","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","b5","Bb3","Na5"]},
|
1126
|
+
{"name":"Ruy Lopez, Schliemann defence deferred","eco_code":"C70","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","f5"]},
|
1127
|
+
{"name":"Ruy Lopez, Morphy defence","eco_code":"C77","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6"]},
|
1128
|
+
{"name":"Ruy Lopez, four knights (Tarrasch) variation","eco_code":"C77","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","Nc3"]},
|
1129
|
+
{"name":"Ruy Lopez, Treybal (Bayreuth) variation (exchange var. deferred)","eco_code":"C77","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","Bxc6"]},
|
1130
|
+
{"name":"Ruy Lopez, Wormald (Alapin) attack","eco_code":"C77","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","Qe2"]},
|
1131
|
+
{"name":"Ruy Lopez, Wormald attack, Gruenfeld variation","eco_code":"C77","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","Qe2","b5","Bb3","Be7","d4","d6","c3","Bg4"]},
|
1132
|
+
{"name":"Ruy Lopez, Anderssen variation","eco_code":"C77","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","d3"]},
|
1133
|
+
{"name":"Ruy Lopez, Morphy defence, Duras variation","eco_code":"C77","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","d3","d6","c4"]},
|
1134
|
+
{"name":"Ruy Lopez, 5.O-O","eco_code":"C78","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O"]},
|
1135
|
+
{"name":"Ruy Lopez, Wing attack","eco_code":"C78","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","b5","Bb3","Be7","a4"]},
|
1136
|
+
{"name":"Ruy Lopez, ...b5 & ...d6","eco_code":"C78","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","b5","Bb3","d6"]},
|
1137
|
+
{"name":"Ruy Lopez, Rabinovich variation","eco_code":"C78","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","b5","Bb3","d6","Ng5","d5","exd5","Nd4","Re1","Bc5","Rxe5+","Kf8"]},
|
1138
|
+
{"name":"Ruy Lopez, Archangelsk (counterthrust) variation","eco_code":"C78","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","b5","Bb3","Bb7"]},
|
1139
|
+
{"name":"Ruy Lopez, Moeller defence","eco_code":"C78","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Bc5"]},
|
1140
|
+
{"name":"Ruy Lopez, Steinitz defence deferred (Russian defence)","eco_code":"C79","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","d6"]},
|
1141
|
+
{"name":"Ruy Lopez, Steinitz defence deferred, Lipnitsky variation","eco_code":"C79","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","d6","Bxc6+","bxc6","d4","Bg4"]},
|
1142
|
+
{"name":"Ruy Lopez, Steinitz defence deferred, Rubinstein variation","eco_code":"C79","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","d6","Bxc6+","bxc6","d4","Nxe4"]},
|
1143
|
+
{"name":"Ruy Lopez, Steinitz defence deferred, Boleslavsky variation","eco_code":"C79","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","d6","Bxc6+","bxc6","d4","Nxe4","Re1","f5","dxe5","d5","Nc3"]},
|
1144
|
+
{"name":"Ruy Lopez, closed defence","eco_code":"C84","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7"]},
|
1145
|
+
{"name":"Ruy Lopez, closed, centre attack","eco_code":"C84","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","d4"]},
|
1146
|
+
{"name":"Ruy Lopez, closed, Basque gambit (North Spanish variation)","eco_code":"C84","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","d4","exd4","e5","Ne4","c3"]},
|
1147
|
+
{"name":"Ruy Lopez, Exchange variation doubly deferred (DERLD)","eco_code":"C85","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Bxc6"]},
|
1148
|
+
{"name":"Ruy Lopez, Worrall attack","eco_code":"C86","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Qe2"]},
|
1149
|
+
{"name":"Ruy Lopez, Worrall attack, sharp line","eco_code":"C86","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Qe2","b5","Bb3","O-O"]},
|
1150
|
+
{"name":"Ruy Lopez, Worrall attack, solid line","eco_code":"C86","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Qe2","b5","Bb3","d6"]},
|
1151
|
+
{"name":"Ruy Lopez, closed, Averbach variation","eco_code":"C87","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","d6"]},
|
1152
|
+
{"name":"Ruy Lopez, closed","eco_code":"C88","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3"]},
|
1153
|
+
{"name":"Ruy Lopez, closed, Leonhardt variation","eco_code":"C88","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","d6","c3","Na5","Bc2","c5","d4","Qc7","h3","Nc6","d5","Nb8","Nbd2","g5"]},
|
1154
|
+
{"name":"Ruy Lopez, closed, Balla variation","eco_code":"C88","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","d6","c3","Na5","Bc2","c5","d4","Qc7","a4"]},
|
1155
|
+
{"name":"Ruy Lopez, closed, 7...d6, 8.d4","eco_code":"C88","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","d6","d4"]},
|
1156
|
+
{"name":"Ruy Lopez, Noah's ark trap","eco_code":"C88","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","d6","d4","Nxd4","Nxd4","exd4","Qxd4","c5"]},
|
1157
|
+
{"name":"Ruy Lopez, Trajkovic counter-attack","eco_code":"C88","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","Bb7"]},
|
1158
|
+
{"name":"Ruy Lopez, closed, 7...O-O","eco_code":"C88","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O"]},
|
1159
|
+
{"name":"Ruy Lopez, closed, anti-Marshall 8.a4","eco_code":"C88","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","a4"]},
|
1160
|
+
{"name":"Ruy Lopez, closed, 8.c3","eco_code":"C88","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3"]},
|
1161
|
+
{"name":"Ruy Lopez, Marshall counter-attack","eco_code":"C89","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d5"]},
|
1162
|
+
{"name":"Ruy Lopez, Marshall counter-attack, 11...c6","eco_code":"C89","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d5","exd5","Nxd5","Nxe5","Nxe5","Rxe5","c6"]},
|
1163
|
+
{"name":"Ruy Lopez, Marshall, Kevitz variation","eco_code":"C89","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d5","exd5","Nxd5","Nxe5","Nxe5","Rxe5","c6","Bxd5","cxd5","d4","Bd6","Re3"]},
|
1164
|
+
{"name":"Ruy Lopez, Marshall, main line, 12.d2d4","eco_code":"C89","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d5","exd5","Nxd5","Nxe5","Nxe5","Rxe5","c6","d4"]},
|
1165
|
+
{"name":"Ruy Lopez, Marshall, main line, 14...Qh3","eco_code":"C89","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d5","exd5","Nxd5","Nxe5","Nxe5","Rxe5","c6","d4","Bd6","Re1","Qh4","g3","Qh3"]},
|
1166
|
+
{"name":"Ruy Lopez, Marshall, main line, Spassky variation","eco_code":"C89","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d5","exd5","Nxd5","Nxe5","Nxe5","Rxe5","c6","d4","Bd6","Re1","Qh4","g3","Qh3","Be3","Bg4","Qd3","Rae8","Nd2","Re6","a4","Qh5"]},
|
1167
|
+
{"name":"Ruy Lopez, Marshall, Herman Steiner variation","eco_code":"C89","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d5","exd5","e4"]},
|
1168
|
+
{"name":"Queen's pawn game","eco_code":"D04","moves":["d4","d5","Nf3","Nf6","e3"]},
|
1169
|
+
{"name":"Queen's pawn game","eco_code":"D05","moves":["d4","d5","Nf3","Nf6","e3","e6"]},
|
1170
|
+
{"name":"Queen's pawn game, Zukertort variation","eco_code":"D05","moves":["d4","d5","Nf3","Nf6","e3","e6","Nbd2","c5","b3"]},
|
1171
|
+
{"name":"Queen's pawn game","eco_code":"D05","moves":["d4","d5","Nf3","Nf6","e3","e6","Bd3"]},
|
1172
|
+
{"name":"Queen's pawn game, Rubinstein (Colle-Zukertort) variation","eco_code":"D05","moves":["d4","d5","Nf3","Nf6","e3","e6","Bd3","c5","b3"]},
|
1173
|
+
{"name":"Colle system","eco_code":"D05","moves":["d4","d5","Nf3","Nf6","e3","e6","Bd3","c5","c3"]},
|
1174
|
+
{"name":"Queen's Gambit Declined, Chigorin defence","eco_code":"D07","moves":["d4","d5","c4","Nc6"]},
|
1175
|
+
{"name":"Queen's Gambit Declined, Chigorin defence, Janowski variation","eco_code":"D07","moves":["d4","d5","c4","Nc6","Nc3","dxc4","Nf3"]},
|
1176
|
+
{"name":"Queen's Gambit Declined, Albin counter-gambit","eco_code":"D08","moves":["d4","d5","c4","e5"]},
|
1177
|
+
{"name":"Queen's Gambit Declined, Albin counter-gambit, Lasker trap","eco_code":"D08","moves":["d4","d5","c4","e5","dxe5","d4","e3","Bb4+","Bd2","dxe3"]},
|
1178
|
+
{"name":"Queen's Gambit Declined, Albin counter-gambit","eco_code":"D08","moves":["d4","d5","c4","e5","dxe5","d4","Nf3"]},
|
1179
|
+
{"name":"Queen's Gambit Declined, Albin counter-gambit, Alapin variation","eco_code":"D08","moves":["d4","d5","c4","e5","dxe5","d4","Nf3","Nc6","Nbd2"]},
|
1180
|
+
{"name":"Queen's Gambit Declined, Albin counter-gambit, Krenosz variation","eco_code":"D08","moves":["d4","d5","c4","e5","dxe5","d4","Nf3","Nc6","Nbd2","Bg4","h3","Bxf3","Nxf3","Bb4+","Bd2","Qe7"]},
|
1181
|
+
{"name":"Queen's Gambit Declined, Albin counter-gambit, Janowski variation","eco_code":"D08","moves":["d4","d5","c4","e5","dxe5","d4","Nf3","Nc6","Nbd2","f6"]},
|
1182
|
+
{"name":"Queen's Gambit Declined, Albin counter-gambit, Balogh variation","eco_code":"D08","moves":["d4","d5","c4","e5","dxe5","d4","Nf3","Nc6","Nbd2","Qe7"]},
|
1183
|
+
{"name":"Queen's Gambit Declined, Albin counter-gambit, 5.g3","eco_code":"D09","moves":["d4","d5","c4","e5","dxe5","d4","Nf3","Nc6","g3"]},
|
1184
|
+
{"name":"Queen's Gambit Declined Slav defence","eco_code":"D10","moves":["d4","d5","c4","c6"]},
|
1185
|
+
{"name":"Queen's Gambit Declined Slav defence, Alekhine variation","eco_code":"D10","moves":["d4","d5","c4","c6","Nc3","dxc4","e4"]},
|
1186
|
+
{"name":"Queen's Gambit Declined Slav, Winawer counter-gambit","eco_code":"D10","moves":["d4","d5","c4","c6","Nc3","e5"]},
|
1187
|
+
{"name":"Queen's Gambit Declined Slav defence, exchange variation","eco_code":"D10","moves":["d4","d5","c4","c6","cxd5"]},
|
1188
|
+
{"name":"Queen's Gambit Declined Slav, 3.Nf3","eco_code":"D11","moves":["d4","d5","c4","c6","Nf3"]},
|
1189
|
+
{"name":"Queen's Gambit Declined Slav, Breyer variation","eco_code":"D11","moves":["d4","d5","c4","c6","Nf3","Nf6","Nbd2"]},
|
1190
|
+
{"name":"Queen's Gambit Declined Slav, 4.e3","eco_code":"D11","moves":["d4","d5","c4","c6","Nf3","Nf6","e3"]},
|
1191
|
+
{"name":"Queen's Gambit Declined Slav, 4.e3 Bf5","eco_code":"D12","moves":["d4","d5","c4","c6","Nf3","Nf6","e3","Bf5"]},
|
1192
|
+
{"name":"Queen's Gambit Declined Slav, Landau variation","eco_code":"D12","moves":["d4","d5","c4","c6","Nf3","Nf6","e3","Bf5","cxd5","cxd5","Qb3","Qc8","Bd2","e6","Na3"]},
|
1193
|
+
{"name":"Queen's Gambit Declined Slav, exchange variation","eco_code":"D12","moves":["d4","d5","c4","c6","Nf3","Nf6","e3","Bf5","cxd5","cxd5","Nc3"]},
|
1194
|
+
{"name":"Queen's Gambit Declined Slav, Amsterdam variation","eco_code":"D12","moves":["d4","d5","c4","c6","Nf3","Nf6","e3","Bf5","cxd5","cxd5","Nc3","e6","Ne5","Nfd7"]},
|
1195
|
+
{"name":"Queen's Gambit Declined Slav, exchange variation","eco_code":"D13","moves":["d4","d5","c4","c6","Nf3","Nf6","cxd5","cxd5"]},
|
1196
|
+
{"name":"Queen's Gambit Declined Slav, exchange variation, 6.Bf4 Bf5","eco_code":"D14","moves":["d4","d5","c4","c6","Nf3","Nf6","cxd5","cxd5","Nc3","Nc6","Bf4","Bf5"]},
|
1197
|
+
{"name":"Queen's Gambit Declined Slav, exchange, Trifunovic variation","eco_code":"D14","moves":["d4","d5","c4","c6","Nf3","Nf6","cxd5","cxd5","Nc3","Nc6","Bf4","Bf5","e3","e6","Qb3","Bb4"]},
|
1198
|
+
{"name":"Queen's Gambit Declined Slav, 4.Nc3","eco_code":"D15","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3"]},
|
1199
|
+
{"name":"Queen's Gambit Declined Slav, Suechting variation","eco_code":"D15","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","Qb6"]},
|
1200
|
+
{"name":"Queen's Gambit Declined Slav, Schlechter variation","eco_code":"D15","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","g6"]},
|
1201
|
+
{"name":"Queen's Gambit Declined Slav accepted","eco_code":"D15","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","dxc4"]},
|
1202
|
+
{"name":"Queen's Gambit Declined Slav, 5.e3 (Alekhine variation)","eco_code":"D15","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","dxc4","e3"]},
|
1203
|
+
{"name":"Queen's Gambit Declined Slav, Slav gambit","eco_code":"D15","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","dxc4","e4"]},
|
1204
|
+
{"name":"Queen's Gambit Declined Slav, Tolush-Geller gambit","eco_code":"D15","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","dxc4","e4","b5","e5"]},
|
1205
|
+
{"name":"Queen's Gambit Declined Slav, Czech defence","eco_code":"D17","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","dxc4","a4","Bf5"]},
|
1206
|
+
{"name":"Queen's Gambit Declined Slav, Krause attack","eco_code":"D17","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","dxc4","a4","Bf5","Ne5"]},
|
1207
|
+
{"name":"Queen's Gambit Declined Slav, Carlsbad variation","eco_code":"D17","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","dxc4","a4","Bf5","Ne5","Nbd7","Nxc4","Qc7","g3","e5"]},
|
1208
|
+
{"name":"Queen's Gambit Declined Slav, Wiesbaden variation","eco_code":"D17","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","dxc4","a4","Bf5","Ne5","e6"]},
|
1209
|
+
{"name":"Queen's Gambit Declined Slav, Dutch variation","eco_code":"D18","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","dxc4","a4","Bf5","e3"]},
|
1210
|
+
{"name":"Queen's Gambit Declined Slav, Dutch, Lasker variation","eco_code":"D18","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","dxc4","a4","Bf5","e3","Na6"]},
|
1211
|
+
{"name":"Queen's Gambit Declined Slav, Dutch variation","eco_code":"D19","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","dxc4","a4","Bf5","e3","e6","Bxc4","Bb4","O-O"]},
|
1212
|
+
{"name":"Queen's Gambit Declined Slav, Dutch variation, main line","eco_code":"D19","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","dxc4","a4","Bf5","e3","e6","Bxc4","Bb4","O-O","O-O","Qe2"]},
|
1213
|
+
{"name":"Queen's Gambit Declined Slav, Dutch, Saemisch variation","eco_code":"D19","moves":["d4","d5","c4","c6","Nf3","Nf6","Nc3","dxc4","a4","Bf5","e3","e6","Bxc4","Bb4","O-O","O-O","Qe2","Ne4","g4"]},
|
1214
|
+
{"name":"Queen's gambit accepted","eco_code":"D20","moves":["d4","d5","c4","dxc4"]},
|
1215
|
+
{"name":"Queen's Gambit Accepted, 3.e4","eco_code":"D20","moves":["d4","d5","c4","dxc4","e4"]},
|
1216
|
+
{"name":"Queen's Gambit Accepted, Linares variation","eco_code":"D20","moves":["d4","d5","c4","dxc4","e4","c5","d5","Nf6","Nc3","b5"]},
|
1217
|
+
{"name":"Queen's Gambit Accepted, Schwartz defence","eco_code":"D20","moves":["d4","d5","c4","dxc4","e4","f5"]},
|
1218
|
+
{"name":"Queen's Gambit Accepted, 3.Nf3","eco_code":"D21","moves":["d4","d5","c4","dxc4","Nf3"]},
|
1219
|
+
{"name":"Queen's Gambit Accepted, Ericson variation","eco_code":"D21","moves":["d4","d5","c4","dxc4","Nf3","b5"]},
|
1220
|
+
{"name":"Queen's Gambit Accepted, Alekhine defense, Borisenko-Furman variation","eco_code":"D21","moves":["d4","d5","c4","dxc4","Nf3","a6","e4"]},
|
1221
|
+
{"name":"Queen's Gambit Accepted, Alekhine defence","eco_code":"D22","moves":["d4","d5","c4","dxc4","Nf3","a6"]},
|
1222
|
+
{"name":"Queen's Gambit Accepted, Alekhine defence, Alatortsev variation","eco_code":"D22","moves":["d4","d5","c4","dxc4","Nf3","a6","e3","Bg4","Bxc4","e6","d5"]},
|
1223
|
+
{"name":"Queen's Gambit Accepted, Haberditz variation","eco_code":"D22","moves":["d4","d5","c4","dxc4","Nf3","a6","e3","b5"]},
|
1224
|
+
{"name":"Queen's gambit accepted","eco_code":"D23","moves":["d4","d5","c4","dxc4","Nf3","Nf6"]},
|
1225
|
+
{"name":"Queen's Gambit Accepted, Mannheim variation","eco_code":"D23","moves":["d4","d5","c4","dxc4","Nf3","Nf6","Qa4+"]},
|
1226
|
+
{"name":"Queen's Gambit Accepted, 4.Nc3","eco_code":"D24","moves":["d4","d5","c4","dxc4","Nf3","Nf6","Nc3"]},
|
1227
|
+
{"name":"Queen's Gambit Accepted, Bogolyubov variation","eco_code":"D24","moves":["d4","d5","c4","dxc4","Nf3","Nf6","Nc3","a6","e4"]},
|
1228
|
+
{"name":"Queen's Gambit Accepted, 4.e3","eco_code":"D25","moves":["d4","d5","c4","dxc4","Nf3","Nf6","e3"]},
|
1229
|
+
{"name":"Queen's Gambit Accepted, Smyslov variation","eco_code":"D25","moves":["d4","d5","c4","dxc4","Nf3","Nf6","e3","g6"]},
|
1230
|
+
{"name":"Queen's Gambit Accepted, Janowsky-Larsen variation","eco_code":"D25","moves":["d4","d5","c4","dxc4","Nf3","Nf6","e3","Bg4"]},
|
1231
|
+
{"name":"Queen's Gambit Accepted, Flohr variation","eco_code":"D25","moves":["d4","d5","c4","dxc4","Nf3","Nf6","e3","Be6"]},
|
1232
|
+
{"name":"Queen's Gambit Accepted, 4...e6","eco_code":"D26","moves":["d4","d5","c4","dxc4","Nf3","Nf6","e3","e6"]},
|
1233
|
+
{"name":"Queen's Gambit Accepted, classical variation","eco_code":"D26","moves":["d4","d5","c4","dxc4","Nf3","Nf6","e3","e6","Bxc4","c5"]},
|
1234
|
+
{"name":"Queen's Gambit Accepted, classical, Furman variation","eco_code":"D26","moves":["d4","d5","c4","dxc4","Nf3","Nf6","e3","e6","Bxc4","c5","Qe2","a6","dxc5","Bxc5","O-O","Nc6","e4","b5","e5"]},
|
1235
|
+
{"name":"Queen's Gambit Accepted, classical variation, 6.O-O","eco_code":"D26","moves":["d4","d5","c4","dxc4","Nf3","Nf6","e3","e6","Bxc4","c5","O-O"]},
|
1236
|
+
{"name":"Queen's Gambit Accepted, classical, Steinitz variation","eco_code":"D26","moves":["d4","d5","c4","dxc4","Nf3","Nf6","e3","e6","Bxc4","c5","O-O","cxd4"]},
|
1237
|
+
{"name":"Queen's Gambit Accepted, classical, 6...a6","eco_code":"D27","moves":["d4","d5","c4","dxc4","Nf3","Nf6","e3","e6","Bxc4","c5","O-O","a6"]},
|
1238
|
+
{"name":"Queen's Gambit Accepted, classical, Rubinstein variation","eco_code":"D27","moves":["d4","d5","c4","dxc4","Nf3","Nf6","e3","e6","Bxc4","c5","O-O","a6","a4"]},
|
1239
|
+
{"name":"Queen's Gambit Accepted, classical, Geller variation","eco_code":"D27","moves":["d4","d5","c4","dxc4","Nf3","Nf6","e3","e6","Bxc4","c5","O-O","a6","e4"]},
|
1240
|
+
{"name":"Queen's Gambit Accepted, classical, 7.Qe2","eco_code":"D28","moves":["d4","d5","c4","dxc4","Nf3","Nf6","e3","e6","Bxc4","c5","O-O","a6","Qe2"]},
|
1241
|
+
{"name":"Queen's Gambit Accepted, classical, 7...b5","eco_code":"D28","moves":["d4","d5","c4","dxc4","Nf3","Nf6","e3","e6","Bxc4","c5","O-O","a6","Qe2","b5"]},
|
1242
|
+
{"name":"Queen's Gambit Accepted, classical, Flohr variation","eco_code":"D28","moves":["d4","d5","c4","dxc4","Nf3","Nf6","e3","e6","Bxc4","c5","O-O","a6","Qe2","b5","Bb3","Nc6","Rd1","c4","Bc2","Nb4","Nc3","Nxc2","Qxc2","Bb7","d5","Qc7"]},
|
1243
|
+
{"name":"Queen's Gambit Accepted, classical, 8...Bb7","eco_code":"D29","moves":["d4","d5","c4","dxc4","Nf3","Nf6","e3","e6","Bxc4","c5","O-O","a6","Qe2","b5","Bb3","Bb7"]},
|
1244
|
+
{"name":"Queen's Gambit Accepted, classical, Smyslov variation","eco_code":"D29","moves":["d4","d5","c4","dxc4","Nf3","Nf6","e3","e6","Bxc4","c5","O-O","a6","Qe2","b5","Bb3","Bb7","Rd1","Nbd7","Nc3","Bd6"]},
|
1245
|
+
{"name":"Queen's gambit declined","eco_code":"D30","moves":["d4","d5","c4","e6"]},
|
1246
|
+
{"name":"Queen's Gambit Declined Slav","eco_code":"D30","moves":["d4","d5","c4","e6","Nf3","Nf6","e3","c6","Nbd2"]},
|
1247
|
+
{"name":"Queen's Gambit Declined, Stonewall variation","eco_code":"D30","moves":["d4","d5","c4","e6","Nf3","Nf6","e3","c6","Nbd2","Ne4","Bd3","f5"]},
|
1248
|
+
{"name":"Queen's Gambit Declined Slav","eco_code":"D30","moves":["d4","d5","c4","e6","Nf3","Nf6","e3","c6","Nbd2","Nbd7"]},
|
1249
|
+
{"name":"Queen's Gambit Declined Slav, Semmering variation","eco_code":"D30","moves":["d4","d5","c4","e6","Nf3","Nf6","e3","c6","Nbd2","Nbd7","Bd3","c5"]},
|
1250
|
+
{"name":"Queen's Gambit Declined, Spielmann variation","eco_code":"D30","moves":["d4","d5","c4","e6","Nf3","Nf6","e3","c6","Nbd2","g6"]},
|
1251
|
+
{"name":"Queen's Gambit Declined","eco_code":"D30","moves":["d4","d5","c4","e6","Nf3","Nf6","Bg5"]},
|
1252
|
+
{"name":"Queen's Gambit Declined, Capablanca variation","eco_code":"D30","moves":["d4","d5","c4","e6","Nf3","Nf6","Bg5","Nbd7","e3","c6","Nbd2"]},
|
1253
|
+
{"name":"Queen's Gambit Declined, Vienna variation","eco_code":"D30","moves":["d4","d5","c4","e6","Nf3","Nf6","Bg5","Bb4+"]},
|
1254
|
+
{"name":"Queen's Gambit Declined, Capablanca-Duras variation","eco_code":"D30","moves":["d4","d5","c4","e6","Nf3","Nf6","Bg5","h6"]},
|
1255
|
+
{"name":"Queen's Gambit Declined, Hastings variation","eco_code":"D30","moves":["d4","d5","c4","e6","Nf3","Nf6","Bg5","h6","Bxf6","Qxf6","Nc3","c6","Qb3"]},
|
1256
|
+
{"name":"Queen's Gambit Declined, 3.Nc3","eco_code":"D31","moves":["d4","d5","c4","e6","Nc3"]},
|
1257
|
+
{"name":"Queen's Gambit Declined, Janowski variation","eco_code":"D31","moves":["d4","d5","c4","e6","Nc3","a6"]},
|
1258
|
+
{"name":"Queen's Gambit Declined, Alapin variation","eco_code":"D31","moves":["d4","d5","c4","e6","Nc3","b6"]},
|
1259
|
+
{"name":"Queen's Gambit Declined, Charousek (Petrosian) variation","eco_code":"D31","moves":["d4","d5","c4","e6","Nc3","Be7"]},
|
1260
|
+
{"name":"Queen's Gambit Declined, semi-Slav","eco_code":"D31","moves":["d4","d5","c4","e6","Nc3","c6"]},
|
1261
|
+
{"name":"Queen's Gambit Declined, semi-Slav, Noteboom variation","eco_code":"D31","moves":["d4","d5","c4","e6","Nc3","c6","Nf3","dxc4"]},
|
1262
|
+
{"name":"Queen's Gambit Declined, semi-Slav, Koomen variation","eco_code":"D31","moves":["d4","d5","c4","e6","Nc3","c6","Nf3","dxc4","a4","Bb4","e3","b5","Bd2","Qe7"]},
|
1263
|
+
{"name":"Queen's Gambit Declined, semi-Slav, Junge variation","eco_code":"D31","moves":["d4","d5","c4","e6","Nc3","c6","Nf3","dxc4","a4","Bb4","e3","b5","Bd2","Qb6"]},
|
1264
|
+
{"name":"Queen's Gambit Declined, semi-Slav, Abrahams variation","eco_code":"D31","moves":["d4","d5","c4","e6","Nc3","c6","Nf3","dxc4","a4","Bb4","e3","b5","Bd2","a5"]},
|
1265
|
+
{"name":"Queen's Gambit Declined, semi-Slav, Marshall gambit","eco_code":"D31","moves":["d4","d5","c4","e6","Nc3","c6","e4"]},
|
1266
|
+
{"name":"Queen's Gambit Declined, 3...Nf6","eco_code":"D35","moves":["d4","d5","c4","e6","Nc3","Nf6"]},
|
1267
|
+
{"name":"Queen's Gambit Declined, Harrwitz attack","eco_code":"D35","moves":["d4","d5","c4","e6","Nc3","Nf6","Bf4"]},
|
1268
|
+
{"name":"Queen's Gambit Declined, exchange variation","eco_code":"D35","moves":["d4","d5","c4","e6","Nc3","Nf6","cxd5"]},
|
1269
|
+
{"name":"Queen's Gambit Declined, exchange, Saemisch variation","eco_code":"D35","moves":["d4","d5","c4","e6","Nc3","Nf6","cxd5","exd5","Nf3","Nbd7","Bf4"]},
|
1270
|
+
{"name":"Queen's Gambit Declined, exchange, positional line","eco_code":"D35","moves":["d4","d5","c4","e6","Nc3","Nf6","cxd5","exd5","Bg5"]},
|
1271
|
+
{"name":"Queen's Gambit Declined, exchange, chameleon variation","eco_code":"D35","moves":["d4","d5","c4","e6","Nc3","Nf6","cxd5","exd5","Bg5","Be7","e3","O-O","Bd3","Nbd7","Qc2","Re8","Nge2","Nf8","O-O-O"]},
|
1272
|
+
{"name":"Queen's Gambit Declined, exchange, positional line, 5...c6","eco_code":"D35","moves":["d4","d5","c4","e6","Nc3","Nf6","cxd5","exd5","Bg5","c6"]},
|
1273
|
+
{"name":"Queen's Gambit Declined, exchange, positional line, 6.Qc2","eco_code":"D36","moves":["d4","d5","c4","e6","Nc3","Nf6","cxd5","exd5","Bg5","c6","Qc2"]},
|
1274
|
+
{"name":"Queen's Gambit Declined, 4.Nf3","eco_code":"D37","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3"]},
|
1275
|
+
{"name":"Queen's Gambit Declined, classical variation (5.Bf4)","eco_code":"D37","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","Be7","Bf4"]},
|
1276
|
+
{"name":"Queen's Gambit Declined semi-Slav","eco_code":"D43","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6"]},
|
1277
|
+
{"name":"Queen's Gambit Declined semi-Slav, Hastings variation","eco_code":"D43","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","Bg5","h6","Bxf6","Qxf6","Qb3"]},
|
1278
|
+
{"name":"Queen's Gambit Declined semi-Slav, 5.Bg5 dc","eco_code":"D44","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","Bg5","dxc4"]},
|
1279
|
+
{"name":"Queen's Gambit Declined semi-Slav, Botvinnik system (anti-Meran)","eco_code":"D44","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","Bg5","dxc4","e4"]},
|
1280
|
+
{"name":"Queen's Gambit Declined semi-Slav, Ekstrom variation","eco_code":"D44","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","Bg5","dxc4","e4","b5","e5","h6","Bh4","g5","exf6","gxh4","Ne5"]},
|
1281
|
+
{"name":"Queen's Gambit Declined semi-Slav, anti-Meran gambit","eco_code":"D44","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","Bg5","dxc4","e4","b5","e5","h6","Bh4","g5","Nxg5"]},
|
1282
|
+
{"name":"Queen's Gambit Declined semi-Slav, anti-Meran, Lilienthal variation","eco_code":"D44","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","Bg5","dxc4","e4","b5","e5","h6","Bh4","g5","Nxg5","hxg5","Bxg5","Nbd7","g3"]},
|
1283
|
+
{"name":"Queen's Gambit Declined semi-Slav, anti-Meran, Szabo variation","eco_code":"D44","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","Bg5","dxc4","e4","b5","e5","h6","Bh4","g5","Nxg5","hxg5","Bxg5","Nbd7","Qf3"]},
|
1284
|
+
{"name":"Queen's Gambit Declined semi-Slav, anti-Meran, Alatortsev system","eco_code":"D44","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","Bg5","dxc4","e4","b5","e5","h6","Bh4","g5","Nxg5","Nd5"]},
|
1285
|
+
{"name":"Queen's Gambit Declined semi-Slav, 5.e3","eco_code":"D45","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3"]},
|
1286
|
+
{"name":"Queen's Gambit Declined semi-Slav, stonewall defence","eco_code":"D45","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Ne4","Bd3","f5"]},
|
1287
|
+
{"name":"Queen's Gambit Declined semi-Slav, accelerated Meran (Alekhine variation)","eco_code":"D45","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","a6"]},
|
1288
|
+
{"name":"Queen's Gambit Declined semi-Slav, 5...Nd7","eco_code":"D45","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7"]},
|
1289
|
+
{"name":"Queen's Gambit Declined semi-Slav, Stoltz variation","eco_code":"D45","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Qc2"]},
|
1290
|
+
{"name":"Queen's Gambit Declined semi-Slav, Rubinstein (anti-Meran) system","eco_code":"D45","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Ne5"]},
|
1291
|
+
{"name":"Queen's Gambit Declined semi-Slav, 6.Bd3","eco_code":"D46","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3"]},
|
1292
|
+
{"name":"Queen's Gambit Declined semi-Slav, Bogolyubov variation","eco_code":"D46","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3","Be7"]},
|
1293
|
+
{"name":"Queen's Gambit Declined semi-Slav, Romih variation","eco_code":"D46","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3","Bb4"]},
|
1294
|
+
{"name":"Queen's Gambit Declined semi-Slav, Chigorin defence","eco_code":"D46","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3","Bd6"]},
|
1295
|
+
{"name":"Queen's Gambit Declined semi-Slav, 7.Bc4","eco_code":"D47","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3","dxc4","Bxc4"]},
|
1296
|
+
{"name":"Queen's Gambit Declined semi-Slav, Meran variation","eco_code":"D47","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3","dxc4","Bxc4","b5"]},
|
1297
|
+
{"name":"Queen's Gambit Declined semi-Slav, neo-Meran (Lundin variation)","eco_code":"D47","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3","dxc4","Bxc4","b5","Bd3","b4"]},
|
1298
|
+
{"name":"Queen's Gambit Declined semi-Slav, Meran, Wade variation","eco_code":"D47","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3","dxc4","Bxc4","b5","Bd3","Bb7"]},
|
1299
|
+
{"name":"Queen's Gambit Declined semi-Slav, Meran, 8...a6","eco_code":"D48","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3","dxc4","Bxc4","b5","Bd3","a6"]},
|
1300
|
+
{"name":"Queen's Gambit Declined semi-Slav, Meran, Pirc variation","eco_code":"D48","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3","dxc4","Bxc4","b5","Bd3","a6","e4","b4"]},
|
1301
|
+
{"name":"Queen's Gambit Declined semi-Slav, Meran","eco_code":"D48","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3","dxc4","Bxc4","b5","Bd3","a6","e4","c5"]},
|
1302
|
+
{"name":"Queen's Gambit Declined semi-Slav, Meran, Reynolds' variation","eco_code":"D48","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3","dxc4","Bxc4","b5","Bd3","a6","e4","c5","d5"]},
|
1303
|
+
{"name":"Queen's Gambit Declined semi-Slav, Meran, old main line","eco_code":"D48","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3","dxc4","Bxc4","b5","Bd3","a6","e4","c5","e5"]},
|
1304
|
+
{"name":"Queen's Gambit Declined semi-Slav, Meran, Blumenfeld variation","eco_code":"D49","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3","dxc4","Bxc4","b5","Bd3","a6","e4","c5","e5","cxd4","Nxb5"]},
|
1305
|
+
{"name":"Queen's Gambit Declined semi-Slav, Meran, Rabinovich variation","eco_code":"D49","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3","dxc4","Bxc4","b5","Bd3","a6","e4","c5","e5","cxd4","Nxb5","Ng4"]},
|
1306
|
+
{"name":"Queen's Gambit Declined semi-Slav, Meran, Sozin variation","eco_code":"D49","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3","dxc4","Bxc4","b5","Bd3","a6","e4","c5","e5","cxd4","Nxb5","Nxe5"]},
|
1307
|
+
{"name":"Queen's Gambit Declined semi-Slav, Meran, Stahlberg variation","eco_code":"D49","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3","dxc4","Bxc4","b5","Bd3","a6","e4","c5","e5","cxd4","Nxb5","Nxe5","Nxe5","axb5","Qf3"]},
|
1308
|
+
{"name":"Queen's Gambit Declined semi-Slav, Meran, Sozin variation","eco_code":"D49","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3","dxc4","Bxc4","b5","Bd3","a6","e4","c5","e5","cxd4","Nxb5","Nxe5","Nxe5","axb5","O-O"]},
|
1309
|
+
{"name":"Queen's Gambit Declined semi-Slav, Meran, Rellstab attack","eco_code":"D49","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c6","e3","Nbd7","Bd3","dxc4","Bxc4","b5","Bd3","a6","e4","c5","e5","cxd4","Nxb5","Nxe5","Nxe5","axb5","O-O","Qd5","Qe2","Ba6","Bg5"]},
|
1310
|
+
{"name":"Queen's Gambit Declined, 4.Bg5","eco_code":"D50","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5"]},
|
1311
|
+
{"name":"Queen's Gambit Declined, Been-Koomen variation","eco_code":"D50","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","c5"]},
|
1312
|
+
{"name":"Queen's Gambit Declined, Semi-Tarrasch, Krause variation","eco_code":"D50","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","c5","Nf3","cxd4","Nxd4","e5","Ndb5","a6","Qa4"]},
|
1313
|
+
{"name":"Queen's Gambit Declined, Semi-Tarrasch, Primitive Pillsbury variation","eco_code":"D50","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","c5","Nf3","cxd4","Qxd4"]},
|
1314
|
+
{"name":"Queen's Gambit Declined, Semi-Tarrasch","eco_code":"D50","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","c5","cxd5"]},
|
1315
|
+
{"name":"Queen's Gambit Declined, Canal (Venice) variation","eco_code":"D50","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","c5","cxd5","Qb6"]},
|
1316
|
+
{"name":"Queen's Gambit Declined, 4.Bg5 Nbd7","eco_code":"D51","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Nbd7"]},
|
1317
|
+
{"name":"Queen's Gambit Declined, Rochlin variation","eco_code":"D51","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Nbd7","Nf3","c6","Rc1","Qa5","Bd2"]},
|
1318
|
+
{"name":"Queen's Gambit Declined, Alekhine variation","eco_code":"D51","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Nbd7","Nf3","c6","e4"]},
|
1319
|
+
{"name":"Queen's Gambit Declined","eco_code":"D51","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Nbd7","e3"]},
|
1320
|
+
{"name":"Queen's Gambit Declined, Manhattan variation","eco_code":"D51","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Nbd7","e3","Bb4"]},
|
1321
|
+
{"name":"Queen's Gambit Declined, 5...c6","eco_code":"D51","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Nbd7","e3","c6"]},
|
1322
|
+
{"name":"Queen's Gambit Declined, Capablanca anti-Cambridge Springs variation","eco_code":"D51","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Nbd7","e3","c6","a3"]},
|
1323
|
+
{"name":"Queen's Gambit Declined","eco_code":"D52","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Nbd7","e3","c6","Nf3"]},
|
1324
|
+
{"name":"Queen's Gambit Declined, Cambridge Springs defence","eco_code":"D52","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Nbd7","e3","c6","Nf3","Qa5"]},
|
1325
|
+
{"name":"Queen's Gambit Declined, Cambridge Springs defence, Bogoljubow variation","eco_code":"D52","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Nbd7","e3","c6","Nf3","Qa5","Nd2","Bb4","Qc2"]},
|
1326
|
+
{"name":"Queen's Gambit Declined, Cambridge Springs defence, Argentine variation","eco_code":"D52","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Nbd7","e3","c6","Nf3","Qa5","Nd2","Bb4","Qc2","O-O","Bh4"]},
|
1327
|
+
{"name":"Queen's Gambit Declined, Cambridge Springs defence, Rubinstein variation","eco_code":"D52","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Nbd7","e3","c6","Nf3","Qa5","Nd2","dxc4"]},
|
1328
|
+
{"name":"Queen's Gambit Declined, Cambridge Springs defence, Capablanca variation","eco_code":"D52","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Nbd7","e3","c6","Nf3","Qa5","Bxf6"]},
|
1329
|
+
{"name":"Queen's Gambit Declined, Cambridge Springs defence, 7.cd","eco_code":"D52","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Nbd7","e3","c6","Nf3","Qa5","cxd5"]},
|
1330
|
+
{"name":"Queen's Gambit Declined, Cambridge Springs defence, Yugoslav variation","eco_code":"D52","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Nbd7","e3","c6","Nf3","Qa5","cxd5","Nxd5"]},
|
1331
|
+
{"name":"Queen's Gambit Declined, 4.Bg5 Be7","eco_code":"D53","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7"]},
|
1332
|
+
{"name":"Queen's Gambit Declined, Lasker variation","eco_code":"D53","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","Ne4"]},
|
1333
|
+
{"name":"Queen's Gambit Declined, 4.Bg5 Be7, 5.e3 O-O","eco_code":"D53","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O"]},
|
1334
|
+
{"name":"Queen's Gambit Declined, Anti-neo-orthodox variation","eco_code":"D54","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Rc1"]},
|
1335
|
+
{"name":"Queen's Gambit Declined, 6.Nf3","eco_code":"D55","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3"]},
|
1336
|
+
{"name":"Queen's Gambit Declined, Pillsbury attack","eco_code":"D55","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","b6","Bd3","Bb7","cxd5","exd5","Ne5"]},
|
1337
|
+
{"name":"Queen's Gambit Declined, Neo-orthodox variation","eco_code":"D55","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","h6"]},
|
1338
|
+
{"name":"Queen's Gambit Declined, Neo-orthodox variation, 7.Bxf6","eco_code":"D55","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","h6","Bxf6"]},
|
1339
|
+
{"name":"Queen's Gambit Declined, Petrosian variation","eco_code":"D55","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","h6","Bxf6","Bxf6","Rc1","c6","Bd3","Nd7","O-O","dxc4","Bxc4"]},
|
1340
|
+
{"name":"Queen's Gambit Declined, Neo-orthodox variation, 7.Bh4","eco_code":"D55","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","h6","Bh4"]},
|
1341
|
+
{"name":"Neo-Gruenfeld defence","eco_code":"D70","moves":["d4","Nf6","c4","g6","f3","d5"]},
|
1342
|
+
{"name":"Neo-Gruenfeld (Kemeri) defence","eco_code":"D70","moves":["d4","Nf6","c4","g6","g3","d5"]},
|
1343
|
+
{"name":"Neo-Gruenfeld, 5.Nf3","eco_code":"D73","moves":["d4","Nf6","c4","g6","g3","d5","Bg2","Bg7","Nf3"]},
|
1344
|
+
{"name":"Gruenfeld defence","eco_code":"D80","moves":["d4","Nf6","c4","g6","Nc3","d5"]},
|
1345
|
+
{"name":"Gruenfeld, Spike gambit","eco_code":"D80","moves":["d4","Nf6","c4","g6","Nc3","d5","g4"]},
|
1346
|
+
{"name":"Gruenfeld, Stockholm variation","eco_code":"D80","moves":["d4","Nf6","c4","g6","Nc3","d5","Bg5"]},
|
1347
|
+
{"name":"Gruenfeld, Lundin variation","eco_code":"D80","moves":["d4","Nf6","c4","g6","Nc3","d5","Bg5","Ne4","Nxe4","dxe4","Qd2","c5"]},
|
1348
|
+
{"name":"Gruenfeld, Russian variation","eco_code":"D81","moves":["d4","Nf6","c4","g6","Nc3","d5","Qb3"]},
|
1349
|
+
{"name":"Gruenfeld, 4.Bf4","eco_code":"D82","moves":["d4","Nf6","c4","g6","Nc3","d5","Bf4"]},
|
1350
|
+
{"name":"Gruenfeld, Three knights variation","eco_code":"D90","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3"]},
|
1351
|
+
{"name":"Gruenfeld, Schlechter variation","eco_code":"D90","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","c6"]},
|
1352
|
+
{"name":"Gruenfeld, Three knights variation","eco_code":"D90","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7"]},
|
1353
|
+
{"name":"Gruenfeld, Flohr variation","eco_code":"D90","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","Qa4+"]},
|
1354
|
+
{"name":"Gruenfeld, 5.Bg5","eco_code":"D91","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","Bg5"]},
|
1355
|
+
{"name":"Gruenfeld, 5.Bf4","eco_code":"D92","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","Bf4"]},
|
1356
|
+
{"name":"Gruenfeld with Bf4 e3","eco_code":"D93","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","Bf4","O-O","e3"]},
|
1357
|
+
{"name":"Gruenfeld, 5.e3","eco_code":"D94","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","e3"]},
|
1358
|
+
{"name":"Gruenfeld, Makogonov variation","eco_code":"D94","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","e3","O-O","b4"]},
|
1359
|
+
{"name":"Gruenfeld, Opovcensky variation","eco_code":"D94","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","e3","O-O","Bd2"]},
|
1360
|
+
{"name":"Gruenfeld with e3 Bd3","eco_code":"D94","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","e3","O-O","Bd3"]},
|
1361
|
+
{"name":"Gruenfeld, Smyslov defence","eco_code":"D94","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","e3","O-O","Bd3","c6","O-O","Bg4"]},
|
1362
|
+
{"name":"Gruenfeld, Flohr defence","eco_code":"D94","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","e3","O-O","Bd3","c6","O-O","Bf5"]},
|
1363
|
+
{"name":"Gruenfeld with e3 & Qb3","eco_code":"D95","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","e3","O-O","Qb3"]},
|
1364
|
+
{"name":"Gruenfeld, Botvinnik variation","eco_code":"D95","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","e3","O-O","Qb3","e6"]},
|
1365
|
+
{"name":"Gruenfeld, Pachman variation","eco_code":"D95","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","e3","O-O","Qb3","dxc4","Bxc4","Nbd7","Ng5"]},
|
1366
|
+
{"name":"Gruenfeld defence, Smyslov, main line","eco_code":"D99","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","Qb3","dxc4","Qxc4","O-O","e4","Bg4","Be3","Nfd7","Qb3"]},
|
1367
|
+
{"name":"Gruenfeld defence, Smyslov, Yugoslav variation","eco_code":"D99","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","Qb3","dxc4","Qxc4","O-O","e4","Bg4","Be3","Nfd7","Qb3","c5"]},
|
1368
|
+
{"name":"Catalan, closed","eco_code":"E01","moves":["d4","Nf6","c4","e6","g3","d5","Bg2"]},
|
1369
|
+
{"name":"Catalan, open, 5.Qa4","eco_code":"E02","moves":["d4","Nf6","c4","e6","g3","d5","Bg2","dxc4","Qa4+"]},
|
1370
|
+
{"name":"Catalan, open, Alekhine variation","eco_code":"E03","moves":["d4","Nf6","c4","e6","g3","d5","Bg2","dxc4","Qa4+","Nbd7","Qxc4","a6","Qc2"]},
|
1371
|
+
{"name":"Catalan, open, 5.Qa4 Nbd7, 6.Qxc4","eco_code":"E03","moves":["d4","Nf6","c4","e6","g3","d5","Bg2","dxc4","Qa4+","Nbd7","Qxc4"]},
|
1372
|
+
{"name":"Catalan, open, 5.Nf3","eco_code":"E04","moves":["d4","Nf6","c4","e6","g3","d5","Bg2","dxc4","Nf3"]},
|
1373
|
+
{"name":"Catalan, open, classical line","eco_code":"E05","moves":["d4","Nf6","c4","e6","g3","d5","Bg2","dxc4","Nf3","Be7"]},
|
1374
|
+
{"name":"Queen's Indian defence","eco_code":"E12","moves":["d4","Nf6","c4","e6","Nf3","b6"]},
|
1375
|
+
{"name":"Queen's Indian, Miles variation","eco_code":"E12","moves":["d4","Nf6","c4","e6","Nf3","b6","Bf4"]},
|
1376
|
+
{"name":"Queen's Indian, Petrosian system","eco_code":"E12","moves":["d4","Nf6","c4","e6","Nf3","b6","a3"]},
|
1377
|
+
{"name":"Queen's Indian, 4.Nc3","eco_code":"E12","moves":["d4","Nf6","c4","e6","Nf3","b6","Nc3"]},
|
1378
|
+
{"name":"Queen's Indian, 4.Nc3, Botvinnik variation","eco_code":"E12","moves":["d4","Nf6","c4","e6","Nf3","b6","Nc3","Bb7","Bg5","h6","Bh4","g5","Bg3","Nh5"]},
|
1379
|
+
{"name":"Queen's Indian, 4.Nc3, main line","eco_code":"E13","moves":["d4","Nf6","c4","e6","Nf3","b6","Nc3","Bb7","Bg5","h6","Bh4","Bb4"]},
|
1380
|
+
{"name":"Queen's Indian, 4.e3","eco_code":"E14","moves":["d4","Nf6","c4","e6","Nf3","b6","e3"]},
|
1381
|
+
{"name":"Queen's Indian, Averbakh variation","eco_code":"E14","moves":["d4","Nf6","c4","e6","Nf3","b6","e3","Bb7","Bd3","c5","O-O","Be7","b3","O-O","Bb2","cxd4","Nxd4"]},
|
1382
|
+
{"name":"Queen's Indian, 4.g3","eco_code":"E15","moves":["d4","Nf6","c4","e6","Nf3","b6","g3"]},
|
1383
|
+
{"name":"Queen's Indian, Nimzovich variation (exaggerated fianchetto)","eco_code":"E15","moves":["d4","Nf6","c4","e6","Nf3","b6","g3","Ba6"]},
|
1384
|
+
{"name":"Queen's Indian, 4.g3 Bb7","eco_code":"E15","moves":["d4","Nf6","c4","e6","Nf3","b6","g3","Bb7"]},
|
1385
|
+
{"name":"Queen's Indian, Rubinstein variation","eco_code":"E15","moves":["d4","Nf6","c4","e6","Nf3","b6","g3","Bb7","Bg2","c5","d5","exd5","Nh4"]},
|
1386
|
+
{"name":"Queen's Indian, Buerger variation","eco_code":"E15","moves":["d4","Nf6","c4","e6","Nf3","b6","g3","Bb7","Bg2","c5","d5","exd5","Ng5"]},
|
1387
|
+
{"name":"Queen's Indian, Capablanca variation","eco_code":"E16","moves":["d4","Nf6","c4","e6","Nf3","b6","g3","Bb7","Bg2","Bb4+"]},
|
1388
|
+
{"name":"Queen's Indian, Yates variation","eco_code":"E16","moves":["d4","Nf6","c4","e6","Nf3","b6","g3","Bb7","Bg2","Bb4+","Bd2","a5"]},
|
1389
|
+
{"name":"Queen's Indian, Riumin variation","eco_code":"E16","moves":["d4","Nf6","c4","e6","Nf3","b6","g3","Bb7","Bg2","Bb4+","Bd2","Be7"]},
|
1390
|
+
{"name":"Queen's Indian, 5.Bg2 Be7","eco_code":"E17","moves":["d4","Nf6","c4","e6","Nf3","b6","g3","Bb7","Bg2","Be7"]},
|
1391
|
+
{"name":"Queen's Indian, anti-Queen's Indian system","eco_code":"E17","moves":["d4","Nf6","c4","e6","Nf3","b6","g3","Bb7","Bg2","Be7","Nc3"]},
|
1392
|
+
{"name":"Queen's Indian, Opovcensky variation","eco_code":"E17","moves":["d4","Nf6","c4","e6","Nf3","b6","g3","Bb7","Bg2","Be7","Nc3","Ne4","Bd2"]},
|
1393
|
+
{"name":"Queen's Indian, old main line, 6.O-O","eco_code":"E17","moves":["d4","Nf6","c4","e6","Nf3","b6","g3","Bb7","Bg2","Be7","O-O"]},
|
1394
|
+
{"name":"Queen's Indian, Euwe variation","eco_code":"E17","moves":["d4","Nf6","c4","e6","Nf3","b6","g3","Bb7","Bg2","Be7","O-O","O-O","b3"]},
|
1395
|
+
{"name":"Queen's Indian, old main line, 7.Nc3","eco_code":"E18","moves":["d4","Nf6","c4","e6","Nf3","b6","g3","Bb7","Bg2","Be7","O-O","O-O","Nc3"]},
|
1396
|
+
{"name":"Queen's Indian, old main line, 9.Qxc3","eco_code":"E19","moves":["d4","Nf6","c4","e6","Nf3","b6","g3","Bb7","Bg2","Be7","O-O","O-O","Nc3","Ne4","Qc2","Nxc3","Qxc3"]},
|
1397
|
+
{"name":"Nimzo-Indian defence","eco_code":"E20","moves":["d4","Nf6","c4","e6","Nc3","Bb4"]},
|
1398
|
+
{"name":"Nimzo-Indian, Kmoch variation","eco_code":"E20","moves":["d4","Nf6","c4","e6","Nc3","Bb4","f3"]},
|
1399
|
+
{"name":"Nimzo-Indian, Mikenas attack","eco_code":"E20","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qd3"]},
|
1400
|
+
{"name":"Nimzo-Indian, Romanishin-Kasparov (Steiner) system","eco_code":"E20","moves":["d4","Nf6","c4","e6","Nc3","Bb4","g3"]},
|
1401
|
+
{"name":"Nimzo-Indian, three knights variation","eco_code":"E21","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Nf3"]},
|
1402
|
+
{"name":"Nimzo-Indian, three knights, Korchnoi variation","eco_code":"E21","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Nf3","c5","d5"]},
|
1403
|
+
{"name":"Nimzo-Indian, three knights, Euwe variation","eco_code":"E21","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Nf3","c5","d5","Ne4"]},
|
1404
|
+
{"name":"Nimzo-Indian, 4.e3","eco_code":"E40","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3"]},
|
1405
|
+
{"name":"Nimzo-Indian, 4.e3, Taimanov variation","eco_code":"E40","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","Nc6"]},
|
1406
|
+
{"name":"Nimzo-Indian, 4.e3, Bronstein (Byrne) variation","eco_code":"E45","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","b6","Nge2","Ba6"]},
|
1407
|
+
{"name":"Nimzo-Indian, 4.e3, Botvinnik system","eco_code":"E49","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Bd3","d5","a3","Bxc3+","bxc3"]},
|
1408
|
+
{"name":"King's Indian defence","eco_code":"E60","moves":["d4","Nf6","c4","g6"]},
|
1409
|
+
{"name":"King's Indian, 3.Nf3","eco_code":"E60","moves":["d4","Nf6","c4","g6","Nf3"]},
|
1410
|
+
{"name":"Queen's pawn, Mengarini attack","eco_code":"E60","moves":["d4","Nf6","c4","g6","Qc2"]},
|
1411
|
+
{"name":"King's Indian, Anti-Gruenfeld","eco_code":"E60","moves":["d4","Nf6","c4","g6","d5"]},
|
1412
|
+
{"name":"King's Indian, Danube gambit","eco_code":"E60","moves":["d4","Nf6","c4","g6","d5","b5"]},
|
1413
|
+
{"name":"King's Indian, 3.g3","eco_code":"E60","moves":["d4","Nf6","c4","g6","g3"]},
|
1414
|
+
{"name":"King's Indian, 3.g3, counterthrust variation","eco_code":"E60","moves":["d4","Nf6","c4","g6","g3","Bg7","Bg2","d5"]},
|
1415
|
+
{"name":"King's Indian defence, 3.Nc3","eco_code":"E61","moves":["d4","Nf6","c4","g6","Nc3"]},
|
1416
|
+
{"name":"King's Indian, Smyslov system","eco_code":"E61","moves":["d4","Nf6","c4","g6","Nc3","Bg7","Nf3","d6","Bg5"]},
|
1417
|
+
{"name":"King's Indian, 4.e4","eco_code":"E70","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4"]},
|
1418
|
+
{"name":"King's Indian, Kramer system","eco_code":"E70","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nge2"]},
|
1419
|
+
{"name":"King's Indian, accelerated Averbakh system","eco_code":"E70","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Bg5"]},
|
1420
|
+
{"name":"King's Indian, Makagonov system (5.h3)","eco_code":"E71","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","h3"]},
|
1421
|
+
{"name":"King's Indian with e4 & g3","eco_code":"E72","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","g3"]},
|
1422
|
+
{"name":"King's Indian, Pomar system","eco_code":"E72","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","g3","O-O","Bg2","e5","Nge2"]},
|
1423
|
+
{"name":"King's Indian, 5.Be2","eco_code":"E73","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Be2"]},
|
1424
|
+
{"name":"King's Indian, Semi-Averbakh system","eco_code":"E73","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Be2","O-O","Be3"]},
|
1425
|
+
{"name":"King's Indian, Averbakh system","eco_code":"E73","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Be2","O-O","Bg5"]},
|
1426
|
+
{"name":"King's Indian, 5.Nf3","eco_code":"E90","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3"]},
|
1427
|
+
{"name":"King's Indian, Larsen variation","eco_code":"E90","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be3"]},
|
1428
|
+
{"name":"King's Indian, Zinnowitz variation","eco_code":"E90","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Bg5"]},
|
1429
|
+
{"name":"King's Indian, 6.Be2","eco_code":"E91","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2"]},
|
1430
|
+
{"name":"King's Indian, Kazakh variation","eco_code":"E91","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2","Na6"]},
|
1431
|
+
{"name":"King's Indian, classical variation","eco_code":"E92","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2","e5"]},
|
1432
|
+
{"name":"King's Indian, Andersson variation","eco_code":"E92","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2","e5","dxe5"]},
|
1433
|
+
{"name":"King's Indian, Gligoric-Taimanov system","eco_code":"E92","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2","e5","Be3"]},
|
1434
|
+
{"name":"King's Indian, Petrosian system","eco_code":"E92","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2","e5","d5"]},
|
1435
|
+
{"name":"King's Indian, Petrosian system, Stein variation","eco_code":"E92","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2","e5","d5","a5"]},
|
1436
|
+
{"name":"King's Indian, Petrosian system, main line","eco_code":"E93","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2","e5","d5","Nbd7"]},
|
1437
|
+
{"name":"King's Indian, Petrosian system, Keres variation","eco_code":"E93","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2","e5","d5","Nbd7","Bg5","h6","Bh4","g5","Bg3","Nh5","h4"]},
|
1438
|
+
{"name":"English, Caro-Kann defensive system","eco_code":"A11","moves":["c4","c6"]},
|
1439
|
+
{"name":"English, Caro-Kann defensive system","eco_code":"A12","moves":["c4","c6","Nf3","d5","b3"]},
|
1440
|
+
{"name":"English, Torre defensive system","eco_code":"A12","moves":["c4","c6","Nf3","d5","b3","Nf6","g3","Bg4"]},
|
1441
|
+
{"name":"English, London defensive system","eco_code":"A12","moves":["c4","c6","Nf3","d5","b3","Nf6","g3","Bf5"]},
|
1442
|
+
{"name":"English, Caro-Kann defensive system","eco_code":"A12","moves":["c4","c6","Nf3","d5","b3","Nf6","Bb2"]},
|
1443
|
+
{"name":"English, Bled variation","eco_code":"A12","moves":["c4","c6","Nf3","d5","b3","Nf6","Bb2","g6"]},
|
1444
|
+
{"name":"English, New York (London) defensive system","eco_code":"A12","moves":["c4","c6","Nf3","d5","b3","Nf6","Bb2","Bf5"]},
|
1445
|
+
{"name":"English, Capablanca's variation","eco_code":"A12","moves":["c4","c6","Nf3","d5","b3","Nf6","Bb2","Bg4"]},
|
1446
|
+
{"name":"English, Caro-Kann defensive system, Bogolyubov variation","eco_code":"A12","moves":["c4","c6","Nf3","d5","b3","Bg4"]},
|
1447
|
+
{"name":"English, Mikenas-Carls variation","eco_code":"A18","moves":["c4","Nf6","Nc3","e6","e4"]},
|
1448
|
+
{"name":"English, Mikenas-Carls, Flohr variation","eco_code":"A18","moves":["c4","Nf6","Nc3","e6","e4","d5","e5"]},
|
1449
|
+
{"name":"English, Mikenas-Carls, Kevitz variation","eco_code":"A18","moves":["c4","Nf6","Nc3","e6","e4","Nc6"]},
|
1450
|
+
{"name":"English, Mikenas-Carls, Sicilian variation","eco_code":"A19","moves":["c4","Nf6","Nc3","e6","e4","c5"]},
|
1451
|
+
{"name":"English, Bremen system, Keres variation","eco_code":"A23","moves":["c4","e5","Nc3","Nf6","g3","c6"]},
|
1452
|
+
{"name":"English, Bremen system with ...g6","eco_code":"A24","moves":["c4","e5","Nc3","Nf6","g3","g6"]},
|
1453
|
+
{"name":"English, four knights system","eco_code":"A28","moves":["c4","e5","Nc3","Nc6","Nf3","Nf6"]},
|
1454
|
+
{"name":"English, Nenarokov variation","eco_code":"A28","moves":["c4","e5","Nc3","Nc6","Nf3","Nf6","d4","exd4","Nxd4","Bb4","Bg5","h6","Bh4","Bxc3+","bxc3","Ne5"]},
|
1455
|
+
{"name":"English, Bradley Beach variation","eco_code":"A28","moves":["c4","e5","Nc3","Nc6","Nf3","Nf6","d4","e4"]},
|
1456
|
+
{"name":"English, four knights, Nimzovich variation","eco_code":"A28","moves":["c4","e5","Nc3","Nc6","Nf3","Nf6","e4"]},
|
1457
|
+
{"name":"English, four knights, Marini variation","eco_code":"A28","moves":["c4","e5","Nc3","Nc6","Nf3","Nf6","a3"]},
|
1458
|
+
{"name":"English, four knights, Capablanca variation","eco_code":"A28","moves":["c4","e5","Nc3","Nc6","Nf3","Nf6","d3"]},
|
1459
|
+
{"name":"English, four knights, 4.e3","eco_code":"A28","moves":["c4","e5","Nc3","Nc6","Nf3","Nf6","e3"]},
|
1460
|
+
{"name":"English, four knights, Stean variation","eco_code":"A28","moves":["c4","e5","Nc3","Nc6","Nf3","Nf6","e3","Bb4","Qc2","O-O","Nd5","Re8","Qf5"]},
|
1461
|
+
{"name":"English, four knights, Romanishin variation","eco_code":"A28","moves":["c4","e5","Nc3","Nc6","Nf3","Nf6","e3","Bb4","Qc2","Bxc3"]},
|
1462
|
+
{"name":"English, four knights, kingside fianchetto","eco_code":"A29","moves":["c4","e5","Nc3","Nc6","Nf3","Nf6","g3"]},
|
1463
|
+
{"name":"English, symmetrical variation","eco_code":"A30","moves":["c4","c5"]},
|
1464
|
+
{"name":"English, symmetrical, hedgehog system","eco_code":"A30","moves":["c4","c5","Nf3","Nf6","g3","b6","Bg2","Bb7","O-O","e6","Nc3","Be7"]},
|
1465
|
+
{"name":"English, symmetrical, hedgehog, flexible formation","eco_code":"A30","moves":["c4","c5","Nf3","Nf6","g3","b6","Bg2","Bb7","O-O","e6","Nc3","Be7","d4","cxd4","Qxd4","d6","Rd1","a6","b3","Nbd7"]},
|
1466
|
+
{"name":"English, symmetrical, Benoni formation","eco_code":"A31","moves":["c4","c5","Nf3","Nf6","d4"]},
|
1467
|
+
{"name":"English, symmetrical variation","eco_code":"A32","moves":["c4","c5","Nf3","Nf6","d4","cxd4","Nxd4","e6"]},
|
1468
|
+
{"name":"English, symmetrical variation","eco_code":"A33","moves":["c4","c5","Nf3","Nf6","d4","cxd4","Nxd4","e6","Nc3","Nc6"]},
|
1469
|
+
{"name":"English, symmetrical, Geller variation","eco_code":"A33","moves":["c4","c5","Nf3","Nf6","d4","cxd4","Nxd4","e6","Nc3","Nc6","g3","Qb6"]},
|
1470
|
+
{"name":"English, symmetrical variation","eco_code":"A34","moves":["c4","c5","Nc3"]},
|
1471
|
+
{"name":"English, symmetrical, three knights system","eco_code":"A34","moves":["c4","c5","Nc3","Nf6","Nf3","d5","cxd5","Nxd5"]},
|
1472
|
+
{"name":"English, symmetrical variation","eco_code":"A34","moves":["c4","c5","Nc3","Nf6","g3"]},
|
1473
|
+
{"name":"English, symmetrical, Rubinstein system","eco_code":"A34","moves":["c4","c5","Nc3","Nf6","g3","d5","cxd5","Nxd5","Bg2","Nc7"]},
|
1474
|
+
{"name":"English, symmetrical variation","eco_code":"A35","moves":["c4","c5","Nc3","Nc6"]},
|
1475
|
+
{"name":"English, symmetrical, four knights system","eco_code":"A35","moves":["c4","c5","Nc3","Nc6","Nf3","Nf6"]},
|
1476
|
+
{"name":"English, symmetrical variation","eco_code":"A36","moves":["c4","c5","Nc3","Nc6","g3"]},
|
1477
|
+
{"name":"English, ultra-symmetrical variation","eco_code":"A36","moves":["c4","c5","Nc3","Nc6","g3","g6","Bg2","Bg7"]},
|
1478
|
+
{"name":"English, symmetrical, Botvinnik system reversed","eco_code":"A36","moves":["c4","c5","Nc3","Nc6","g3","g6","Bg2","Bg7","e3","e5"]},
|
1479
|
+
{"name":"English, symmetrical, Botvinnik system","eco_code":"A36","moves":["c4","c5","Nc3","Nc6","g3","g6","Bg2","Bg7","e4"]},
|
1480
|
+
{"name":"English, symmetrical variation","eco_code":"A37","moves":["c4","c5","Nc3","Nc6","g3","g6","Bg2","Bg7","Nf3"]},
|
1481
|
+
{"name":"English, symmetrical, Botvinnik system reversed","eco_code":"A37","moves":["c4","c5","Nc3","Nc6","g3","g6","Bg2","Bg7","Nf3","e5"]},
|
1482
|
+
{"name":"English, symmetrical variation","eco_code":"A38","moves":["c4","c5","Nc3","Nc6","g3","g6","Bg2","Bg7","Nf3","Nf6"]},
|
1483
|
+
{"name":"English, symmetrical, main line with d3","eco_code":"A38","moves":["c4","c5","Nc3","Nc6","g3","g6","Bg2","Bg7","Nf3","Nf6","O-O","O-O","d3"]},
|
1484
|
+
{"name":"English, symmetrical, main line with b3","eco_code":"A38","moves":["c4","c5","Nc3","Nc6","g3","g6","Bg2","Bg7","Nf3","Nf6","O-O","O-O","b3"]},
|
1485
|
+
{"name":"English, symmetrical, main line with d4","eco_code":"A39","moves":["c4","c5","Nc3","Nc6","g3","g6","Bg2","Bg7","Nf3","Nf6","O-O","O-O","d4"]},
|
1486
|
+
{"name":"Benoni, fianchetto variation","eco_code":"A62","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","Nf3","g6","g3","Bg7","Bg2","O-O"]},
|
1487
|
+
{"name":"Benoni, fianchetto, 9...Nbd7","eco_code":"A63","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","Nf3","g6","g3","Bg7","Bg2","O-O","O-O","Nbd7"]},
|
1488
|
+
{"name":"Benoni, fianchetto, 11...Re8","eco_code":"A64","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","Nf3","g6","g3","Bg7","Bg2","O-O","O-O","Nbd7","Nd2","a6","a4","Re8"]},
|
1489
|
+
{"name":"Benoni, four pawns attack","eco_code":"A68","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","e4","g6","f4","Bg7","Nf3","O-O"]},
|
1490
|
+
{"name":"Benoni, four pawns attack, main line","eco_code":"A69","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","e4","g6","f4","Bg7","Nf3","O-O","Be2","Re8"]},
|
1491
|
+
{"name":"Benoni, classical with e4 and Nf3","eco_code":"A70","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","e4","g6","Nf3"]},
|
1492
|
+
{"name":"Benoni, classical without 9.O-O","eco_code":"A70","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","e4","g6","Nf3","Bg7","Be2"]},
|
1493
|
+
{"name":"Benoni, classical, 8.Bg5","eco_code":"A71","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","e4","g6","Nf3","Bg7","Bg5"]},
|
1494
|
+
{"name":"Benoni, classical without 9.O-O","eco_code":"A72","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","e4","g6","Nf3","Bg7","Be2","O-O"]},
|
1495
|
+
{"name":"Benoni, classical, 9.O-O","eco_code":"A73","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","e4","g6","Nf3","Bg7","Be2","O-O","O-O"]},
|
1496
|
+
{"name":"Benoni, classical, 9...a6, 10.a4","eco_code":"A74","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","e4","g6","Nf3","Bg7","Be2","O-O","O-O","a6","a4"]},
|
1497
|
+
{"name":"Benoni, classical with ...a6 and 10...Bg4","eco_code":"A75","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","e4","g6","Nf3","Bg7","Be2","O-O","O-O","a6","a4","Bg4"]},
|
1498
|
+
{"name":"Benoni, classical, 9...Re8","eco_code":"A76","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","e4","g6","Nf3","Bg7","Be2","O-O","O-O","Re8"]},
|
1499
|
+
{"name":"Benoni, classical, 9...Re8, 10.Nd2","eco_code":"A77","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","e4","g6","Nf3","Bg7","Be2","O-O","O-O","Re8","Nd2"]},
|
1500
|
+
{"name":"Benoni, classical with ...Re8 and ...Na6","eco_code":"A78","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","e4","g6","Nf3","Bg7","Be2","O-O","O-O","Re8","Nd2","Na6"]},
|
1501
|
+
{"name":"Benoni, classical, 11.f3","eco_code":"A79","moves":["d4","Nf6","c4","c5","d5","e6","Nc3","exd5","cxd5","d6","e4","g6","Nf3","Bg7","Be2","O-O","O-O","Re8","Nd2","Na6","f3"]},
|
1502
|
+
{"name":"Dutch, Staunton gambit","eco_code":"A82","moves":["d4","f5","e4"]},
|
1503
|
+
{"name":"Dutch, Balogh defence","eco_code":"A82","moves":["d4","f5","e4","d6"]},
|
1504
|
+
{"name":"Dutch, Staunton gambit","eco_code":"A82","moves":["d4","f5","e4","fxe4"]},
|
1505
|
+
{"name":"Dutch, Staunton gambit, Tartakower variation","eco_code":"A82","moves":["d4","f5","e4","fxe4","Nc3","Nf6","g4"]},
|
1506
|
+
{"name":"Dutch, Staunton gambit, Staunton's line","eco_code":"A83","moves":["d4","f5","e4","fxe4","Nc3","Nf6","Bg5"]},
|
1507
|
+
{"name":"Dutch, Staunton gambit, Alekhine variation","eco_code":"A83","moves":["d4","f5","e4","fxe4","Nc3","Nf6","Bg5","g6","h4"]},
|
1508
|
+
{"name":"Dutch, Staunton gambit, Lasker variation","eco_code":"A83","moves":["d4","f5","e4","fxe4","Nc3","Nf6","Bg5","g6","f3"]},
|
1509
|
+
{"name":"Dutch, Staunton gambit, Chigorin variation","eco_code":"A83","moves":["d4","f5","e4","fxe4","Nc3","Nf6","Bg5","c6"]},
|
1510
|
+
{"name":"Dutch, Staunton gambit, Nimzovich variation","eco_code":"A83","moves":["d4","f5","e4","fxe4","Nc3","Nf6","Bg5","b6"]},
|
1511
|
+
{"name":"Dutch, Leningrad, main variation","eco_code":"A87","moves":["d4","f5","c4","Nf6","g3","g6","Bg2","Bg7","Nf3"]},
|
1512
|
+
{"name":"Dutch, Leningrad, main variation with c6","eco_code":"A88","moves":["d4","f5","c4","Nf6","g3","g6","Bg2","Bg7","Nf3","O-O","O-O","d6","Nc3","c6"]},
|
1513
|
+
{"name":"Dutch, Leningrad, main variation with Nc6","eco_code":"A89","moves":["d4","f5","c4","Nf6","g3","g6","Bg2","Bg7","Nf3","O-O","O-O","d6","Nc3","Nc6"]},
|
1514
|
+
{"name":"Dutch, Ilyin-Genevsky variation","eco_code":"A97","moves":["d4","f5","c4","Nf6","g3","e6","Bg2","Be7","Nf3","O-O","O-O","d6","Nc3","Qe8"]},
|
1515
|
+
{"name":"Dutch, Ilyin-Genevsky, Winter variation","eco_code":"A97","moves":["d4","f5","c4","Nf6","g3","e6","Bg2","Be7","Nf3","O-O","O-O","d6","Nc3","Qe8","Re1"]},
|
1516
|
+
{"name":"Dutch, Ilyin-Genevsky variation with Qc2","eco_code":"A98","moves":["d4","f5","c4","Nf6","g3","e6","Bg2","Be7","Nf3","O-O","O-O","d6","Nc3","Qe8","Qc2"]},
|
1517
|
+
{"name":"Dutch, Ilyin-Genevsky variation with b3","eco_code":"A99","moves":["d4","f5","c4","Nf6","g3","e6","Bg2","Be7","Nf3","O-O","O-O","d6","Nc3","Qe8","b3"]},
|
1518
|
+
{"name":"Sicilian, closed","eco_code":"B23","moves":["e4","c5","Nc3"]},
|
1519
|
+
{"name":"Sicilian, closed, Korchnoi variation","eco_code":"B23","moves":["e4","c5","Nc3","e6","g3","d5"]},
|
1520
|
+
{"name":"Sicilian, closed, 2...Nc6","eco_code":"B23","moves":["e4","c5","Nc3","Nc6"]},
|
1521
|
+
{"name":"Sicilian, chameleon variation","eco_code":"B23","moves":["e4","c5","Nc3","Nc6","Nge2"]},
|
1522
|
+
{"name":"Sicilian, Grand Prix attack","eco_code":"B23","moves":["e4","c5","Nc3","Nc6","f4"]},
|
1523
|
+
{"name":"Sicilian, Grand Prix attack, Schofman variation","eco_code":"B23","moves":["e4","c5","Nc3","Nc6","f4","g6","Nf3","Bg7","Bc4","e6","f5"]},
|
1524
|
+
{"name":"Sicilian, closed","eco_code":"B24","moves":["e4","c5","Nc3","Nc6","g3"]},
|
1525
|
+
{"name":"Sicilian, closed, Smyslov variation","eco_code":"B24","moves":["e4","c5","Nc3","Nc6","g3","g6","Bg2","Bg7","d3","e6","Be3","Nd4","Nce2"]},
|
1526
|
+
{"name":"Sicilian, closed","eco_code":"B25","moves":["e4","c5","Nc3","Nc6","g3","g6","Bg2","Bg7","d3","d6"]},
|
1527
|
+
{"name":"Sicilian, closed, 6.Ne2 e5 (Botvinnik)","eco_code":"B25","moves":["e4","c5","Nc3","Nc6","g3","g6","Bg2","Bg7","d3","d6","Nge2","e5"]},
|
1528
|
+
{"name":"Sicilian, closed, 6.f4","eco_code":"B25","moves":["e4","c5","Nc3","Nc6","g3","g6","Bg2","Bg7","d3","d6","f4"]},
|
1529
|
+
{"name":"Sicilian, closed, 6.f4 e5 (Botvinnik)","eco_code":"B25","moves":["e4","c5","Nc3","Nc6","g3","g6","Bg2","Bg7","d3","d6","f4","e5"]},
|
1530
|
+
{"name":"Sicilian, closed, 6.Be3","eco_code":"B26","moves":["e4","c5","Nc3","Nc6","g3","g6","Bg2","Bg7","d3","d6","Be3"]},
|
1531
|
+
{"name":"Sicilian, accelerated fianchetto, exchange variation","eco_code":"B34","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","g6","Nxc6"]},
|
1532
|
+
{"name":"Sicilian, accelerated fianchetto, modern variation","eco_code":"B34","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","g6","Nc3"]},
|
1533
|
+
{"name":"Sicilian, accelerated fianchetto, modern variation with Bc4","eco_code":"B35","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","g6","Nc3","Bg7","Be3","Nf6","Bc4"]},
|
1534
|
+
{"name":"Sicilian, accelerated fianchetto, Maroczy bind","eco_code":"B36","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","g6","c4"]},
|
1535
|
+
{"name":"Sicilian, accelerated fianchetto, Gurgenidze variation","eco_code":"B36","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","g6","c4","Nf6","Nc3","Nxd4","Qxd4","d6"]},
|
1536
|
+
{"name":"Sicilian, accelerated fianchetto, Maroczy bind, 5...Bg7","eco_code":"B37","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","g6","c4","Bg7"]},
|
1537
|
+
{"name":"Sicilian, accelerated fianchetto, Simagin variation","eco_code":"B37","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","g6","c4","Bg7","Nc2","d6","Be2","Nh6"]},
|
1538
|
+
{"name":"Sicilian, accelerated fianchetto, Maroczy bind, 6.Be3","eco_code":"B38","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","g6","c4","Bg7","Be3"]},
|
1539
|
+
{"name":"Sicilian, accelerated fianchetto, Breyer variation","eco_code":"B39","moves":["e4","c5","Nf3","Nc6","d4","cxd4","Nxd4","g6","c4","Bg7","Be3","Nf6","Nc3","Ng4"]},
|
1540
|
+
{"name":"Sicilian, Kan variation","eco_code":"B41","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","a6"]},
|
1541
|
+
{"name":"Sicilian, Kan, Maroczy bind (Reti variation)","eco_code":"B41","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","a6","c4"]},
|
1542
|
+
{"name":"Sicilian, Kan, Maroczy bind - Bronstein variation","eco_code":"B41","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","a6","c4","Nf6","Nc3","Bb4","Bd3","Nc6","Bc2"]},
|
1543
|
+
{"name":"Sicilian, Kan, 5.Bd3","eco_code":"B42","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","a6","Bd3"]},
|
1544
|
+
{"name":"Sicilian, Kan, Gipslis variation","eco_code":"B42","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","a6","Bd3","Nf6","O-O","d6","c4","g6"]},
|
1545
|
+
{"name":"Sicilian, Kan, Polugaievsky variation","eco_code":"B42","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","a6","Bd3","Bc5"]},
|
1546
|
+
{"name":"Sicilian, Kan, Swiss cheese variation","eco_code":"B42","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","a6","Bd3","g6"]},
|
1547
|
+
{"name":"Sicilian, Kan, 5.Nc3","eco_code":"B43","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","a6","Nc3"]},
|
1548
|
+
{"name":"Sicilian, Taimanov variation","eco_code":"B45","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","Nc6","Nc3"]},
|
1549
|
+
{"name":"Sicilian, Taimanov, American attack","eco_code":"B45","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","Nc6","Nc3","Nf6","Ndb5","Bb4","Nd6+"]},
|
1550
|
+
{"name":"Sicilian, Taimanov variation","eco_code":"B46","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","Nc6","Nc3","a6"]},
|
1551
|
+
{"name":"Sicilian, Taimanov (Bastrikov) variation","eco_code":"B47","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","Nc6","Nc3","Qc7"]},
|
1552
|
+
{"name":"Sicilian, Taimanov variation","eco_code":"B48","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","Nc6","Nc3","Qc7","Be3"]},
|
1553
|
+
{"name":"Sicilian, Taimanov variation","eco_code":"B49","moves":["e4","c5","Nf3","e6","d4","cxd4","Nxd4","Nc6","Nc3","Qc7","Be3","a6","Be2"]},
|
1554
|
+
{"name":"Sicilian, Canal-Sokolsky (Nimzovich-Rossolimo, Moscow) attack","eco_code":"B51","moves":["e4","c5","Nf3","d6","Bb5+"]},
|
1555
|
+
{"name":"Sicilian, Canal-Sokolsky attack, 3...Bd7","eco_code":"B52","moves":["e4","c5","Nf3","d6","Bb5+","Bd7"]},
|
1556
|
+
{"name":"Sicilian, Canal-Sokolsky attack, Bronstein gambit","eco_code":"B52","moves":["e4","c5","Nf3","d6","Bb5+","Bd7","Bxd7+","Qxd7","O-O","Nc6","c3","Nf6","d4"]},
|
1557
|
+
{"name":"Sicilian, Canal-Sokolsky attack, Sokolsky variation","eco_code":"B52","moves":["e4","c5","Nf3","d6","Bb5+","Bd7","Bxd7+","Qxd7","c4"]},
|
1558
|
+
{"name":"Sicilian, Richter-Rauzer","eco_code":"B60","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5"]},
|
1559
|
+
{"name":"Sicilian, Richter-Rauzer, Bondarevsky variation","eco_code":"B60","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5","g6"]},
|
1560
|
+
{"name":"Sicilian, Richter-Rauzer, Larsen variation","eco_code":"B60","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5","Bd7"]},
|
1561
|
+
{"name":"Sicilian, Richter-Rauzer, Larsen variation, 7.Qd2","eco_code":"B61","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5","Bd7","Qd2"]},
|
1562
|
+
{"name":"Sicilian, Richter-Rauzer, 6...e6","eco_code":"B62","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5","e6"]},
|
1563
|
+
{"name":"Sicilian, Richter-Rauzer, Podvebrady variation","eco_code":"B62","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5","e6","Nb3"]},
|
1564
|
+
{"name":"Sicilian, Richter-Rauzer, Margate (Alekhine) variation","eco_code":"B62","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5","e6","Bb5"]},
|
1565
|
+
{"name":"Sicilian, Richter-Rauzer, Richter attack","eco_code":"B62","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5","e6","Nxc6"]},
|
1566
|
+
{"name":"Sicilian, Richter-Rauzer, Keres variation","eco_code":"B62","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5","e6","Qd3"]},
|
1567
|
+
{"name":"Sicilian, Richter-Rauzer, Rauzer attack","eco_code":"B63","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5","e6","Qd2"]},
|
1568
|
+
{"name":"Sicilian, Richter-Rauzer, Rauzer attack, 7...Be7","eco_code":"B63","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5","e6","Qd2","Be7"]},
|
1569
|
+
{"name":"Sicilian, Richter-Rauzer, Rauzer attack, 7...Be7 defence, 9.f4","eco_code":"B64","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5","e6","Qd2","Be7","O-O-O","O-O","f4"]},
|
1570
|
+
{"name":"Sicilian, Richter-Rauzer, Rauzer attack, Geller variation","eco_code":"B64","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5","e6","Qd2","Be7","O-O-O","O-O","f4","e5"]},
|
1571
|
+
{"name":"Sicilian, Richter-Rauzer, Rauzer attack, 7...Be7 defence, 9...Nxd4","eco_code":"B65","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5","e6","Qd2","Be7","O-O-O","O-O","f4","Nxd4"]},
|
1572
|
+
{"name":"Sicilian, Richter-Rauzer, Rauzer attack, 7...Be7 defence, 9...Nxd4","eco_code":"B65","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5","e6","Qd2","Be7","O-O-O","O-O","f4","Nxd4","Qxd4"]},
|
1573
|
+
{"name":"Sicilian, Richter-Rauzer, Rauzer attack, 7...a6","eco_code":"B66","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5","e6","Qd2","a6"]},
|
1574
|
+
{"name":"Sicilian, Richter-Rauzer, Rauzer attack, 7...a6 defence, 8...Bd7","eco_code":"B67","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5","e6","Qd2","a6","O-O-O","Bd7"]},
|
1575
|
+
{"name":"Sicilian, Richter-Rauzer, Rauzer attack, 7...a6 defence, 9...Be7","eco_code":"B68","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5","e6","Qd2","a6","O-O-O","Bd7","f4","Be7"]},
|
1576
|
+
{"name":"Sicilian, Richter-Rauzer, Rauzer attack, 7...a6 defence, 11.Bxf6","eco_code":"B69","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","Nc6","Bg5","e6","Qd2","a6","O-O-O","Bd7","f4","Be7","Nf3","b5","Bxf6"]},
|
1577
|
+
{"name":"Sicilian, dragon variation","eco_code":"B70","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6"]},
|
1578
|
+
{"name":"Sicilian, dragon, Levenfish variation","eco_code":"B71","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","f4"]},
|
1579
|
+
{"name":"Sicilian, dragon, Levenfish; Flohr variation","eco_code":"B71","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","f4","Nbd7"]},
|
1580
|
+
{"name":"Sicilian, dragon, 6.Be3","eco_code":"B72","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3"]},
|
1581
|
+
{"name":"Sicilian, dragon, classical attack","eco_code":"B72","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","Be2"]},
|
1582
|
+
{"name":"Sicilian, dragon, classical, Amsterdam variation","eco_code":"B72","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","Be2","Nc6","Qd2"]},
|
1583
|
+
{"name":"Sicilian, dragon, classical, Grigoriev variation","eco_code":"B72","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","Be2","Nc6","Qd2","O-O","O-O-O"]},
|
1584
|
+
{"name":"Sicilian, dragon, classical, Nottingham variation","eco_code":"B72","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","Be2","Nc6","Nb3"]},
|
1585
|
+
{"name":"Sicilian, dragon, classical, 8.O-O","eco_code":"B73","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","Be2","Nc6","O-O"]},
|
1586
|
+
{"name":"Sicilian, dragon, classical, Zollner gambit","eco_code":"B73","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","Be2","Nc6","O-O","O-O","f4","Qb6","e5"]},
|
1587
|
+
{"name":"Sicilian, dragon, classical, Richter variation","eco_code":"B73","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","Be2","Nc6","O-O","O-O","Qd2"]},
|
1588
|
+
{"name":"Sicilian, dragon, classical, 9.Nb3","eco_code":"B74","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","Be2","Nc6","O-O","O-O","Nb3"]},
|
1589
|
+
{"name":"Sicilian, dragon, classical, Stockholm attack","eco_code":"B74","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","Be2","Nc6","O-O","O-O","Nb3","Be6","f4","Na5","f5","Bc4","Nxa5","Bxe2","Qxe2","Qxa5","g4"]},
|
1590
|
+
{"name":"Sicilian, dragon, classical, Spielmann variation","eco_code":"B74","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","Be2","Nc6","O-O","O-O","Nb3","Be6","f4","Na5","f5","Bc4","Bd3"]},
|
1591
|
+
{"name":"Sicilian, dragon, classical, Bernard defence","eco_code":"B74","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","Be2","Nc6","O-O","O-O","Nb3","Be6","f4","Na5","f5","Bc4","Bd3","Bxd3","cxd3","d5"]},
|
1592
|
+
{"name":"Sicilian, dragon, classical, Reti-Tartakower variation","eco_code":"B74","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","Be2","Nc6","O-O","O-O","Nb3","Be6","f4","Qc8"]},
|
1593
|
+
{"name":"Sicilian, dragon, classical, Alekhine variation","eco_code":"B74","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","Be2","Nc6","O-O","O-O","Nb3","a5"]},
|
1594
|
+
{"name":"Sicilian, dragon, Yugoslav attack","eco_code":"B75","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","f3"]},
|
1595
|
+
{"name":"Sicilian, dragon, Yugoslav attack, 7...O-O","eco_code":"B76","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","f3","O-O"]},
|
1596
|
+
{"name":"Sicilian, dragon, Yugoslav attack, Rauser variation","eco_code":"B76","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","f3","O-O","Qd2","Nc6","O-O-O"]},
|
1597
|
+
{"name":"Sicilian, dragon, Yugoslav attack, 9.Bc4","eco_code":"B77","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","f3","O-O","Qd2","Nc6","Bc4"]},
|
1598
|
+
{"name":"Sicilian, dragon, Yugoslav attack, Byrne variation","eco_code":"B77","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","f3","O-O","Qd2","Nc6","Bc4","a5"]},
|
1599
|
+
{"name":"Sicilian, dragon, Yugoslav attack, 9...Bd7","eco_code":"B77","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","f3","O-O","Qd2","Nc6","Bc4","Bd7"]},
|
1600
|
+
{"name":"Sicilian, dragon, Yugoslav attack, 10.O-O-O","eco_code":"B78","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","f3","O-O","Qd2","Nc6","Bc4","Bd7","O-O-O"]},
|
1601
|
+
{"name":"Sicilian, dragon, Yugoslav attack, 12.h4","eco_code":"B79","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","g6","Be3","Bg7","f3","O-O","Qd2","Nc6","Bc4","Bd7","O-O-O","Qa5","Bb3","Rfc8","h4"]},
|
1602
|
+
{"name":"Sicilian, Scheveningen variation","eco_code":"B80","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6"]},
|
1603
|
+
{"name":"Sicilian, Scheveningen, English variation","eco_code":"B80","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Be3","a6","Qd2"]},
|
1604
|
+
{"name":"Sicilian, Scheveningen, Vitolins variation","eco_code":"B80","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Bb5+"]},
|
1605
|
+
{"name":"Sicilian, Scheveningen, fianchetto variation","eco_code":"B80","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","g3"]},
|
1606
|
+
{"name":"Sicilian, Scheveningen, Keres attack","eco_code":"B81","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","g4"]},
|
1607
|
+
{"name":"Sicilian, Scheveningen, 6.f4","eco_code":"B82","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","f4"]},
|
1608
|
+
{"name":"Sicilian, Scheveningen, Tal variation","eco_code":"B82","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","f4","Nc6","Be3","Be7","Qf3"]},
|
1609
|
+
{"name":"Sicilian, Scheveningen, 6.Be2","eco_code":"B83","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Be2"]},
|
1610
|
+
{"name":"Sicilian, modern Scheveningen","eco_code":"B83","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Be2","Nc6"]},
|
1611
|
+
{"name":"Sicilian, modern Scheveningen, main line","eco_code":"B83","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Be2","Nc6","O-O","Be7","Be3","O-O","f4"]},
|
1612
|
+
{"name":"Sicilian, modern Scheveningen, main line with Nb3","eco_code":"B83","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Be2","Nc6","O-O","Be7","Be3","O-O","f4","Bd7","Nb3"]},
|
1613
|
+
{"name":"Sicilian, Scheveningen (Paulsen), classical variation","eco_code":"B84","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Be2","a6"]},
|
1614
|
+
{"name":"Sicilian, Scheveningen, classical, Nd7 system","eco_code":"B84","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Be2","a6","O-O","Nbd7"]},
|
1615
|
+
{"name":"Sicilian, Scheveningen (Paulsen), classical variation","eco_code":"B84","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Be2","a6","O-O","Qc7"]},
|
1616
|
+
{"name":"Sicilian, Scheveningen, classical variation with ...Qc7 and ...Nc6","eco_code":"B85","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Be2","a6","O-O","Qc7","f4","Nc6"]},
|
1617
|
+
{"name":"Sicilian, Scheveningen, classical, Maroczy system","eco_code":"B85","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Be2","a6","O-O","Qc7","f4","Nc6","Kh1","Be7","a4"]},
|
1618
|
+
{"name":"Sicilian, Scheveningen, classical","eco_code":"B85","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Be2","a6","O-O","Qc7","f4","Nc6","Be3"]},
|
1619
|
+
{"name":"Sicilian, Scheveningen, classical main line","eco_code":"B85","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Be2","a6","O-O","Qc7","f4","Nc6","Be3","Be7","Qe1","O-O"]},
|
1620
|
+
{"name":"Sicilian, Sozin attack","eco_code":"B86","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Bc4"]},
|
1621
|
+
{"name":"Sicilian, Sozin with ...a6 and ...b5","eco_code":"B87","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Bc4","a6","Bb3","b5"]},
|
1622
|
+
{"name":"Sicilian, Sozin, Leonhardt variation","eco_code":"B88","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Bc4","Nc6"]},
|
1623
|
+
{"name":"Sicilian, Sozin, Fischer variation","eco_code":"B88","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Bc4","Nc6","Bb3","Be7","Be3","O-O","f4"]},
|
1624
|
+
{"name":"Sicilian, Sozin, 7.Be3","eco_code":"B89","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Bc4","Nc6","Be3"]},
|
1625
|
+
{"name":"Sicilian, Velimirovic attack","eco_code":"B89","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","e6","Bc4","Nc6","Be3","Be7","Qe2"]},
|
1626
|
+
{"name":"Sicilian, Najdorf","eco_code":"B90","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6"]},
|
1627
|
+
{"name":"Sicilian, Najdorf, Adams attack","eco_code":"B90","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","h3"]},
|
1628
|
+
{"name":"Sicilian, Najdorf, Lipnitzky attack","eco_code":"B90","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","Bc4"]},
|
1629
|
+
{"name":"Sicilian, Najdorf, Byrne (English) attack","eco_code":"B90","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","Be3"]},
|
1630
|
+
{"name":"Sicilian, Najdorf, Zagreb (fianchetto) variation","eco_code":"B91","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","g3"]},
|
1631
|
+
{"name":"Sicilian, Najdorf, Opovcensky variation","eco_code":"B92","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","Be2"]},
|
1632
|
+
{"name":"Sicilian, Najdorf, 6.f4","eco_code":"B93","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","f4"]},
|
1633
|
+
{"name":"Sicilian, Najdorf, 6.Bg5","eco_code":"B94","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","Bg5"]},
|
1634
|
+
{"name":"Sicilian, Najdorf, Ivkov variation","eco_code":"B94","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","Bg5","Nbd7","Bc4","Qa5","Qd2","e6","O-O-O","b5","Bb3","Bb7","Rhe1","Nc5","e5"]},
|
1635
|
+
{"name":"Sicilian, Najdorf, 6...e6","eco_code":"B95","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","Bg5","e6"]},
|
1636
|
+
{"name":"Sicilian, Najdorf, 7.f4","eco_code":"B96","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","Bg5","e6","f4"]},
|
1637
|
+
{"name":"Sicilian, Najdorf, Polugayevsky variation","eco_code":"B96","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","Bg5","e6","f4","b5"]},
|
1638
|
+
{"name":"Sicilian, Najdorf, Polugayevsky, Simagin variation","eco_code":"B96","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","Bg5","e6","f4","b5","e5","dxe5","fxe5","Qc7","Qe2"]},
|
1639
|
+
{"name":"Sicilian, Najdorf, 7...Qb6","eco_code":"B97","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","Bg5","e6","f4","Qb6"]},
|
1640
|
+
{"name":"Sicilian, Najdorf, Poisoned pawn variation","eco_code":"B97","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","Bg5","e6","f4","Qb6","Qd2","Qxb2","Rb1","Qa3"]},
|
1641
|
+
{"name":"Sicilian, Najdorf, 7...Be7","eco_code":"B98","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","Bg5","e6","f4","Be7"]},
|
1642
|
+
{"name":"Sicilian, Najdorf, Browne variation","eco_code":"B98","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","Bg5","e6","f4","Be7","Qf3","h6","Bh4","Qc7"]},
|
1643
|
+
{"name":"Sicilian, Najdorf, Goteborg (Argentine) variation","eco_code":"B98","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","Bg5","e6","f4","Be7","Qf3","h6","Bh4","g5"]},
|
1644
|
+
{"name":"Sicilian, Najdorf variation","eco_code":"B98","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","Bg5","e6","f4","Be7","Qf3","Qc7"]},
|
1645
|
+
{"name":"Sicilian, Najdorf, 7...Be7 main line","eco_code":"B99","moves":["e4","c5","Nf3","d6","d4","cxd4","Nxd4","Nf6","Nc3","a6","Bg5","e6","f4","Be7","Qf3","Qc7","O-O-O","Nbd7"]},
|
1646
|
+
{"name":"French, Tarrasch","eco_code":"C03","moves":["e4","e6","d4","d5","Nd2"]},
|
1647
|
+
{"name":"French, Tarrasch, Haberditz variation","eco_code":"C03","moves":["e4","e6","d4","d5","Nd2","f5"]},
|
1648
|
+
{"name":"French, Tarrasch, Guimard variation","eco_code":"C03","moves":["e4","e6","d4","d5","Nd2","Nc6"]},
|
1649
|
+
{"name":"French, Tarrasch, Guimard main line","eco_code":"C04","moves":["e4","e6","d4","d5","Nd2","Nc6","Ngf3","Nf6"]},
|
1650
|
+
{"name":"French, Tarrasch, closed variation","eco_code":"C05","moves":["e4","e6","d4","d5","Nd2","Nf6"]},
|
1651
|
+
{"name":"French, Tarrasch, Botvinnik variation","eco_code":"C05","moves":["e4","e6","d4","d5","Nd2","Nf6","e5","Nfd7","Bd3","c5","c3","b6"]},
|
1652
|
+
{"name":"French, Tarrasch, closed variation","eco_code":"C05","moves":["e4","e6","d4","d5","Nd2","Nf6","e5","Nfd7","Bd3","c5","c3","Nc6"]},
|
1653
|
+
{"name":"French, Tarrasch, closed variation, main line","eco_code":"C06","moves":["e4","e6","d4","d5","Nd2","Nf6","e5","Nfd7","Bd3","c5","c3","Nc6","Ne2","cxd4","cxd4"]},
|
1654
|
+
{"name":"French, Tarrasch, Leningrad variation","eco_code":"C06","moves":["e4","e6","d4","d5","Nd2","Nf6","e5","Nfd7","Bd3","c5","c3","Nc6","Ne2","cxd4","cxd4","Nb6"]},
|
1655
|
+
{"name":"French, Tarrasch, open variation","eco_code":"C07","moves":["e4","e6","d4","d5","Nd2","c5"]},
|
1656
|
+
{"name":"French, Tarrasch, Eliskases variation","eco_code":"C07","moves":["e4","e6","d4","d5","Nd2","c5","exd5","Qxd5","Ngf3","cxd4","Bc4","Qd8"]},
|
1657
|
+
{"name":"French, Tarrasch, open, 4.ed ed","eco_code":"C08","moves":["e4","e6","d4","d5","Nd2","c5","exd5","exd5"]},
|
1658
|
+
{"name":"French, Tarrasch, open variation, main line","eco_code":"C09","moves":["e4","e6","d4","d5","Nd2","c5","exd5","exd5","Ngf3","Nc6"]},
|
1659
|
+
{"name":"French, classical","eco_code":"C13","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Be7"]},
|
1660
|
+
{"name":"French, classical, Anderssen variation","eco_code":"C13","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Be7","Bxf6"]},
|
1661
|
+
{"name":"French, classical, Anderssen-Richter variation","eco_code":"C13","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Be7","Bxf6","Bxf6","e5","Be7","Qg4"]},
|
1662
|
+
{"name":"French, classical, Vistaneckis (Nimzovich) variation","eco_code":"C13","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Be7","e5","Ng8"]},
|
1663
|
+
{"name":"French, classical, Frankfurt variation","eco_code":"C13","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Be7","e5","Ng8","Be3","b6"]},
|
1664
|
+
{"name":"French, classical, Tartakower variation","eco_code":"C13","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Be7","e5","Ne4"]},
|
1665
|
+
{"name":"French, Albin-Alekhine-Chatard attack","eco_code":"C13","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Be7","e5","Nfd7","h4"]},
|
1666
|
+
{"name":"French, Albin-Alekhine-Chatard attack, Maroczy variation","eco_code":"C13","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Be7","e5","Nfd7","h4","a6"]},
|
1667
|
+
{"name":"French, Albin-Alekhine-Chatard attack, Breyer variation","eco_code":"C13","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Be7","e5","Nfd7","h4","c5"]},
|
1668
|
+
{"name":"French, Albin-Alekhine-Chatard attack, Teichmann variation","eco_code":"C13","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Be7","e5","Nfd7","h4","f6"]},
|
1669
|
+
{"name":"French, Albin-Alekhine-Chatard attack, Spielmann variation","eco_code":"C13","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Be7","e5","Nfd7","h4","O-O"]},
|
1670
|
+
{"name":"French, classical variation","eco_code":"C14","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Be7","e5","Nfd7","Bxe7","Qxe7"]},
|
1671
|
+
{"name":"French, classical, Tarrasch variation","eco_code":"C14","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Be7","e5","Nfd7","Bxe7","Qxe7","Bd3"]},
|
1672
|
+
{"name":"French, classical, Rubinstein variation","eco_code":"C14","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Be7","e5","Nfd7","Bxe7","Qxe7","Qd2"]},
|
1673
|
+
{"name":"French, classical, Alapin variation","eco_code":"C14","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Be7","e5","Nfd7","Bxe7","Qxe7","Nb5"]},
|
1674
|
+
{"name":"French, classical, Pollock variation","eco_code":"C14","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Be7","e5","Nfd7","Bxe7","Qxe7","Qg4"]},
|
1675
|
+
{"name":"French, classical, Steinitz variation","eco_code":"C14","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Be7","e5","Nfd7","Bxe7","Qxe7","f4"]},
|
1676
|
+
{"name":"French, classical, Stahlberg variation","eco_code":"C14","moves":["e4","e6","d4","d5","Nc3","Nf6","Bg5","Be7","e5","Nfd7","Bxe7","Qxe7","f4","O-O","Nf3","c5","Qd2","Nc6","O-O-O","c4"]},
|
1677
|
+
{"name":"French, Winawer (Nimzovich) variation","eco_code":"C15","moves":["e4","e6","d4","d5","Nc3","Bb4"]},
|
1678
|
+
{"name":"French, Winawer, Kondratiyev variation","eco_code":"C15","moves":["e4","e6","d4","d5","Nc3","Bb4","Bd3","c5","exd5","Qxd5","Bd2"]},
|
1679
|
+
{"name":"French, Winawer, fingerslip variation","eco_code":"C15","moves":["e4","e6","d4","d5","Nc3","Bb4","Bd2"]},
|
1680
|
+
{"name":"French, Winawer, Alekhine (Maroczy) gambit","eco_code":"C15","moves":["e4","e6","d4","d5","Nc3","Bb4","Nge2"]},
|
1681
|
+
{"name":"French, Winawer, Alekhine gambit, Alatortsev variation","eco_code":"C15","moves":["e4","e6","d4","d5","Nc3","Bb4","Nge2","dxe4","a3","Be7","Nxe4","Nf6","Ne2-g3","O-O","Be2","Nc6"]},
|
1682
|
+
{"name":"French, Winawer, Alekhine gambit","eco_code":"C15","moves":["e4","e6","d4","d5","Nc3","Bb4","Nge2","dxe4","a3","Bxc3+"]},
|
1683
|
+
{"name":"French, Winawer, Alekhine gambit, Kan variation","eco_code":"C15","moves":["e4","e6","d4","d5","Nc3","Bb4","Nge2","dxe4","a3","Bxc3+","Nxc3","Nc6"]},
|
1684
|
+
{"name":"French, Winawer, advance variation","eco_code":"C16","moves":["e4","e6","d4","d5","Nc3","Bb4","e5"]},
|
1685
|
+
{"name":"French, Winawer, Petrosian variation","eco_code":"C16","moves":["e4","e6","d4","d5","Nc3","Bb4","e5","Qd7"]},
|
1686
|
+
{"name":"French, Winawer, advance variation","eco_code":"C17","moves":["e4","e6","d4","d5","Nc3","Bb4","e5","c5"]},
|
1687
|
+
{"name":"French, Winawer, advance, Bogolyubov variation","eco_code":"C17","moves":["e4","e6","d4","d5","Nc3","Bb4","e5","c5","Bd2"]},
|
1688
|
+
{"name":"French, Winawer, advance, Russian variation","eco_code":"C17","moves":["e4","e6","d4","d5","Nc3","Bb4","e5","c5","Qg4"]},
|
1689
|
+
{"name":"French, Winawer, advance, 5.a3","eco_code":"C17","moves":["e4","e6","d4","d5","Nc3","Bb4","e5","c5","a3"]},
|
1690
|
+
{"name":"French, Winawer, advance, Rauzer variation","eco_code":"C17","moves":["e4","e6","d4","d5","Nc3","Bb4","e5","c5","a3","cxd4","axb4","dxc3","Nf3"]},
|
1691
|
+
{"name":"French, Winawer, advance variation","eco_code":"C18","moves":["e4","e6","d4","d5","Nc3","Bb4","e5","c5","a3","Bxc3+","bxc3"]},
|
1692
|
+
{"name":"French, Winawer, classical variation","eco_code":"C18","moves":["e4","e6","d4","d5","Nc3","Bb4","e5","c5","a3","Bxc3+","bxc3","Qc7"]},
|
1693
|
+
{"name":"French, Winawer, advance, 6...Ne7","eco_code":"C19","moves":["e4","e6","d4","d5","Nc3","Bb4","e5","c5","a3","Bxc3+","bxc3","Ne7"]},
|
1694
|
+
{"name":"French, Winawer, advance, Smyslov variation","eco_code":"C19","moves":["e4","e6","d4","d5","Nc3","Bb4","e5","c5","a3","Bxc3+","bxc3","Ne7","a4"]},
|
1695
|
+
{"name":"French, Winawer, advance, positional main line","eco_code":"C19","moves":["e4","e6","d4","d5","Nc3","Bb4","e5","c5","a3","Bxc3+","bxc3","Ne7","Nf3"]},
|
1696
|
+
{"name":"French, Winawer, advance, poisoned pawn variation","eco_code":"C19","moves":["e4","e6","d4","d5","Nc3","Bb4","e5","c5","a3","Bxc3+","bxc3","Ne7","Qg4"]},
|
1697
|
+
{"name":"French, Winawer, advance, poisoned pawn, Euwe-Gligoric variation","eco_code":"C19","moves":["e4","e6","d4","d5","Nc3","Bb4","e5","c5","a3","Bxc3+","bxc3","Ne7","Qg4","Qc7","Qxg7","Rg8","Qxh7","cxd4","Kd1"]},
|
1698
|
+
{"name":"French, Winawer, advance, poisoned pawn, Konstantinopolsky variation","eco_code":"C19","moves":["e4","e6","d4","d5","Nc3","Bb4","e5","c5","a3","Bxc3+","bxc3","Ne7","Qg4","Qc7","Qxg7","Rg8","Qxh7","cxd4","Ne2"]},
|
1699
|
+
{"name":"Ruy Lopez, Berlin defence","eco_code":"C65","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6"]},
|
1700
|
+
{"name":"Ruy Lopez, Berlin defence, Nyholm attack","eco_code":"C65","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","d4","exd4","O-O"]},
|
1701
|
+
{"name":"Ruy Lopez, Berlin defence, Mortimer variation","eco_code":"C65","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","d3","Ne7"]},
|
1702
|
+
{"name":"Ruy Lopez, Berlin defence, Mortimer trap","eco_code":"C65","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","d3","Ne7","Nxe5","c6"]},
|
1703
|
+
{"name":"Ruy Lopez, Berlin defence, Anderssen variation","eco_code":"C65","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","d3","d6","Bxc6+"]},
|
1704
|
+
{"name":"Ruy Lopez, Berlin defence, Duras variation","eco_code":"C65","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","d3","d6","c4"]},
|
1705
|
+
{"name":"Ruy Lopez, Berlin defence, Kaufmann variation","eco_code":"C65","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","d3","Bc5","Be3"]},
|
1706
|
+
{"name":"Ruy Lopez, Berlin defence, 4.O-O","eco_code":"C65","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O"]},
|
1707
|
+
{"name":"Ruy Lopez, Berlin defence, Beverwijk variation","eco_code":"C65","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","Bc5"]},
|
1708
|
+
{"name":"Ruy Lopez, Berlin defence, 4.O-O, d6","eco_code":"C66","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","d6"]},
|
1709
|
+
{"name":"Ruy Lopez, Berlin defence, hedgehog variation","eco_code":"C66","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","d6","d4","Bd7","Nc3","Be7"]},
|
1710
|
+
{"name":"Ruy Lopez, Berlin defence, Tarrasch trap","eco_code":"C66","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","d6","d4","Bd7","Nc3","Be7","Re1","O-O"]},
|
1711
|
+
{"name":"Ruy Lopez, closed Berlin defence, Bernstein variation","eco_code":"C66","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","d6","d4","Bd7","Nc3","Be7","Bg5"]},
|
1712
|
+
{"name":"Ruy Lopez, closed Berlin defence, Showalter variation","eco_code":"C66","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","d6","d4","Bd7","Nc3","Be7","Bxc6"]},
|
1713
|
+
{"name":"Ruy Lopez, closed Berlin defence, Wolf variation","eco_code":"C66","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","d6","d4","Bd7","Nc3","exd4"]},
|
1714
|
+
{"name":"Ruy Lopez, closed Berlin defence, Chigorin variation","eco_code":"C66","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","d6","d4","Nd7"]},
|
1715
|
+
{"name":"Ruy Lopez, Berlin defence, open variation","eco_code":"C67","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","Nxe4"]},
|
1716
|
+
{"name":"Ruy Lopez, open Berlin defence, l'Hermet variation","eco_code":"C67","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","Nxe4","d4","Nd6","dxe5"]},
|
1717
|
+
{"name":"Ruy Lopez, open Berlin defence, Showalter variation","eco_code":"C67","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","Nxe4","d4","Nd6","Ba4"]},
|
1718
|
+
{"name":"Ruy Lopez, open Berlin defence, 5...Be7","eco_code":"C67","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","Nxe4","d4","Be7"]},
|
1719
|
+
{"name":"Ruy Lopez, Berlin defence, Rio de Janeiro variation","eco_code":"C67","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","Nxe4","d4","Be7","Qe2","Nd6","Bxc6","bxc6","dxe5","Nb7","Nc3","O-O","Re1","Nc5","Nd4","Ne6","Be3","Nxd4","Bxd4","c5"]},
|
1720
|
+
{"name":"Ruy Lopez, Berlin defence, Zukertort variation","eco_code":"C67","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","Nxe4","d4","Be7","Qe2","Nd6","Bxc6","bxc6","dxe5","Nb7","c4"]},
|
1721
|
+
{"name":"Ruy Lopez, Berlin defence, Pillsbury variation","eco_code":"C67","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","Nxe4","d4","Be7","Qe2","Nd6","Bxc6","bxc6","dxe5","Nb7","b3"]},
|
1722
|
+
{"name":"Ruy Lopez, Berlin defence, Winawer attack","eco_code":"C67","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","Nxe4","d4","Be7","Qe2","Nd6","Bxc6","bxc6","dxe5","Nb7","Nd4"]},
|
1723
|
+
{"name":"Ruy Lopez, Berlin defence, Cordel variation","eco_code":"C67","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","Nxe4","d4","Be7","Qe2","Nd6","Bxc6","bxc6","dxe5","Nf5"]},
|
1724
|
+
{"name":"Ruy Lopez, Berlin defence, Trifunovic variation","eco_code":"C67","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","Nxe4","d4","Be7","Qe2","d5"]},
|
1725
|
+
{"name":"Ruy Lopez, Berlin defence, Minckwitz variation","eco_code":"C67","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","Nxe4","d4","Be7","dxe5"]},
|
1726
|
+
{"name":"Ruy Lopez, Berlin defence, Rosenthal variation","eco_code":"C67","moves":["e4","e5","Nf3","Nc6","Bb5","Nf6","O-O","Nxe4","d4","a6"]},
|
1727
|
+
{"name":"Ruy Lopez, exchange variation","eco_code":"C68","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Bxc6"]},
|
1728
|
+
{"name":"Ruy Lopez, exchange, Alekhine variation","eco_code":"C68","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Bxc6","dxc6","d4","exd4","Qxd4","Qxd4","Nxd4","Bd7"]},
|
1729
|
+
{"name":"Ruy Lopez, exchange, Keres variation","eco_code":"C68","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Bxc6","dxc6","Nc3"]},
|
1730
|
+
{"name":"Ruy Lopez, exchange, Romanovsky variation","eco_code":"C68","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Bxc6","dxc6","Nc3","f6","d3"]},
|
1731
|
+
{"name":"Ruy Lopez, exchange variation, 5.O-O","eco_code":"C69","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Bxc6","dxc6","O-O"]},
|
1732
|
+
{"name":"Ruy Lopez, exchange variation, Alapin gambit","eco_code":"C69","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Bxc6","dxc6","O-O","Bg4","h3","h5"]},
|
1733
|
+
{"name":"Ruy Lopez, exchange, Gligoric variation","eco_code":"C69","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Bxc6","dxc6","O-O","f6"]},
|
1734
|
+
{"name":"Ruy Lopez, exchange, Bronstein variation","eco_code":"C69","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Bxc6","dxc6","O-O","Qd6"]},
|
1735
|
+
{"name":"Ruy Lopez, modern Steinitz defence","eco_code":"C71","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","d6"]},
|
1736
|
+
{"name":"Ruy Lopez, Noah's ark trap","eco_code":"C71","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","d6","d4","b5","Bb3","Nxd4","Nxd4","exd4","Qxd4","c5"]},
|
1737
|
+
{"name":"Ruy Lopez, modern Steinitz defence, Three knights variation","eco_code":"C71","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","d6","Nc3"]},
|
1738
|
+
{"name":"Ruy Lopez, modern Steinitz defence, Duras (Keres) variation","eco_code":"C71","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","d6","c4"]},
|
1739
|
+
{"name":"Ruy Lopez, modern Steinitz defence, 5.O-O","eco_code":"C72","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","d6","O-O"]},
|
1740
|
+
{"name":"Ruy Lopez, modern Steinitz defence, Richter variation","eco_code":"C73","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","d6","Bxc6+","bxc6","d4"]},
|
1741
|
+
{"name":"Ruy Lopez, modern Steinitz defence, Alapin variation","eco_code":"C73","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","d6","Bxc6+","bxc6","d4","f6"]},
|
1742
|
+
{"name":"Ruy Lopez, modern Steinitz defence","eco_code":"C74","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","d6","c3"]},
|
1743
|
+
{"name":"Ruy Lopez, modern Steinitz defence, siesta variation","eco_code":"C74","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","d6","c3","f5"]},
|
1744
|
+
{"name":"Ruy Lopez, Siesta, Kopayev variation","eco_code":"C74","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","d6","c3","f5","exf5","Bxf5","O-O"]},
|
1745
|
+
{"name":"Ruy Lopez, modern Steinitz defence","eco_code":"C75","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","d6","c3","Bd7"]},
|
1746
|
+
{"name":"Ruy Lopez, modern Steinitz defence, Rubinstein variation","eco_code":"C75","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","d6","c3","Bd7","d4","Nge7"]},
|
1747
|
+
{"name":"Ruy Lopez, modern Steinitz defence, fianchetto (Bronstein) variation","eco_code":"C76","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","d6","c3","Bd7","d4","g6"]},
|
1748
|
+
{"name":"Ruy Lopez, open (Tarrasch) defence","eco_code":"C80","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4"]},
|
1749
|
+
{"name":"Ruy Lopez, open, Tartakower variation","eco_code":"C80","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","Qe2"]},
|
1750
|
+
{"name":"Ruy Lopez, open, Knorre variation","eco_code":"C80","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","Nc3"]},
|
1751
|
+
{"name":"Ruy Lopez, open, 6.d4","eco_code":"C80","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4"]},
|
1752
|
+
{"name":"Ruy Lopez, open, Riga variation","eco_code":"C80","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","exd4"]},
|
1753
|
+
{"name":"Ruy Lopez, open, 6.d4 b5","eco_code":"C80","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5"]},
|
1754
|
+
{"name":"Ruy Lopez, open, Friess attack","eco_code":"C80","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Nxe5"]},
|
1755
|
+
{"name":"Ruy Lopez, open, Richter variation","eco_code":"C80","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","d5"]},
|
1756
|
+
{"name":"Ruy Lopez, open, 7.Bb3","eco_code":"C80","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3"]},
|
1757
|
+
{"name":"Ruy Lopez, open, Schlechter defence","eco_code":"C80","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","a4","Nxd4"]},
|
1758
|
+
{"name":"Ruy Lopez, open, Berger variation","eco_code":"C80","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","a4","Nxd4","Nxd4","exd4","Nc3"]},
|
1759
|
+
{"name":"Ruy Lopez, open, Harksen gambit","eco_code":"C80","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","c4"]},
|
1760
|
+
{"name":"Ruy Lopez, open, 8.de","eco_code":"C80","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5"]},
|
1761
|
+
{"name":"Ruy Lopez, open, Zukertort variation","eco_code":"C80","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Ne7"]},
|
1762
|
+
{"name":"Ruy Lopez, open, 8...Be6","eco_code":"C80","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Be6"]},
|
1763
|
+
{"name":"Ruy Lopez, open, Bernstein variation","eco_code":"C80","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Be6","Nbd2"]},
|
1764
|
+
{"name":"Ruy Lopez, open, Bernstein variation, Karpov gambit","eco_code":"C80","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Be6","Nbd2","Nc5","c3","d4","Ng5"]},
|
1765
|
+
{"name":"Ruy Lopez, open, Howell attack","eco_code":"C81","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Be6","Qe2"]},
|
1766
|
+
{"name":"Ruy Lopez, open, Howell attack, Ekstroem variation","eco_code":"C81","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Be6","Qe2","Be7","Rd1","O-O","c4","bxc4","Bxc4","Qd7"]},
|
1767
|
+
{"name":"Ruy Lopez, open, Howell attack, Adam variation","eco_code":"C81","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Be6","Qe2","Be7","c4"]},
|
1768
|
+
{"name":"Ruy Lopez, open, 9.c3","eco_code":"C82","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Be6","c3"]},
|
1769
|
+
{"name":"Ruy Lopez, open, Berlin variation","eco_code":"C82","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Be6","c3","Nc5"]},
|
1770
|
+
{"name":"Ruy Lopez, open, Italian variation","eco_code":"C82","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Be6","c3","Bc5"]},
|
1771
|
+
{"name":"Ruy Lopez, open, St. Petersburg variation","eco_code":"C82","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Be6","c3","Bc5","Nbd2"]},
|
1772
|
+
{"name":"Ruy Lopez, open, Dilworth variation","eco_code":"C82","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Be6","c3","Bc5","Nbd2","O-O","Bc2","Nxf2"]},
|
1773
|
+
{"name":"Ruy Lopez, open, Motzko attack","eco_code":"C82","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Be6","c3","Bc5","Qd3"]},
|
1774
|
+
{"name":"Ruy Lopez, open, Motzko attack, Nenarokov variation","eco_code":"C82","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Be6","c3","Bc5","Qd3","Ne7"]},
|
1775
|
+
{"name":"Ruy Lopez, open, classical defence","eco_code":"C83","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Be6","c3","Be7"]},
|
1776
|
+
{"name":"Ruy Lopez, open, Malkin variation","eco_code":"C83","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Be6","c3","Be7","Nbd2","O-O","Qe2"]},
|
1777
|
+
{"name":"Ruy Lopez, open, 9...Be7, 10.Re1","eco_code":"C83","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Be6","c3","Be7","Re1"]},
|
1778
|
+
{"name":"Ruy Lopez, open, Tarrasch trap","eco_code":"C83","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Be6","c3","Be7","Re1","O-O","Nd4","Qd7","Nxe6","fxe6","Rxe4"]},
|
1779
|
+
{"name":"Ruy Lopez, open, Breslau variation","eco_code":"C83","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Nxe4","d4","b5","Bb3","d5","dxe5","Be6","c3","Be7","Re1","O-O","Nd4","Nxe5"]},
|
1780
|
+
{"name":"Ruy Lopez, closed (with ...d6)","eco_code":"C90","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6"]},
|
1781
|
+
{"name":"Ruy Lopez, closed, Pilnik variation","eco_code":"C90","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","d3"]},
|
1782
|
+
{"name":"Ruy Lopez, closed, Lutikov variation","eco_code":"C90","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","Bc2"]},
|
1783
|
+
{"name":"Ruy Lopez, closed, Suetin variation","eco_code":"C90","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","a3"]},
|
1784
|
+
{"name":"Ruy Lopez, closed, 9.d4","eco_code":"C91","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","d4"]},
|
1785
|
+
{"name":"Ruy Lopez, closed, Bogolyubov variation","eco_code":"C91","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","d4","Bg4"]},
|
1786
|
+
{"name":"Ruy Lopez, closed, 9.h3","eco_code":"C92","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3"]},
|
1787
|
+
{"name":"Ruy Lopez, closed, Keres (9...a5) variation","eco_code":"C92","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","a5"]},
|
1788
|
+
{"name":"Ruy Lopez, closed, Kholmov variation","eco_code":"C92","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","Be6"]},
|
1789
|
+
{"name":"Ruy Lopez, closed, Ragozin-Petrosian (`Keres') variation","eco_code":"C92","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","Nd7"]},
|
1790
|
+
{"name":"Ruy Lopez, closed, Flohr-Zaitsev system (Lenzerheide variation)","eco_code":"C92","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","Bb7"]},
|
1791
|
+
{"name":"Ruy Lopez, closed, Smyslov defence","eco_code":"C93","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","h6"]},
|
1792
|
+
{"name":"Ruy Lopez, closed, Breyer defence","eco_code":"C94","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","Nb8"]},
|
1793
|
+
{"name":"Ruy Lopez, closed, Breyer, 10.d4","eco_code":"C95","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","Nb8","d4"]},
|
1794
|
+
{"name":"Ruy Lopez, closed, Breyer, Borisenko variation","eco_code":"C95","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","Nb8","d4","Nbd7"]},
|
1795
|
+
{"name":"Ruy Lopez, closed, Breyer, Gligoric variation","eco_code":"C95","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","Nb8","d4","Nbd7","Nbd2","Bb7","Bc2","c5"]},
|
1796
|
+
{"name":"Ruy Lopez, closed, Breyer, Simagin variation","eco_code":"C95","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","Nb8","d4","Nbd7","Nh4"]},
|
1797
|
+
{"name":"Ruy Lopez, closed (8...Na5)","eco_code":"C96","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","Na5","Bc2"]},
|
1798
|
+
{"name":"Ruy Lopez, closed, Rossolimo defence","eco_code":"C96","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","Na5","Bc2","c6","d4","Qc7"]},
|
1799
|
+
{"name":"Ruy Lopez, closed (10...c5)","eco_code":"C96","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","Na5","Bc2","c5"]},
|
1800
|
+
{"name":"Ruy Lopez, closed, Borisenko defence","eco_code":"C96","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","Na5","Bc2","c5","d4","Nc6"]},
|
1801
|
+
{"name":"Ruy Lopez, closed, Keres (...Nd7) defence","eco_code":"C96","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","Na5","Bc2","c5","d4","Nd7"]},
|
1802
|
+
{"name":"Ruy Lopez, closed, Chigorin defence","eco_code":"C97","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","Na5","Bc2","c5","d4","Qc7"]},
|
1803
|
+
{"name":"Ruy Lopez, closed, Chigorin, Yugoslav system","eco_code":"C97","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","Na5","Bc2","c5","d4","Qc7","Nbd2","Bd7","Nf1","Rfe8","Ne3","g6"]},
|
1804
|
+
{"name":"Ruy Lopez, closed, Chigorin, 12...Nc6","eco_code":"C98","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","Na5","Bc2","c5","d4","Qc7","Nbd2","Nc6"]},
|
1805
|
+
{"name":"Ruy Lopez, closed, Chigorin, Rauzer attack","eco_code":"C98","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","Na5","Bc2","c5","d4","Qc7","Nbd2","Nc6","dxc5"]},
|
1806
|
+
{"name":"Ruy Lopez, closed, Chigorin, 12...c5d4","eco_code":"C99","moves":["e4","e5","Nf3","Nc6","Bb5","a6","Ba4","Nf6","O-O","Be7","Re1","b5","Bb3","O-O","c3","d6","h3","Na5","Bc2","c5","d4","Qc7","Nbd2","cxd4","cxd4"]},
|
1807
|
+
{"name":"Queen's Gambit Declined, Tarrasch defence","eco_code":"D32","moves":["d4","d5","c4","e6","Nc3","c5"]},
|
1808
|
+
{"name":"Queen's Gambit Declined, Tarrasch, von Hennig-Schara gambit","eco_code":"D32","moves":["d4","d5","c4","e6","Nc3","c5","cxd5","cxd4"]},
|
1809
|
+
{"name":"Queen's Gambit Declined, Tarrasch defence, 4.cd ed","eco_code":"D32","moves":["d4","d5","c4","e6","Nc3","c5","cxd5","exd5"]},
|
1810
|
+
{"name":"Queen's Gambit Declined, Tarrasch defence, Tarrasch gambit","eco_code":"D32","moves":["d4","d5","c4","e6","Nc3","c5","cxd5","exd5","dxc5","d4","Na4","b5"]},
|
1811
|
+
{"name":"Queen's Gambit Declined, Tarrasch defence, Marshall gambit","eco_code":"D32","moves":["d4","d5","c4","e6","Nc3","c5","cxd5","exd5","e4"]},
|
1812
|
+
{"name":"Queen's Gambit Declined, Tarrasch defence","eco_code":"D32","moves":["d4","d5","c4","e6","Nc3","c5","cxd5","exd5","Nf3"]},
|
1813
|
+
{"name":"Queen's Gambit Declined, Tarrasch, Schlechter-Rubinstein system","eco_code":"D33","moves":["d4","d5","c4","e6","Nc3","c5","cxd5","exd5","Nf3","Nc6","g3"]},
|
1814
|
+
{"name":"Queen's Gambit Declined, Tarrasch, Folkestone (Swedish) variation","eco_code":"D33","moves":["d4","d5","c4","e6","Nc3","c5","cxd5","exd5","Nf3","Nc6","g3","c4"]},
|
1815
|
+
{"name":"Queen's Gambit Declined, Tarrasch, Schlechter-Rubinstein system, Rey Ardid variation","eco_code":"D33","moves":["d4","d5","c4","e6","Nc3","c5","cxd5","exd5","Nf3","Nc6","g3","c4","e4"]},
|
1816
|
+
{"name":"Queen's Gambit Declined, Tarrasch, Prague variation","eco_code":"D33","moves":["d4","d5","c4","e6","Nc3","c5","cxd5","exd5","Nf3","Nc6","g3","Nf6"]},
|
1817
|
+
{"name":"Queen's Gambit Declined, Tarrasch, Wagner variation","eco_code":"D33","moves":["d4","d5","c4","e6","Nc3","c5","cxd5","exd5","Nf3","Nc6","g3","Nf6","Bg2","Bg4"]},
|
1818
|
+
{"name":"Queen's Gambit Declined, Tarrasch, Prague variation, 7...Be7","eco_code":"D34","moves":["d4","d5","c4","e6","Nc3","c5","cxd5","exd5","Nf3","Nc6","g3","Nf6","Bg2","Be7"]},
|
1819
|
+
{"name":"Queen's Gambit Declined, Tarrasch, Prague variation, Normal position","eco_code":"D34","moves":["d4","d5","c4","e6","Nc3","c5","cxd5","exd5","Nf3","Nc6","g3","Nf6","Bg2","Be7","O-O","O-O"]},
|
1820
|
+
{"name":"Queen's Gambit Declined, Tarrasch, Reti variation","eco_code":"D34","moves":["d4","d5","c4","e6","Nc3","c5","cxd5","exd5","Nf3","Nc6","g3","Nf6","Bg2","Be7","O-O","O-O","dxc5","Bxc5","Na4"]},
|
1821
|
+
{"name":"Queen's Gambit Declined, Tarrasch, Prague variation, 9.Bg5","eco_code":"D34","moves":["d4","d5","c4","e6","Nc3","c5","cxd5","exd5","Nf3","Nc6","g3","Nf6","Bg2","Be7","O-O","O-O","Bg5"]},
|
1822
|
+
{"name":"Queen's Gambit Declined, Tarrasch, Bogolyubov variation","eco_code":"D34","moves":["d4","d5","c4","e6","Nc3","c5","cxd5","exd5","Nf3","Nc6","g3","Nf6","Bg2","Be7","O-O","O-O","Bg5","Be6","Rc1","c4"]},
|
1823
|
+
{"name":"Queen's Gambit Declined, Tarrasch, Stoltz variation","eco_code":"D34","moves":["d4","d5","c4","e6","Nc3","c5","cxd5","exd5","Nf3","Nc6","g3","Nf6","Bg2","Be7","O-O","O-O","Bg5","Be6","Rc1","b6"]},
|
1824
|
+
{"name":"Queen's Gambit Declined, Ragozin variation","eco_code":"D38","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","Bb4"]},
|
1825
|
+
{"name":"Queen's Gambit Declined, Ragozin, Vienna variation","eco_code":"D39","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","Bb4","Bg5","dxc4"]},
|
1826
|
+
{"name":"Queen's Gambit Declined, Semi-Tarrasch defence","eco_code":"D40","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c5"]},
|
1827
|
+
{"name":"Queen's Gambit Declined, Semi-Tarrasch, symmetrical variation","eco_code":"D40","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c5","e3","Nc6","Bd3","Bd6","O-O","O-O"]},
|
1828
|
+
{"name":"Queen's Gambit Declined, Semi-Tarrasch, Levenfish variation","eco_code":"D40","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c5","e3","Nc6","Bd3","Bd6","O-O","O-O","Qe2","Qe7","dxc5","Bxc5","e4"]},
|
1829
|
+
{"name":"Queen's Gambit Declined, Semi-Tarrasch defence, Pillsbury variation","eco_code":"D40","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c5","Bg5"]},
|
1830
|
+
{"name":"Queen's Gambit Declined, Semi-Tarrasch, 5.cd","eco_code":"D41","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c5","cxd5"]},
|
1831
|
+
{"name":"Queen's Gambit Declined, Semi-Tarrasch, Kmoch variation","eco_code":"D41","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c5","cxd5","Nxd5","e4","Nxc3","bxc3","cxd4","cxd4","Bb4+","Bd2","Bxd2+","Qxd2","O-O","Bb5"]},
|
1832
|
+
{"name":"Queen's Gambit Declined, Semi-Tarrasch, San Sebastian variation","eco_code":"D41","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c5","cxd5","Nxd5","e4","Nxc3","bxc3","cxd4","cxd4","Bb4+","Bd2","Qa5"]},
|
1833
|
+
{"name":"Queen's Gambit Declined, Semi-Tarrasch with e3","eco_code":"D41","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c5","cxd5","Nxd5","e3"]},
|
1834
|
+
{"name":"Queen's Gambit Declined, Semi-Tarrasch, 7.Bd3","eco_code":"D42","moves":["d4","d5","c4","e6","Nc3","Nf6","Nf3","c5","cxd5","Nxd5","e3","Nc6","Bd3"]},
|
1835
|
+
{"name":"Queen's Gambit Declined, Lasker defence","eco_code":"D56","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","h6","Bh4","Ne4"]},
|
1836
|
+
{"name":"Queen's Gambit Declined, Lasker defence, Teichmann variation","eco_code":"D56","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","h6","Bh4","Ne4","Bxe7","Qxe7","Qc2"]},
|
1837
|
+
{"name":"Queen's Gambit Declined, Lasker defence, Russian variation","eco_code":"D56","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","h6","Bh4","Ne4","Bxe7","Qxe7","Qc2","Nf6","Bd3","dxc4","Bxc4","c5","O-O","Nc6","Rfd1","Bd7"]},
|
1838
|
+
{"name":"Queen's Gambit Declined, Lasker defence, main line","eco_code":"D57","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","h6","Bh4","Ne4","Bxe7","Qxe7","cxd5","Nxc3","bxc3"]},
|
1839
|
+
{"name":"Queen's Gambit Declined, Lasker defence, Bernstein variation","eco_code":"D57","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","h6","Bh4","Ne4","Bxe7","Qxe7","cxd5","Nxc3","bxc3","exd5","Qb3","Qd6"]},
|
1840
|
+
{"name":"Queen's Gambit Declined, Tartakower (Makagonov-Bondarevsky) system","eco_code":"D58","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","h6","Bh4","b6"]},
|
1841
|
+
{"name":"Queen's Gambit Declined, Tartakower (Makagonov-Bondarevsky) system, 8.cd Nxd5","eco_code":"D59","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","h6","Bh4","b6","cxd5","Nxd5"]},
|
1842
|
+
{"name":"Queen's Gambit Declined, Tartakower variation","eco_code":"D59","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","h6","Bh4","b6","cxd5","Nxd5","Bxe7","Qxe7","Nxd5","exd5","Rc1","Be6"]},
|
1843
|
+
{"name":"Queen's Gambit Declined, Orthodox defence","eco_code":"D60","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7"]},
|
1844
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Botvinnik variation","eco_code":"D60","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Bd3"]},
|
1845
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Rauzer variation","eco_code":"D60","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Qb3"]},
|
1846
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Rubinstein variation","eco_code":"D61","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Qc2"]},
|
1847
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, 7.Qc2 c5, 8.cd (Rubinstein)","eco_code":"D62","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Qc2","c5","cxd5"]},
|
1848
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, 7.Rc1","eco_code":"D63","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1"]},
|
1849
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Pillsbury attack","eco_code":"D63","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","b6","cxd5","exd5","Bd3"]},
|
1850
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Capablanca variation","eco_code":"D63","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","b6","cxd5","exd5","Bb5"]},
|
1851
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Swiss (Henneberger) variation","eco_code":"D63","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","a6"]},
|
1852
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Swiss, Karlsbad variation","eco_code":"D63","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","a6","cxd5"]},
|
1853
|
+
{"name":"Queen's Gambit Declined, Orthodox defence","eco_code":"D63","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","c6"]},
|
1854
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Rubinstein attack (with Rc1)","eco_code":"D64","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","c6","Qc2"]},
|
1855
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Rubinstein attack, Wolf variation","eco_code":"D64","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","c6","Qc2","Ne4"]},
|
1856
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Rubinstein attack, Karlsbad variation","eco_code":"D64","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","c6","Qc2","a6"]},
|
1857
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Rubinstein attack, Gruenfeld variation","eco_code":"D64","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","c6","Qc2","a6","a3"]},
|
1858
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Rubinstein attack, main line","eco_code":"D65","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","c6","Qc2","a6","cxd5"]},
|
1859
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Bd3 line","eco_code":"D66","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","c6","Bd3"]},
|
1860
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Bd3 line, fianchetto variation","eco_code":"D66","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","c6","Bd3","dxc4","Bxc4","b5"]},
|
1861
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Bd3 line, Capablanca freeing manoevre","eco_code":"D67","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","c6","Bd3","dxc4","Bxc4","Nd5"]},
|
1862
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Bd3 line, Janowski variation","eco_code":"D67","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","c6","Bd3","dxc4","Bxc4","Nd5","h4"]},
|
1863
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Bd3 line","eco_code":"D67","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","c6","Bd3","dxc4","Bxc4","Nd5","Bxe7","Qxe7"]},
|
1864
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Bd3 line, Alekhine variation","eco_code":"D67","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","c6","Bd3","dxc4","Bxc4","Nd5","Bxe7","Qxe7","Ne4"]},
|
1865
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, Bd3 line, 11.O-O","eco_code":"D67","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","c6","Bd3","dxc4","Bxc4","Nd5","Bxe7","Qxe7","O-O"]},
|
1866
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, classical variation","eco_code":"D68","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","c6","Bd3","dxc4","Bxc4","Nd5","Bxe7","Qxe7","O-O","Nxc3","Rxc3","e5"]},
|
1867
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, classical, 13.d1b1 (Maroczy)","eco_code":"D68","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","c6","Bd3","dxc4","Bxc4","Nd5","Bxe7","Qxe7","O-O","Nxc3","Rxc3","e5","Qb1"]},
|
1868
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, classical, 13.d1c2 (Vidmar)","eco_code":"D68","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","c6","Bd3","dxc4","Bxc4","Nd5","Bxe7","Qxe7","O-O","Nxc3","Rxc3","e5","Qc2"]},
|
1869
|
+
{"name":"Queen's Gambit Declined, Orthodox defence, classical, 13.de","eco_code":"D69","moves":["d4","d5","c4","e6","Nc3","Nf6","Bg5","Be7","e3","O-O","Nf3","Nbd7","Rc1","c6","Bd3","dxc4","Bxc4","Nd5","Bxe7","Qxe7","O-O","Nxc3","Rxc3","e5","dxe5","Nxe5","Nxe5","Qxe5"]},
|
1870
|
+
{"name":"Neo-Gruenfeld, 5.cd","eco_code":"D71","moves":["d4","Nf6","c4","g6","g3","d5","Bg2","Bg7","cxd5","Nxd5"]},
|
1871
|
+
{"name":"Neo-Gruenfeld, 5.cd, main line","eco_code":"D72","moves":["d4","Nf6","c4","g6","g3","d5","Bg2","Bg7","cxd5","Nxd5","e4","Nb6","Ne2"]},
|
1872
|
+
{"name":"Neo-Gruenfeld, 6.cd Nxd5, 7.O-O","eco_code":"D74","moves":["d4","Nf6","c4","g6","g3","d5","Bg2","Bg7","Nf3","O-O","cxd5","Nxd5","O-O"]},
|
1873
|
+
{"name":"Neo-Gruenfeld, 6.cd Nxd5, 7.O-O c5, 8.Nc3","eco_code":"D75","moves":["d4","Nf6","c4","g6","g3","d5","Bg2","Bg7","Nf3","O-O","cxd5","Nxd5","O-O","c5","Nc3"]},
|
1874
|
+
{"name":"Neo-Gruenfeld, 6.cd Nxd5, 7.O-O c5, 8.dc","eco_code":"D75","moves":["d4","Nf6","c4","g6","g3","d5","Bg2","Bg7","Nf3","O-O","cxd5","Nxd5","O-O","c5","dxc5"]},
|
1875
|
+
{"name":"Neo-Gruenfeld, 6.cd Nxd5, 7.O-O Nb6","eco_code":"D76","moves":["d4","Nf6","c4","g6","g3","d5","Bg2","Bg7","Nf3","O-O","cxd5","Nxd5","O-O","Nb6"]},
|
1876
|
+
{"name":"Neo-Gruenfeld, 6.O-O","eco_code":"D77","moves":["d4","Nf6","c4","g6","g3","d5","Bg2","Bg7","Nf3","O-O","O-O"]},
|
1877
|
+
{"name":"Neo-Gruenfeld, 6.O-O c6","eco_code":"D78","moves":["d4","Nf6","c4","g6","g3","d5","Bg2","Bg7","Nf3","O-O","O-O","c6"]},
|
1878
|
+
{"name":"Neo-Gruenfeld, 6.O-O, main line","eco_code":"D79","moves":["d4","Nf6","c4","g6","g3","d5","Bg2","Bg7","Nf3","O-O","O-O","c6","cxd5","cxd5"]},
|
1879
|
+
{"name":"Gruenfeld, Gruenfeld gambit","eco_code":"D83","moves":["d4","Nf6","c4","g6","Nc3","d5","Bf4","Bg7","e3","O-O"]},
|
1880
|
+
{"name":"Gruenfeld, Gruenfeld gambit, Capablanca variation","eco_code":"D83","moves":["d4","Nf6","c4","g6","Nc3","d5","Bf4","Bg7","e3","O-O","Rc1"]},
|
1881
|
+
{"name":"Gruenfeld, Gruenfeld gambit, Botvinnik variation","eco_code":"D83","moves":["d4","Nf6","c4","g6","Nc3","d5","Bf4","Bg7","e3","O-O","Rc1","c5","dxc5","Be6"]},
|
1882
|
+
{"name":"Gruenfeld, Gruenfeld gambit accepted","eco_code":"D84","moves":["d4","Nf6","c4","g6","Nc3","d5","Bf4","Bg7","e3","O-O","cxd5","Nxd5","Nxd5","Qxd5","Bxc7"]},
|
1883
|
+
{"name":"Gruenfeld, exchange variation","eco_code":"D85","moves":["d4","Nf6","c4","g6","Nc3","d5","cxd5","Nxd5"]},
|
1884
|
+
{"name":"Gruenfeld, modern exchange variation","eco_code":"D85","moves":["d4","Nf6","c4","g6","Nc3","d5","cxd5","Nxd5","e4","Nxc3","bxc3","Bg7","Nf3"]},
|
1885
|
+
{"name":"Gruenfeld, exchange, classical variation","eco_code":"D86","moves":["d4","Nf6","c4","g6","Nc3","d5","cxd5","Nxd5","e4","Nxc3","bxc3","Bg7","Bc4"]},
|
1886
|
+
{"name":"Gruenfeld, exchange, Larsen variation","eco_code":"D86","moves":["d4","Nf6","c4","g6","Nc3","d5","cxd5","Nxd5","e4","Nxc3","bxc3","Bg7","Bc4","O-O","Ne2","Qd7","O-O","b6"]},
|
1887
|
+
{"name":"Gruenfeld, exchange, Simagin's lesser variation","eco_code":"D86","moves":["d4","Nf6","c4","g6","Nc3","d5","cxd5","Nxd5","e4","Nxc3","bxc3","Bg7","Bc4","O-O","Ne2","b6"]},
|
1888
|
+
{"name":"Gruenfeld, exchange, Simagin's improved variation","eco_code":"D86","moves":["d4","Nf6","c4","g6","Nc3","d5","cxd5","Nxd5","e4","Nxc3","bxc3","Bg7","Bc4","O-O","Ne2","Nc6"]},
|
1889
|
+
{"name":"Gruenfeld, exchange, Spassky variation","eco_code":"D87","moves":["d4","Nf6","c4","g6","Nc3","d5","cxd5","Nxd5","e4","Nxc3","bxc3","Bg7","Bc4","O-O","Ne2","c5"]},
|
1890
|
+
{"name":"Gruenfeld, exchange, Seville variation","eco_code":"D87","moves":["d4","Nf6","c4","g6","Nc3","d5","cxd5","Nxd5","e4","Nxc3","bxc3","Bg7","Bc4","O-O","Ne2","c5","O-O","Nc6","Be3","Bg4","f3","Na5","Bxf7+"]},
|
1891
|
+
{"name":"Gruenfeld, Spassky variation, main line, 10...cd, 11.cd","eco_code":"D88","moves":["d4","Nf6","c4","g6","Nc3","d5","cxd5","Nxd5","e4","Nxc3","bxc3","Bg7","Bc4","O-O","Ne2","c5","O-O","Nc6","Be3","cxd4","cxd4"]},
|
1892
|
+
{"name":"Gruenfeld, Spassky variation, main line, 13.Bd3","eco_code":"D89","moves":["d4","Nf6","c4","g6","Nc3","d5","cxd5","Nxd5","e4","Nxc3","bxc3","Bg7","Bc4","O-O","Ne2","c5","O-O","Nc6","Be3","cxd4","cxd4","Bg4","f3","Na5","Bd3","Be6"]},
|
1893
|
+
{"name":"Gruenfeld, exchange, Sokolsky variation","eco_code":"D89","moves":["d4","Nf6","c4","g6","Nc3","d5","cxd5","Nxd5","e4","Nxc3","bxc3","Bg7","Bc4","O-O","Ne2","c5","O-O","Nc6","Be3","cxd4","cxd4","Bg4","f3","Na5","Bd3","Be6","d5"]},
|
1894
|
+
{"name":"Gruenfeld, Russian variation","eco_code":"D96","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","Qb3"]},
|
1895
|
+
{"name":"Gruenfeld, Russian variation with e4","eco_code":"D97","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","Qb3","dxc4","Qxc4","O-O","e4"]},
|
1896
|
+
{"name":"Gruenfeld, Russian, Alekhine (Hungarian) variation","eco_code":"D97","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","Qb3","dxc4","Qxc4","O-O","e4","a6"]},
|
1897
|
+
{"name":"Gruenfeld, Russian, Szabo (Boleslavsky) variation","eco_code":"D97","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","Qb3","dxc4","Qxc4","O-O","e4","c6"]},
|
1898
|
+
{"name":"Gruenfeld, Russian, Levenfish variation","eco_code":"D97","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","Qb3","dxc4","Qxc4","O-O","e4","b6"]},
|
1899
|
+
{"name":"Gruenfeld, Russian, Byrne (Simagin) variation","eco_code":"D97","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","Qb3","dxc4","Qxc4","O-O","e4","Nc6"]},
|
1900
|
+
{"name":"Gruenfeld, Russian, Prins variation","eco_code":"D97","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","Qb3","dxc4","Qxc4","O-O","e4","Na6"]},
|
1901
|
+
{"name":"Gruenfeld, Russian, Smyslov variation","eco_code":"D98","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","Qb3","dxc4","Qxc4","O-O","e4","Bg4"]},
|
1902
|
+
{"name":"Gruenfeld, Russian, Keres variation","eco_code":"D98","moves":["d4","Nf6","c4","g6","Nc3","d5","Nf3","Bg7","Qb3","dxc4","Qxc4","O-O","e4","Bg4","Be3","Nfd7","Be2","Nb6","Qd3","Nc6","O-O-O"]},
|
1903
|
+
{"name":"Catalan, closed, 5.Nf3","eco_code":"E06","moves":["d4","Nf6","c4","e6","g3","d5","Bg2","Be7","Nf3"]},
|
1904
|
+
{"name":"Catalan, closed, 6...Nbd7","eco_code":"E07","moves":["d4","Nf6","c4","e6","g3","d5","Bg2","Be7","Nf3","O-O","O-O","Nbd7"]},
|
1905
|
+
{"name":"Catalan, closed, Botvinnik variation","eco_code":"E07","moves":["d4","Nf6","c4","e6","g3","d5","Bg2","Be7","Nf3","O-O","O-O","Nbd7","Nc3","c6","Qd3"]},
|
1906
|
+
{"name":"Catalan, closed, 7.Qc2","eco_code":"E08","moves":["d4","Nf6","c4","e6","g3","d5","Bg2","Be7","Nf3","O-O","O-O","Nbd7","Qc2"]},
|
1907
|
+
{"name":"Catalan, closed, Zagoryansky variation","eco_code":"E08","moves":["d4","Nf6","c4","e6","g3","d5","Bg2","Be7","Nf3","O-O","O-O","Nbd7","Qc2","c6","Rd1","b6","a4"]},
|
1908
|
+
{"name":"Catalan, closed, Qc2 & b3","eco_code":"E08","moves":["d4","Nf6","c4","e6","g3","d5","Bg2","Be7","Nf3","O-O","O-O","Nbd7","Qc2","c6","b3"]},
|
1909
|
+
{"name":"Catalan, closed, Spassky gambit","eco_code":"E08","moves":["d4","Nf6","c4","e6","g3","d5","Bg2","Be7","Nf3","O-O","O-O","Nbd7","Qc2","c6","b3","b6","Rd1","Bb7","Nc3","b5"]},
|
1910
|
+
{"name":"Catalan, closed, main line","eco_code":"E09","moves":["d4","Nf6","c4","e6","g3","d5","Bg2","Be7","Nf3","O-O","O-O","Nbd7","Qc2","c6","Nbd2"]},
|
1911
|
+
{"name":"Catalan, closed, Sokolsky variation","eco_code":"E09","moves":["d4","Nf6","c4","e6","g3","d5","Bg2","Be7","Nf3","O-O","O-O","Nbd7","Qc2","c6","Nbd2","b6","b3","a5","Bb2","Ba6"]},
|
1912
|
+
{"name":"Nimzo-Indian, Spielmann variation","eco_code":"E22","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qb3"]},
|
1913
|
+
{"name":"Nimzo-Indian, Spielmann, 4...c5, 5.dc Nc6","eco_code":"E23","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qb3","c5","dxc5","Nc6"]},
|
1914
|
+
{"name":"Nimzo-Indian, Spielmann, Karlsbad variation","eco_code":"E23","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qb3","c5","dxc5","Nc6","Nf3","Ne4","Bd2","Nxd2"]},
|
1915
|
+
{"name":"Nimzo-Indian, Spielmann, San Remo variation","eco_code":"E23","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qb3","c5","dxc5","Nc6","Nf3","Ne4","Bd2","Nxc5"]},
|
1916
|
+
{"name":"Nimzo-Indian, Spielmann, Staahlberg variation","eco_code":"E23","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qb3","c5","dxc5","Nc6","Nf3","Ne4","Bd2","Nxc5","Qc2","f5","g3"]},
|
1917
|
+
{"name":"Nimzo-Indian, Saemisch variation","eco_code":"E24","moves":["d4","Nf6","c4","e6","Nc3","Bb4","a3","Bxc3+","bxc3"]},
|
1918
|
+
{"name":"Nimzo-Indian, Saemisch, Botvinnik variation","eco_code":"E24","moves":["d4","Nf6","c4","e6","Nc3","Bb4","a3","Bxc3+","bxc3","c5","f3","d5","e3","O-O","cxd5","Nxd5"]},
|
1919
|
+
{"name":"Nimzo-Indian, Saemisch variation","eco_code":"E25","moves":["d4","Nf6","c4","e6","Nc3","Bb4","a3","Bxc3+","bxc3","c5","f3","d5","cxd5"]},
|
1920
|
+
{"name":"Nimzo-Indian, Saemisch, Keres variation","eco_code":"E25","moves":["d4","Nf6","c4","e6","Nc3","Bb4","a3","Bxc3+","bxc3","c5","f3","d5","cxd5","Nxd5","dxc5"]},
|
1921
|
+
{"name":"Nimzo-Indian, Saemisch, Romanovsky variation","eco_code":"E25","moves":["d4","Nf6","c4","e6","Nc3","Bb4","a3","Bxc3+","bxc3","c5","f3","d5","cxd5","Nxd5","dxc5","f5"]},
|
1922
|
+
{"name":"Nimzo-Indian, Saemisch variation","eco_code":"E26","moves":["d4","Nf6","c4","e6","Nc3","Bb4","a3","Bxc3+","bxc3","c5","e3"]},
|
1923
|
+
{"name":"Nimzo-Indian, Saemisch, O'Kelly variation","eco_code":"E26","moves":["d4","Nf6","c4","e6","Nc3","Bb4","a3","Bxc3+","bxc3","c5","e3","b6"]},
|
1924
|
+
{"name":"Nimzo-Indian, Saemisch variation","eco_code":"E27","moves":["d4","Nf6","c4","e6","Nc3","Bb4","a3","Bxc3+","bxc3","O-O"]},
|
1925
|
+
{"name":"Nimzo-Indian, Saemisch variation","eco_code":"E28","moves":["d4","Nf6","c4","e6","Nc3","Bb4","a3","Bxc3+","bxc3","O-O","e3"]},
|
1926
|
+
{"name":"Nimzo-Indian, Saemisch, main line","eco_code":"E29","moves":["d4","Nf6","c4","e6","Nc3","Bb4","a3","Bxc3+","bxc3","O-O","e3","c5","Bd3","Nc6"]},
|
1927
|
+
{"name":"Nimzo-Indian, Saemisch, Capablanca variation","eco_code":"E29","moves":["d4","Nf6","c4","e6","Nc3","Bb4","a3","Bxc3+","bxc3","O-O","e3","c5","Bd3","Nc6","Ne2","b6","e4","Ne8"]},
|
1928
|
+
{"name":"Nimzo-Indian, Leningrad variation","eco_code":"E30","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Bg5"]},
|
1929
|
+
{"name":"Nimzo-Indian, Leningrad, ...b5 gambit","eco_code":"E30","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Bg5","h6","Bh4","c5","d5","b5"]},
|
1930
|
+
{"name":"Nimzo-Indian, Leningrad, main line","eco_code":"E31","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Bg5","h6","Bh4","c5","d5","d6"]},
|
1931
|
+
{"name":"Nimzo-Indian, classical variation","eco_code":"E32","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qc2"]},
|
1932
|
+
{"name":"Nimzo-Indian, classical, Adorjan gambit","eco_code":"E32","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qc2","O-O","a3","Bxc3+","Qxc3","b5"]},
|
1933
|
+
{"name":"Nimzo-Indian, classical, 4...Nc6","eco_code":"E33","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qc2","Nc6"]},
|
1934
|
+
{"name":"Nimzo-Indian, classical, Milner-Barry (Zurich) variation","eco_code":"E33","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qc2","Nc6","Nf3","d6"]},
|
1935
|
+
{"name":"Nimzo-Indian, classical, Noa variation","eco_code":"E34","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qc2","d5"]},
|
1936
|
+
{"name":"Nimzo-Indian, classical, Noa variation, 5.cd ed","eco_code":"E35","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qc2","d5","cxd5","exd5"]},
|
1937
|
+
{"name":"Nimzo-Indian, classical, Noa variation, 5.a3","eco_code":"E36","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qc2","d5","a3"]},
|
1938
|
+
{"name":"Nimzo-Indian, classical, Botvinnik variation","eco_code":"E36","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qc2","d5","a3","Bxc3+","Qxc3","Nc6"]},
|
1939
|
+
{"name":"Nimzo-Indian, classical, Noa variation, main line","eco_code":"E36","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qc2","d5","a3","Bxc3+","Qxc3","Ne4"]},
|
1940
|
+
{"name":"Nimzo-Indian, classical, Noa variation, main line, 7.Qc2","eco_code":"E37","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qc2","d5","a3","Bxc3+","Qxc3","Ne4","Qc2"]},
|
1941
|
+
{"name":"Nimzo-Indian, classical, San Remo variation","eco_code":"E37","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qc2","d5","a3","Bxc3+","Qxc3","Ne4","Qc2","Nc6","e3","e5"]},
|
1942
|
+
{"name":"Nimzo-Indian, classical, 4...c5","eco_code":"E38","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qc2","c5"]},
|
1943
|
+
{"name":"Nimzo-Indian, classical, Pirc variation","eco_code":"E39","moves":["d4","Nf6","c4","e6","Nc3","Bb4","Qc2","c5","dxc5","O-O"]},
|
1944
|
+
{"name":"Nimzo-Indian, 4.e3 c5","eco_code":"E41","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","c5"]},
|
1945
|
+
{"name":"Nimzo-Indian, e3, Huebner variation","eco_code":"E41","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","c5","Bd3","Nc6","Nf3","Bxc3+","bxc3","d6"]},
|
1946
|
+
{"name":"Nimzo-Indian, 4.e3 c5, 5.Ne2 (Rubinstein)","eco_code":"E42","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","c5","Nge2"]},
|
1947
|
+
{"name":"Nimzo-Indian, Fischer variation","eco_code":"E43","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","b6"]},
|
1948
|
+
{"name":"Nimzo-Indian, Fischer variation, 5.Ne2","eco_code":"E44","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","b6","Nge2"]},
|
1949
|
+
{"name":"Nimzo-Indian, 4.e3 O-O","eco_code":"E46","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O"]},
|
1950
|
+
{"name":"Nimzo-Indian, Reshevsky variation","eco_code":"E46","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Nge2"]},
|
1951
|
+
{"name":"Nimzo-Indian, Simagin variation","eco_code":"E46","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Nge2","d5","a3","Bd6"]},
|
1952
|
+
{"name":"Nimzo-Indian, 4.e3 O-O, 5.Bd3","eco_code":"E47","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Bd3"]},
|
1953
|
+
{"name":"Nimzo-Indian, 4.e3 O-O, 5.Bd3 d5","eco_code":"E48","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Bd3","d5"]},
|
1954
|
+
{"name":"Nimzo-Indian, 4.e3 e8g8, 5.Nf3, without ...d5","eco_code":"E50","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Nf3"]},
|
1955
|
+
{"name":"Nimzo-Indian, 4.e3 e8g8, 5.Nf3 d7d5","eco_code":"E51","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Nf3","d5"]},
|
1956
|
+
{"name":"Nimzo-Indian, 4.e3, Ragozin variation","eco_code":"E51","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Nf3","d5","Bd3","Nc6","O-O","dxc4"]},
|
1957
|
+
{"name":"Nimzo-Indian, 4.e3, main line with ...b6","eco_code":"E52","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Nf3","d5","Bd3","b6"]},
|
1958
|
+
{"name":"Nimzo-Indian, 4.e3, main line with ...c5","eco_code":"E53","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Nf3","d5","Bd3","c5"]},
|
1959
|
+
{"name":"Nimzo-Indian, 4.e3, Keres variation","eco_code":"E53","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Nf3","d5","Bd3","c5","O-O","b6"]},
|
1960
|
+
{"name":"Nimzo-Indian, 4.e3, Gligoric system with 7...Nbd7","eco_code":"E53","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Nf3","d5","Bd3","c5","O-O","Nbd7"]},
|
1961
|
+
{"name":"Nimzo-Indian, 4.e3, Gligoric system with 7...dc","eco_code":"E54","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Nf3","d5","Bd3","c5","O-O","dxc4","Bxc4"]},
|
1962
|
+
{"name":"Nimzo-Indian, 4.e3, Gligoric system, Smyslov variation","eco_code":"E54","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Nf3","d5","Bd3","c5","O-O","dxc4","Bxc4","Qe7"]},
|
1963
|
+
{"name":"Nimzo-Indian, 4.e3, Gligoric system, Bronstein variation","eco_code":"E55","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Nf3","d5","Bd3","c5","O-O","dxc4","Bxc4","Nbd7"]},
|
1964
|
+
{"name":"Nimzo-Indian, 4.e3, main line with 7...Nc6","eco_code":"E56","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Nf3","d5","Bd3","c5","O-O","Nc6"]},
|
1965
|
+
{"name":"Nimzo-Indian, 4.e3, main line with 8...dc and 9...cd","eco_code":"E57","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Nf3","d5","Bd3","c5","O-O","Nc6","a3","dxc4","Bxc4","cxd4"]},
|
1966
|
+
{"name":"Nimzo-Indian, 4.e3, main line with 8...Bxc3","eco_code":"E58","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Nf3","d5","Bd3","c5","O-O","Nc6","a3","Bxc3","bxc3"]},
|
1967
|
+
{"name":"Nimzo-Indian, 4.e3, main line","eco_code":"E59","moves":["d4","Nf6","c4","e6","Nc3","Bb4","e3","O-O","Nf3","d5","Bd3","c5","O-O","Nc6","a3","Bxc3","bxc3","dxc4","Bxc4"]},
|
1968
|
+
{"name":"King's Indian, fianchetto variation","eco_code":"E62","moves":["d4","Nf6","c4","g6","Nc3","Bg7","Nf3","d6","g3"]},
|
1969
|
+
{"name":"King's Indian, fianchetto, Larsen system","eco_code":"E62","moves":["d4","Nf6","c4","g6","Nc3","Bg7","Nf3","d6","g3","O-O","Bg2","c6","O-O","Bf5"]},
|
1970
|
+
{"name":"King's Indian, fianchetto, Kavalek (Bronstein) variation","eco_code":"E62","moves":["d4","Nf6","c4","g6","Nc3","Bg7","Nf3","d6","g3","O-O","Bg2","c6","O-O","Qa5"]},
|
1971
|
+
{"name":"King's Indian, fianchetto with ...Nc6","eco_code":"E62","moves":["d4","Nf6","c4","g6","Nc3","Bg7","Nf3","d6","g3","O-O","Bg2","Nc6"]},
|
1972
|
+
{"name":"King's Indian, fianchetto, Uhlmann (Szabo) variation","eco_code":"E62","moves":["d4","Nf6","c4","g6","Nc3","Bg7","Nf3","d6","g3","O-O","Bg2","Nc6","O-O","e5"]},
|
1973
|
+
{"name":"King's Indian, fianchetto, lesser Simagin (Spassky) variation","eco_code":"E62","moves":["d4","Nf6","c4","g6","Nc3","Bg7","Nf3","d6","g3","O-O","Bg2","Nc6","O-O","Bf5"]},
|
1974
|
+
{"name":"King's Indian, fianchetto, Simagin variation","eco_code":"E62","moves":["d4","Nf6","c4","g6","Nc3","Bg7","Nf3","d6","g3","O-O","Bg2","Nc6","O-O","Bg4"]},
|
1975
|
+
{"name":"King's Indian, fianchetto, Panno variation","eco_code":"E63","moves":["d4","Nf6","c4","g6","Nc3","Bg7","Nf3","d6","g3","O-O","Bg2","Nc6","O-O","a6"]},
|
1976
|
+
{"name":"King's Indian, fianchetto, Yugoslav system","eco_code":"E64","moves":["d4","Nf6","c4","g6","Nc3","Bg7","Nf3","d6","g3","O-O","Bg2","c5"]},
|
1977
|
+
{"name":"King's Indian, fianchetto, Yugoslav, 7.O-O","eco_code":"E65","moves":["d4","Nf6","c4","g6","Nc3","Bg7","Nf3","d6","g3","O-O","Bg2","c5","O-O"]},
|
1978
|
+
{"name":"King's Indian, fianchetto, Yugoslav Panno","eco_code":"E66","moves":["d4","Nf6","c4","g6","Nc3","Bg7","Nf3","d6","g3","O-O","Bg2","c5","O-O","Nc6","d5"]},
|
1979
|
+
{"name":"King's Indian, fianchetto with ...Nd7","eco_code":"E67","moves":["d4","Nf6","c4","g6","Nc3","Bg7","Nf3","d6","g3","O-O","Bg2","Nbd7"]},
|
1980
|
+
{"name":"King's Indian, fianchetto, classical variation","eco_code":"E67","moves":["d4","Nf6","c4","g6","Nc3","Bg7","Nf3","d6","g3","O-O","Bg2","Nbd7","O-O","e5"]},
|
1981
|
+
{"name":"King's Indian, fianchetto, classical variation, 8.e4","eco_code":"E68","moves":["d4","Nf6","c4","g6","Nc3","Bg7","Nf3","d6","g3","O-O","Bg2","Nbd7","O-O","e5","e4"]},
|
1982
|
+
{"name":"King's Indian, fianchetto, classical main line","eco_code":"E69","moves":["d4","Nf6","c4","g6","Nc3","Bg7","Nf3","d6","g3","O-O","Bg2","Nbd7","O-O","e5","e4","c6","h3"]},
|
1983
|
+
{"name":"King's Indian, Averbakh, 6...c5","eco_code":"E74","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Be2","O-O","Bg5","c5"]},
|
1984
|
+
{"name":"King's Indian, Averbakh, main line","eco_code":"E75","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Be2","O-O","Bg5","c5","d5","e6"]},
|
1985
|
+
{"name":"King's Indian, Four pawns attack","eco_code":"E76","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f4"]},
|
1986
|
+
{"name":"King's Indian, Four pawns attack, dynamic line","eco_code":"E76","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f4","O-O","Nf3","c5","d5"]},
|
1987
|
+
{"name":"King's Indian, Four pawns attack, 6.Be2","eco_code":"E77","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f4","O-O","Be2"]},
|
1988
|
+
{"name":"King's Indian, Six pawns attack","eco_code":"E77","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f4","O-O","Be2","c5","d5","e6","dxe6","fxe6","g4","Nc6","h4"]},
|
1989
|
+
{"name":"King's Indian, Four pawns attack","eco_code":"E77","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f4","O-O","Be2","c5","d5","e6","Nf3"]},
|
1990
|
+
{"name":"King's Indian, Four pawns attack, Florentine gambit","eco_code":"E77","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f4","O-O","Be2","c5","d5","e6","Nf3","exd5","e5"]},
|
1991
|
+
{"name":"King's Indian, Four pawns attack, with Be2 and Nf3","eco_code":"E78","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f4","O-O","Be2","c5","Nf3"]},
|
1992
|
+
{"name":"King's Indian, Four pawns attack, main line","eco_code":"E79","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f4","O-O","Be2","c5","Nf3","cxd4","Nxd4","Nc6","Be3"]},
|
1993
|
+
{"name":"King's Indian, Saemisch variation","eco_code":"E80","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f3"]},
|
1994
|
+
{"name":"King's Indian, Saemisch, 5...O-O","eco_code":"E81","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f3","O-O"]},
|
1995
|
+
{"name":"King's Indian, Saemisch, Byrne variation","eco_code":"E81","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f3","O-O","Be3","c6","Bd3","a6"]},
|
1996
|
+
{"name":"King's Indian, Saemisch, double fianchetto variation","eco_code":"E82","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f3","O-O","Be3","b6"]},
|
1997
|
+
{"name":"King's Indian, Saemisch, 6...Nc6","eco_code":"E83","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f3","O-O","Be3","Nc6"]},
|
1998
|
+
{"name":"King's Indian, Saemisch, Ruban variation","eco_code":"E83","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f3","O-O","Be3","Nc6","Nge2","Rb8"]},
|
1999
|
+
{"name":"King's Indian, Saemisch, Panno formation","eco_code":"E83","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f3","O-O","Be3","Nc6","Nge2","a6"]},
|
2000
|
+
{"name":"King's Indian, Saemisch, Panno main line","eco_code":"E84","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f3","O-O","Be3","Nc6","Nge2","a6","Qd2","Rb8"]},
|
2001
|
+
{"name":"King's Indian, Saemisch, orthodox variation","eco_code":"E85","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f3","O-O","Be3","e5"]},
|
2002
|
+
{"name":"King's Indian, Saemisch, orthodox, 7.Nge2 c6","eco_code":"E86","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f3","O-O","Be3","e5","Nge2","c6"]},
|
2003
|
+
{"name":"King's Indian, Saemisch, orthodox, 7.d5","eco_code":"E87","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f3","O-O","Be3","e5","d5"]},
|
2004
|
+
{"name":"King's Indian, Saemisch, orthodox, Bronstein variation","eco_code":"E87","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f3","O-O","Be3","e5","d5","Nh5","Qd2","Qh4+","g3","Nxg3","Qf2","Nxf1","Qxh4","Nxe3","Ke2","Nxc4"]},
|
2005
|
+
{"name":"King's Indian, Saemisch, orthodox, 7.d5 c6","eco_code":"E88","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f3","O-O","Be3","e5","d5","c6"]},
|
2006
|
+
{"name":"King's Indian, Saemisch, orthodox main line","eco_code":"E89","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","f3","O-O","Be3","e5","d5","c6","Nge2","cxd5"]},
|
2007
|
+
{"name":"King's Indian, orthodox variation","eco_code":"E94","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2","e5","O-O"]},
|
2008
|
+
{"name":"King's Indian, orthodox, Donner variation","eco_code":"E94","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2","e5","O-O","c6"]},
|
2009
|
+
{"name":"King's Indian, orthodox, 7...Nbd7","eco_code":"E94","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2","e5","O-O","Nbd7"]},
|
2010
|
+
{"name":"King's Indian, orthodox, 7...Nbd7, 8.Re1","eco_code":"E95","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2","e5","O-O","Nbd7","Re1"]},
|
2011
|
+
{"name":"King's Indian, orthodox, 7...Nbd7, main line","eco_code":"E96","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2","e5","O-O","Nbd7","Re1","c6","Bf1","a5"]},
|
2012
|
+
{"name":"King's Indian, orthodox, Aronin-Taimanov variation (Yugoslav attack / Mar del Plata variation)","eco_code":"E97","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2","e5","O-O","Nc6"]},
|
2013
|
+
{"name":"King's Indian, orthodox, Aronin-Taimanov, bayonet attack","eco_code":"E97","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2","e5","O-O","Nc6","d5","Ne7","b4"]},
|
2014
|
+
{"name":"King's Indian, orthodox, Aronin-Taimanov, 9.Ne1","eco_code":"E98","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2","e5","O-O","Nc6","d5","Ne7","Ne1"]},
|
2015
|
+
{"name":"King's Indian, orthodox, Aronin-Taimanov, main line","eco_code":"E99","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2","e5","O-O","Nc6","d5","Ne7","Ne1","Nd7","f3","f5"]},
|
2016
|
+
{"name":"King's Indian, orthodox, Aronin-Taimanov, Benko attack","eco_code":"E99","moves":["d4","Nf6","c4","g6","Nc3","Bg7","e4","d6","Nf3","O-O","Be2","e5","O-O","Nc6","d5","Ne7","Ne1","Nd7","f3","f5","g4"]}
|
2017
|
+
]}
|