GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#1192)
by
unknown
14:48
created
phpmyfaq/lang/language_uk.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -468,7 +468,7 @@
 block discarded – undo
468 468
 $PMF_LANG["ad_start_comments"] = "Коментарів"; 
469 469
 
470 470
 
471
- // Added v1.1 - 30.01.2002 - Bastian 
471
+    // Added v1.1 - 30.01.2002 - Bastian 
472 472
  
473 473
 $PMF_LANG["ad_categ_paste"] = "вставити"; 
474 474
 $PMF_LANG["ad_categ_cut"] = "cut"; 
Please login to merge, or discard this patch.
phpmyfaq/index.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -436,8 +436,8 @@  discard block
 block discarded – undo
436 436
     $users       = $faqsession->getUsersOnline();
437 437
     $totUsers    = $users[0] + $users[1];
438 438
     $usersOnline = $plr->getMsg('plmsgUserOnline', $totUsers) . ' | ' .
439
-                   $plr->getMsg('plmsgGuestOnline', $users[0]) .
440
-                   $plr->getMsg('plmsgRegisteredOnline',$users[1]);
439
+                    $plr->getMsg('plmsgGuestOnline', $users[0]) .
440
+                    $plr->getMsg('plmsgRegisteredOnline',$users[1]);
441 441
 } else {
442 442
     $usersOnline = '';
443 443
 }
@@ -488,7 +488,7 @@  discard block
 block discarded – undo
488 488
     'switchLanguages'      => PMF_Language::selectLanguages($LANGCODE, true),
489 489
     'userOnline'           => $usersOnline,
490 490
     'copyright'            => 'powered by <a href="http://www.phpmyfaq.de" target="_blank">phpMyFAQ</a> ' .
491
-                              $faqConfig->get('main.currentVersion'),
491
+                                $faqConfig->get('main.currentVersion'),
492 492
     'registerUser'         => '<a href="?action=register">' . $PMF_LANG['msgRegistration'] . '</a>',
493 493
     'sendPassword'         => '<a href="?action=password">' . $PMF_LANG['lostPassword'] . '</a>',
494 494
     'loginHeader'          => $PMF_LANG['msgLoginUser'],
@@ -517,7 +517,7 @@  discard block
 block discarded – undo
517 517
                     '<a class="help" href="%sindex.php?action=search">%s</a>',
518 518
                     $faqSystem->getSystemUri($faqConfig),
519 519
                     $PMF_LANG["msgAdvancedSearch"]
520
-                 )
520
+                    )
521 521
             )
522 522
         );
523 523
     } else {
Please login to merge, or discard this patch.
phpmyfaq/ajaxservice.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -602,8 +602,8 @@  discard block
 block discarded – undo
602 602
 
603 603
                 $message = array(
604 604
                     'success' => trim($PMF_LANG['successMessage']) .
605
-                                 ' ' .
606
-                                 trim($PMF_LANG['msgRegThankYou'])
605
+                                    ' ' .
606
+                                    trim($PMF_LANG['msgRegThankYou'])
607 607
                 );
608 608
             }
609 609
 
@@ -698,7 +698,7 @@  discard block
 block discarded – undo
698 698
         $mailto   = PMF_Filter::filterInputArray(INPUT_POST,
699 699
             array('mailto' =>
700 700
                 array('filter' => FILTER_VALIDATE_EMAIL,
701
-                      'flags'  => FILTER_REQUIRE_ARRAY | FILTER_NULL_ON_FAILURE
701
+                        'flags'  => FILTER_REQUIRE_ARRAY | FILTER_NULL_ON_FAILURE
702 702
                 )
703 703
             )
704 704
         );
Please login to merge, or discard this patch.
phpmyfaq/sitemap.xml.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         $changeFreq = PMF_SITEMAP_GOOGLE_CHANGEFREQ_DAILY;
71 71
     }
72 72
     $node =
73
-         '<url>'
73
+            '<url>'
74 74
         .'<loc>'.PMF_String::htmlspecialchars($location).'</loc>'
