UNPKG

18.8 kBJavaScriptView Raw
1'use strict'
2
3// Relax some linter options:
4// * quote marks so "m/0'/1/2'/" doesn't need to be scaped
5// * too many tests, maxstatements -> 100
6// * store test vectors at the end, latedef: false
7// * should call is never defined
8
9var _ = require('../lib/util/_')
10require('chai').should()
11var expect = require('chai').expect
12var sinon = require('sinon')
13var bsv = require('..')
14var Networks = bsv.Networks
15var HDPrivateKey = bsv.HDPrivateKey
16var HDPublicKey = bsv.HDPublicKey
17
18describe('HDKeys building with static methods', function () {
19 var classes = [HDPublicKey, HDPrivateKey]
20
21 _.each(classes, function (Clazz) {
22 var expectStaticMethodFail = function (staticMethod, argument, message) {
23 expect(Clazz[staticMethod].bind(null, argument)).to.throw(message)
24 }
25 it(Clazz.name + ' fromJSON checks that a valid JSON is provided', function () {
26 var errorMessage = 'Invalid Argument: No valid argument was provided'
27 var method = 'fromObject'
28 expectStaticMethodFail(method, undefined, errorMessage)
29 expectStaticMethodFail(method, null, errorMessage)
30 expectStaticMethodFail(method, 'invalid JSON', errorMessage)
31 expectStaticMethodFail(method, '{\'singlequotes\': true}', errorMessage)
32 })
33 it(Clazz.name + ' fromString checks that a string is provided', function () {
34 var errorMessage = 'No valid string was provided'
35 var method = 'fromString'
36 expectStaticMethodFail(method, undefined, errorMessage)
37 expectStaticMethodFail(method, null, errorMessage)
38 expectStaticMethodFail(method, {}, errorMessage)
39 })
40 it(Clazz.name + ' fromObject checks that an object is provided', function () {
41 var errorMessage = 'No valid argument was provided'
42 var method = 'fromObject'
43 expectStaticMethodFail(method, undefined, errorMessage)
44 expectStaticMethodFail(method, null, errorMessage)
45 expectStaticMethodFail(method, '', errorMessage)
46 })
47 })
48})
49
50describe('BIP32 compliance', function () {
51 it('should initialize test vector 1 from the extended public key', function () {
52 new HDPublicKey(vector1MPublic).xpubkey.should.equal(vector1MPublic)
53 })
54
55 it('should initialize test vector 1 from the extended private key', function () {
56 new HDPrivateKey(vector1MPrivate).xprivkey.should.equal(vector1MPrivate)
57 })
58
59 it('can initialize a public key from an extended private key', function () {
60 new HDPublicKey(vector1MPrivate).xpubkey.should.equal(vector1MPublic)
61 })
62
63 it('toString should be equal to the `xpubkey` member', function () {
64 var privateKey = new HDPrivateKey(vector1MPrivate)
65 privateKey.toString().should.equal(privateKey.xprivkey)
66 })
67
68 it('toString should be equal to the `xpubkey` member', function () {
69 var publicKey = new HDPublicKey(vector1MPublic)
70 publicKey.toString().should.equal(publicKey.xpubkey)
71 })
72
73 it('should get the extended public key from the extended private key for test vector 1', function () {
74 HDPrivateKey(vector1MPrivate).xpubkey.should.equal(vector1MPublic)
75 })
76
77 it("should get m/0' ext. private key from test vector 1", function () {
78 var privateKey = new HDPrivateKey(vector1MPrivate).deriveChild("m/0'")
79 privateKey.xprivkey.should.equal(vector1m0hprivate)
80 })
81
82 it("should get m/0' ext. public key from test vector 1", function () {
83 HDPrivateKey(vector1MPrivate).deriveChild("m/0'")
84 .xpubkey.should.equal(vector1m0hPublic)
85 })
86
87 it("should get m/0'/1 ext. private key from test vector 1", function () {
88 HDPrivateKey(vector1MPrivate).deriveChild("m/0'/1")
89 .xprivkey.should.equal(vector1m0h1private)
90 })
91
92 it("should get m/0'/1 ext. public key from test vector 1", function () {
93 HDPrivateKey(vector1MPrivate).deriveChild("m/0'/1")
94 .xpubkey.should.equal(vector1m0h1public)
95 })
96
97 it("should get m/0'/1 ext. public key from m/0' public key from test vector 1", function () {
98 var derivedPublic = HDPrivateKey(vector1MPrivate).deriveChild("m/0'").hdPublicKey.deriveChild('m/1')
99 derivedPublic.xpubkey.should.equal(vector1m0h1public)
100 })
101
102 it("should get m/0'/1/2' ext. private key from test vector 1", function () {
103 var privateKey = new HDPrivateKey(vector1MPrivate)
104 var derived = privateKey.deriveChild("m/0'/1/2'")
105 derived.xprivkey.should.equal(vector1m0h12hprivate)
106 })
107
108 it("should get m/0'/1/2' ext. public key from test vector 1", function () {
109 HDPrivateKey(vector1MPrivate).deriveChild("m/0'/1/2'")
110 .xpubkey.should.equal(vector1m0h12hpublic)
111 })
112
113 it("should get m/0'/1/2'/2 ext. private key from test vector 1", function () {
114 HDPrivateKey(vector1MPrivate).deriveChild("m/0'/1/2'/2")
115 .xprivkey.should.equal(vector1m0h12h2private)
116 })
117
118 it("should get m/0'/1/2'/2 ext. public key from m/0'/1/2' public key from test vector 1", function () {
119 var derived = HDPrivateKey(vector1MPrivate).deriveChild("m/0'/1/2'").hdPublicKey
120 derived.deriveChild('m/2').xpubkey.should.equal(vector1m0h12h2public)
121 })
122
123 it("should get m/0'/1/2h/2 ext. public key from test vector 1", function () {
124 HDPrivateKey(vector1MPrivate).deriveChild("m/0'/1/2'/2")
125 .xpubkey.should.equal(vector1m0h12h2public)
126 })
127
128 it("should get m/0'/1/2h/2/1000000000 ext. private key from test vector 1", function () {
129 HDPrivateKey(vector1MPrivate).deriveChild("m/0'/1/2'/2/1000000000")
130 .xprivkey.should.equal(vector1m0h12h21000000000private)
131 })
132
133 it("should get m/0'/1/2h/2/1000000000 ext. public key from test vector 1", function () {
134 HDPrivateKey(vector1MPrivate).deriveChild("m/0'/1/2'/2/1000000000")
135 .xpubkey.should.equal(vector1m0h12h21000000000public)
136 })
137
138 it("should get m/0'/1/2'/2/1000000000 ext. public key from m/0'/1/2'/2 public key from test vector 1", function () {
139 var derived = HDPrivateKey(vector1MPrivate).deriveChild("m/0'/1/2'/2").hdPublicKey
140 derived.deriveChild('m/1000000000').xpubkey.should.equal(vector1m0h12h21000000000public)
141 })
142
143 it('should initialize test vector 2 from the extended public key', function () {
144 HDPublicKey(vector2mpublic).xpubkey.should.equal(vector2mpublic)
145 })
146
147 it('should initialize test vector 2 from the extended private key', function () {
148 HDPrivateKey(vector2mprivate).xprivkey.should.equal(vector2mprivate)
149 })
150
151 it('should get the extended public key from the extended private key for test vector 2', function () {
152 HDPrivateKey(vector2mprivate).xpubkey.should.equal(vector2mpublic)
153 })
154
155 it('should get m/0 ext. private key from test vector 2', function () {
156 HDPrivateKey(vector2mprivate).deriveChild(0).xprivkey.should.equal(vector2m0private)
157 })
158
159 it('should get m/0 ext. public key from test vector 2', function () {
160 HDPrivateKey(vector2mprivate).deriveChild(0).xpubkey.should.equal(vector2m0public)
161 })
162
163 it('should get m/0 ext. public key from m public key from test vector 2', function () {
164 HDPrivateKey(vector2mprivate).hdPublicKey.deriveChild(0).xpubkey.should.equal(vector2m0public)
165 })
166
167 it('should get m/0/2147483647h ext. private key from test vector 2', function () {
168 HDPrivateKey(vector2mprivate).deriveChild("m/0/2147483647'")
169 .xprivkey.should.equal(vector2m02147483647hprivate)
170 })
171
172 it('should get m/0/2147483647h ext. public key from test vector 2', function () {
173 HDPrivateKey(vector2mprivate).deriveChild("m/0/2147483647'")
174 .xpubkey.should.equal(vector2m02147483647hpublic)
175 })
176
177 it('should get m/0/2147483647h/1 ext. private key from test vector 2', function () {
178 HDPrivateKey(vector2mprivate).deriveChild("m/0/2147483647'/1")
179 .xprivkey.should.equal(vector2m02147483647h1private)
180 })
181
182 it('should get m/0/2147483647h/1 ext. public key from test vector 2', function () {
183 HDPrivateKey(vector2mprivate).deriveChild("m/0/2147483647'/1")
184 .xpubkey.should.equal(vector2m02147483647h1public)
185 })
186
187 it('should get m/0/2147483647h/1 ext. public key from m/0/2147483647h public key from test vector 2', function () {
188 var derived = HDPrivateKey(vector2mprivate).deriveChild("m/0/2147483647'").hdPublicKey
189 derived.deriveChild(1).xpubkey.should.equal(vector2m02147483647h1public)
190 })
191
192 it('should get m/0/2147483647h/1/2147483646h ext. private key from test vector 2', function () {
193 HDPrivateKey(vector2mprivate).deriveChild("m/0/2147483647'/1/2147483646'")
194 .xprivkey.should.equal(vector2m02147483647h12147483646hprivate)
195 })
196
197 it('should get m/0/2147483647h/1/2147483646h ext. public key from test vector 2', function () {
198 HDPrivateKey(vector2mprivate).deriveChild("m/0/2147483647'/1/2147483646'")
199 .xpubkey.should.equal(vector2m02147483647h12147483646hpublic)
200 })
201
202 it('should get m/0/2147483647h/1/2147483646h/2 ext. private key from test vector 2', function () {
203 HDPrivateKey(vector2mprivate).deriveChild("m/0/2147483647'/1/2147483646'/2")
204 .xprivkey.should.equal(vector2m02147483647h12147483646h2private)
205 })
206
207 it('should get m/0/2147483647h/1/2147483646h/2 ext. public key from test vector 2', function () {
208 HDPrivateKey(vector2mprivate).deriveChild("m/0/2147483647'/1/2147483646'/2")
209 .xpubkey.should.equal(vector2m02147483647h12147483646h2public)
210 })
211
212 it('should get m/0/2147483647h/1/2147483646h/2 ext. public key from m/0/2147483647h/2147483646h public key from test vector 2', function () {
213 var derivedPublic = HDPrivateKey(vector2mprivate)
214 .deriveChild("m/0/2147483647'/1/2147483646'").hdPublicKey
215 derivedPublic.deriveChild('m/2')
216 .xpubkey.should.equal(vector2m02147483647h12147483646h2public)
217 })
218
219 it('should use full 32 bytes for private key data that is hashed (as per bip32)', function () {
220 // https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki
221 var privateKeyBuffer = Buffer.from('00000055378cf5fafb56c711c674143f9b0ee82ab0ba2924f19b64f5ae7cdbfd', 'hex')
222 var chainCodeBuffer = Buffer.from('9c8a5c863e5941f3d99453e6ba66b328bb17cf0b8dec89ed4fc5ace397a1c089', 'hex')
223 var key = HDPrivateKey.fromObject({
224 network: 'testnet',
225 depth: 0,
226 parentFingerPrint: 0,
227 childIndex: 0,
228 privateKey: privateKeyBuffer,
229 chainCode: chainCodeBuffer
230 })
231 var derived = key.deriveChild("m/44'/0'/0'/0/0'")
232 derived.privateKey.toHex().should.equal('3348069561d2a0fb925e74bf198762acc47dce7db27372257d2d959a9e6f8aeb')
233 })
234
235 it('should NOT use full 32 bytes for private key data that is hashed with nonCompliant flag', function () {
236 // This is to test that the previously implemented non-compliant to BIP32
237 var privateKeyBuffer = Buffer.from('00000055378cf5fafb56c711c674143f9b0ee82ab0ba2924f19b64f5ae7cdbfd', 'hex')
238 var chainCodeBuffer = Buffer.from('9c8a5c863e5941f3d99453e6ba66b328bb17cf0b8dec89ed4fc5ace397a1c089', 'hex')
239 var key = HDPrivateKey.fromObject({
240 network: 'testnet',
241 depth: 0,
242 parentFingerPrint: 0,
243 childIndex: 0,
244 privateKey: privateKeyBuffer,
245 chainCode: chainCodeBuffer
246 })
247 var derived = key.deriveNonCompliantChild("m/44'/0'/0'/0/0'")
248 derived.privateKey.toHex().should.equal('4811a079bab267bfdca855b3bddff20231ff7044e648514fa099158472df2836')
249 })
250
251 it('should NOT use full 32 bytes for private key data that is hashed with the nonCompliant derive method', function () {
252 // This is to test that the previously implemented non-compliant to BIP32
253 var privateKeyBuffer = Buffer.from('00000055378cf5fafb56c711c674143f9b0ee82ab0ba2924f19b64f5ae7cdbfd', 'hex')
254 var chainCodeBuffer = Buffer.from('9c8a5c863e5941f3d99453e6ba66b328bb17cf0b8dec89ed4fc5ace397a1c089', 'hex')
255 var key = HDPrivateKey.fromObject({
256 network: 'testnet',
257 depth: 0,
258 parentFingerPrint: 0,
259 childIndex: 0,
260 privateKey: privateKeyBuffer,
261 chainCode: chainCodeBuffer
262 })
263 var derived = key.deriveNonCompliantChild("m/44'/0'/0'/0/0'")
264 derived.privateKey.toHex().should.equal('4811a079bab267bfdca855b3bddff20231ff7044e648514fa099158472df2836')
265 })
266
267 describe('edge cases', function () {
268 var sandbox = sinon.createSandbox()
269 afterEach(function () {
270 sandbox.restore()
271 })
272 it('will handle edge case that derived private key is invalid', function () {
273 var invalid = Buffer.from('0000000000000000000000000000000000000000000000000000000000000000', 'hex')
274 var privateKeyBuffer = Buffer.from('5f72914c48581fc7ddeb944a9616389200a9560177d24f458258e5b04527bcd1', 'hex')
275 var chainCodeBuffer = Buffer.from('39816057bba9d952fe87fe998b7fd4d690a1bb58c2ff69141469e4d1dffb4b91', 'hex')
276 var unstubbed = bsv.crypto.BN.prototype.toBuffer
277 var count = 0
278 sandbox.stub(bsv.crypto.BN.prototype, 'toBuffer').callsFake(function (args) {
279 // On the fourth call to the function give back an invalid private key
280 // otherwise use the normal behavior.
281 count++
282 if (count === 4) {
283 return invalid
284 }
285 var ret = unstubbed.apply(this, arguments)
286 return ret
287 })
288 sandbox.spy(bsv.PrivateKey, 'isValid')
289 var key = HDPrivateKey.fromObject({
290 network: 'testnet',
291 depth: 0,
292 parentFingerPrint: 0,
293 childIndex: 0,
294 privateKey: privateKeyBuffer,
295 chainCode: chainCodeBuffer
296 })
297 var derived = key.deriveChild("m/44'")
298 derived.privateKey.toHex().should.equal('b15bce3608d607ee3a49069197732c656bca942ee59f3e29b4d56914c1de6825')
299 bsv.PrivateKey.isValid.callCount.should.equal(2)
300 })
301 it('will handle edge case that a derive public key is invalid', function () {
302 var publicKeyBuffer = Buffer.from('029e58b241790284ef56502667b15157b3fc58c567f044ddc35653860f9455d099', 'hex')
303 var chainCodeBuffer = Buffer.from('39816057bba9d952fe87fe998b7fd4d690a1bb58c2ff69141469e4d1dffb4b91', 'hex')
304 var key = new HDPublicKey({
305 network: 'testnet',
306 depth: 0,
307 parentFingerPrint: 0,
308 childIndex: 0,
309 chainCode: chainCodeBuffer,
310 publicKey: publicKeyBuffer
311 })
312 var unstubbed = bsv.PublicKey.fromPoint
313 bsv.PublicKey.fromPoint = function () {
314 bsv.PublicKey.fromPoint = unstubbed
315 throw new Error('Point cannot be equal to Infinity')
316 }
317 sandbox.spy(key, '_deriveWithNumber')
318 key.deriveChild('m/44')
319 key._deriveWithNumber.callCount.should.equal(2)
320 key.publicKey.toString().should.equal('029e58b241790284ef56502667b15157b3fc58c567f044ddc35653860f9455d099')
321 })
322 })
323
324 describe('seed', function () {
325 it('should initialize a new BIP32 correctly from test vector 1 seed', function () {
326 var seededKey = HDPrivateKey.fromSeed(vector1Master, Networks.livenet)
327 seededKey.xprivkey.should.equal(vector1MPrivate)
328 seededKey.xpubkey.should.equal(vector1MPublic)
329 })
330
331 it('should initialize a new BIP32 correctly from test vector 2 seed', function () {
332 var seededKey = HDPrivateKey.fromSeed(vector2master, Networks.livenet)
333 seededKey.xprivkey.should.equal(vector2mprivate)
334 seededKey.xpubkey.should.equal(vector2mpublic)
335 })
336 })
337})
338
339// test vectors: https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki
340var vector1Master = '000102030405060708090a0b0c0d0e0f'
341var vector1MPublic = 'xpub661MyMwAqRbcFtXgS5sYJABqqG9YLmC4Q1Rdap9gSE8NqtwybGhePY2gZ29ESFjqJoCu1Rupje8YtGqsefD265TMg7usUDFdp6W1EGMcet8'
342var vector1MPrivate = 'xprv9s21ZrQH143K3QTDL4LXw2F7HEK3wJUD2nW2nRk4stbPy6cq3jPPqjiChkVvvNKmPGJxWUtg6LnF5kejMRNNU3TGtRBeJgk33yuGBxrMPHi'
343var vector1m0hPublic = 'xpub68Gmy5EdvgibQVfPdqkBBCHxA5htiqg55crXYuXoQRKfDBFA1WEjWgP6LHhwBZeNK1VTsfTFUHCdrfp1bgwQ9xv5ski8PX9rL2dZXvgGDnw'
344var vector1m0hprivate = 'xprv9uHRZZhk6KAJC1avXpDAp4MDc3sQKNxDiPvvkX8Br5ngLNv1TxvUxt4cV1rGL5hj6KCesnDYUhd7oWgT11eZG7XnxHrnYeSvkzY7d2bhkJ7'
345var vector1m0h1public = 'xpub6ASuArnXKPbfEwhqN6e3mwBcDTgzisQN1wXN9BJcM47sSikHjJf3UFHKkNAWbWMiGj7Wf5uMash7SyYq527Hqck2AxYysAA7xmALppuCkwQ'
346var vector1m0h1private = 'xprv9wTYmMFdV23N2TdNG573QoEsfRrWKQgWeibmLntzniatZvR9BmLnvSxqu53Kw1UmYPxLgboyZQaXwTCg8MSY3H2EU4pWcQDnRnrVA1xe8fs'
347var vector1m0h12hpublic = 'xpub6D4BDPcP2GT577Vvch3R8wDkScZWzQzMMUm3PWbmWvVJrZwQY4VUNgqFJPMM3No2dFDFGTsxxpG5uJh7n7epu4trkrX7x7DogT5Uv6fcLW5'
348var vector1m0h12hprivate = 'xprv9z4pot5VBttmtdRTWfWQmoH1taj2axGVzFqSb8C9xaxKymcFzXBDptWmT7FwuEzG3ryjH4ktypQSAewRiNMjANTtpgP4mLTj34bhnZX7UiM'
349var vector1m0h12h2public = 'xpub6FHa3pjLCk84BayeJxFW2SP4XRrFd1JYnxeLeU8EqN3vDfZmbqBqaGJAyiLjTAwm6ZLRQUMv1ZACTj37sR62cfN7fe5JnJ7dh8zL4fiyLHV'
350var vector1m0h12h2private = 'xprvA2JDeKCSNNZky6uBCviVfJSKyQ1mDYahRjijr5idH2WwLsEd4Hsb2Tyh8RfQMuPh7f7RtyzTtdrbdqqsunu5Mm3wDvUAKRHSC34sJ7in334'
351var vector1m0h12h21000000000public = 'xpub6H1LXWLaKsWFhvm6RVpEL9P4KfRZSW7abD2ttkWP3SSQvnyA8FSVqNTEcYFgJS2UaFcxupHiYkro49S8yGasTvXEYBVPamhGW6cFJodrTHy'
352var vector1m0h12h21000000000private = 'xprvA41z7zogVVwxVSgdKUHDy1SKmdb533PjDz7J6N6mV6uS3ze1ai8FHa8kmHScGpWmj4WggLyQjgPie1rFSruoUihUZREPSL39UNdE3BBDu76'
353var vector2master = 'fffcf9f6f3f0edeae7e4e1dedbd8d5d2cfccc9c6c3c0bdbab7b4b1aeaba8a5a29f9c999693908d8a8784817e7b7875726f6c696663605d5a5754514e4b484542'
354var vector2mpublic = 'xpub661MyMwAqRbcFW31YEwpkMuc5THy2PSt5bDMsktWQcFF8syAmRUapSCGu8ED9W6oDMSgv6Zz8idoc4a6mr8BDzTJY47LJhkJ8UB7WEGuduB'
355var vector2mprivate = 'xprv9s21ZrQH143K31xYSDQpPDxsXRTUcvj2iNHm5NUtrGiGG5e2DtALGdso3pGz6ssrdK4PFmM8NSpSBHNqPqm55Qn3LqFtT2emdEXVYsCzC2U'
356var vector2m0public = 'xpub69H7F5d8KSRgmmdJg2KhpAK8SR3DjMwAdkxj3ZuxV27CprR9LgpeyGmXUbC6wb7ERfvrnKZjXoUmmDznezpbZb7ap6r1D3tgFxHmwMkQTPH'
357var vector2m0private = 'xprv9vHkqa6EV4sPZHYqZznhT2NPtPCjKuDKGY38FBWLvgaDx45zo9WQRUT3dKYnjwih2yJD9mkrocEZXo1ex8G81dwSM1fwqWpWkeS3v86pgKt'
358var vector2m02147483647hpublic = 'xpub6ASAVgeehLbnwdqV6UKMHVzgqAG8Gr6riv3Fxxpj8ksbH9ebxaEyBLZ85ySDhKiLDBrQSARLq1uNRts8RuJiHjaDMBU4Zn9h8LZNnBC5y4a'
359var vector2m02147483647hprivate = 'xprv9wSp6B7kry3Vj9m1zSnLvN3xH8RdsPP1Mh7fAaR7aRLcQMKTR2vidYEeEg2mUCTAwCd6vnxVrcjfy2kRgVsFawNzmjuHc2YmYRmagcEPdU9'
360var vector2m02147483647h1public = 'xpub6DF8uhdarytz3FWdA8TvFSvvAh8dP3283MY7p2V4SeE2wyWmG5mg5EwVvmdMVCQcoNJxGoWaU9DCWh89LojfZ537wTfunKau47EL2dhHKon'
361var vector2m02147483647h1private = 'xprv9zFnWC6h2cLgpmSA46vutJzBcfJ8yaJGg8cX1e5StJh45BBciYTRXSd25UEPVuesF9yog62tGAQtHjXajPPdbRCHuWS6T8XA2ECKADdw4Ef'
362var vector2m02147483647h12147483646hpublic = 'xpub6ERApfZwUNrhLCkDtcHTcxd75RbzS1ed54G1LkBUHQVHQKqhMkhgbmJbZRkrgZw4koxb5JaHWkY4ALHY2grBGRjaDMzQLcgJvLJuZZvRcEL'
363var vector2m02147483647h12147483646hprivate = 'xprvA1RpRA33e1JQ7ifknakTFpgNXPmW2YvmhqLQYMmrj4xJXXWYpDPS3xz7iAxn8L39njGVyuoseXzU6rcxFLJ8HFsTjSyQbLYnMpCqE2VbFWc'
364var vector2m02147483647h12147483646h2public = 'xpub6FnCn6nSzZAw5Tw7cgR9bi15UV96gLZhjDstkXXxvCLsUXBGXPdSnLFbdpq8p9HmGsApME5hQTZ3emM2rnY5agb9rXpVGyy3bdW6EEgAtqt'
365var vector2m02147483647h12147483646h2private = 'xprvA2nrNbFZABcdryreWet9Ea4LvTJcGsqrMzxHx98MMrotbir7yrKCEXw7nadnHM8Dq38EGfSh6dqA9QWTyefMLEcBYJUuekgW4BYPJcr9E7j'