eyaa99 commited on
Commit
7963dfc
·
verified ·
1 Parent(s): ad116b6

Chess Challenge submission by eyaa99

Browse files
Files changed (7) hide show
  1. README.md +26 -0
  2. config.json +20 -0
  3. model.safetensors +3 -0
  4. special_tokens_map.json +6 -0
  5. tokenizer.py +278 -0
  6. tokenizer_config.json +50 -0
  7. vocab.json +198 -0
README.md ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ tags:
4
+ - chess
5
+ - llm-course
6
+ - chess-challenge
7
+ license: mit
8
+ ---
9
+
10
+ # my-chess-model3
11
+
12
+ Chess model submitted to the LLM Course Chess Challenge.
13
+
14
+ ## Submission Info
15
+
16
+ - **Submitted by**: [eyaa99](https://huggingface.co/eyaa99)
17
+ - **Parameters**: 884,992
18
+ - **Organization**: LLM-course
19
+
20
+ ## Model Details
21
+
22
+ - **Architecture**: Chess Transformer (GPT-style)
23
+ - **Vocab size**: 196
24
+ - **Embedding dim**: 128
25
+ - **Layers**: 5
26
+ - **Heads**: 4
config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "ChessForCausalLM"
4
+ ],
5
+ "bos_token_id": 1,
6
+ "dropout": 0.05,
7
+ "dtype": "float32",
8
+ "eos_token_id": 2,
9
+ "layer_norm_epsilon": 1e-05,
10
+ "model_type": "chess_transformer",
11
+ "n_ctx": 256,
12
+ "n_embd": 128,
13
+ "n_head": 4,
14
+ "n_inner": 384,
15
+ "n_layer": 5,
16
+ "pad_token_id": 0,
17
+ "tie_weights": true,
18
+ "transformers_version": "4.57.6",
19
+ "vocab_size": 196
20
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb31eafe4aa773190f05a1359d0ebed8ae922bb05fd0d7eac9a63871e095a224
3
+ size 3545392
special_tokens_map.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "[BOS]",
3
+ "eos_token": "[EOS]",
4
+ "pad_token": "[PAD]",
5
+ "unk_token": "[UNK]"
6
+ }
tokenizer.py ADDED
@@ -0,0 +1,278 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Custom Chess Tokenizer for the Chess Challenge.
3
+
4
+ This tokenizer treats each move as a single token using the extended UCI notation
5
+ from the Lichess dataset (e.g., WPe2e4, BNg8f6).
6
+
7
+ The dataset format uses:
8
+ - W/B prefix for White/Black
9
+ - Piece letter: P=Pawn, N=Knight, B=Bishop, R=Rook, Q=Queen, K=King
10
+ - Source and destination squares (e.g., e2e4)
11
+ - Special suffixes: (x)=capture, (+)=check, (+*)=checkmate, (o)/(O)=castling
12
+ """
13
+
14
+ from __future__ import annotations
15
+
16
+ import json
17
+ import os
18
+ from pathlib import Path
19
+ from typing import Dict, List, Optional
20
+
21
+ from transformers import PreTrainedTokenizer
22
+
23
+
24
+ class ChessTokenizer(PreTrainedTokenizer):
25
+ """
26
+ A custom tokenizer for chess moves using extended UCI notation.
27
+
28
+ This tokenizer maps each possible chess move to a unique token ID.
29
+ The vocabulary is built from the training dataset to ensure all moves
30
+ encountered during training have a corresponding token.
31
+
32
+ Example:
33
+ >>> tokenizer = ChessTokenizer()
34
+ >>> tokenizer.encode("WPe2e4 BPe7e5")
35
+ [1, 42, 87, 2] # [BOS, e2e4, e7e5, EOS]
36
+ """
37
+
38
+ model_input_names = ["input_ids", "attention_mask"]
39
+ vocab_files_names = {"vocab_file": "vocab.json"}
40
+
41
+ # Special tokens
42
+ PAD_TOKEN = "[PAD]"
43
+ BOS_TOKEN = "[BOS]"
44
+ EOS_TOKEN = "[EOS]"
45
+ UNK_TOKEN = "[UNK]"
46
+
47
+ def __init__(
48
+ self,
49
+ vocab_file: Optional[str] = None,
50
+ vocab: Optional[Dict[str, int]] = None,
51
+ **kwargs,
52
+ ):
53
+ """
54
+ Initialize the chess tokenizer.
55
+
56
+ Args:
57
+ vocab_file: Path to a JSON file containing the vocabulary mapping.
58
+ vocab: Dictionary mapping tokens to IDs (alternative to vocab_file).
59
+ **kwargs: Additional arguments passed to PreTrainedTokenizer.
60
+ """
61
+ # Initialize special tokens
62
+ self._pad_token = self.PAD_TOKEN
63
+ self._bos_token = self.BOS_TOKEN
64
+ self._eos_token = self.EOS_TOKEN
65
+ self._unk_token = self.UNK_TOKEN
66
+
67
+ # Remove any duplicate special-token entries passed through kwargs
68
+ # to avoid "multiple values for keyword" errors when loading from disk.
69
+ kwargs.pop("pad_token", None)
70
+ kwargs.pop("bos_token", None)
71
+ kwargs.pop("eos_token", None)
72
+ kwargs.pop("unk_token", None)
73
+
74
+ # Load or create vocabulary
75
+ if vocab is not None:
76
+ self._vocab = vocab
77
+ elif vocab_file is not None and os.path.exists(vocab_file):
78
+ with open(vocab_file, "r", encoding="utf-8") as f:
79
+ self._vocab = json.load(f)
80
+ else:
81
+ # Create a minimal vocabulary with just special tokens
82
+ # The full vocabulary should be built from the dataset
83
+ self._vocab = self._create_default_vocab()
84
+
85
+ # Create reverse mapping
86
+ self._ids_to_tokens = {v: k for k, v in self._vocab.items()}
87
+
88
+ # Call parent init AFTER setting up vocab
89
+ super().__init__(
90
+ pad_token=self._pad_token,
91
+ bos_token=self._bos_token,
92
+ eos_token=self._eos_token,
93
+ unk_token=self._unk_token,
94
+ **kwargs,
95
+ )
96
+
97
+ def _create_default_vocab(self) -> Dict[str, int]:
98
+ """
99
+ Create a minimal default vocabulary with just special tokens.
100
+
101
+ For the full vocabulary, use `build_vocab_from_dataset()`.
102
+ This minimal vocab is just a placeholder - you should build from data.
103
+ """
104
+ special_tokens = [self.PAD_TOKEN, self.BOS_TOKEN, self.EOS_TOKEN, self.UNK_TOKEN]
105
+ vocab = {token: idx for idx, token in enumerate(special_tokens)}
106
+ return vocab
107
+
108
+ @classmethod
109
+ def build_vocab_from_iterator(
110
+ cls,
111
+ iterator,
112
+ min_frequency: int = 1,
113
+ ) -> "ChessTokenizer":
114
+ """
115
+ Build a tokenizer vocabulary from an iterator of game strings.
116
+
117
+ Args:
118
+ iterator: An iterator yielding game strings (space-separated moves).
119
+ min_frequency: Minimum frequency for a token to be included.
120
+
121
+ Returns:
122
+ A ChessTokenizer with the built vocabulary.
123
+ """
124
+ from collections import Counter
125
+
126
+ token_counts = Counter()
127
+
128
+ for game in iterator:
129
+ moves = game.strip().split()
130
+ token_counts.update(moves)
131
+
132
+ # Filter by frequency
133
+ tokens = [
134
+ token for token, count in token_counts.items()
135
+ if count >= min_frequency
136
+ ]
137
+
138
+ # Sort for reproducibility
139
+ tokens = sorted(tokens)
140
+
141
+ # Build vocabulary
142
+ special_tokens = [cls.PAD_TOKEN, cls.BOS_TOKEN, cls.EOS_TOKEN, cls.UNK_TOKEN]
143
+ vocab = {token: idx for idx, token in enumerate(special_tokens + tokens)}
144
+
145
+ return cls(vocab=vocab)
146
+
147
+ @classmethod
148
+ def build_vocab_from_dataset(
149
+ cls,
150
+ dataset_name: str = "dlouapre/lichess_2025-01_1M",
151
+ split: str = "train",
152
+ column: str = "text",
153
+ min_frequency: int = 500,
154
+ max_samples: Optional[int] = 100000,
155
+ ) -> "ChessTokenizer":
156
+ """
157
+ Build a tokenizer vocabulary from a Hugging Face dataset.
158
+
159
+ Args:
160
+ dataset_name: Name of the dataset on Hugging Face Hub.
161
+ split: Dataset split to use.
162
+ column: Column containing the game strings.
163
+ min_frequency: Minimum frequency for a token to be included (default: 500).
164
+ max_samples: Maximum number of samples to process (default: 100k).
165
+
166
+ Returns:
167
+ A ChessTokenizer with the built vocabulary.
168
+ """
169
+ from datasets import load_dataset
170
+
171
+ dataset = load_dataset(dataset_name, split=split)
172
+
173
+ if max_samples is not None:
174
+ dataset = dataset.select(range(min(max_samples, len(dataset))))
175
+
176
+ def game_iterator():
177
+ for example in dataset:
178
+ yield example[column]
179
+
180
+ return cls.build_vocab_from_iterator(game_iterator(), min_frequency=min_frequency)
181
+
182
+ @property
183
+ def vocab_size(self) -> int:
184
+ """Return the size of the vocabulary."""
185
+ return len(self._vocab)
186
+
187
+ def get_vocab(self) -> Dict[str, int]:
188
+ """Return the vocabulary as a dictionary."""
189
+ return dict(self._vocab)
190
+
191
+ def _tokenize(self, text: str) -> List[str]:
192
+ """
193
+ Tokenize a string of moves into a list of tokens.
194
+
195
+ Args:
196
+ text: A string of space-separated moves.
197
+
198
+ Returns:
199
+ List of move tokens.
200
+ """
201
+ return text.strip().split()
202
+
203
+ def _convert_token_to_id(self, token: str) -> int:
204
+ """Convert a token to its ID."""
205
+ return self._vocab.get(token, self._vocab.get(self.UNK_TOKEN, 0))
206
+
207
+ def _convert_id_to_token(self, index: int) -> str:
208
+ """Convert an ID to its token."""
209
+ return self._ids_to_tokens.get(index, self.UNK_TOKEN)
210
+
211
+ def convert_tokens_to_string(self, tokens: List[str]) -> str:
212
+ """Convert a list of tokens back to a string."""
213
+ # Filter out special tokens for cleaner output
214
+ special = {self.PAD_TOKEN, self.BOS_TOKEN, self.EOS_TOKEN, self.UNK_TOKEN}
215
+ return " ".join(t for t in tokens if t not in special)
216
+
217
+ def save_vocabulary(
218
+ self,
219
+ save_directory: str,
220
+ filename_prefix: Optional[str] = None,
221
+ ) -> tuple:
222
+ """
223
+ Save the vocabulary to a JSON file.
224
+
225
+ Args:
226
+ save_directory: Directory to save the vocabulary.
227
+ filename_prefix: Optional prefix for the filename.
228
+
229
+ Returns:
230
+ Tuple containing the path to the saved vocabulary file.
231
+ """
232
+ if not os.path.isdir(save_directory):
233
+ os.makedirs(save_directory, exist_ok=True)
234
+
235
+ vocab_file = os.path.join(
236
+ save_directory,
237
+ (filename_prefix + "-" if filename_prefix else "") + "vocab.json",
238
+ )
239
+
240
+ with open(vocab_file, "w", encoding="utf-8") as f:
241
+ json.dump(self._vocab, f, ensure_ascii=False, indent=2)
242
+
243
+ return (vocab_file,)
244
+
245
+
246
+ def count_vocab_from_dataset(
247
+ dataset_name: str = "dlouapre/lichess_2025-01_1M",
248
+ split: str = "train",
249
+ column: str = "text",
250
+ max_samples: Optional[int] = 10000,
251
+ ) -> Dict[str, int]:
252
+ """
253
+ Count token frequencies in a dataset (useful for vocabulary analysis).
254
+
255
+ Args:
256
+ dataset_name: Name of the dataset on Hugging Face Hub.
257
+ split: Dataset split to use.
258
+ column: Column containing the game strings.
259
+ max_samples: Maximum number of samples to process.
260
+
261
+ Returns:
262
+ Dictionary mapping tokens to their frequencies.
263
+ """
264
+ from collections import Counter
265
+ from datasets import load_dataset
266
+
267
+ dataset = load_dataset(dataset_name, split=split)
268
+
269
+ if max_samples is not None:
270
+ dataset = dataset.select(range(min(max_samples, len(dataset))))
271
+
272
+ token_counts = Counter()
273
+
274
+ for example in dataset:
275
+ moves = example[column].strip().split()
276
+ token_counts.update(moves)
277
+
278
+ return dict(token_counts)
tokenizer_config.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "1": {
12
+ "content": "[BOS]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "2": {
20
+ "content": "[EOS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "3": {
28
+ "content": "[UNK]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ }
35
+ },
36
+ "auto_map": {
37
+ "AutoTokenizer": [
38
+ "tokenizer.ChessTokenizer",
39
+ null
40
+ ]
41
+ },
42
+ "bos_token": "[BOS]",
43
+ "clean_up_tokenization_spaces": false,
44
+ "eos_token": "[EOS]",
45
+ "extra_special_tokens": {},
46
+ "model_max_length": 1000000000000000019884624838656,
47
+ "pad_token": "[PAD]",
48
+ "tokenizer_class": "ChessTokenizer",
49
+ "unk_token": "[UNK]"
50
+ }
vocab.json ADDED
@@ -0,0 +1,198 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "[PAD]": 0,
3
+ "[BOS]": 1,
4
+ "[EOS]": 2,
5
+ "[UNK]": 3,
6
+ "BBc8b7": 4,
7
+ "BBc8d7": 5,
8
+ "BBc8e6": 6,
9
+ "BBc8f5": 7,
10
+ "BBc8g4": 8,
11
+ "BBe7f6": 9,
12
+ "BBf8b4": 10,
13
+ "BBf8c5": 11,
14
+ "BBf8d6": 12,
15
+ "BBf8e7": 13,
16
+ "BBf8g7": 14,
17
+ "BBg4f3(x)": 15,
18
+ "BBg4h5": 16,
19
+ "BKe8c8(O)": 17,
20
+ "BKe8g8(o)": 18,
21
+ "BKg8f7": 19,
22
+ "BKg8f8": 20,
23
+ "BKg8g7": 21,
24
+ "BKg8h7": 22,
25
+ "BKg8h8": 23,
26
+ "BNb8c6": 24,
27
+ "BNb8d7": 25,
28
+ "BNc6a5": 26,
29
+ "BNc6b4": 27,
30
+ "BNc6d4": 28,
31
+ "BNc6d4(x)": 29,
32
+ "BNc6e5": 30,
33
+ "BNc6e5(x)": 31,
34
+ "BNc6e7": 32,
35
+ "BNd7b6": 33,
36
+ "BNd7e5(x)": 34,
37
+ "BNd7f6": 35,
38
+ "BNe7f5": 36,
39
+ "BNe7g6": 37,
40
+ "BNf6d5": 38,
41
+ "BNf6d5(x)": 39,
42
+ "BNf6d7": 40,
43
+ "BNf6e4": 41,
44
+ "BNf6e4(x)": 42,
45
+ "BNf6g4": 43,
46
+ "BNf6h5": 44,
47
+ "BNg8e7": 45,
48
+ "BNg8f6": 46,
49
+ "BPa5a4": 47,
50
+ "BPa6a5": 48,
51
+ "BPa7a5": 49,
52
+ "BPa7a6": 50,
53
+ "BPb5b4": 51,
54
+ "BPb6b5": 52,
55
+ "BPb7b5": 53,
56
+ "BPb7b6": 54,
57
+ "BPb7c6(x)": 55,
58
+ "BPc5c4": 56,
59
+ "BPc5d4(x)": 57,
60
+ "BPc6c5": 58,
61
+ "BPc6d5(x)": 59,
62
+ "BPc7c5": 60,
63
+ "BPc7c6": 61,
64
+ "BPd5c4(x)": 62,
65
+ "BPd5d4": 63,
66
+ "BPd5e4(x)": 64,
67
+ "BPd6d5": 65,
68
+ "BPd6e5(x)": 66,
69
+ "BPd7d5": 67,
70
+ "BPd7d6": 68,
71
+ "BPe5d4(x)": 69,
72
+ "BPe5e4": 70,
73
+ "BPe5f4(x)": 71,
74
+ "BPe6d5(x)": 72,
75
+ "BPe6e5": 73,
76
+ "BPe7e5": 74,
77
+ "BPe7e6": 75,
78
+ "BPf5f4": 76,
79
+ "BPf6e5(x)": 77,
80
+ "BPf6f5": 78,
81
+ "BPf7e6(x)": 79,
82
+ "BPf7f5": 80,
83
+ "BPf7f6": 81,
84
+ "BPg5g4": 82,
85
+ "BPg6g5": 83,
86
+ "BPg7f6(x)": 84,
87
+ "BPg7g5": 85,
88
+ "BPg7g6": 86,
89
+ "BPh5h4": 87,
90
+ "BPh6h5": 88,
91
+ "BPh7h5": 89,
92
+ "BPh7h6": 90,
93
+ "BQd8b6": 91,
94
+ "BQd8c7": 92,
95
+ "BQd8d5(x)": 93,
96
+ "BQd8d7": 94,
97
+ "BQd8e7": 95,
98
+ "BQd8f6": 96,
99
+ "BRa8b8": 97,
100
+ "BRa8c8": 98,
101
+ "BRa8d8": 99,
102
+ "BRa8e8": 100,
103
+ "BRf8d8": 101,
104
+ "BRf8e8": 102,
105
+ "WBc1b2": 103,
106
+ "WBc1d2": 104,
107
+ "WBc1e3": 105,
108
+ "WBc1f4": 106,
109
+ "WBc1g5": 107,
110
+ "WBc4b3": 108,
111
+ "WBf1b5": 109,
112
+ "WBf1c4": 110,
113
+ "WBf1d3": 111,
114
+ "WBf1e2": 112,
115
+ "WBf1g2": 113,
116
+ "WBg5f6(x)": 114,
117
+ "WBg5h4": 115,
118
+ "WKc1b1": 116,
119
+ "WKe1c1(O)": 117,
120
+ "WKe1g1(o)": 118,
121
+ "WKg1f1": 119,
122
+ "WKg1f2": 120,
123
+ "WKg1g2": 121,
124
+ "WKg1h1": 122,
125
+ "WKg1h2": 123,
126
+ "WNb1c3": 124,
127
+ "WNb1d2": 125,
128
+ "WNc3b5": 126,
129
+ "WNc3d5": 127,
130
+ "WNc3d5(x)": 128,
131
+ "WNc3e2": 129,
132
+ "WNc3e4": 130,
133
+ "WNc3e4(x)": 131,
134
+ "WNd2f3": 132,
135
+ "WNe2g3": 133,
136
+ "WNf3d2": 134,
137
+ "WNf3d4": 135,
138
+ "WNf3d4(x)": 136,
139
+ "WNf3e5": 137,
140
+ "WNf3e5(x)": 138,
141
+ "WNf3g5": 139,
142
+ "WNf3h4": 140,
143
+ "WNg1e2": 141,
144
+ "WNg1f3": 142,
145
+ "WPa2a3": 143,
146
+ "WPa2a4": 144,
147
+ "WPa3a4": 145,
148
+ "WPa4a5": 146,
149
+ "WPb2b3": 147,
150
+ "WPb2b4": 148,
151
+ "WPb2c3(x)": 149,
152
+ "WPb3b4": 150,
153
+ "WPb4b5": 151,
154
+ "WPc2c3": 152,
155
+ "WPc2c4": 153,
156
+ "WPc3c4": 154,
157
+ "WPc3d4(x)": 155,
158
+ "WPc4c5": 156,
159
+ "WPc4d5(x)": 157,
160
+ "WPd2d3": 158,
161
+ "WPd2d4": 159,
162
+ "WPd3d4": 160,
163
+ "WPd4c5(x)": 161,
164
+ "WPd4d5": 162,
165
+ "WPd4e5(x)": 163,
166
+ "WPe2e3": 164,
167
+ "WPe2e4": 165,
168
+ "WPe3d4(x)": 166,
169
+ "WPe3e4": 167,
170
+ "WPe4d5(x)": 168,
171
+ "WPe4e5": 169,
172
+ "WPf2f3": 170,
173
+ "WPf2f4": 171,
174
+ "WPf3f4": 172,
175
+ "WPf4e5(x)": 173,
176
+ "WPf4f5": 174,
177
+ "WPg2f3(x)": 175,
178
+ "WPg2g3": 176,
179
+ "WPg2g4": 177,
180
+ "WPg3g4": 178,
181
+ "WPg4g5": 179,
182
+ "WPh2h3": 180,
183
+ "WPh2h4": 181,
184
+ "WPh3h4": 182,
185
+ "WPh4h5": 183,
186
+ "WQd1b3": 184,
187
+ "WQd1c2": 185,
188
+ "WQd1d2": 186,
189
+ "WQd1d4(x)": 187,
190
+ "WQd1e2": 188,
191
+ "WQd1f3": 189,
192
+ "WRa1b1": 190,
193
+ "WRa1c1": 191,
194
+ "WRa1d1": 192,
195
+ "WRa1e1": 193,
196
+ "WRf1d1": 194,
197
+ "WRf1e1": 195
198
+ }