75 75
         .'<lastmod>'.$lastmod.'</lastmod>'
76 76
         .'<changefreq>'.$changeFreq.'</changefreq>'
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 
102 102
 // Sitemap header
103 103
 $sitemap =
104
-     '<?xml version="1.0" encoding="UTF-8"?>'
104
+        '<?xml version="1.0" encoding="UTF-8"?>'
105 105
     .'<urlset xmlns="http://www.google.com/schemas/sitemap/0.84"'
106 106
     .' xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"'
107 107
     .' xsi:schemaLocation="http://www.google.com/schemas/sitemap/0.84'
Please login to merge, or discard this patch.
phpmyfaq/admin/ajax.config_list.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -98,8 +98,8 @@  discard block
 block discarded – undo
98 98
                         echo PMF_Language::languageOptions(
99 99
                             str_replace(
100 100
                                 array(
101
-                                     'language_',
102
-                                     '.php'
101
+                                        'language_',
102
+                                        '.php'
103 103
                                 ),
104 104
                                 '',
105 105
                                 $faqConfig->get('main.language')
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
                     } else {
111 111
                         echo '<option value="language_en.php">English</option>';
112 112
                     }
113
-                   break;
113
+                    break;
114 114
                 
115 115
                 case 'records.orderby':
116 116
                     echo PMF_Configuration::sortingOptions($faqConfig->get($key));
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
                                   ? ' selected="selected"'
148 148
                                   : '';
149 149
                         printf('<option value="%d"%s>%s</option>',
150
-                               $i, $selected, $item);
150
+                                $i, $selected, $item);
151 151
                     }
152 152
                     break;
153 153
                     
Please login to merge, or discard this patch.
phpmyfaq/feed/category/rss.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
                 $oLink            = new PMF_Link($link, $faqConfig);
127 127
                 $oLink->itemTitle = $item['record_title'];
128 128
                 $link             = $oLink->toString();
129
-           }
129
+            }
130 130
         }
131 131
 
132 132
         $rss->startElement('item');
Please login to merge, or discard this patch.
phpmyfaq/inc/libs/tcpdf/fonts/kozgopromedium.php 1 patch
Indentation   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -3,20 +3,20 @@  discard block
 block discarded – undo
3 3
 $name = 'KozGoPro-Medium-Acro';
4 4
 $displayname = 'Kozuka Gothic Pro (Japanese Sans-Serif)';
5 5
 $desc = array(
6
-	'Ascent' => 880,
7
-	'Descent' => -120,
8
-	'CapHeight' => 763,
9
-	'Flags' => 4,
10
-	'FontBBox' => '[-149 -374 1254 1008]',
11
-	'ItalicAngle' => 0,
12
-	'StemV' => 99,
13
-	'Style' => '<< /Panose <0000020b0700000000000000> >>',
14
-	'XHeight' => 549,
6
+    'Ascent' => 880,
7
+    'Descent' => -120,
8
+    'CapHeight' => 763,
9
+    'Flags' => 4,
10
+    'FontBBox' => '[-149 -374 1254 1008]',
11
+    'ItalicAngle' => 0,
12
+    'StemV' => 99,
13
+    'Style' => '<< /Panose <0000020b0700000000000000> >>',
14
+    'XHeight' => 549,
15 15
 );
16 16
 $cidinfo = array(
17
-	'Registry' => 'Adobe',
18
-	'Ordering' => 'Japan1',
19
-	'Supplement' => '4',
17
+    'Registry' => 'Adobe',
18
+    'Ordering' => 'Japan1',
19
+    'Supplement' => '4',
20 20
 );
21 21
 $enc = 'UniJIS-UCS2-H';
22 22
 
@@ -26,40 +26,40 @@  discard block
 block discarded – undo
26 26
 
27 27
 $dw = 1000;
