This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function respHandler() { | |
| data = JSON.parse(this.responseText) | |
| price = data.data.webengage.price | |
| cells = document.getElementsByClassName('post-fields-item') | |
| last = cells[cells.length - 1] | |
| clone = last.cloneNode(true) | |
| clone.getElementsByTagName('span')[0].innerText = 'قیمت' | |
| clone.getElementsByTagName('div')[0].innerText = Number(price).toLocaleString() | |
| last.parentElement.appendChild(clone) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| last_name | count | |
|---|---|---|
| مهردادی | 123327 | |
| سروری | 123167 | |
| کیاندختی | 122790 | |
| شهرزادی | 122683 | |
| پرتوی | 122505 | |
| یزدانی | 62245 | |
| شکوفهی | 62145 | |
| شبنمی | 62049 | |
| گلالهی | 62012 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name | count | |
|---|---|---|
| پرتو | 123393 | |
| شهرزاد | 123314 | |
| سرور | 122924 | |
| کیاندخت | 122727 | |
| مهرداد | 122488 | |
| شهلا | 62350 | |
| هوشنگ | 62265 | |
| فرنود | 62141 | |
| آذین | 62095 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| prefix | count | operator | |
|---|---|---|---|
| 903 | 1511990 | Irancell | |
| 902 | 890791 | Irancell | |
| 905 | 630766 | Irancell | |
| 904 | 33597 | Irancell | |
| 921 | 548558 | Rightel | |
| 920 | 24667 | Rightel | |
| 901 | 1486575 | Irancell | |
| 922 | 680728 | Rightel | |
| 990 | 1205157 | IR-MCI |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function pow2(x) { | |
| return x * x | |
| } | |
| function alpha(r, a, b) { | |
| var c = -Math.sqrt((pow2(a) + 2 * r * a) / pow2(r)) | |
| var d = (r + a) / (r + b) | |
| var eq_a = pow2(c) + 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| size_t count2 = serverPublicKeysFingerprints.size(); | |
| for (uint32_t a = 0; a < count1; a++) { | |
| for (uint32_t b = 0; b < count2; b++) { | |
| if ((uint64_t) result->server_public_key_fingerprints[a] == serverPublicKeysFingerprints[b]) { | |
| keyFingerprint = result->server_public_key_fingerprints[a]; | |
| key = serverPublicKeys[a]; | |
| break; | |
| } | |
| } | |
| if (keyFingerprint != 0) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| serverPublicKeys.push_back("-----BEGIN RSA PUBLIC KEY-----\n" | |
| "MIIBCgKCAQEAwVACPi9w23mF3tBkdZz+zwrzKOaaQdr01vAbU4E1pvkfj4sqDsm6\n" | |
| "lyDONS789sVoD/xCS9Y0hkkC3gtL1tSfTlgCMOOul9lcixlEKzwKENj1Yz/s7daS\n" | |
| "an9tqw3bfUV/nqgbhGX81v/+7RFAEd+RwFnK7a+XYl9sluzHRyVVaTTveB2GazTw\n" | |
| "Efzk2DWgkBluml8OREmvfraX3bkHZJTKX4EQSjBbbdJ2ZXIsRrYOXfaA+xayEGB+\n" | |
| "8hdlLmAjbCVfaigxX0CDqWeR1yFL9kwd9P0NsZRPsmoqVwMbMu7mStFai6aIhc3n\n" | |
| "Slv8kg9qv1m6XHVQY3PnEw+QQtqSIXklHwIDAQAB\n" | |
| "-----END RSA PUBLIC KEY-----"); | |
| serverPublicKeysFingerprints.push_back(0xc3b42b026ce86b21LL); |