28 28
 $cw = array(
29
-	32 => 224, 33 => 266, 34 => 392, 35 => 551, 36 => 562, 37 => 883, 38 => 677, 39 => 213, 40 => 322, 41 => 322,
30
-	42 => 470, 43 => 677, 44 => 247, 45 => 343, 46 => 245, 47 => 370, 48 => 562, 49 => 562, 50 => 562, 51 => 562,
31
-	52 => 562, 53 => 562, 54 => 562, 55 => 562, 56 => 562, 57 => 562, 58 => 245, 59 => 247, 60 => 677, 61 => 677,
32
-	62 => 677, 63 => 447, 64 => 808, 65 => 661, 66 => 602, 67 => 610, 68 => 708, 69 => 535, 70 => 528, 71 => 689,
33
-	72 => 703, 73 => 275, 74 => 404, 75 => 602, 76 => 514, 77 => 871, 78 => 708, 79 => 727, 80 => 585, 81 => 727,
34
-	82 => 595, 83 => 539, 84 => 541, 85 => 696, 86 => 619, 87 => 922, 88 => 612, 89 => 591, 90 => 584, 91 => 322,
35
-	92 => 562, 93 => 322, 94 => 677, 95 => 568, 96 => 340, 97 => 532, 98 => 612, 99 => 475, 100 => 608, 101 => 543,
36
-	102 => 332, 103 => 603, 104 => 601, 105 => 265, 106 => 276, 107 => 524, 108 => 264, 109 => 901, 110 => 601, 111 => 590,
37
-	112 => 612, 113 => 607, 114 => 367, 115 => 433, 116 => 369, 117 => 597, 118 => 527, 119 => 800, 120 => 511, 121 => 518,
38
-	122 => 468, 123 => 321, 124 => 273, 125 => 321, 126 => 341, 127 => 241, 128 => 362, 129 => 241, 130 => 273, 131 => 677,
39
-	132 => 266, 133 => 562, 134 => 562, 135 => 456, 136 => 562, 137 => 571, 138 => 562, 139 => 416, 140 => 472, 141 => 283,
40
-	142 => 283, 143 => 587, 144 => 588, 145 => 568, 146 => 545, 147 => 545, 148 => 247, 149 => 561, 150 => 330, 151 => 239,
41
-	152 => 418, 153 => 416, 154 => 472, 155 => 1136, 156 => 1288, 157 => 447, 158 => 340, 159 => 340, 160 => 340, 161 => 340,
42
-	162 => 340, 163 => 340, 164 => 455, 165 => 340, 166 => 340, 167 => 340, 168 => 340, 169 => 1136, 170 => 857, 171 => 384,
43
-	172 => 519, 173 => 727, 174 => 952, 175 => 398, 176 => 834, 177 => 264, 178 => 275, 179 => 590, 180 => 918, 181 => 605,
44
-	182 => 677, 183 => 769, 184 => 677, 185 => 473, 186 => 361, 187 => 677, 188 => 347, 189 => 340, 190 => 599, 191 => 284,
45
-	192 => 845, 193 => 845, 194 => 845, 195 => 661, 196 => 661, 197 => 661, 198 => 661, 199 => 661, 200 => 661, 201 => 610,
46
-	202 => 535, 203 => 535, 204 => 535, 205 => 535, 206 => 275, 207 => 275, 208 => 275, 209 => 275, 210 => 715, 211 => 708,
47
-	212 => 727, 213 => 727, 214 => 727, 215 => 727, 216 => 727, 217 => 677, 218 => 696, 219 => 696, 220 => 696, 221 => 696,
48
-	222 => 591, 223 => 584, 224 => 532, 225 => 532, 226 => 532, 227 => 532, 228 => 532, 229 => 532, 230 => 475, 231 => 543,
49
-	232 => 543, 233 => 543, 234 => 543, 235 => 264, 236 => 264, 237 => 264, 238 => 264, 239 => 584, 240 => 601, 241 => 590,
50
-	242 => 590, 243 => 590, 244 => 590, 245 => 590, 246 => 677, 247 => 597, 248 => 597, 249 => 597, 250 => 597, 251 => 518,
51
-	252 => 612, 253 => 518, 254 => 539, 255 => 591, 256 => 584, 257 => 446, 258 => 433, 259 => 683, 260 => 468, 261 => 562,
29
+    32 => 224, 33 => 266, 34 => 392, 35 => 551, 36 => 562, 37 => 883, 38 => 677, 39 => 213, 40 => 322, 41 => 322,
30
+    42 => 470, 43 => 677, 44 => 247, 45 => 343, 46 => 245, 47 => 370, 48 => 562, 49 => 562, 50 => 562, 51 => 562,
31
+    52 => 562, 53 => 562, 54 => 562, 55 => 562, 56 => 562, 57 => 562, 58 => 245, 59 => 247, 60 => 677, 61 => 677,
32
+    62 => 677, 63 => 447, 64 => 808, 65 => 661, 66 => 602, 67 => 610, 68 => 708, 69 => 535, 70 => 528, 71 => 689,
33
+    72 => 703, 73 => 275, 74 => 404, 75 => 602, 76 => 514, 77 => 871, 78 => 708, 79 => 727, 80 => 585, 81 => 727,
34
+    82 => 595, 83 => 539, 84 => 541, 85 => 696, 86 => 619, 87 => 922, 88 => 612, 89 => 591, 90 => 584, 91 => 322,
35
+    92 => 562, 93 => 322, 94 => 677, 95 => 568, 96 => 340, 97 => 532, 98 => 612, 99 => 475, 100 => 608, 101 => 543,
36
+    102 => 332, 103 => 603, 104 => 601, 105 => 265, 106 => 276, 107 => 524, 108 => 264, 109 => 901, 110 => 601, 111 => 590,
37
+    112 => 612, 113 => 607, 114 => 367, 115 => 433, 116 => 369, 117 => 597, 118 => 527, 119 => 800, 120 => 511, 121 => 518,
38
+    122 => 468, 123 => 321, 124 => 273, 125 => 321, 126 => 341, 127 => 241, 128 => 362, 129 => 241, 130 => 273, 131 => 677,
39
+    132 => 266, 133 => 562, 134 => 562, 135 => 456, 136 => 562, 137 => 571, 138 => 562, 139 => 416, 140 => 472, 141 => 283,
40
+    142 => 283, 143 => 587, 144 => 588, 145 => 568, 146 => 545, 147 => 545, 148 => 247, 149 => 561, 150 => 330, 151 => 239,
41
+    152 => 418, 153 => 416, 154 => 472, 155 => 1136, 156 => 1288, 157 => 447, 158 => 340, 159 => 340, 160 => 340, 161 => 340,
42
+    162 => 340, 163 => 340, 164 => 455, 165 => 340, 166 => 340, 167 => 340, 168 => 340, 169 => 1136, 170 => 857, 171 => 384,
43
+    172 => 519, 173 => 727, 174 => 952, 175 => 398, 176 => 834, 177 => 264, 178 => 275, 179 => 590, 180 => 918, 181 => 605,
44
+    182 => 677, 183 => 769, 184 => 677, 185 => 473, 186 => 361, 187 => 677, 188 => 347, 189 => 340, 190 => 599, 191 => 284,
45
+    192 => 845, 193 => 845, 194 => 845, 195 => 661, 196 => 661, 197 => 661, 198 => 661, 199 => 661, 200 => 661, 201 => 610,
46
+    202 => 535, 203 => 535, 204 => 535, 205 => 535, 206 => 275, 207 => 275, 208 => 275, 209 => 275, 210 => 715, 211 => 708,
47
+    212 => 727, 213 => 727, 214 => 727, 215 => 727, 216 => 727, 217 => 677, 218 => 696, 219 => 696, 220 => 696, 221 => 696,
48
+    222 => 591, 223 => 584, 224 => 532, 225 => 532, 226 => 532, 227 => 532, 228 => 532, 229 => 532, 230 => 475, 231 => 543,
49
+    232 => 543, 233 => 543, 234 => 543, 235 => 264, 236 => 264, 237 => 264, 238 => 264, 239 => 584, 240 => 601, 241 => 590,
50
+    242 => 590, 243 => 590, 244 => 590, 245 => 590, 246 => 677, 247 => 597, 248 => 597, 249 => 597, 250 => 597, 251 => 518,
51
+    252 => 612, 253 => 518, 254 => 539, 255 => 591, 256 => 584, 257 => 446, 258 => 433, 259 => 683, 260 => 468, 261 => 562,
52 52
 );
53 53
 $_cr = array(
54
-	array(231, 632, 500), // half-width
55
-	array(8718, 8718, 500),
56
-	array(9738, 9757, 250), // quarter-width
57
-	array(9758, 9778, 333), // third-width
58
-	array(12063, 12087, 500)
54
+    array(231, 632, 500), // half-width
55
+    array(8718, 8718, 500),
56
+    array(9738, 9757, 250), // quarter-width
57
+    array(9758, 9778, 333), // third-width
58
+    array(12063, 12087, 500)
59 59
 );
60 60
 foreach($_cr as $_r) {
61
-	for($i = $_r[0]; $i <= $_r[1]; $i++) {
62
-		$cw[$i+31] = $_r[2];
63
-	}
61
+    for($i = $_r[0]; $i <= $_r[1]; $i++) {
62
+        $cw[$i+31] = $_r[2];
63
+    }
64 64
 }
65 65
 ?>
Please login to merge, or discard this patch.
phpmyfaq/inc/libs/tcpdf/fonts/stsongstdlight.php 1 patch
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -3,19 +3,19 @@  discard block
 block discarded – undo
3 3
 $name = 'STSongStd-Light-Acro';
4 4
 $displayname = 'STSong Light (Simp. Chinese)';
5 5
 $desc = array(
6
-	'Ascent' => 752,
7
-	'Descent' => -271,
8
-	'CapHeight' => 737,
9
-	'Flags' => 6,
10
-	'FontBBox' => '[-25 -254 1000 880]',
11
-	'ItalicAngle' => 0,
12
-	'StemV' => 58,
13
-	'Style' => '<< /Panose <000000000400000000000000> >>',
6
+    'Ascent' => 752,
7
+    'Descent' => -271,
8
+    'CapHeight' => 737,
9
+    'Flags' => 6,
10
+    'FontBBox' => '[-25 -254 1000 880]',
11
+    'ItalicAngle' => 0,
12
+    'StemV' => 58,
13
+    'Style' => '<< /Panose <000000000400000000000000> >>',
14 14
 );
15 15
 $cidinfo = array(
16
-	'Registry' => 'Adobe',
17
-	'Ordering' => 'GB1',
18
-	'Supplement' => '2',
16
+    'Registry' => 'Adobe',
17
+    'Ordering' => 'GB1',
18
+    'Supplement' => '2',
19 19
 );
20 20
 $enc = 'UniGB-UCS2-H';
21 21
 
@@ -25,15 +25,15 @@  discard block
 block discarded – undo
25 25
 
26 26
 $dw = 1000;
27 27
 $cw = array(
28
-	32 => 207, 33 => 270, 34 => 342, 35 => 467, 36 => 462, 37 => 797, 38 => 710, 39 => 239, 40 => 374, 41 => 374,
29
-	42 => 423, 43 => 605, 44 => 238, 45 => 375, 46 => 238, 47 => 334, 48 => 462, 49 => 462, 50 => 462, 51 => 462,
30
-	52 => 462, 53 => 462, 54 => 462, 55 => 462, 56 => 462, 57 => 462, 58 => 238, 59 => 238, 60 => 605, 61 => 605,
31
-	62 => 605, 63 => 344, 64 => 748, 65 => 684, 66 => 560, 67 => 695, 68 => 739, 69 => 563, 70 => 511, 71 => 729,
32
-	72 => 793, 73 => 318, 74 => 312, 75 => 666, 76 => 526, 77 => 896, 78 => 758, 79 => 772, 80 => 544, 81 => 772,
33
-	82 => 628, 83 => 465, 84 => 607, 85 => 753, 86 => 711, 87 => 972, 88 => 647, 89 => 620, 90 => 607, 91 => 374,
34
-	92 => 333, 93 => 374, 94 => 606, 95 => 500, 96 => 239, 97 => 417, 98 => 503, 99 => 427, 100 => 529, 101 => 415,
35
-	102 => 264, 103 => 444, 104 => 518, 105 => 241, 106 => 230, 107 => 495, 108 => 228, 109 => 793, 110 => 527, 111 => 524,
36
-	112 => 524, 113 => 504, 114 => 338, 115 => 336, 116 => 277, 117 => 517, 118 => 450, 119 => 652, 120 => 466, 121 => 452,
37
-	122 => 407, 123 => 370, 124 => 258, 125 => 370, 126 => 605,
28
+    32 => 207, 33 => 270, 34 => 342, 35 => 467, 36 => 462, 37 => 797, 38 => 710, 39 => 239, 40 => 374, 41 => 374,
29
+    42 => 423, 43 => 605, 44 => 238, 45 => 375, 46 => 238, 47 => 334, 48 => 462, 49 => 462, 50 => 462, 51 => 462,
30
+    52 => 462, 53 => 462, 54 => 462, 55 => 462, 56 => 462, 57 => 462, 58 => 238, 59 => 238, 60 => 605, 61 => 605,
31
+    62 => 605, 63 => 344, 64 => 748, 65 => 684, 66 => 560, 67 => 695, 68 => 739, 69 => 563, 70 => 511, 71 => 729,
32
+    72 => 793, 73 => 318, 74 => 312, 75 => 666, 76 => 526, 77 => 896, 78 => 758, 79 => 772, 80 => 544, 81 => 772,
33
+    82 => 628, 83 => 465, 84 => 607, 85 => 753, 86 => 711, 87 => 972, 88 => 647, 89 => 620, 90 => 607, 91 => 374,
34
+    92 => 333, 93 => 374, 94 => 606, 95 => 500, 96 => 239, 97 => 417, 98 => 503, 99 => 427, 100 => 529, 101 => 415,
35
+    102 => 264, 103 => 444, 104 => 518, 105 => 241, 106 => 230, 107 => 495, 108 => 228, 109 => 793, 110 => 527, 111 => 524,
36
+    112 => 524, 113 => 504, 114 => 338, 115 => 336, 116 => 277, 117 => 517, 118 => 450, 119 => 652, 120 => 466, 121 => 452,
37
+    122 => 407, 123 => 370, 124 => 258, 125 => 370, 126 => 605,
38 38
 );
39 39
 ?>
Please login to merge, or discard this patch.
phpmyfaq/inc/libs/tcpdf/fonts/msungstdlight.php 1 patch
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -3,18 +3,18 @@  discard block
 block discarded – undo
3 3
 $name = 'MSungStd-Light-Acro';
4 4
 $displayname = 'MSung Light (Trad. Chinese)';
5 5
 $desc = array(
6
-	'Ascent' => 880,
7
-	'Descent' => -120,
8
-	'CapHeight' => 880,
9
-	'Flags' => 6,
10
-	'FontBBox' => '[-160 -249 1015 1071]',
11
-	'ItalicAngle' => 0,
12
-	'StemV' => 93,
6
+    'Ascent' => 880,
7
+    'Descent' => -120,
8
+    'CapHeight' => 880,
9
+    'Flags' => 6,
10
+    'FontBBox' => '[-160 -249 1015 1071]',
11
+    'ItalicAngle' => 0,
12
+    'StemV' => 93,
13 13
 );
14 14
 $cidinfo = array(
15
-	'Registry' => 'Adobe',
16
-	'Ordering' => 'CNS1',
17
-	'Supplement' => '3',
15
+    'Registry' => 'Adobe',
16
+    'Ordering' => 'CNS1',
17
+    'Supplement' => '3',
18 18
 );
19 19
 $enc = 'UniCNS-UCS2-H';
20 20
 
@@ -23,16 +23,16 @@  discard block
 block discarded – undo
23 23
 
24 24
 $dw = 1000;
25 25
 $cw = array(
26
-	32 => 250, 33 => 250, 34 => 408, 35 => 668, 36 => 490, 37 => 875, 38 => 698, 39 => 250, 40 => 240, 41 => 240,
27
-	42 => 417, 43 => 667, 44 => 250, 45 => 313, 46 => 250, 47 => 520, 48 => 500, 49 => 500, 50 => 500, 51 => 500,
28
-	52 => 500, 53 => 500, 54 => 500, 55 => 500, 56 => 500, 57 => 500, 58 => 250, 59 => 250, 60 => 667, 61 => 667,
29
-	62 => 667, 63 => 396, 64 => 921, 65 => 677, 66 => 615, 67 => 719, 68 => 760, 69 => 625, 70 => 552, 71 => 771,
30
-	72 => 802, 73 => 354, 74 => 354, 75 => 781, 76 => 604, 77 => 927, 78 => 750, 79 => 823, 80 => 563, 81 => 823,
31
-	82 => 729, 83 => 542, 84 => 698, 85 => 771, 86 => 729, 87 => 948, 88 => 771, 89 => 677, 90 => 635, 91 => 344,
32
-	92 => 520, 93 => 344, 94 => 469, 95 => 500, 96 => 250, 97 => 469, 98 => 521, 99 => 427, 100 => 521, 101 => 438,
33
-	102 => 271, 103 => 469, 104 => 531, 105 => 250, 106 => 250, 107 => 458, 108 => 240, 109 => 802, 110 => 531, 111 => 500,
34
-	112 => 521, 113 => 521, 114 => 365, 115 => 333, 116 => 292, 117 => 521, 118 => 458, 119 => 677, 120 => 479, 121 => 458,
35
-	122 => 427, 123 => 480, 124 => 496, 125 => 480, 126 => 667,
36
-	17601 => 500,
26
+    32 => 250, 33 => 250, 34 => 408, 35 => 668, 36 => 490, 37 => 875, 38 => 698, 39 => 250, 40 => 240, 41 => 240,
27
+    42 => 417, 43 => 667, 44 => 250, 45 => 313, 46 => 250, 47 => 520, 48 => 500, 49 => 500, 50 => 500, 51 => 500,
28
+    52 => 500, 53 => 500, 54 => 500, 55 => 500, 56 => 500, 57 => 500, 58 => 250, 59 => 250, 60 => 667, 61 => 667,
29
+    62 => 667, 63 => 396, 64 => 921, 65 => 677, 66 => 615, 67 => 719, 68 => 760, 69 => 625, 70 => 552, 71 => 771,
30
+    72 => 802, 73 => 354, 74 => 354, 75 => 781, 76 => 604, 77 => 927, 78 => 750, 79 => 823, 80 => 563, 81 => 823,
31
+    82 => 729, 83 => 542, 84 => 698, 85 => 771, 86 => 729, 87 => 948, 88 => 771, 89 => 677, 90 => 635, 91 => 344,
32
+    92 => 520, 93 => 344, 94 => 469, 95 => 500, 96 => 250, 97 => 469, 98 => 521, 99 => 427, 100 => 521, 101 => 438,
33
+    102 => 271, 103 => 469, 104 => 531, 105 => 250, 106 => 250, 107 => 458, 108 => 240, 109 => 802, 110 => 531, 111 => 500,
34
+    112 => 521, 113 => 521, 114 => 365, 115 => 333, 116 => 292, 117 => 521, 118 => 458, 119 => 677, 120 => 479, 121 => 458,
35
+    122 => 427, 123 => 480, 124 => 496, 125 => 480, 126 => 667,
36
+    17601 => 500,
37 37
 );
38 38
 ?>
Please login to merge, or discard this patch.