diff --git a/Documentation/Content/Welcome.aml b/Documentation/Content/Welcome.aml index 33452d8..bd7e17c 100644 --- a/Documentation/Content/Welcome.aml +++ b/Documentation/Content/Welcome.aml @@ -11,7 +11,7 @@ https://gmplib.org/ (version 6.1.2). It automatically loads at runtime the 32-bit or 64-bit GNU MP library that matches the current CPU - architecture, thus allowing building Visual Studio Projects for AnyCPU, x86, or x64. + architecture, thus allowing building Visual Studio Projects for Any CPU, x86, or x64. It is based on the GNU MP "fat" build which automatically detects the current CPU type, and selects any available assembly language code optimization for that CPU, thus providing optimal performance. @@ -111,43 +111,147 @@ Install MSYS2https://github.com/msys2/msys2/wiki/MSYS2-introduction. - On a 64-bit computer, install msys2-x86_64-20161025.exehttps://github.com/MachineCognitis/Math.Gmp.Native/tree/master/Math.Gmp.Native/Dependencies/msys2-x86_64-20161025.exe, - and on a 32-bit computer, install msys2-i686-20161025.exehttps://github.com/MachineCognitis/Math.Gmp.Native/tree/master/Math.Gmp.Native/Dependencies/msys2-i686-20161025.exe. + On a 64-bit computer, install msys2-x86_64-20161025.exehttps://github.com/MachineCognitis/Math.Gmp.Native/blob/master/Math.Gmp.Native/Dependencies/, + and on a 32-bit computer, install msys2-i686-20161025.exehttps://github.com/MachineCognitis/Math.Gmp.Native/tree/master/Math.Gmp.Native/Dependencies/. You can also check for a more recent version of MSYS2 herehttps://github.com/msys2/msys2/wiki/MSYS2-installation. Install MSYS2 to its default location. - After installation, you need to updates MSYS2 packages. From the Windows Start Menu, start 'MSYS2 MSYS'. In the shell command window, - enter the command 'pacman -Syuu' and follow instructions. You will have to close the command window, reopen a new one, and reenter - the command 'pacman -Syuu'. + After installation, you need to updates MSYS2 packages. From the Windows Start Menu, start MSYS2 MSYS. In the shell command window, + enter the command: + + + + + pacman -Syuu + + + + + and follow instructions. + You will have to close the command window, reopen a new one, and reenter the command pacman -Syuu. - Finally, in order to build software, you need to install a number of packages with the command - 'pacman -S --needed base-devel mingw-w64-i686-toolchain mingw-w64-x86_64-toolchain git subversion mercurial mingw-w64-i686-cmake mingw-w64-x86_64-cmake' + Finally, in order to build software, you need to install a number of packages with the command: + + + + + pacman -S --needed base-devel mingw-w64-i686-toolchain mingw-w64-x86_64-toolchain git subversion mercurial mingw-w64-i686-cmake mingw-w64-x86_64-cmake + + + + run from the same command window as in the previous step. - To build 32-bit software, use the 'MSYS2 MinGW 32-bit' command from the Windows Start Menu, and - for 64-bit software, use 'MSYS2 MinGW 64-bit'. + To build 32-bit software, use the MSYS2 MinGW 32-bit command from the Windows Start Menu, and + for 64-bit software, use MSYS2 MinGW 64-bit. + + + + + Install yasmhttp://yasm.tortall.net/Download.html. + + + On a 64-bit computer, copy yasm-1.3.0-win64.exehttps://github.com/MachineCognitis/Math.Gmp.Native/blob/master/Math.Gmp.Native/Dependencies/ + to C:\msys64\usr\bin, and rename it to yasm.exe. + + + Similarly on a 32-bit computer, copy yasm-1.3.0-win32.exehttps://github.com/MachineCognitis/Math.Gmp.Native/blob/master/Math.Gmp.Native/Dependencies/ + to C:\msys32\usr\bin, and rename it to yasm.exe. + + + + + Build GNU MPhttps://gmplib.org/. + + + Create folders C:\Temp\x86 and C:\Temp\x64. + These are the folder where the compiled 32-bit and 64-bit versions of GNU MP will be installed. + Unzip gmp-6.1.2.tar.bz2https://github.com/MachineCognitis/Math.Gmp.Native/blob/master/Math.Gmp.Native/Dependencies/ + in folder C:\Temp. + This puts GNU MP in subfolder gmp-6.1.2. + + + In each one of the command windows openend with the commands MSYS2 MinGW 32-bit + and MSYS2 MinGW 64-bit from the Windows Start Menu, run the commands below: + + + + + cd /c/Temp/gmp-6.1.2
+ ./configure --enable-fat --disable-static --enable-shared --prefix=/c/Temp/x86 or x64
+ make
+ make check
+ make install
+
+
+
+ + The --prefix specifies the install folder. + Note that the Windows C:\ drive is specified as the root /C/ folder in the MinGW window. + Note also that the configure and make commands are to be run against a fresly uncompressed GNU MP source. + The make install command creates libgmp-10.dll in the C:\Temp\x86 and C:\Temp\x64 folders. + These two compiled versions of the GNU MP library are to be copied to the x86 and x64 folders of the Math.Gmp.Native Visual Studio projects. + They can also be copied directly into the x86 and x64 folders of the bin/Debug or bin/Release folders. + + + The 32-bit and 64-bit make check commands generate some warnings, but all tests passed successfully.
- Install yasm - Install GNU MP - Build GNU MP +
+ Building the GNU MP Library for a Specific CPU Type on Windows + + + The --enable-fat build option above creates a library where optimized low level subroutines are chosen at runtime according to the CPU detected. + By using instead the --host option, you can build a library for a specific CPU type. + You will end up with a library that runs only on that CPU type, but the library will be samller. + See the Build Optionshttps://gmplib.org/manual/Build-Options.html#Build-Options/ from the GNU MP Manual for the supported CPU types. + + +
+ +
+ Using the GNU MP Library in a Visual Studio C++ Project + + + Although our main goal was to compile GNU MP in order to use it from .NET, the compiled 32-bit and 64-bit GNU MP libraries may be used directly in Visual Studio C++ projects. + For example, create a default Visual Studio C++ Console Application. + Set the Platform to x64. + Copy from the C:\Temp\x64 folder the files include\gmp.h, bin\libgmp-10.dll, and lib\libgmp.dll.a to the Visual Studio C++ project folder. + Include gmp.h in your C++ source file. + In the Linker, Input Property Page of the project, add libgmp.dll.a to the Additional Dependencies. + Build your C++ project, and copy libgmp-10.dll to the output bin folder. + Run your application. + + + See ConsoleApplication12.ziphttps://github.com/MachineCognitis/Math.Gmp.Native/blob/master/Math.Gmp.Native/Dependencies/ + for a sample Visual Studio C++ project. + + +
+ - C Standard - http://en.cppreference.com/w/c/numeric/math - _self + MSYS2 + https://github.com/msys2/msys2/wiki/MSYS2-introduction + + + yasm + http://yasm.tortall.net/Download.html + + + GNU MP + https://gmplib.org/ Math.Gmp.Native on GitHub https://github.com/MachineCognitis/Math.Gmp.Native - _self diff --git a/Math.Gmp.Native/Dependencies/ConsoleApplication12.zip b/Math.Gmp.Native/Dependencies/ConsoleApplication12.zip new file mode 100644 index 0000000..0ef089e Binary files /dev/null and b/Math.Gmp.Native/Dependencies/ConsoleApplication12.zip differ diff --git a/Math.Gmp.Native/Math.Gmp.Native.csproj b/Math.Gmp.Native/Math.Gmp.Native.csproj index 4303142..4b53b82 100644 --- a/Math.Gmp.Native/Math.Gmp.Native.csproj +++ b/Math.Gmp.Native/Math.Gmp.Native.csproj @@ -87,6 +87,7 @@ + diff --git a/docs/Gmp.Native.chm b/docs/Gmp.Native.chm index 8224df4..f5cd47d 100644 Binary files a/docs/Gmp.Native.chm and b/docs/Gmp.Native.chm differ diff --git a/docs/WebTOC.xml b/docs/WebTOC.xml index 22324e1..09fa0ec 100644 --- a/docs/WebTOC.xml +++ b/docs/WebTOC.xml @@ -2,12 +2,12 @@ - + - + - - + + @@ -15,39 +15,39 @@ - + - + - - - + + + - + - + - - + + - + - + @@ -422,38 +422,38 @@ - + - + - + - + - + - - + + - + - + @@ -465,7 +465,7 @@ - + @@ -476,19 +476,19 @@ - + - - + + - + - + @@ -499,7 +499,7 @@ - + @@ -511,19 +511,19 @@ - + - - + + - + - + @@ -536,7 +536,7 @@ - + @@ -546,35 +546,35 @@ - - + + - + - + - + - - + + - + - + @@ -585,7 +585,7 @@ - + @@ -597,73 +597,73 @@ - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - - + + - + - + @@ -676,7 +676,7 @@ - + @@ -686,9 +686,9 @@ - - - + + + @@ -696,11 +696,11 @@ - + - + diff --git a/docs/fti/FTI_100.json b/docs/fti/FTI_100.json index f62bf93..16e242e 100644 --- a/docs/fti/FTI_100.json +++ b/docs/fti/FTI_100.json @@ -1 +1 @@ -{"default":[1,589825,1769473,2490371,3014658,3211266,3670019,4128769,4194305,4915203,5111812,5767170,7667714,8126469,8192002,8257538,8716290,8978434,9437185,9764866,11403266,11927554,11993090,12386306,13303810,13369347,13500418,14090241,14680066,14942210,17170435,17235970,18808834,20709379,21168129,22020098,22085634,23265283,24248322,24379394,24838147,26148867,29097986,31719426,32374786,33357826,34668547,35913730,36241410,36962306,37879810,38207490,39321602,40632322],"determining":[8650753,11141121,38076417],"details":[13369345,34209793],"divisor":[4915207,5963777,7602177,7667714,9437186,10027009,11534342,13828099,14680066,14876673,17039362,17170439,20578305,21561345,24313857,27721731,28704770,38338564],"dll":[262145,327681,393217,458753,524289,589825,720897,786433,851969,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1900545,1966081,2031617,2162689,2228225,2293761,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,3014657,3080193,3145729,3211265,3276801,3342337,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4259841,4325377,4390913,4456449,4521985,4587521,4718593,4784129,4849665,5046273,5111809,5177345,5242881,5373953,5439489,5505025,5636097,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6356993,6422529,6488065,6553601,6619137,6750209,6815745,6881281,6946817,7012353,7143425,7208961,7274497,7340033,7405569,7471105,7602177,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12713985,12779521,12845057,12976129,13041665,13107201,13238273,13303809,13369345,13434881,13500417,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18677761,18743297,18808833,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19922945,19988481,20054017,20119553,20250625,20316161,20381697,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23461889,23527425,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,27000833,27066369,27131905,27197441,27262977,27394049,27459585,27525121,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28442625,28508161,28573697,28704769,28770305,28835841,28901377,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30408705,30474241,30539777,30605313,30670849,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31850497,31916033,31981569,32047105,32112641,32178177,32309249,32374785,32440321,32505857,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33161217,33226753,33292289,33357825,33488897,33554433,33619969,33685505,33751041,33816577,33882113,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38535169,38469633,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39124993,39190529,39256065,39321601,39452673,39518209,39583745,39649281,39780353,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753],"divisible":[4915203,13041667,15335430,17170435,17694726],"decrease":[8847361],"desired":[1769473,27983873,34930689],"decreasingly":[4915201,17170433,21364737],"documentation":[17170433,39059457],"dependent":[17235969,20316161,39911425],"distance":[4915202,12517381,17170434,37552132],"default_allocate":[8126470],"difference":[4915202,17170434,38993926,40632321],"defines":[13828097,16252929],"dbl":[4063238,6225926,9109510,13762566,23920646,34406406],"degenerate":[33882113],"direct":[13107201,14548993,17563649,28049409],"dividend":[4915201,11534342,17170433,28704769],"decreasing":[1376257],"divide":[4718595,4915210,7667714,9437186,14680066,17170442,17432577,21889026,22413313,23724033,25559041,27656193,28704769,37945346,41222145],"denominator":[983041,2359297,2555905,2686977,3604482,4915207,6750209,6881284,6946817,8912897,9240577,10747905,11599873,11730945,12845057,13041665,14549001,15335425,16646145,16711681,17170439,17432577,17498113,17694721,17891329,19070977,19267585,19791873,20512769,21561345,22151169,24313857,24772609,25427969,26279937,28049415,28704769,28835841,29294593,29556737,29949953,32112641,34603009,35520514,36110337,36896769,37683201,38797313,39190530,40042497,40108033,41025537],"destroy":[21037057],"divides":[4915202,6946817,10747905,17170434,21889025,35651586,37945345,38338561],"double":[458758,1245186,1441793,3670017,3735557,4063235,4521988,4915206,5242881,6225923,7274498,8323073,9109507,9175041,9830401,11468802,13303813,13369345,13500417,13762563,14942209,16908289,17170438,17235975,19398657,19595265,20250625,20316166,20381698,21102598,21757953,23265284,23920643,24838145,25100289,25231361,25296901,30081025,30212102,31391745,32374785,32636929,33488897,33554434,34209793,34406403,34668545,35061761,36241409,36700162,38207493,38404097,38535169,39911432,40108033,40632321,40960005,41353217],"determined":[9306113,20250625,34930689],"definitely":[13631490,28442625,31588353],"determines":[5701633,8650753,11337729,12124161,14090241,16646145,17104897,21626881,23134209,28311553,28442625,28966913,31588353,35389441,39649281,39714817],"destination":[5242881,8323073,9175041,16908289,18350082,19398657,19595265,21757953,25100289,25296897,34209793,34930689,37486594,38535169,40960001,41156610],"define":[20578307,38338561],"den2":[983050,4915202,11599882,17170434],"device":[28442625,31588353],"digit":[31195137,31719425],"delegate":[6619141,25821189,34537477,39059457],"don":[1769473,4063233,4128769,6225921,9109505,13762561,23920641,30998529,34406401],"denorm":[17235969,39911425],"divisions":[13631489],"definition":[6488065,20250625,36306945],"determine":[4915203,9240577,10092545,13631489,16973825,17170435,24576001,31457281,34799617],"doesn":[4718593,6553601,25559041,27656193,33882114,34734081,38076417,40566785],"directcast":[11796481,27918337],"designed":[2293761,7012353,27983873,32505857,36044801],"discard":[34930689],"dfd1c04p":[8388610,14221314,16121858,16842754,30605314,34734082,34865154,40566786],"depending":[5177345,7012353,36044801],"described":[20578305],"data":[1900545,3145729,4915202,7012353,17170434,18087937,22675457,23986192,28442625,31588353,34930702,36044801,38076417,39452673],"dim":[327683,458753,720898,851969,983041,1114118,1376260,1441793,1638401,1900545,1966084,2293762,2424835,2490369,2555906,2621444,2686978,2883585,3014657,3080198,3211266,3276801,3342338,3473409,3670018,3735553,3866626,4063238,4325380,4521985,4718595,4784130,5177348,5242881,5373953,5439490,5636098,5767170,5963781,6029313,6094852,6225926,6488065,6553601,6750209,6881282,6946819,7012357,7274497,7405569,7471106,7602179,7667714,7733251,7929861,8126475,8192002,8257538,8323074,8388613,8454147,8585220,8716291,8847363,8912900,8978433,9043970,9109512,9175042,9240579,9306115,9371649,9633793,9764866,9830402,9961473,10027009,10092546,10289153,10485761,10616833,10747906,10878979,10944513,11272195,11403265,11468802,11599873,11730947,11796481,11927554,11993090,12058625,12255234,12386305,12451841,12517378,12582915,12713986,12845059,13041665,13107202,13303809,13369346,13434882,13500418,13631489,13762568,13828099,13893635,14221317,14286851,14352386,14548994,14614530,14680067,14745601,14876674,14942209,15073282,15138820,15269890,15335426,15400962,15728642,15794180,15859713,15990785,16121862,16187393,16252929,16449539,16515074,16711682,16842757,16908291,16973825,17039361,17235969,17563650,17629185,17694721,17891331,18087937,18219011,18350084,18546689,18677764,18743297,18808835,18939905,19070978,19136519,19267586,19398657,19529732,19595265,19791876,20054020,20250626,20316161,20381697,20512771,20578312,20643844,20709377,20774914,20840450,20905985,21037059,21102595,21299203,21364739,21430274,21561346,21757954,21823490,21889028,21954561,22020098,22085634,22151171,22282245,22347778,22413313,22478850,22544385,22740995,22937605,23003138,23068675,23265281,23658500,23724036,23920646,23986179,24051714,24248322,24313859,24444931,24576001,24641543,24772610,24838145,24969219,25100289,25165825,25231362,25296897,25362435,25427969,25493506,25559044,25690114,25952262,26017793,26279938,26345476,26673153,26804226,26869761,27000835,27197444,27394052,27525121,27656195,27721729,27787265,27918337,27983876,28049410,28114945,28180484,28442626,28704774,28770306,28835842,29032449,29097986,29229057,29294594,29491201,29556739,29687809,29818881,29949954,30015490,30081026,30212097,30277637,30539781,30605317,30670852,30998532,31064068,31129601,31391746,31457282,31522817,31588353,31653892,31719427,32047106,32112642,32309249,32374785,32505858,32636929,32702467,32899073,32964611,33357827,33488897,33554433,33619970,33816579,33882115,34013187,34144261,34209795,34275331,34340866,34406406,34603011,34668545,34734085,34799617,34865158,34930693,35061762,35192834,35258369,35651587,35913730,36044805,36110337,36241410,36306945,36700162,36765702,36831233,36896771,36962305,37224452,37289985,37486596,37552130,37683204,37814273,37879810,37945348,38010882,38273025,38207490,38338565,38404097,38469635,38535170,38731777,38797316,39124994,39256065,39321602,39452673,39583747,39780353,39911425,39976963,40042499,40108034,40239105,40566789,40632323,40894468,40960001,41025538,41156611,41222148,41287682,41353218],"distributed":[720897,1900545,4915204,15073281,17170436,18087937,20840449,32047105],"den":[14549000,28049422,37683201,40108033],"delete":[1376260,9240580,9306116,10878980,19529732,22740996,37683204,40828930],"dev":[28442625,31588353],"detects":[20185089],"discarded":[9240577],"decimal":[1179649,9240577,9306115,16908289,17498113,20250627,22740993,32178177,35520513,40828930],"division":[2555905,2686977,6750209,6946817,7602179,7667714,8912897,9437186,10027011,10747905,11730945,12845057,13041665,14680066,14876674,15335426,16711681,17694722,17891329,19070977,19267585,19791873,20512769,20578305,21561345,21889025,22151169,24313857,24772609,25427969,26279937,26345473,28835841,29294593,29556737,29949953,32112641,34603009,36110337,36896769,37945345,38797313,40042497,41025537],"digits":[4915209,9240577,14614532,17170441,19529732,22937601,24576002,31195137,31719432,37683201,38731778,40108033,40828934],"destroyed":[5963777,16318465,20578306],"diagram":[38076418],"different":[1310721,4259841,4587521,4915201,12517378,13238273,13565953,14417921,17170433,19464194,20447233,21692418,24576002,24707074,27262978,27328513,27590657,28442625,29097987,30343169,31195137,31588353,33423361,33947649,34996226,35717121,35848194,36634626,37552129,38141953,38600705,38666242],"dst":[33161221],"defining":[2293761,32505857],"default_reallocate":[8126470],"decremented":[32702466,39124994],"description":[131073,196609,655361,917505,1310724,1572865,1835009,2097153,2359297,2949121,3407873,4194305,4259843,4587523,4653057,4915201,4980737,5308417,5570561,5701633,6291457,6684673,7077889,8650756,9568257,11141121,11337729,12124163,12648449,12910593,13172737,13238275,13565953,14090243,14417921,15007745,16056321,16646148,17104897,17170435,18612225,18874369,19857409,20447233,21626883,22806529,23134212,23396353,23592961,24510465,26935297,27328513,27590657,28246017,28311553,28377089,28639233,28966913,30343169,30736385,31195139,31784961,32243713,32571393,33095681,33423361,33947649,35389441,35717123,38141955,38600707,39059459,39387137,39649282,39714817,39845889],"defined":[3866625,9043969,14090241,20185089,20578307,28770305],"declaration":[262145,786433,1179649,1507329,2031617,3932161,3997697,4456449,5832705,5898241,6422529,6815745,7208961,7340033,7798785,8060929,9699329,10420225,10813441,11010049,11665409,11862017,12976129,14024705,14155777,14483457,15204353,15466497,15597569,15925249,16777217,17301505,17367041,17498113,17760257,17825793,18022401,18153473,18284545,18415617,18481153,19005441,19202049,19660801,21233665,21495809,22216705,22872065,23199745,23330817,23461889,23855105,24182785,25034753,25886721,26083329,26411009,27066369,27131905,28508161,29163521,29622273,30408705,30474241,31326209,31916033,32178177,32768001,33226753,35127297,35586049,35979265,36372481,36438017,36569089,37617665,37748737,40173569,40370177,40501249,40697857,40763393,41091073],"delegates":[39059457],"developed":[41222145],"default_free":[8126470]} \ No newline at end of file +{"default":[1,720898,786433,1441793,2097155,3145730,3211266,3538945,3604483,3670017,5111812,5636098,7929858,8454146,8716290,8781825,8847362,9240581,9502722,10027010,11272194,11337730,11796482,12124163,12582914,12713986,13172737,13369346,15597570,17235970,17563650,19333123,21168131,21233667,22937602,23199746,23789569,23986179,24510467,25231362,27328514,27525122,27656194,28246019,30015490,32636930,34144258,34406402,34537474,35454978,35586050,36241411,38600706,39059458,40370178],"determining":[10944513,11599873,40108033],"details":[12124161,32178177],"divisor":[6291457,7471105,8454146,8781826,9175041,11010054,12713986,12910595,14483457,16908290,18939905,19333127,19857409,21168135,21626883,26345474,27262977,41091076],"dll":[196609,327681,393217,458753,524289,589825,720897,786433,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,1966081,2031617,2097153,2162689,2228225,2424833,2490369,2555905,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3735553,3801089,3866625,3932161,3997697,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4784129,4849665,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6684673,6750209,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11665409,11730945,11796481,11927553,12058625,12124161,12189697,12255233,12320769,12386305,12517377,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15794177,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20578305,20643841,20709377,20840449,20905985,20971521,21037057,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231365,25296897,25362433,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30539777,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36569089,36634625,36831233,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38535169,38600705,38666241,38731777,38797313,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753],"debug":[25231361],"divisible":[13828099,14811142,17760262,19333123,21168131],"decrease":[5898241],"desired":[1441793,23855105,33161217],"decreasingly":[19070977,19333121,21168129],"documentation":[21168129,34275329],"dependent":[17235969,23592961,40697857],"distance":[12517381,19333122,21168130,29294596],"default_allocate":[9240582],"difference":[19333122,21168130,39059457,39714822],"defines":[12910593,14745601],"dbl":[4653062,6029318,8388614,12320774,21561350,38928390],"degenerate":[37617665],"direct":[12845057,14221313,18743297,33423361],"dividend":[11010054,19333121,21168129,26345473],"decreasing":[3997697],"divide":[5505027,8454146,8781826,12713986,19333130,20054018,21168138,21364737,24051713,25296897,25362433,25755649,26345473,29163522,39780353],"denominator":[589825,1507329,2359297,3014657,3801090,6946817,7077892,7340033,8192001,9568257,10878977,11141121,11665409,11730945,12845065,13828097,14811137,14942209,15335425,16515073,17760257,17825793,18546689,19333127,19791873,19857409,20905985,20971521,21168135,21364737,23527425,24576001,24838145,26345473,27262977,27787265,28508161,31653889,32505857,33423367,33947649,34013185,34668546,34996225,35192833,35258369,35520513,38731777,39518209,40042497,40304642,41418753],"destroy":[19660801],"divides":[7340033,9568257,19333122,20054017,21168130,29163521,33030146,41091073],"double":[327686,1114114,1310721,3604481,4128773,4587524,4653059,5046273,6029315,7012353,8323074,8388611,9371649,9961474,10289153,12124161,12320771,12582913,13369349,15597569,16449537,17235975,19333126,19529734,20709377,20840449,21168134,21233665,21561347,21692421,22544385,23461889,23592966,24707073,25952257,26476546,28246020,30408710,31260673,31719425,32047105,32178177,32309249,32768001,34406401,34537473,34603010,35586053,35979265,36241409,37224453,37552130,38731777,38928387,39059457,39845889,40239105,40697864],"determined":[9830401,22544385,33161217],"definitely":[13041666,30081025,36569089],"determines":[7667713,10747905,10944513,11534337,13172737,16515073,18415617,24117249,24182785,25821185,30081025,36569089,36700161,36896769,38404097,40566785],"destination":[5046273,7012353,10289153,16449537,19005442,20709377,20840449,21692417,23461889,24707073,32178177,33161217,37224449,37879810,40239105,41156610],"define":[18939907,41091073],"den2":[589834,10878986,19333122,21168130],"directly":[25231362],"device":[30081025,36569089],"digit":[30015489,36831233],"delegate":[6684677,29229061,33357829,34275329],"don":[1441793,3538945,4653057,6029313,8388609,12320769,21561345,32899073,38928385],"dependencies":[25231361],"denorm":[17235969,40697857],"divisions":[13041665],"definition":[6422529,22544385,31850497],"determine":[8192001,9633793,13041665,18284545,19333123,19922945,21168131,31981569,39321601],"doesn":[5505025,6160385,24051713,25755649,32702465,35717121,37617666,40108033],"directcast":[12189697,34209793],"disable":[25231361],"designed":[2490369,7405569,23855105,33292289,38141953],"discard":[33161217],"dfd1c04p":[7733250,14090242,15269890,15663106,23134210,32702466,35717122,38010882],"depending":[5177345,7405569,33292289],"described":[18939905],"data":[1835009,3866625,7405569,18481153,19333122,21168130,25624577,26607632,30081025,33161230,33292289,36569089,38273025,40108033],"dim":[327681,524291,589825,720898,1048578,1179649,1310721,1507330,1703940,1835009,2031617,2097153,2228227,2490370,2555905,2752518,2818052,2883585,3014658,3080193,3145729,3211266,3276802,3473414,3604482,3735554,3997700,4128769,4390916,4587521,4653062,4980738,5046273,5177348,5308418,5373953,5505027,5636098,5767169,5898243,5963780,6029318,6094850,6160385,6291461,6422529,6946817,7012354,7077890,7340035,7405573,7471107,7602177,7733253,7864322,7929859,7995394,8060933,8126467,8192003,8323073,8388616,8454146,8585217,8716290,8847362,8978435,9109505,9175041,9240587,9371650,9437185,9502722,9568258,9633794,9764867,9830403,9961474,10027009,10158084,10223617,10289154,10551297,10682369,10878977,11141123,11272193,11337730,11403267,11665412,11730947,11796481,12124162,12189697,12320776,12517378,12582914,12713987,12779521,12845058,12910595,12976130,13041665,13107202,13369345,13500419,13631489,13697026,13828097,13893634,13959171,14024705,14090245,14221314,14352388,14417922,14483458,14614531,14745601,14811138,15073282,15138819,15269893,15335427,15532036,15597569,15663110,15794177,15990786,16056322,16121858,16187393,16252930,16384001,16449539,16908289,16973828,17039361,17104897,17235969,17563651,17760257,17825794,18022401,18153473,18284545,18481153,18546690,18677764,18743298,18808835,18874370,18939912,19005444,19070979,19529731,19660803,19726343,19791875,19857410,19922945,19988482,20054020,20250629,20447236,20709377,20840449,20905988,20971522,21037059,21233665,21430276,21561350,21626881,21692417,21757953,21823489,21889025,22216706,22347778,22478852,22544386,22675457,22937602,23134213,23199746,23461889,23527426,23592961,23658498,23724034,23855108,23986177,24051716,24248323,24576001,24641538,24707074,24772613,24838147,24903681,25100292,25165827,25296897,25362436,25493508,25559042,25690113,25755651,25952258,26148866,26279942,26345478,26411015,26476545,26542081,26607619,26673153,26738689,26869761,26935299,27066370,27262979,27459585,27525122,27656194,27787266,27852803,27983874,28114947,28180481,28246017,28377093,28508162,28639234,28770305,28901380,29163524,29294594,29360131,29425665,29491202,29687810,29753346,30015491,30081025,30277634,30343171,30408705,30539779,30736385,30867457,30932996,30998529,31064065,31260673,31522820,31588353,31653890,31719425,31850497,31981570,32047106,32178179,32309250,32440324,32505859,32571395,32636929,32702469,32768002,32833537,32899076,33030147,33095681,33161221,33292293,33423362,33816577,33882116,33947650,34013188,34144258,34209793,34406402,34537473,34603010,34799617,34930689,34996228,35192835,35258371,35323907,35454978,35520514,35586050,35651587,35717125,35913730,35979265,36044805,36241409,36438018,36569090,37027843,37093377,37224449,37289988,37355523,37486593,37552129,37617667,37683201,37748741,37879811,38010886,38141954,38273025,38338562,38535170,38600707,38731778,38928390,39059459,39321601,39387140,39518210,39780356,39845890,39911427,40042499,40239106,40370178,40697857,40828929,41025542,41091077,41156612,41287681,41418753],"distributed":[1048577,1835009,16252929,18481153,19333124,19988481,21168132,30277633],"den":[12845064,33423374,34996225,38731777],"delete":[3997700,8192004,9830404,11403268,20447236,25165828,34996228,36634626],"dev":[30081025,36569089],"detects":[25231361],"discarded":[8192001],"decimal":[4521985,8192001,9830403,14942209,16449537,22544387,25165825,30212097,36634626,40304641],"division":[1507329,3014657,6946817,7340033,7471107,8454146,8781826,9175043,9568257,11141121,11665409,11730945,12713986,13828097,14483458,14811138,15335425,17760258,17825793,18546689,18939905,19791873,19857409,20054017,20905985,20971521,23527425,24576001,24838145,25493505,27262977,27787265,28508161,29163521,31653889,32505857,33947649,34013185,35192833,35258369,35520513,39518209,40042497,41418753],"drive":[25231361],"digits":[8192001,13893636,19333129,19922946,20447236,21168137,24772609,30015496,34996225,36634630,36831233,38731777,41287682],"destroyed":[6291457,15925249,18939906],"diagram":[40108034],"different":[1245185,4194305,4325377,11993089,12517378,14286849,14680065,17629186,19333121,19922946,20774913,21102593,21168129,22740994,24379394,25427969,27131906,27656195,29294593,30081025,30605313,32243714,32964610,33685505,33751042,35782657,36110337,36372482,36569089,36831233,38862849,39452673],"dst":[38076421],"detected":[25231361],"devel":[25231361],"defining":[2490369,38141953],"default_reallocate":[9240582],"decremented":[29360130,29687810],"description":[131073,262145,655361,851969,1245188,1572865,1900545,2293761,2359297,2621441,2686977,3670017,4063233,4194307,4325379,4718593,4915201,5570561,6553601,6815745,7667713,8650753,10747905,10944516,11534339,11599873,11862017,11993089,12451841,12648449,13172739,14286851,14680065,15728641,15859713,16515076,17891329,18219009,18415617,19333121,20512769,20774913,21102593,21168131,22020097,22085633,22151169,23265281,23330817,24117251,24182785,25427969,25821188,26083329,26804225,27918337,29622273,30474241,30605313,30670849,33685507,34275331,34340865,35782657,36110339,36503553,36700161,36765697,36831235,36896769,36962305,38404097,38469633,38862849,39452675,40566786],"defined":[3276801,7995393,13172737,18939907,25231361,29491201],"declaration":[196609,917505,1376257,1769473,3407873,3932161,4521985,4849665,5701633,6225921,6619137,6881281,7143425,7208961,7536641,7798785,8912897,10354689,10420225,10485761,11075585,12058625,12255233,12386305,14155777,14548993,14876673,14942209,15007745,15400961,16646145,16711681,16777217,16842753,17301505,17432577,17498113,17694721,18350081,18612225,19136513,19202049,19267585,19398657,20316161,21299201,21495809,22282241,22413313,22609921,22872065,23003137,23920641,24313857,24444929,25034753,25886721,26214401,27721729,28442625,28573697,29556737,29818881,29949953,30212097,30801921,31391745,32112641,33488897,33619969,35389441,35848193,36175873,37158913,37421057,39190529,39583745,39649281,40173569,40632321,40763393,40960001,41222145],"delegates":[34275329],"developed":[39780353],"default_free":[9240582]} \ No newline at end of file diff --git a/docs/fti/FTI_101.json b/docs/fti/FTI_101.json index d6fce86..953fcb8 100644 --- a/docs/fti/FTI_101.json +++ b/docs/fti/FTI_101.json @@ -1 +1 @@ -{"examples":[327681,458753,589825,720897,851969,983041,1114113,1245185,1376257,1441793,1638401,1900545,1966081,2293761,2424833,2490369,2555905,2621441,2686977,2883585,3014657,3080193,3211265,3276801,3342337,3473409,3604481,3670017,3735553,3866625,4063233,4325377,4521985,4718593,4784129,5046273,5111809,5177345,5242881,5373953,5439489,5636097,5767169,5963777,6029313,6094849,6225921,6488065,6553601,6750209,6881281,6946817,7012353,7274497,7405569,7471105,7602177,7667713,7733249,7929857,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8716289,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9633793,9764865,9830401,9961473,10027009,10092545,10289153,10485761,10616833,10747905,10878977,10944513,11272193,11403265,11468801,11534337,11599873,11730945,11796481,11927553,11993089,12058625,12255233,12386305,12451841,12517377,12582913,12713985,12845057,13041665,13107201,13303809,13369345,13434881,13500417,13631489,13762561,13828097,13893633,14221313,14286849,14352385,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15073281,15138817,15269889,15335425,15400961,15728641,15794177,15859713,15990785,16121857,16187393,16252929,16318465,16449537,16515073,16711681,16842753,16908289,16973825,17039361,17235969,17432577,17563649,17629185,17694721,17891329,18087937,18219009,18350081,18546689,18677761,18743297,18808833,18939905,19070977,19136513,19267585,19398657,19529729,19595265,19791873,20054017,20185089,20250625,20316161,20381697,20512769,20578305,20643841,20709377,20774913,20840449,20905985,21037057,21102593,21299201,21364737,21430273,21561345,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22478849,22544385,22740993,22937601,23003137,23068673,23265281,23658497,23724033,23920641,23986177,24051713,24248321,24313857,24444929,24576001,24641537,24772609,24838145,24969217,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25690113,25952257,26017793,26148865,26214401,26279937,26345473,26542081,26673153,26804225,26869761,27000833,27197441,27394049,27525121,27656193,27721729,27787265,27918337,27983873,28049409,28114945,28180481,28442625,28704769,28770305,28835841,29032449,29097985,29229057,29294593,29491201,29556737,29687809,29753345,29818881,29949953,30015489,30081025,30212097,30277633,30539777,30605313,30670849,30998529,31064065,31129601,31391745,31457281,31522817,31588353,31653889,31719425,32047105,32112641,32309249,32374785,32505857,32636929,32702465,32899073,32964609,33357825,33488897,33554433,33619969,33816577,33882113,34013185,34144257,34209793,34275329,34340865,34406401,34603009,34668545,34734081,34799617,34865153,34930689,35061761,35192833,35258369,35520513,35651585,35913729,36044801,36110337,36241409,36306945,36503553,36700161,36765697,36831233,36896769,36962305,37224449,37289985,37486593,37552129,37683201,37814273,37879809,37945345,38010881,38273025,38207489,38338561,38404097,38535169,38469633,38731777,38797313,38862849,38993921,39124993,39256065,39321601,39452673,39583745,39780353,39911425,39976961,40042497,40108033,40239105,40566785,40632321,40828929,40894465,40960001,41025537,41156609,41222145,41287681,41353217,41418753],"easily":[20578305],"equal":[131074,393217,917506,1310723,1572866,1835010,2097154,4259843,4587523,4653058,4915202,5701633,6291458,6684674,7143426,7602177,7995393,8323074,8519681,8650753,9502721,10027009,10092545,10223618,10551298,11337729,12124161,12320770,12648450,13238275,13434881,13565953,14090241,14417921,15007746,15663105,16646145,17104897,17170434,18350081,18874370,19726337,20119553,20447233,20774916,20840450,21102594,21626881,23134209,24117250,25755649,26607618,27328513,27590657,27721729,27852801,28246018,28311553,28704770,28901377,28966913,29425665,30343169,30539777,30736386,30867457,30998529,31195139,31260673,31457281,31784962,31850498,33095682,33423361,33947649,34078721,34471938,35389441,35651586,35717123,37158913,37355521,38141955,38600707,39649281,39714817,39845890],"extension":[851970,1638402,4915205,14352386,17170437,22544386,37289986],"equivalence":[20185089],"exceptions":[7667714,9437186,14680066],"ending":[14090241],"expected":[327682,1114114,1966082,2621442,3080194,4325378,4718594,5963778,6094850,7012354,7929858,8454146,9306113,13434882,15138818,16318465,18219010,18350082,18677762,19136514,20250625,20578306,20643842,21364738,21889026,22282242,23724034,24051714,24641538,24969218,25952258,26345474,27197442,27394050,28180482,28704770,30277634,30539778,30670850,30998530,31064066,31653890,34144258,36044802,36765698,37224450,37486594,37945346,38731778,40894466,41156610,41222146],"exponentiation":[15990785,21823489,25559041,27656193,27983873],"error":[1376257,9306113,10878977,12779521,12910593,13369345,15794177,16121857,17170433,19529729,20054017,22740993,34209794,34865153,37683201,40828929],"exceptional":[38338561],"explicit":[786434,1507330,2031618,3932162,4456450,5832706,5898242,6815746,7208962,7798786,8060930,9699330,10420226,11010050,11665410,11862018,14024706,15466498,15925250,16777218,17301506,17367042,18022402,18153474,18284546,18415618,18481154,21233666,22872066,23199746,23461890,25886722,26083330,27066370,27131906,29163522,29622274,30408706,30474242,31916034,35586050,36438018,36569090,37617666,37748738,40173570,40370178,40697858,40763394,41091074],"expecting":[4718593,4915203,17170435,21889025,37945345],"exchange":[37224450],"element":[23986177],"exists":[7602177,10027009,13041665,14876673,15335425,16318466,17694721,23724033,25559041,27656193,33882114,41222145],"entry":[4915202,8454150,17170434,27983873],"equals":[131075,393224,917508,1310723,1572867,1835011,2097156,4259843,4587523,4653059,5701633,6291460,6684676,7929857,7995400,8519686,8650753,9502728,11337729,12124161,12648452,13238275,14090241,15007748,15663112,16646145,17104897,18874371,19726344,20119560,21626881,23134209,25755654,27852806,28246019,28311553,28901382,28966913,29425670,30736387,30867464,31195139,31260678,31784964,33095683,34078726,35389441,35717123,37158920,37355526,38141955,38600707,39649281,39714817,39845892],"equivalent":[1310721,4849666,13107201,14548993,17563649,18874369,27394049,28049409],"exp":[4915205,15990790,17170437,21102606,21823494,25559061,27656199,27983893,31719430,38207504,39256071],"exported":[34930689],"enumerator":[12124161,39714817,40435714],"examined":[9240577],"efficiency":[8650753,13238273,35717121],"ensures":[20185089],"exponent":[1179649,4915202,8650753,9306115,11141121,13041665,14876673,15990785,17170434,17235969,19070977,20250628,20316161,21102595,21823489,24772609,25559041,26279937,27656193,27983873,29949953,31719427,32112641,35717121,38076418,38207490,39059457,39256068,39911425,40828930,41025537],"entries":[4915201,8454146,17170433],"equality":[1310721,4259841,4587521,7143425,10223617,10551297,12320769,13238273,13565953,14417921,20447233,24117249,26607617,27328513,27590657,30343169,31195137,31850497,33423361,33947649,34471937,35717121,38141953,38600705],"endianness":[23986178,34930690],"example":[327682,458754,589826,720898,851970,983042,1114114,1245186,1376258,1441794,1638402,1900546,1966082,2293762,2424834,2490370,2555906,2621442,2686978,2883586,3014658,3080194,3211266,3276802,3342338,3473410,3604482,3670018,3735554,3866626,4063234,4325378,4521986,4718594,4784130,5046274,5111810,5177346,5242882,5373954,5439490,5636098,5767170,5963778,6029314,6094850,6225922,6488066,6553602,6750210,6881282,6946818,7012354,7274498,7405570,7471106,7602178,7667714,7733250,7929858,8126466,8192002,8257538,8323074,8388610,8454146,8585218,8716290,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9633794,9764866,9830402,9961474,10027010,10092546,10289154,10485762,10616834,10747906,10878978,10944514,11272194,11403266,11468802,11534338,11599874,11730946,11796482,11927554,11993090,12058626,12255234,12386306,12451842,12517378,12582914,12713986,12845058,13041666,13107202,13303810,13369346,13434882,13500418,13631490,13762562,13828098,13893634,14221314,14286850,14352386,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15073282,15138818,15269890,15335426,15400962,15728642,15794178,15859714,15990786,16121858,16187394,16252930,16318466,16449538,16515074,16711682,16842754,16908290,16973826,17039362,17235970,17432578,17563650,17629186,17694722,17891330,18087938,18219010,18350082,18546690,18677762,18743298,18808834,18939906,19070978,19136514,19267586,19398658,19529730,19595266,19791874,20054018,20250626,20316162,20381698,20512770,20578306,20643842,20709378,20774914,20840450,20905986,21037058,21102594,21299202,21364738,21430274,21561346,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22282242,22347778,22413314,22478850,22544386,22740994,22937602,23003138,23068674,23265282,23658498,23724034,23920642,23986180,24051714,24248322,24313858,24444930,24576002,24641538,24772610,24838146,24969218,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25690114,25952258,26017794,26148866,26214402,26279938,26345474,26542082,26673154,26804226,26869762,27000834,27197442,27394050,27525122,27656194,27721730,27787266,27918338,27983874,28049410,28114946,28180482,28442626,28704770,28770306,28835842,29032450,29097986,29229058,29294594,29491202,29556738,29687810,29753346,29818882,29949954,30015490,30081026,30212098,30277634,30539778,30605314,30670850,30998530,31064066,31129602,31391746,31457282,31522818,31588354,31653890,31719427,32047106,32112642,32309250,32374786,32505858,32636930,32702466,32899074,32964610,33357826,33488898,33554434,33619970,33816578,33882114,34013186,34144258,34209794,34275330,34340866,34406402,34603010,34668546,34734082,34799618,34865154,34930690,35061762,35192834,35258370,35520514,35651586,35913730,36044802,36110338,36241410,36306946,36503554,36700162,36765698,36831234,36896770,36962306,37224450,37289986,37486594,37552130,37683202,37814274,37879810,37945346,38010882,38076417,38273026,38207490,38338562,38404098,38469634,38535170,38731778,38797314,38862850,38993922,39124994,39256066,39321602,39452674,39583746,39780354,39911426,39976962,40042498,40108034,40239106,40566786,40632322,40828930,40894466,40960002,41025538,41156610,41222146,41287682,41353218,41418754],"export":[23986177,34930691],"endian":[1376257,23986182,33292290,34930694],"exist":[4915201,17170433,25559041,27656193,33882114,36306946],"efficiently":[3342337,4915203,17170435,25231361,30081025],"extremely":[30015489],"empty":[31719425],"expptr":[31719430],"enb":[4915201,17170433,24641544,26738693],"earlier":[20578305],"extra":[5177345,14614529,20578305,22937601,24576001,33292289,40108033],"easy":[28442625,31588353],"end":[1310721,4259841,4587521,4784129,8126467,8650753,10485762,12058626,12124161,13238273,14090241,14286849,16646145,17170433,20578305,21626881,22347777,23134209,31195137,35717121,38141953,38600705,39649281],"entire":[1966081,8454145,13369345,16908289,19136513,20250625,35520513],"exclusive":[2621441,4915203,6094849,17170435,39976963],"excluding":[8388609,14221313,16842753,30605313,34734081,40566785],"exact":[3735553,4915202,7471105,17170434,20578305,24576002,38731778,41353217],"exposes":[131073,1310721,1572865,1835009,2359297,3407873,4259841,4587521,4653057,4915201,5308417,5570561,5701633,8650753,9568257,11141121,11337729,12124161,12910593,13172737,13238273,13565953,14090241,14417921,16056321,16646145,17104897,17170433,18874369,19857409,20185089,20447233,21626881,23134209,23592961,27328513,27590657,28246017,28311553,28377089,28639233,28966913,30343169,30736385,31195137,32243713,33095681,33423361,33947649,35389441,35717121,38141953,38600705,39649281,39714817],"established":[589825,2490369],"exponents":[8650753,35717121,38076417],"exactly":[4718594,4915206,7602177,10027009,13041666,14614529,15335426,17170438,17694722,21889026,31719425,37945346,40108033],"exceeding":[14221313,30605313],"efficient":[29097985]} \ No newline at end of file +{"examples":[327681,524289,589825,720897,786433,1048577,1114113,1179649,1310721,1507329,1703937,1835009,2031617,2097153,2228225,2490369,2555905,2752513,2818049,2883585,3014657,3080193,3145729,3211265,3276801,3473409,3604481,3735553,3801089,3997697,4128769,4390913,4587521,4653057,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5505025,5636097,5767169,5898241,5963777,6029313,6094849,6160385,6291457,6422529,6946817,7012353,7077889,7340033,7405569,7471105,7602177,7733249,7864321,7929857,7995393,8060929,8126465,8192001,8323073,8388609,8454145,8585217,8716289,8781825,8847361,8978433,9109505,9175041,9240577,9371649,9437185,9502721,9568257,9633793,9764865,9830401,9961473,10027009,10158081,10223617,10289153,10551297,10682369,10878977,11010049,11141121,11272193,11337729,11403265,11665409,11730945,11796481,12124161,12189697,12320769,12517377,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13369345,13500417,13631489,13697025,13828097,13893633,13959169,14024705,14090241,14221313,14352385,14417921,14483457,14614529,14745601,14811137,15073281,15138817,15269889,15335425,15466497,15532033,15597569,15663105,15794177,15925249,15990785,16056321,16121857,16187393,16252929,16384001,16449537,16908289,16973825,17039361,17104897,17235969,17563649,17760257,17825793,18022401,18153473,18284545,18481153,18546689,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19529729,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20250625,20447233,20709377,20840449,20905985,20971521,21037057,21233665,21364737,21430273,21561345,21626881,21692417,21757953,21823489,21889025,22216705,22347777,22478849,22544385,22675457,22806529,22937601,23134209,23199745,23461889,23527425,23592961,23658497,23724033,23855105,23986177,24051713,24248321,24510465,24576001,24641537,24707073,24772609,24838145,24903681,25100289,25165825,25231361,25296897,25362433,25493505,25559041,25690113,25755649,25952257,26148865,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26869761,26935297,27066369,27262977,27459585,27525121,27656193,27787265,27852801,27983873,28114945,28180481,28246017,28377089,28508161,28639233,28770305,28835841,28901377,29163521,29294593,29360129,29425665,29491201,29687809,29753345,30015489,30081025,30277633,30343169,30408705,30539777,30736385,30867457,30932993,30998529,31064065,31129601,31260673,31522817,31588353,31653889,31719425,31850497,31981569,32047105,32178177,32309249,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,33030145,33095681,33161217,33292289,33423361,33816577,33882113,33947649,34013185,34144257,34209793,34406401,34471937,34537473,34603009,34799617,34930689,34996225,35192833,35258369,35323905,35454977,35520513,35586049,35651585,35717121,35913729,35979265,36044801,36241409,36438017,36569089,36634625,37027841,37093377,37224449,37289985,37355521,37486593,37552129,37617665,37683201,37748737,37814273,37879809,38010881,38141953,38273025,38338561,38535169,38600705,38731777,38928385,39059457,39321601,39387137,39518209,39714817,39780353,39845889,39911425,39976961,40042497,40239105,40304641,40370177,40697857,40828929,41025537,41091073,41156609,41287681,41418753],"easily":[18939905],"equal":[131074,458753,851970,1245187,1572866,1900546,2293762,4194307,4325379,4718594,6553602,6815746,7012354,7274497,7471105,7667713,8257537,8519682,9175041,9306114,9633793,10747905,10944513,11534337,11927554,11993089,12648450,13172737,13238274,14286851,14417921,14680065,15728642,16318465,16515073,17956865,18219010,18415617,18874372,19005441,19333122,19529730,19988482,20381697,20774913,21102593,21168130,21626881,21954561,23330818,24117249,24182785,25427969,25821185,26345474,27000833,27197442,27394049,27590657,28049410,28311553,28377089,28966914,29622274,30605313,31981569,32899073,33030146,33685507,34340866,35061761,35782657,36110339,36306945,36700161,36831235,36896769,36962306,37945346,38404097,38469634,38862849,38993921,39124993,39256065,39452675,40566785],"extension":[1179650,2031618,13697026,19333125,21168133,27459586,33095682],"equivalence":[25231361],"exceptions":[8454146,8781826,12713986],"ending":[13172737],"expected":[524290,1703938,2752514,2818050,3473410,4390914,5505026,5963778,6291458,7405570,8060930,9764866,9830401,14352386,14417922,15532034,15925249,18677762,18808834,18939906,19005442,19070978,19726338,20054018,20250626,22544385,25100290,25362434,25493506,25559042,26279938,26345474,26411010,27852802,28377090,28901378,29163522,30932994,31522818,32440322,32899074,33292290,33882114,36044802,37289986,37748738,37879810,39387138,39780354,41025538,41156610,41287682],"exponentiation":[16187393,23658497,23855105,24051713,25755649],"error":[3997697,9830401,11206657,11403265,11862017,12124161,15663105,16973825,20447233,21168129,21430273,25165825,32178178,34996225,36634625,38010881],"exceptional":[41091073],"explicit":[917506,1376258,1769474,3932162,4849666,5701634,6225922,6881282,7143426,7536642,7798786,8912898,10420226,10485762,11075586,12386306,14155778,14876674,16646146,16711682,16777218,16842754,17432578,17498114,17694722,18612226,19136514,19202050,19267586,22282242,22609922,23003138,25886722,26214402,28442626,28573698,29556738,29818882,29949954,30801922,33488898,35389442,35848194,36175874,37421058,39190530,40173570,40632322,40763394,41222146],"expecting":[5505025,19333123,20054017,21168131,29163521],"exchange":[37289986],"element":[26607617],"exists":[7471105,9175041,13828097,14483457,14811137,15925250,17760257,24051713,25362433,25755649,37617666,39780353],"entry":[9764870,19333122,21168130,23855105],"equals":[131075,458760,851972,1245187,1572867,1900548,2293763,4194307,4325379,4718595,6553604,6815748,7274502,7667713,8060929,8257544,10747905,10944513,11534337,12648452,13172737,14286851,15728644,16318472,16515073,17956872,18219011,18415617,20381704,21954568,23330819,24117249,24182785,25821185,27000838,27394056,27590662,28311558,29622276,33685507,34340867,35061766,36110339,36306950,36700161,36831235,36896769,36962307,38404097,38469636,38993926,39125000,39256070,39452675,40566785],"equivalent":[1245185,5242882,12845057,14221313,18219009,18743297,25100289,33423361],"exp":[16187398,19333125,19529742,21168133,23658502,23855125,24051733,25755655,30015494,30998535,35586064],"exported":[33161217],"enumerator":[11534337,38404097,40894466],"examined":[8192001],"efficiency":[10944513,14286849,39452673],"ensures":[25231361],"exponent":[4521985,9830403,10944513,11599873,13828097,14483457,16187393,17235969,18546689,19333122,19529731,21168130,22544388,23527425,23592961,23658497,23855105,24051713,25755649,27787265,30015491,30998532,31653889,34275329,35520513,35586050,36634626,39452673,39518209,40108034,40697857],"entries":[9764866,19333121,21168129],"equality":[1245185,4194305,4325377,8519681,9306113,11927553,11993089,13238273,14286849,14680065,20774913,21102593,25427969,27197441,28049409,28966913,30605313,33685505,35782657,36110337,36831233,37945345,38862849,39452673],"endianness":[26607618,33161218],"example":[327682,524290,589826,720898,786434,1048578,1114114,1179650,1310722,1507330,1703938,1835010,2031618,2097154,2228226,2490370,2555906,2752514,2818050,2883586,3014658,3080194,3145730,3211266,3276802,3473410,3604482,3735554,3801090,3997698,4128770,4390914,4587522,4653058,4980738,5046274,5111810,5177346,5308418,5373954,5439490,5505026,5636098,5767170,5898242,5963778,6029314,6094850,6160386,6291458,6422530,6946818,7012354,7077890,7340034,7405570,7471106,7602178,7733250,7864322,7929858,7995394,8060930,8126466,8192002,8323074,8388610,8454146,8585218,8716290,8781826,8847362,8978434,9109506,9175042,9240578,9371650,9437186,9502722,9568258,9633794,9764866,9830402,9961474,10027010,10158082,10223618,10289154,10551298,10682370,10878978,11010050,11141122,11272194,11337730,11403266,11665410,11730946,11796482,12124162,12189698,12320770,12517378,12582914,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13369346,13500418,13631490,13697026,13828098,13893634,13959170,14024706,14090242,14221314,14352386,14417922,14483458,14614530,14745602,14811138,15073282,15138818,15269890,15335426,15466498,15532034,15597570,15663106,15794178,15925250,15990786,16056322,16121858,16187394,16252930,16384002,16449538,16908290,16973826,17039362,17104898,17235970,17563650,17760258,17825794,18022402,18153474,18284546,18481154,18546690,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19529730,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20250626,20447234,20709378,20840450,20905986,20971522,21037058,21233666,21364738,21430274,21561346,21626882,21692418,21757954,21823490,21889026,22216706,22347778,22478850,22544386,22675458,22806530,22937602,23134210,23199746,23461890,23527426,23592962,23658498,23724034,23855106,23986178,24051714,24248322,24510466,24576002,24641538,24707074,24772610,24838146,24903682,25100290,25165826,25231361,25296898,25362434,25493506,25559042,25690114,25755650,25952258,26148866,26279938,26345474,26411010,26476546,26542082,26607620,26673154,26738690,26869762,26935298,27066370,27262978,27459586,27525122,27656194,27787266,27852802,27983874,28114946,28180482,28246018,28377090,28508162,28639234,28770306,28835842,28901378,29163522,29294594,29360130,29425666,29491202,29687810,29753346,30015491,30081026,30277634,30343170,30408706,30539778,30736386,30867458,30932994,30998530,31064066,31129602,31260674,31522818,31588354,31653890,31719426,31850498,31981570,32047106,32178178,32309250,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32899074,33030146,33095682,33161218,33292290,33423362,33816578,33882114,33947650,34013186,34144258,34209794,34406402,34471938,34537474,34603010,34799618,34930690,34996226,35192834,35258370,35323906,35454978,35520514,35586050,35651586,35717122,35913730,35979266,36044802,36241410,36438018,36569090,36634626,37027842,37093378,37224450,37289986,37355522,37486594,37552130,37617666,37683202,37748738,37814274,37879810,38010882,38141954,38273026,38338562,38535170,38600706,38731778,38928386,39059458,39321602,39387138,39518210,39714818,39780354,39845890,39911426,39976962,40042498,40108033,40239106,40304642,40370178,40697858,40828930,41025538,41091074,41156610,41287682,41418754],"exe":[25231366],"export":[26607617,33161219],"endian":[3997697,26607622,33161222,35127298],"exist":[19333121,21168129,24051713,25755649,31850498,37617666],"efficiently":[3735553,19333123,21168131,25952257,32047105],"extremely":[22216705],"empty":[30015489],"expptr":[30015494],"enb":[19333121,21168129,26017797,26411016],"earlier":[18939905],"extra":[5177345,13893633,18939905,19922945,24772609,35127297,38731777],"easy":[30081025,36569089],"end":[1245185,4194305,4325377,4980737,9240579,10551298,10944513,11534337,12779522,13172737,14286849,14614529,16515073,18939905,21168129,23724033,24117249,25231361,25821185,33685505,36110337,36831233,39452673,40566785],"entire":[1703937,9764865,12124161,16449537,19726337,22544385,40304641],"exclusive":[2818049,5963777,19333123,21168131,35323907],"excluding":[7733249,14090241,15269889,23134209,32702465,35717121],"exact":[4128769,7864321,18939905,19333122,19922946,21168130,39845889,41287682],"exposes":[131073,1245185,1572865,2293761,2359297,2621441,4063233,4194305,4325377,4718593,5570561,7667713,10747905,10944513,11534337,11599873,11862017,11993089,12451841,13172737,14286849,14680065,15859713,16515073,18219009,18415617,19333121,20512769,20774913,21102593,21168129,22085633,22151169,23330817,24117249,24182785,25231361,25427969,25821185,26804225,30474241,30605313,33685505,34340865,35782657,36110337,36700161,36765697,36831233,36896769,36962305,38404097,38862849,39452673,40566785],"established":[786433,2097153],"exponents":[10944513,39452673,40108033],"exactly":[5505026,7471105,9175041,13828098,13893633,14811138,17760258,19333126,20054018,21168134,29163522,30015489,38731777],"enter":[25231361],"exceeding":[14090241,23134209],"efficient":[27656193],"enable":[25231363]} \ No newline at end of file diff --git a/docs/fti/FTI_102.json b/docs/fti/FTI_102.json index 8b9c47f..bcc8f90 100644 --- a/docs/fti/FTI_102.json +++ b/docs/fti/FTI_102.json @@ -1 +1 @@ -{"fit":[3276802,5373954,9633794,9961474,15859714,17235969,17629186,18939906,26017794,27721731,29229058,32309250,32899074,35258370,36831234,39911425],"feature":[23986177],"formatted":[4063235,6225923,8388611,9109507,13762563,14221315,15794179,16121859,16842755,20054019,23920643,30605315,34406403,34734083,34865155,40566787],"filename":[9109506,13762562],"fall":[38076417],"failing":[29097985],"following":[131073,1310721,1572865,1835009,2359297,3407873,4259841,4587521,4653057,4915201,5308417,5570561,5701633,7602177,8650753,9568257,10027009,11141121,11337729,12124161,12910593,13172737,13238273,13565953,14090241,14417921,15335425,16056321,16646145,17104897,17170433,17694721,18874369,19857409,20447233,21626881,23134209,23592961,27328513,27590657,28246017,28311553,28377089,28639233,28966913,30015490,30343169,30736385,31195137,32243713,33095681,33423361,33947649,34930689,35389441,35717121,38141953,38600705,39649281,39714817],"free":[327682,720898,1114114,1769473,1900546,1966082,2621442,3080194,4128775,4325378,4718594,4784130,4915212,5177348,5505025,5636098,5701633,5963778,6094850,6160385,6356993,6553602,7012354,7405570,7929858,8126470,8388610,8454146,8585228,8650753,8847364,8978433,9371650,11337729,12124161,12255234,12582914,12713986,13369346,13434882,13959169,14090241,14221314,14286850,14614530,14745601,15073282,15138818,16187394,16318465,16646145,16842754,16908292,17039362,17104897,17170444,18087938,18219010,18350082,18677762,19136514,20250626,20578306,20643842,20709378,20840450,21037058,21102594,21364738,21626881,21889026,22282242,22347778,22413314,22937604,23068674,23134209,23527431,23658498,23724034,23986180,24051714,24641538,24903681,24969218,25362433,25952258,26345474,26935302,27197442,27394050,27525122,28114946,28180482,28311553,28442626,28704770,28966913,29032450,29491201,29818882,30277634,30539778,30605314,30670850,30998530,31064066,31522818,31588354,31653890,31719426,32047106,32833543,32964609,33030151,34013188,34144258,34209796,34340866,34734082,34930692,35192834,35323905,35389441,35520514,36044802,36765698,37027841,37093377,37224450,37421057,37486594,37552130,37945346,38469633,38731778,39256066,39452674,39649281,39714817,40108034,40304647,40566786,40894466,41156610,41222146],"form":[4915206,8388609,9240578,9306113,10289153,14221313,16842753,17170439,20250625,28377089,30605313,34734081,35520513,37683201,40108033,40566785],"first":[458753,851969,983041,1114113,1179649,1245185,1638401,1966081,2424833,2621441,3080193,3342337,3866625,4325377,4718593,5111809,5767169,5963777,6094849,7012353,7274497,7471105,7536641,7667713,7733249,7929857,8388609,8716289,9043969,9240577,9437185,10092545,10485763,10616833,11272193,11468801,11534337,11599873,11927553,12058627,12517377,13303809,13434881,13500417,13828097,13893633,14352385,14680065,14811137,14942209,15138817,15269889,15728641,16318465,16449537,16842753,17039361,18350082,18677761,18743297,18808833,19136513,20578305,20643841,20774913,22020097,22085633,22282241,22413313,22544385,23986189,24444929,24641537,24969217,25231361,25690113,25952257,26345473,26542081,26673153,26738689,27000833,27197441,27721729,28573697,28770305,29687809,30081025,30212097,30277633,30539777,30670849,30801921,30998529,31129601,31457281,31653889,31719425,32374785,32702465,33357825,33554433,33619969,33816577,33882113,34930700,35913729,36044801,36175873,36241409,36503553,36700161,36765697,37224449,37289985,37486593,37552129,37879809,38010881,38338562,38862849,38993921,39124993,39976961,40632321,40894465,41287681,41418753],"filled":[4915201,17170433,33161218],"free_function":[6619141,8126476,8585224,39059457],"fibonacci":[2293762,4915201,17170433,18546693,25165826,32505861],"fields":[1310721,3407874,4063235,4587521,6225923,9109507,13172738,13762563,14090241,17170433,19857410,23920643,28377090,28639234,34406403,38600705],"fits":[3276802,4915212,5373954,8847361,9961474,15859714,17170444,17629186,18939906,26017794,29229058,31195137,32309250,32899073,34013185,35258370,36831234,39780356],"file":[131077,1376285,4063233,4587530,4915201,6225921,9109518,9240596,9306132,10878998,12648452,13565955,13762574,15794177,16121874,17170433,19464207,19529756,19857412,20185089,22741014,23920641,25755658,29360130,30605313,31850510,34406401,34865170,37158915,37683226,38928387,39059458,40828945],"friends":[1769473,4128769],"followed":[1179650],"fills":[4915201,17170433,33161217],"fail":[20250625],"free_func_ptr":[8126469,8585221],"fiddling":[2424833,6029313,10485761,11272193,12058625,12451841,12517377,16515073,20905985,26869761,38273025,39976961],"format":[1376258,4063233,4915202,5177345,6225921,8388609,9109505,10878977,13762561,14221313,15794177,16121857,16842753,17170434,20054017,23920641,23986177,30605313,34406401,34734081,34865153,34930689,40566785],"float":[458753,589825,1441793,2490369,3014658,3211266,3276802,3670018,3735553,4521986,4915203,5373954,5701633,5767170,7667714,8192002,8257538,8650753,8716290,8978433,9306114,9437186,9764866,9830401,10944513,11403266,11927554,11993091,12386306,13303811,13369346,13500418,14680066,14942210,15073283,15859714,17170435,17235970,18808834,18939906,19922946,20250625,20316161,21102593,21757954,22020098,22085634,23003137,23265283,24248323,24838146,25296897,26017794,26214402,27787265,29097985,30081026,30212097,31391745,32309250,32374786,32636929,32964609,33357826,34668546,35061761,35913730,36241411,36962306,37879810,38207490,38404097,39256067,39321603,39911425,40632323,40828929,40960001,41353218],"fmt":[4063237,6225925,8388614,9109509,13762565,14221318,15794181,16121861,16842758,20054021,23920645,30605318,34406405,34734085,34865157,40566789],"factor":[4915201,17170433,35651586],"fnsub1":[4915201,17170433,32505880],"faster":[10092545,20774913,21889025,31457281,37945345],"function":[393217,458753,524289,720897,851969,983041,1048577,1114113,1245185,1376257,1638401,1703939,1769474,1966081,2162689,2293761,2424833,2555905,2686977,2752513,2883585,3014657,3080194,3276801,3801091,4063233,4128769,4390913,4784129,4849665,4915213,5111809,5177345,5373953,5701633,5963777,6029314,6225921,6356993,6488065,6553602,6750209,6881281,7012354,7274497,7405569,7471105,7536643,7602177,7929859,7995393,8126476,8388609,8454145,8519681,8585220,8650753,8781825,8847362,8978433,9043969,9109505,9240577,9306114,9371649,9502721,9633793,9895937,9961473,10027009,10092545,10485762,10878977,10944513,11206657,11272193,11337729,11468801,11599873,11730945,12058626,12124161,12386305,12451841,12517378,12582913,12713986,13041665,13107201,13303809,13369346,13434881,13500417,13631490,13697025,13762561,13828097,14090242,14221313,14286851,14352385,14548993,14614530,14745601,14876673,14942209,15073281,15138817,15335425,15663105,15794177,15859713,16121857,16187393,16252929,16318467,16384001,16515073,16646145,16711681,16842753,16908290,16973825,17039361,17104897,17170445,17235969,17563649,17629185,17694721,17956865,18350082,18939905,19136515,19267585,19529729,19726337,19922945,20054017,20119553,20185089,20250628,20316161,20381697,20512769,20578305,20643842,20774914,20840449,20905986,20971521,21037058,21102594,21561345,21626881,21889025,22282243,22347777,22413313,22544385,22609923,22740993,22937601,23068674,23134209,23658498,23724033,23789569,23920641,24576002,24641537,25427969,25493505,25624577,25755649,25821185,25952258,26017793,26214401,26345474,26476545,26738691,26869761,27197441,27394049,27525122,27721729,27787265,27852801,27983876,28049409,28180482,28311553,28573699,28770305,28835841,28901377,28966913,29032450,29229057,29294593,29360129,29425665,29491201,29818881,29884417,30015489,30212097,30277633,30539778,30605313,30801923,30867457,30998531,31064066,31260673,31457281,31522818,31719426,31981569,32047106,32309249,32374785,32440321,32505857,32636929,32899074,33554433,33751041,33882114,34078721,34144257,34209794,34340865,34406401,34537473,34603009,34734083,34799617,34865153,34930690,35258369,35389441,35520513,35651585,35782657,36044802,36110337,36175875,36241409,36306945,36700161,36765697,36831233,36962305,37158913,37289985,37355521,37552129,37683201,37814274,37945345,38207490,38273025,38731777,39256065,39452673,39518209,39649281,39714817,39780353,39911425,39976961,40108034,40435713,40566787,40828929,41222145],"fully":[131073,4587521,33095681,38600705],"fast":[21889025,28114945,37945345],"functions":[327681,851969,1114113,1638401,1703937,1769473,1900545,1966081,2293761,2621441,3014657,3080194,3276801,3473409,3801089,4063233,4128769,4325377,4718593,4784129,4915202,5111809,5177345,5373953,5963777,6094849,6225921,6553604,6881282,7012354,7405569,7602177,7536641,7667714,7929857,8126473,8388609,8454145,8585219,8650753,8781825,9043969,9109505,9240577,9371649,9437186,9961473,10027009,10616833,11993089,12582913,12713990,13107202,13434881,13631489,13762561,13828097,14221314,14286849,14352385,14548994,14680066,15073282,15138817,15335425,15794177,15859713,16121857,16187393,16318465,16842753,16973825,17039361,17170434,17563650,17629185,17694721,18087937,18219009,18350081,18546689,18677761,18939905,19136513,20054017,20185090,20578305,20643841,21037057,21364737,21889025,21954561,22282241,22347777,22413313,22544385,22609921,22937601,23068673,23658501,23724033,23920641,24051713,24248321,24576003,24641537,24969217,25165825,25493506,25952258,26017793,26214401,26345473,26738689,27197441,27394049,27525121,27721729,28049410,28180481,28573697,28704769,28770305,29032449,29229057,29687809,29818881,30015489,30277633,30539777,30605314,30670849,30801921,30998529,31064065,31522821,31653889,32047109,32309249,32505857,33292290,33488897,33816577,33882113,34013185,34144257,34406401,34734081,34799617,34865153,35258369,35520513,35651585,35717121,36044802,36175873,36765697,36831233,36962305,37224449,37289985,37486593,37552129,37814273,37945345,38010881,38207489,38338561,38731777,39256066,39321601,39780353,40566785,40894465,41156609,41222145,41418753],"floats":[589825,1441793,2490369,4521985,5111809,8978433,9306113,9830401,10944513,17235969,20250625,23003137,26148865,26214401,27787265,29097985,30081025,31391745,31719425,32964609,35061761,36962305,38207489,38404097,40828929],"fromintptr":[16384005,33095681,38600705],"factors":[983041,3604481,4915201,11599873,17170433,26673153,31129601],"frexp":[21102593,38207489],"floating":[589827,1179649,1441794,2228225,2490370,3014658,3211268,3670020,4521986,5701633,5767172,7667716,8192004,8257540,8650756,8716294,8978434,9437186,9764868,9830404,10944514,11403266,11927556,11993092,12386306,13303810,13369346,13500420,14680070,14942210,17235970,18808838,20250626,22020100,22085636,23003138,23265282,24248324,24838146,27787266,29097986,29884418,30081028,31391746,31719426,32374786,32964614,33357830,34668546,35061762,35717122,35913732,36241412,36962306,37879812,38207490,38404098,39059458,39256066,39321604,40632326],"finalize":[5701633,8650753,11337729,12124161,14090241,16646145,17104897,21626881,23134209,28311553,28966913,35389441,39649281,39714817],"floor":[2555907,4915209,11730947,17170441,17891331,19136514,19267588,25427972,29556741,29949955,38797315,39321602,41025541],"follow":[1],"fetch":[33292289],"future":[4259841,13238273,22675457],"fraction":[4915202,9240578,17170434,26214401,31719425,35520514,36962305,41222145],"factorial":[3473409,4915203,17170435,29687809,33488897],"fat":[20185089],"fclose":[1376258,9109506,9240578,9306114,10878980,13762562,16121858,19529730,22740994,34865154,37683202,40828929],"functionality":[20185089,21626881,39059457],"field":[4915201,8781825,10289154,10354690,11075586,11796482,17170433,19988482,27918338,38928386,40239106],"formulas":[2293761,18546689,25165825,32505857],"fisrt":[8192001,20578305],"false":[393217,7012353,7143425,7995393,8519681,9502721,10223617,10551297,12320769,15663105,19464193,19726337,20119553,21692417,24117249,24707073,25755649,26607617,27262977,27852801,28901377,29425665,30867457,31260673,31850497,34078721,34471937,34996225,35848193,36044801,36634625,37158913,37224449,37355521,37814273,38666241],"foo":[8781825,14286849],"follows":[40828929]} \ No newline at end of file +{"fit":[2883586,5373954,8585218,9109506,15794178,17039362,17235969,18153474,21626883,26673154,28770306,30867458,31064066,33816578,34799618,40697857],"feature":[26607617],"formatted":[4653059,6029315,7733251,8388611,12320771,14090243,15269891,15663107,16973827,21430275,21561347,23134211,32702467,35717123,38010883,38928387],"folder":[25231367],"filename":[8388610,12320770],"fall":[40108033],"failing":[27656193],"following":[131073,1245185,1572865,2293761,2359297,2621441,4063233,4194305,4325377,4718593,5570561,7471105,7667713,9175041,10747905,10944513,11534337,11599873,11862017,11993089,12451841,13172737,14286849,14680065,14811137,15859713,16515073,17760257,18219009,18415617,19333121,20512769,20774913,21102593,21168129,22085633,22151169,22216706,23330817,24117249,24182785,25427969,25821185,26804225,30474241,30605313,33161217,33685505,34340865,35782657,36110337,36700161,36765697,36831233,36896769,36962305,38404097,38862849,39452673,40566785],"free":[524290,1048578,1441793,1703938,1835010,2752514,2818050,3473410,3538951,4390914,4980738,5177348,5505026,5832705,5898244,5963778,6094850,6160386,6291458,6356993,6750209,7405570,7602178,7667713,7733250,8060930,9240582,9764866,10027009,10158092,10747905,10944513,11534337,12124162,12976130,13172737,13303809,13893634,13959170,14024705,14090242,14352386,14417922,14614530,15073282,15269890,15532034,15925249,16252930,16384002,16449540,16515073,16908290,18415617,18481154,18677762,18808834,18939906,19005442,19070978,19333132,19464199,19529730,19660802,19726338,19988482,20054018,20185089,20250626,21037058,21168140,21823490,22020102,22478850,22544386,23134210,23724034,23986178,24117249,24182785,24772612,24903682,25100290,25296898,25362434,25493506,25559042,25821185,26279938,26345474,26411010,26542082,26607620,27852802,28114945,28377090,28901378,29032449,29163522,29294594,30015490,30081026,30277634,30343169,30736385,30932994,30998530,31457287,31522818,31588354,32178180,32440322,32571396,32702466,32833538,32899074,33161220,33226753,33292290,33882114,34078721,34865153,35717122,35913730,36044802,36438018,36569090,36700161,36896769,37093378,37289986,37355521,37748738,37879810,38207495,38273026,38404097,38731778,38797319,39387138,39780354,40304642,40566785,41025538,41156610,41287682],"form":[7733249,8192002,9437185,9830401,14090241,15269889,19333126,21168135,22544385,23134209,26804225,32702465,34996225,35717121,38731777,40304641],"first":[327681,589825,1114113,1179649,1703937,2031617,2228225,2752513,2818049,3276801,3473409,3735553,4259841,4390913,4521985,5111809,5505025,5636097,5963777,6291457,7405569,7733249,7864321,7929857,7995393,8060929,8126465,8192001,8323073,8454145,8781825,8978433,9633793,9961473,10223617,10551299,10878977,11010049,11337729,12517377,12582913,12713985,12779523,12910593,13107201,13369345,13500417,13697025,14352385,14417921,15138817,15269889,15466497,15532033,15597569,15925249,15990785,16908289,17563649,18022401,18677761,18874369,18939905,19005442,19726337,20250625,21626881,21757953,22347777,22806529,23199745,25296897,25493505,25952257,26017793,26279937,26411009,26607629,26935297,27459585,27525121,27852801,28180481,28377089,28704769,29294593,29360129,29425665,29491201,29687809,29753345,30015489,30408705,30539777,30932993,31981569,32047105,32440321,32899073,33095681,33161228,33292289,33882113,34144257,34406401,34471937,34537473,34603009,34734081,35323905,35454977,35651585,36044801,37289985,37552129,37617665,37814273,38338561,38535169,38600705,39059457,39387137,39714817,39976961,40501249,41025537,41091074,41156609],"filled":[19333121,21168129,38076418],"free_function":[6684677,9240588,10158088,34275329],"fibonacci":[2490370,17104901,19333121,21168129,26738690,38141957],"fields":[1245185,2621442,4325377,4653059,6029315,8388611,12320771,12451842,13172737,20512770,21168129,21561347,26804226,36110337,36765698,38928387],"fits":[2883586,5373954,5898241,9109506,15794178,17039362,18153474,19333132,21168140,26673154,28770306,30867458,31064066,32571393,33816578,34799617,34930692,36831233],"file":[131077,3997725,4325386,4653057,6029313,8192020,8388622,9830420,11403286,11993091,12320782,12648452,15663122,16973825,17629199,19333121,20447260,20512772,21168129,21561345,23134209,25165846,25231362,28311562,28966926,30146562,34275330,34996250,36634641,38010898,38928385,39124995,41353219],"friends":[1441793,3538945],"followed":[4521986],"fills":[19333121,21168129,38076417],"files":[25231361],"fail":[22544385],"free_func_ptr":[9240581,10158085],"fiddling":[2228225,5767169,8978433,10551297,12517377,12779521,13631489,16121857,21889025,25690113,35323905,37683201],"format":[3997698,4653057,5177345,6029313,7733249,8388609,11403265,12320769,14090241,15269889,15663105,16973825,19333122,21168130,21430273,21561345,23134209,26607617,32702465,33161217,35717121,38010881,38928385],"fresly":[25231361],"float":[327681,720898,786433,1310721,2097153,2883586,3145730,3211266,3604482,4128769,4587522,5373954,5636098,7667713,7929858,8454146,8716290,8781826,8847363,9371649,9502722,9830402,10027009,10682369,10944513,11272194,11337730,11796482,12124162,12582914,12713986,13369347,15597570,15794178,16252931,17235970,17563650,18087938,18153474,19333123,19529729,21168131,21233666,21692417,22544385,22937603,23199746,23592961,24707074,26869761,27525122,27656193,28246019,28639233,28835842,30408705,30867458,30998531,31064066,31260673,32047106,32309249,32636930,32768001,34144258,34406403,34537474,35454978,35586050,35979265,36241410,36634625,37224449,37355521,38600706,39059459,39845890,40370179,40697857],"fmt":[4653061,6029317,7733254,8388613,12320773,14090246,15269894,15663109,16973829,21430277,21561349,23134214,32702469,35717125,38010885,38928389],"factor":[19333121,21168129,33030146],"fnsub1":[19333121,21168129,38141976],"faster":[9633793,18874369,20054017,29163521,31981569],"function":[327681,393217,458753,589825,983041,1048577,1114113,1179649,1441794,1507329,1638403,1703937,1966081,2031617,2228225,2490369,2555905,2752513,2883585,2949121,3014657,3145729,3473410,3538945,3997697,4259843,4456449,4653057,4784131,4980737,5111809,5177345,5242881,5373953,5767170,5898242,6029313,6160386,6291457,6356993,6422529,6946817,7077889,7274497,7405570,7471105,7602177,7667713,7733249,7864321,7995393,8060931,8192001,8257537,8323073,8388609,8585217,8978433,9043969,9109505,9175041,9240588,9633793,9764865,9830402,9961473,10027009,10092545,10158084,10551298,10616833,10682369,10747905,10878977,10944513,11141121,11272193,11403265,11534337,12124162,12320769,12517378,12582913,12779522,12845057,12910593,13041666,13172738,13369345,13565953,13631489,13697025,13828097,13893634,13959169,14024705,14090241,14221313,14352385,14417921,14483457,14614531,14745601,14811137,15073282,15269889,15597569,15663105,15794177,15925251,16121857,16252929,16318465,16384001,16449538,16515073,16580609,16908289,16973825,17039361,17235969,17367041,17760257,17825793,17956865,18087937,18153473,18284545,18415617,18677762,18743297,18874370,18939905,19005442,19333133,19529730,19595265,19660802,19726339,19791873,19857409,19922946,19988481,20054017,20250627,20381697,20447233,20578307,20643841,20971521,21037058,21168141,21430273,21561345,21626881,21823489,21889025,21954561,22216705,22478850,22544388,23134209,23592961,23724033,23855108,24117249,24182785,24576001,24772609,24903682,24969217,25100289,25165825,25231361,25296897,25362433,25493506,25690114,25821185,26017795,26279938,26411009,26476545,26542081,26673153,26869761,27000833,27066369,27394049,27459585,27590657,28311553,28377090,28508161,28704771,28770305,28835841,28901378,29097985,29163521,29229057,29294593,29491201,29884417,30015490,30146561,30277634,30408705,30736385,30867457,30998529,31064065,31195137,31260673,31326209,31522818,31588354,31850497,31916033,31981569,32178178,32440321,32505857,32636929,32702467,32833538,32899075,33030145,33095681,33161218,33292290,33357825,33423361,33816577,33947649,34406401,34537473,34603009,34734083,34799618,34930689,34996225,35061761,35323905,35586050,35717123,35913729,36044801,36306945,36634625,36700161,36896769,37486594,37552129,37617666,37683201,37748737,38010881,38141953,38273025,38404097,38666241,38731778,38928385,38993921,39124993,39256065,39321601,39780353,40304641,40435713,40501251,40566785,40697857,40894465,41025537,41287681,41418753],"fully":[131073,4325377,36110337,36962305],"folders":[25231365],"fast":[20054017,29163521,37093377],"functions":[524289,1179649,1441793,1638401,1703937,1835009,2031617,2490369,2752513,2818049,2883585,3080193,3145729,3473410,3538945,4259841,4390913,4653057,4784129,4980737,5111809,5177345,5373953,5505025,5963777,6029313,6160388,6291457,7077890,7405570,7471105,7602177,7733249,7995393,8060929,8192001,8388609,8454146,8781826,8847361,9043969,9109505,9175041,9240585,9764865,10158083,10223617,10944513,12320769,12713986,12845058,12910593,13041665,13697025,13959169,14090242,14221314,14352385,14417921,14614529,14811137,15073286,15269889,15532033,15663105,15794177,15925249,16252930,16384001,16908289,16973825,17039361,17104897,17760257,18153473,18284545,18481153,18677761,18743298,18808833,18939905,19005441,19070977,19333122,19660801,19726337,19922947,20054017,20250625,20578305,21037057,21168130,21430273,21561345,21626881,21823489,22216705,22478853,22675457,22937601,23134210,23724033,24772609,24903681,25100289,25231362,25296897,25362433,25493505,25559041,26017793,26279938,26345473,26411009,26542081,26673153,26738689,27066370,27459585,27852801,28180481,28377089,28704769,28770305,28835841,28901377,29163521,29294593,29491201,29753345,30277637,30867457,30932993,30998530,31064065,31522817,31588357,31719425,32440321,32571393,32636929,32702465,32833537,32899073,33030145,33095681,33292290,33423362,33816577,33882113,34734081,34930689,35127298,35586049,35651585,35717121,36044801,37289985,37486593,37617665,37748737,37879809,38010881,38141953,38928385,39321601,39387137,39452673,39780353,39976961,40304641,40370177,40501249,41025537,41091073,41156609,41287681],"floats":[786433,1310721,2097153,4587521,5111809,9371649,9830401,10027009,10682369,17235969,22544385,24510465,26869761,27656193,28639233,28835841,30015489,32047105,32309249,32636929,32768001,35586049,35979265,36634625,37355521],"fromintptr":[17367045,36110337,36962305],"factors":[589825,3801089,10878977,19333121,21168129,21757953,29425665],"frexp":[19529729,35586049],"floating":[720900,786435,1310722,2097154,2162689,3145730,3211268,3604484,4521985,4587522,5636100,7667713,7929862,8454148,8716292,8781826,8847364,9371652,9502724,10027010,10682370,10944516,11272194,11337732,11796482,12124162,12582916,12713990,13369346,15597570,17235970,17563654,21233666,22544386,22937604,23199748,26869762,27525124,27656194,28246018,28639234,30015490,30998530,31326210,32047108,32309250,32636930,32768002,34144260,34275330,34406404,34537474,35454980,35586050,35979266,36241410,37355526,38600710,39059462,39452674,40370180],"finalize":[7667713,10747905,10944513,11534337,13172737,16515073,18415617,24117249,24182785,25821185,36700161,36896769,38404097,40566785],"floor":[3014659,11141123,15335427,19333129,19726338,20971524,21168137,24576004,34013187,35258373,35520515,39518213,40370178],"follow":[1,25231361],"fetch":[35127297],"finally":[25231361],"future":[4194305,14286849,25624577],"fraction":[8192002,19333122,21168130,28835841,30015489,32636929,39780353,40304642],"factorial":[3080193,19333123,21168131,28180481,31719425],"fat":[25231363],"fclose":[3997698,8192002,8388610,9830402,11403268,12320770,15663106,20447234,25165826,34996226,36634625,38010882],"functionality":[24117249,25231361,34275329],"field":[9043969,9437186,9895938,11468802,12189698,19333121,20119554,21168129,34209794,40828930,41353218],"formulas":[2490369,17104897,26738689,38141953],"fisrt":[8716289,18939905],"false":[458753,7274497,7405569,8257537,8519681,9306113,11927553,13238273,16318465,17629185,17956865,20381697,21954561,22740993,24379393,27000833,27131905,27197441,27394049,27590657,28049409,28311553,28966913,32243713,32964609,33292289,33751041,35061761,36306945,36372481,37289985,37486593,37945345,38993921,39124993,39256065],"foo":[9043969,14614529],"follows":[36634625]} \ No newline at end of file diff --git a/docs/fti/FTI_103.json b/docs/fti/FTI_103.json index e0674a1..b496029 100644 --- a/docs/fti/FTI_103.json +++ b/docs/fti/FTI_103.json @@ -1 +1 @@ -{"garbage":[5701633,8650753,11337729,12124161,14090241,16646145,17104897,21626881,23134209,28311553,28966913,35389441,39649281,39714817],"gmp_get_memory_functions":[4915201,8126469,8585223,17170433],"gmp_vsnprintf":[4915201,8388615,16842753,17170433],"gmp_version":[10289159,17170433,28377089],"generator":[720899,5636100,6160386,12255236,12713987,15073283,20709380,20840451,23658499,28114948,28442628,31588356,32047107,39059457,39452676,39649282],"gmp_vasprintf":[4915201,17170433,34734088,40566785],"grow":[16252929],"guess":[28442625,31588353],"gmp_lib":[327688,458767,589840,720907,851981,983055,1114132,1245196,1376267,1441809,1638413,1703939,1769476,1900553,1966100,2293773,2424857,2490387,2555929,2621454,2687002,2883599,3014676,3080212,3211286,3276819,3342364,3473420,3604491,3670032,3735566,3801091,3866645,4063245,4128772,4325390,4522001,4718618,4784157,4915203,5046282,5111823,5177354,5242897,5373971,5439505,5636111,5767191,5963784,6029331,6094862,6225933,6356996,6488077,6553612,6750230,6881299,6946837,7012369,7274511,7405577,7471121,7536643,7602196,7667736,7733271,7929881,8126475,8192024,8257557,8323088,8388621,8454162,8585221,8716313,8781833,8847385,8912926,8978451,9043979,9109517,9175063,9240587,9306123,9371659,9437202,9633804,9764886,9830423,9961488,10027024,10092563,10289156,10485779,10616843,10747923,10878991,10944533,11272217,11403284,11468817,11534346,11599887,11730972,11796486,11927574,11993113,12058643,12255247,12386312,12451860,12517397,12582935,12714002,12779522,12845084,12910595,13041680,13107225,13303824,13369358,13434889,13500436,13631498,13762573,13828112,13893654,14221325,14286871,14352399,14549013,14614542,14680090,14745613,14811146,14876690,14942224,15073305,15138841,15269907,15335442,15400979,15728661,15794189,15859731,15990798,16121867,16187401,16252941,16318482,16449557,16515095,16711706,16842767,16908309,16973842,17039368,17170440,17235982,17432586,17563669,17629200,17694736,17891356,18087945,18219023,18350106,18546699,18677774,18743315,18808857,18939923,19071002,19136536,19267610,19398673,19529739,19595276,19791902,20054027,20185089,20250641,20316172,20381711,20512796,20578312,20643866,20709387,20774931,20840459,20906002,21037083,21102606,21299222,21364744,21430300,21561363,21757971,21823504,21889050,21954570,22020117,22085655,22151196,22282266,22347799,22413338,22478866,22544397,22609923,22741005,22937610,23003157,23068695,23265294,23527427,23658516,23724058,23920653,23986193,24051720,24248345,24313877,24444947,24576022,24641556,24772634,24838158,24903687,24969230,25100300,25165835,25231381,25296913,25362449,25427990,25493523,25559060,25690132,25952276,26017811,26148879,26214406,26279962,26345498,26542090,26673172,26738691,26804250,26869781,26935298,27000853,27197466,27394074,27525131,27656210,27721738,27787283,27918342,27983892,28049434,28114955,28180491,28377091,28442637,28573699,28704794,28770315,28835866,29032459,29098017,29229072,29294618,29491218,29556764,29687820,29753354,29818889,29949978,30015501,30081049,30212111,30277658,30539801,30605329,30670862,30801923,30998554,31064077,31129620,31391765,31457301,31522828,31588361,31653902,31719440,32047122,32112666,32309267,32374800,32505869,32636942,32702485,32833539,32899084,32964629,33030147,33161218,33357848,33488908,33554446,33619988,33816591,33882126,34013212,34144276,34209808,34275345,34340884,34406413,34603036,34668558,34734093,34799634,34865165,34930703,35061781,35192847,35258384,35520530,35651598,35913751,36044817,36110358,36175875,36241427,36306957,36503562,36700177,36765726,36831248,36896796,36962318,37224465,37289997,37486618,37552139,37683211,37814281,37879831,37945370,38010893,38207502,38273045,38338580,38404113,38469654,38535187,38731784,38797342,38862858,38993930,39059457,39125011,39256083,39321625,39452683,39583763,39780368,39911437,39976985,40042524,40108047,40239110,40304643,40566799,40632342,40828934,40894478,40960012,41025562,41156634,41222170,41287701,41353237,41418755],"gmp_snprintf":[4915201,8388609,16842759,17170433,30605313,40566785],"guaranteed":[1114113,3080193,24641537,25952257,34144257],"general":[20643841,26345473,30998529],"gmp_scanf":[4915201,6225921,13762561,17170433,23920647,34406401],"greater":[4915201,17170433,18350081,28704769,30015489,30539777,35651586,40828929],"gmp_randseed_ui":[720898,4915201,12713986,15073282,17170433,20840450,23658498,28442625,31588359,32047106],"gmp_randstate_t":[720905,3014657,3276801,4915202,5373953,5636110,6160390,6553605,11993089,12255253,12713994,15073288,15859713,17170434,18939905,20709391,20840457,21626881,23658506,24248321,24903691,26017793,26935297,28114958,28311555,28442633,31522820,31588361,32047114,32309249,39059458,39256065,39321601,39452687,39649288,40304646],"greatest":[4915206,5963777,13828099,17039362,17170438,20578305,27721731,38338563],"good":[28114945],"gmp_randinit_mt":[720898,4915201,5636097,12255235,12713986,15073282,17170433,20709378,20840450,23658498,24903681,28114951,28442626,31588354,32047106,39452673],"generating":[28442625,31588353],"gmp_randclear":[720898,4915201,5636099,12255237,12713986,15073282,17170433,20709379,20840450,23658498,24903685,28114947,28442626,31588354,32047106,39452675],"generic":[13172737,14090241,28966913],"gmp_vprintf":[4915201,15794177,17170433,20054023],"gnu":[327681,458753,589825,720897,851969,983041,1114113,1245185,1376257,1441793,1638401,1703937,1769473,1900545,1966081,2293762,2424833,2490369,2555905,2621441,2686977,2883585,3014657,3080193,3211265,3276801,3342337,3473409,3604481,3670017,3735553,3801089,3866625,4063234,4128769,4325377,4521985,4718593,4784129,5046273,5111809,5177345,5242881,5373953,5439489,5636097,5767169,5963777,6029313,6094849,6225922,6356993,6488065,6553602,6750209,6881281,6946817,7012353,7274497,7405569,7471105,7536641,7602177,7667713,7733249,7929857,8126465,8192001,8257537,8323073,8388610,8454145,8585217,8716289,8781825,8847361,8912897,8978433,9043969,9109506,9175041,9240578,9306113,9371649,9437185,9633793,9764865,9830401,9961473,10027009,10092545,10289153,10485761,10616833,10747905,10878977,10944513,11272193,11403265,11468801,11534337,11599873,11730945,11927553,11993089,12058625,12255233,12386305,12451841,12517377,12582913,12713987,12845057,13041665,13107201,13369345,13434881,13631489,13762562,13828097,13893633,14221314,14286849,14352385,14548993,14614529,14680065,14745601,14811137,14876673,15073282,15138817,15269889,15335425,15400961,15728641,15794178,15859713,15990785,16121858,16187393,16252929,16318465,16449537,16515073,16711681,16842754,16908289,16973825,17039361,17235969,17432577,17563649,17629185,17694721,17891329,18087937,18219009,18350081,18546690,18677761,18743297,18808833,18939905,19070977,19136513,19267585,19398657,19529729,19595265,19791873,20054018,20185102,20250625,20316161,20381697,20512769,20578305,20643841,20709377,20774913,20840449,20905985,21037057,21102593,21299201,21364737,21430273,21561345,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22478849,22544385,22609921,22740993,22937601,23003137,23068673,23265281,23658499,23724033,23920642,23986177,24051713,24248321,24313857,24444929,24576002,24641537,24772609,24838145,24903681,24969217,25100289,25165826,25231361,25296897,25362433,25427969,25493505,25559041,25690113,25952257,26017793,26148865,26214402,26279937,26345473,26542081,26673153,26738689,26804225,26869761,27000833,27197441,27394049,27525121,27656193,27721729,27787265,27983873,28049409,28114945,28180481,28442625,28573697,28704769,28770305,28835841,29032449,29097985,29229057,29294593,29491201,29556737,29687809,29753345,29818881,29949953,30015489,30081025,30212097,30277633,30539777,30605314,30670849,30801921,30998529,31064065,31129601,31391745,31457281,31522818,31588353,31653889,31719426,32047107,32112641,32309249,32505858,32702465,32899073,32964609,33357825,33488897,33554433,33619969,33816577,33882113,34013185,34144257,34209793,34275329,34340865,34406402,34603009,34668545,34734082,34799617,34865154,34930691,35061761,35192833,35258369,35520515,35651585,35913729,36044801,36110337,36175873,36241409,36306945,36503553,36700161,36765697,36831233,36896769,36962306,37224449,37289985,37486593,37552129,37683201,37814273,37879809,37945345,38010881,38273025,38207491,38338561,38404097,38469633,38535169,38731777,38797313,38862849,38993921,39124993,39256065,39321601,39452673,39583745,39780353,39911425,39976961,40042497,40108034,40239105,40566786,40828929,40894465,40960001,41025537,41156609,41222145,41287681,41353217,41418753],"github":[20185089],"gmp_sprintf":[4915201,14221313,15794177,16842753,17170433,30605319,34865153,40566785],"global":[6553601,12713985,12779521,12910593,17170433,23658497,31522817,32047105],"gets":[131073,524289,1310726,1572866,1835010,2162689,3407873,4259844,4587523,4653058,4849665,5701634,7143425,8650754,9895937,10223617,10354689,10551297,11206657,11337730,12124162,12320769,12779521,12910593,13238276,13565954,14090241,14417922,16384001,16646146,17104898,17170433,18874371,19464193,19988481,20447234,21626881,21692417,23134210,23592961,23789569,24117249,24379393,24707073,26476545,26607617,27262977,27328514,27590658,28246018,28311553,28639233,28966913,29884417,30343170,30736386,31195140,31850497,31981569,33095683,33423362,33751041,33947650,34471937,34996225,35389441,35717124,35848193,36634625,38141956,38600710,38666241,39518209,39649281,39714817],"gmp_randinit":[12713985,15073281,23658497,32047105],"gethashcode":[131074,1048582,1310722,1572866,1835010,2752518,4259842,4390918,4587522,4653058,5701633,8650753,11337729,12124161,13238274,13697030,14090241,16646145,17104897,18874370,20971526,21626881,23134209,25624582,28246018,28311553,28966913,29360134,30736386,31195138,32440326,33095682,35389441,35717122,38141954,38600706,39649281,39714817],"gmp_randinit_lc_2exp_size":[4915201,5636097,12255233,17170433,20709377,24903681,28114945,39452679],"gmp_printf":[4915201,15794183,17170433,20054017,30605313,34865153],"gcd":[5963778,13828097,20578306],"gettype":[131073,1310721,1572865,1835009,4259841,4587521,4653057,5701633,8650753,11337729,12124161,13238273,14090241,16646145,17104897,18874369,21626881,23134209,28246017,28311553,28966913,30736385,31195137,33095681,35389441,35717121,38141953,38600705,39649281,39714817],"gmp_fprintf":[4915201,15794177,16121857,17170433,30605313,34865159],"given":[4915207,8585217,14286849,14614529,17170439,20185089,21889025,22937601,23986177,24576002,28442625,31588353,31719425,33161217,35520513,37945345,38731778,40108033,40828929],"generate":[720899,1900547,4915211,6553603,12713987,15073283,17170443,18087939,20840451,23658499,28442625,31522819,31588353,32047107,39256067],"glibc":[8388609,16842753],"gmp_urandomm_ui":[720903,4915201,17170433,20840449],"gmp_vsprintf":[4915201,14221319,17170433,30605313],"gmp_randinit_default":[4915201,5636097,12255233,17170433,20709383,24903681,28114945,39452673],"gmp_errno":[12779525,12910593,17170433],"gmp_vscanf":[4063233,4915201,9109505,17170433,23920641,34406407],"generates":[1900546,18087938],"getenumerator":[12124161,39714817,40435719],"generated":[720897,5636097,6553602,20840449,28442625,31522817,31588353,31719428,39256065],"greateast":[38338561],"gmp_urandomb_ui":[720897,4915201,17170433,20840455],"gmp_sscanf":[4063233,4915201,6225927,13762561,17170433,23920641],"gmp_vsscanf":[4063239,4915201,6225921,9109505,17170433,34406401],"going":[2293761,18546689,25165825,32505857],"gmp_randinit_lc_2exp":[4915202,5636103,12255233,17170434,20709377,24903681,28114945,39452674],"gmp_randseed":[4915201,17170433,28442631,31588353],"gmp_fscanf":[4915201,6225921,9109505,13762567,17170433,23920641],"gradually":[29097985],"gmp_vfprintf":[4915201,16121863,17170433,34865153],"gmp_asprintf":[4915201,16842753,17170433,30605313,34734081,40566792],"groups":[6553601,12713985,23658497,31522817,32047105],"gettempfilename":[1376258,9109506,9240578,9306114,10878978,13762562,16121858,19529730,22740994,34865154,37683202,40828929],"gmp_vfscanf":[4063233,4915201,9109511,13762561,17170433,34406401],"gmp_randinit_set":[4915201,5636097,12255239,17170433,20709377,24903681,28114945,39452673],"gmp":[65537,131074,196610,262150,327688,393221,458758,524293,589830,655362,720902,786437,851974,917506,983046,1048581,1114123,1179653,1245190,1310725,1376264,1441798,1507333,1572866,1638406,1703942,1769480,1835010,1900551,1966090,2031622,2097154,2162693,2228229,2293767,2359298,2424840,2490374,2555911,2621449,2686983,2752517,2818053,2883590,2949122,3014662,3080202,3145733,3211271,3276806,3342343,3407874,3473414,3538949,3604486,3670023,3735558,3801094,3866632,3932166,3997701,4063237,4128775,4194306,4259848,4325385,4390917,4456454,4521990,4587525,4653058,4718601,4784135,4849669,4915202,4980738,5046279,5111813,5177352,5242886,5308418,5373958,5439495,5505029,5570562,5636104,5701634,5767176,5832709,5898245,5963786,6029319,6094857,6160389,6225925,6291458,6356998,6422534,6488070,6553608,6619143,6684674,6750214,6815749,6881286,6946824,7012362,7077890,7143431,7208966,7274502,7340037,7405575,7471111,7536647,7602184,7667719,7733256,7798789,7864325,7929865,7995397,8060934,8126476,8192007,8257543,8323079,8388615,8454154,8519686,8585226,8650763,8716296,8781831,8847368,8912905,8978438,9043975,9109510,9175047,9240583,9306119,9371655,9437191,9502725,9568258,9633798,9699334,9764871,9830407,9895941,9961478,10027014,10092551,10158085,10223623,10289158,10354693,10420230,10485767,10551303,10616838,10682373,10747911,10813446,10878984,10944519,11010054,11075589,11141122,11206661,11272200,11337730,11403270,11468807,11534344,11599878,11665413,11730952,11796485,11862022,11927559,11993095,12058631,12124166,12189701,12255239,12320775,12386311,12451847,12517383,12582918,12648450,12713993,12779526,12845064,12910595,12976133,13041671,13107207,13172738,13238281,13303814,13369351,13434888,13500423,13565954,13631494,13697029,13762566,13828104,13893640,13959173,14024709,14090247,14155781,14221318,14286856,14352391,14417922,14483462,14548999,14614535,14680072,14745606,14811144,14876680,14942214,15007746,15073288,15138825,15204357,15269895,15335431,15400967,15466502,15532037,15597573,15663109,15728647,15794181,15859718,15925253,15990790,16056322,16121862,16187399,16252938,16318475,16384005,16449544,16515079,16580613,16646152,16711687,16777222,16842759,16908295,16973830,17039368,17104898,17170441,17235974,17301509,17367046,17432583,17498117,17563655,17629190,17694726,17760261,17825798,17891336,17956869,18022405,18087943,18153477,18219016,18284550,18350090,18415622,18481158,18546694,18612226,18677769,18743303,18808840,18874370,18939910,19005445,19070984,19136523,19202053,19267591,19333125,19398662,19464199,19529735,19595270,19660805,19726341,19791881,19857410,19922949,19988485,20054021,20119557,20185093,20250631,20316166,20381702,20447234,20512776,20578320,20643850,20709382,20774919,20840454,20905990,20971525,21037063,21102598,21168133,21233670,21299206,21364744,21430279,21495813,21561351,21626888,21692423,21757959,21823495,21889032,21954566,22020103,22085639,22151176,22216709,22282250,22347782,22413320,22478855,22544390,22609926,22675461,22740999,22806530,22872070,22937608,23003143,23068679,23134218,23199750,23265286,23330822,23396354,23461893,23527430,23592962,23658505,23724041,23789573,23855109,23920645,23986186,24051719,24117255,24182789,24248327,24313864,24379397,24444936,24510466,24576006,24641549,24707079,24772616,24838150,24903686,24969225,25034757,25100294,25165830,25231367,25296902,25362438,25427974,25493510,25559049,25624581,25690119,25755654,25821192,25886725,25952266,26017798,26083333,26148870,26214406,26279944,26345482,26411013,26476549,26542087,26607623,26673158,26738696,26804231,26869767,26935298,27000840,27066374,27131910,27197449,27262983,27328514,27394056,27459589,27525127,27590658,27656200,27721735,27787270,27852806,27918341,27983881,28049415,28114950,28180488,28246018,28311554,28377091,28442631,28508165,28573703,28639234,28704780,28770311,28835847,28901382,28966914,29032455,29097991,29163526,29229062,29294599,29360133,29425670,29491206,29556744,29622278,29687814,29753351,29818887,29884421,29949960,30015495,30081031,30146565,30212102,30277641,30343170,30408710,30474246,30539786,30605318,30670857,30736386,30801927,30867461,30932997,30998538,31064072,31129606,31195144,31260678,31326214,31391751,31457287,31522824,31588358,31653897,31719433,31784962,31850503,31916038,31981573,32047113,32112648,32178181,32243714,32309254,32374790,32440325,32505863,32571394,32636934,32702472,32768006,32833542,32899078,32964614,33030150,33095682,33161221,33226757,33292293,33357832,33423362,33488902,33554438,33619975,33685509,33751045,33816584,33882120,33947650,34013191,34078726,34144265,34209799,34275334,34340870,34406405,34471943,34537478,34603016,34668550,34734086,34799622,34865158,34930699,34996231,35061767,35127301,35192838,35258374,35323909,35389442,35454981,35520519,35586053,35651592,35717125,35782661,35848199,35913735,35979269,36044810,36110342,36175878,36241415,36306950,36372486,36438021,36503560,36569094,36634631,36700167,36765705,36831238,36896776,36962310,37027846,37093381,37158917,37224457,37289990,37355526,37421061,37486601,37552136,37617670,37683207,37748742,37814278,37879815,37945353,38010887,38076421,38141957,38207495,38273031,38338570,38404102,38469638,38535175,38600709,38666247,38731783,38797321,38862855,38928389,38993928,39059459,39124999,39190533,39256072,39321607,39387138,39452679,39518213,39583752,39649286,39714818,39780358,39845890,39911430,39976968,40042504,40108039,40173574,40239109,40304646,40370181,40435717,40501253,40566790,40632328,40697862,40763398,40828936,40894473,40960006,41025544,41091077,41156616,41222154,41287687,41353223,41418759],"gcnew":[14090241],"gmp_set_memory_functions":[4915201,8126473,8585217,17170433]} \ No newline at end of file +{"git":[25231361],"garbage":[7667713,10747905,10944513,11534337,13172737,16515073,18415617,24117249,24182785,25821185,36700161,36896769,38404097,40566785],"gmp_get_memory_functions":[9240581,10158087,19333121,21168129],"gmp_vsnprintf":[7733255,15269889,19333121,21168129],"gmp_version":[9437191,21168129,26804225],"generator":[1048579,5832706,6094852,12976132,15073283,16252931,19988483,22478851,23986180,30081028,30277635,34275329,36569092,37093380,38273028,40566786],"gmp_vasprintf":[19333121,21168129,32702472,35717121],"grow":[14745601],"guess":[30081025,36569089],"gmp_lib":[327695,524296,589839,720918,786448,1048587,1114124,1179661,1310737,1441796,1507354,1638403,1703956,1835017,2031629,2097171,2228249,2490381,2555919,2752532,2818062,2883603,3014681,3080204,3145748,3211286,3276821,3473428,3538948,3604496,3735580,3801099,3997707,4128782,4259843,4390926,4587537,4653069,4784131,4980765,5046289,5111823,5177354,5308433,5373971,5439498,5505050,5636119,5767187,5898265,5963790,6029325,6094863,6160396,6291464,6356996,6422541,6946838,7012368,7077907,7340053,7405585,7471124,7602185,7733261,7864337,7929881,7995403,8060953,8126487,8192011,8323087,8388621,8454168,8585228,8716312,8781842,8847385,8978457,9043977,9109520,9175056,9240587,9371671,9437188,9502741,9568275,9633811,9764882,9830411,9961489,10027027,10158085,10223627,10289175,10551315,10682389,10878991,11010058,11141148,11206658,11272200,11337750,11403279,11665438,11730972,11796500,11862019,12124174,12189702,12320781,12517397,12582932,12714010,12779539,12845077,12910608,12976143,13041674,13107219,13369360,13500438,13631508,13697039,13828112,13893646,13959191,14024717,14090253,14221337,14352409,14417929,14483474,14614551,14745613,14811154,15073298,15138837,15269903,15335452,15466506,15532046,15597584,15663115,15794195,15925266,15990805,16056339,16121879,16187406,16252953,16384009,16449557,16908296,16973837,17039376,17104907,17235982,17563673,17760272,17825818,18022419,18153491,18284562,18481161,18546714,18677786,18743317,18808847,18874387,18939912,19005466,19070984,19333123,19464195,19529742,19660827,19726360,19791900,19857427,19922966,19988491,20054042,20185095,20250650,20447243,20578307,20709388,20840465,20906014,20971546,21037079,21168136,21233678,21364746,21430283,21561357,21626890,21692433,21757972,21823499,21889045,22020098,22216717,22347796,22478868,22544401,22675466,22806538,22937625,23134225,23199767,23461900,23527450,23592972,23658512,23724055,23855124,23986187,24051732,24248342,24510479,24576022,24641562,24707091,24772618,24838172,24903691,25100314,25165837,25231361,25296922,25362458,25493530,25559048,25690130,25755666,25952277,26017795,26148892,26279956,26345498,26411028,26476559,26542089,26607633,26673168,26738699,26804227,26869779,26935315,27066387,27262997,27459597,27525141,27656225,27787290,27852814,27983890,28114961,28180492,28246030,28377113,28508186,28639253,28704771,28770320,28835846,28901387,29163546,29294603,29360149,29425684,29491211,29687827,29753357,30015504,30081033,30277650,30343190,30408719,30539797,30736402,30867475,30933006,30998547,31064083,31129610,31260686,31457283,31522829,31588364,31653914,31719436,31850509,31981589,32047129,32178192,32309269,32440346,32505884,32571420,32636942,32702477,32768021,32833547,32899098,33030158,33095693,33161231,33292305,33423386,33816592,33882126,33947674,34013214,34144279,34209798,34275329,34406419,34471946,34537488,34603025,34734083,34799628,34930704,34996235,35192860,35258396,35323929,35454999,35520538,35586062,35651599,35717135,35913748,35979281,36044826,36241422,36438031,36569101,36634630,37027857,37093387,37224460,37290001,37355541,37486601,37552142,37617678,37683221,37748756,37814282,37879834,38010893,38076418,38141965,38207491,38273035,38338581,38535188,38600728,38731791,38797315,38928397,39059478,39321618,39387150,39518234,39714826,39780378,39845909,39911443,39976963,40042524,40239123,40304658,40370201,40501251,40697869,40828934,41025566,41091092,41156634,41287688,41418774],"gmp_snprintf":[7733249,15269895,19333121,21168129,23134209,35717121],"guaranteed":[2752513,3473409,26279937,26411009,37748737],"general":[18677761,25493505,32899073],"gmp_scanf":[6029313,12320769,19333121,21168129,21561351,38928385],"greater":[19005441,19333121,21168129,22216705,26345473,28377089,33030146,36634625],"gmp_randseed_ui":[1048578,15073282,16252930,19333121,19988482,21168129,22478850,30081031,30277634,36569089],"gmp_randstate_t":[1048585,2883585,3145729,5373953,5832710,6094862,6160389,8847361,12976149,15073290,15794177,16252936,18153473,19333122,19988489,20185099,21168130,22020097,22478858,22937601,23986191,24117249,24182787,30081033,30277642,30867457,30998529,31064065,31588356,34275330,36569097,37093390,38273039,38797318,40370177,40566792],"greatest":[6291457,12910595,16908290,18939905,19333126,21168134,21626883,41091075],"good":[37093377],"gmp_randinit_mt":[1048578,6094849,12976131,15073282,16252930,19333121,19988482,20185089,21168129,22478850,23986178,30081026,30277634,36569090,37093383,38273025],"generating":[30081025,36569089],"gmp_randclear":[1048578,6094851,12976133,15073282,16252930,19333121,19988482,20185093,21168129,22478850,23986179,30081026,30277634,36569090,37093379,38273027],"generic":[12451841,13172737,36896769],"gmp_vprintf":[16973825,19333121,21168129,21430279],"gnu":[327681,524289,589825,720897,786433,1048577,1114113,1179649,1310721,1441793,1507329,1638401,1703937,1835009,2031617,2097153,2228225,2490370,2555905,2752513,2818049,2883585,3014657,3080193,3145729,3211265,3276801,3473409,3538945,3604481,3735553,3801089,3997697,4128769,4259841,4390913,4587521,4653058,4784129,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5505025,5636097,5767169,5898241,5963777,6029314,6094849,6160386,6291457,6356993,6422529,6946817,7012353,7077889,7340033,7405569,7471105,7602177,7733250,7864321,7929857,7995393,8060929,8126465,8192002,8323073,8388610,8454145,8585217,8716289,8781825,8847361,8978433,9043969,9109505,9175041,9240577,9371649,9437185,9502721,9568257,9633793,9764865,9830401,9961473,10027009,10158081,10223617,10289153,10551297,10682369,10878977,11010049,11141121,11272193,11337729,11403265,11665409,11730945,11796481,12124161,12320770,12517377,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13500417,13631489,13697025,13828097,13893633,13959169,14024705,14090242,14221313,14352385,14417921,14483457,14614529,14745601,14811137,15073283,15138817,15269890,15335425,15466497,15532033,15663106,15794177,15925249,15990785,16056321,16121857,16187393,16252930,16384001,16449537,16908289,16973826,17039361,17104898,17235969,17563649,17760257,17825793,18022401,18153473,18284545,18481153,18546689,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19529729,19660801,19726337,19791873,19857409,19922946,19988481,20054017,20185089,20250625,20447233,20578305,20709377,20840449,20905985,20971521,21037057,21233665,21364737,21430274,21561346,21626881,21692417,21757953,21823489,21889025,22216705,22347777,22478851,22544385,22675457,22806529,22937601,23134210,23199745,23461889,23527425,23592961,23658497,23724033,23855105,23986177,24051713,24248321,24510465,24576001,24641537,24707073,24772609,24838145,24903681,25100289,25165825,25231383,25296897,25362433,25493505,25559041,25690113,25755649,25952257,26017793,26148865,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738690,26869761,26935297,27066369,27262977,27459585,27525121,27656193,27787265,27852801,27983873,28114945,28180481,28246017,28377089,28508161,28639233,28704769,28770305,28835842,28901377,29163521,29294593,29360129,29425665,29491201,29687809,29753345,30015490,30081025,30277635,30343169,30408705,30539777,30736385,30867457,30932993,30998529,31064065,31129601,31522817,31588354,31653889,31719425,31850497,31981569,32047105,32178177,32309249,32440321,32505857,32571393,32636930,32702466,32768001,32833537,32899073,33030145,33095681,33161219,33292289,33423361,33816577,33882113,33947649,34013185,34144257,34406401,34471937,34603009,34734081,34799617,34930689,34996225,35192833,35258369,35323905,35454977,35520513,35586051,35651585,35717122,35913729,35979265,36044801,36241409,36438017,36569089,36634625,37027841,37093377,37224449,37289985,37355521,37486593,37552129,37617665,37683201,37748737,37814273,37879809,38010882,38141954,38273025,38338561,38535169,38600705,38731778,38928386,39321601,39387137,39518209,39714817,39780353,39845889,39911425,39976961,40042497,40239105,40304643,40370177,40501249,40697857,40828929,41025537,41091073,41156609,41287681,41418753],"github":[25231361],"gmp_sprintf":[14090241,15269889,16973825,19333121,21168129,23134215,35717121,38010881],"global":[6160385,11206657,11862017,15073281,21168129,22478849,30277633,31588353],"gets":[131073,393217,1245190,1572866,1966081,2293762,2621441,4194308,4325379,4718594,5242881,7667714,8519681,9306113,9895937,10092545,10616833,10747906,10944514,11206657,11534338,11862017,11927553,11993090,13172737,13238273,14286852,14680066,16515074,17367041,17629185,18219011,18415618,19595265,20119553,20774914,21102594,21168129,22151169,22740993,23330818,24117249,24182785,24379393,25427970,25821186,27131905,27197441,27328513,28049409,28966913,29097985,29884417,30605314,31195137,31326209,32243713,32964609,33685508,33751041,34340866,35782658,36110342,36372481,36700161,36765697,36831236,36896769,36962307,37945345,38404097,38666241,38862850,39452676,40566785],"goal":[25231361],"gmp_randinit":[15073281,16252929,22478849,30277633],"gethashcode":[131074,983046,1245186,1572866,2293762,2949126,4194306,4325378,4456454,4718594,7667713,10747905,10944513,11534337,13172737,13565958,14286850,16515073,18219010,18415617,20643846,23330818,24117249,24182785,24969222,25821185,30146566,31916038,33685506,34340866,36110338,36700161,36831234,36896769,36962306,38404097,39452674,40566785],"gmp_randinit_lc_2exp_size":[6094849,12976129,19333121,20185089,21168129,23986177,37093377,38273031],"gmp_printf":[16973831,19333121,21168129,21430273,23134209,38010881],"gcd":[6291458,12910593,18939906],"gettype":[131073,1245185,1572865,2293761,4194305,4325377,4718593,7667713,10747905,10944513,11534337,13172737,14286849,16515073,18219009,18415617,23330817,24117249,24182785,25821185,33685505,34340865,36110337,36700161,36831233,36896769,36962305,38404097,39452673,40566785],"gmp_fprintf":[15663105,16973825,19333121,21168129,23134209,38010887],"given":[10158081,13893633,14614529,19333127,19922946,20054017,21168135,24772609,25231361,26607617,29163521,30015489,30081025,36569089,36634625,38076417,38731777,40304641,41287682],"generate":[1048579,1835011,6160387,15073283,16252931,18481155,19333131,19988483,21168139,22478851,25231361,30081025,30277635,30998531,31588355,36569089],"glibc":[7733249,15269889],"gmp_urandomm_ui":[1048583,19333121,19988481,21168129],"gmp_vsprintf":[14090247,19333121,21168129,23134209],"gmp_randinit_default":[6094849,12976129,19333121,20185089,21168129,23986183,37093377,38273025],"gmp_errno":[11206661,11862017,21168129],"gmp_vscanf":[4653057,8388609,19333121,21168129,21561345,38928391],"generates":[1835010,18481154],"getenumerator":[11534337,38404097,40894471],"generated":[1048577,6094849,6160386,19988481,30015492,30081025,30998529,31588353,36569089],"greateast":[41091073],"gmp_urandomb_ui":[1048577,19333121,19988487,21168129],"gmp_sscanf":[4653057,6029319,12320769,19333121,21168129,21561345],"gmp_vsscanf":[4653063,6029313,8388609,19333121,21168129,38928385],"going":[2490369,17104897,26738689,38141953],"gmp_randinit_lc_2exp":[6094855,12976129,19333122,20185089,21168130,23986177,37093377,38273026],"gmp_randseed":[19333121,21168129,30081025,36569095],"gmp_fscanf":[6029313,8388609,12320775,19333121,21168129,21561345],"gradually":[27656193],"gmp_vfprintf":[15663111,19333121,21168129,38010881],"gmp_asprintf":[15269889,19333121,21168129,23134209,32702465,35717128],"groups":[6160385,15073281,22478849,30277633,31588353],"gettempfilename":[3997698,8192002,8388610,9830402,11403266,12320770,15663106,20447234,25165826,34996226,36634625,38010882],"gmp_vfscanf":[4653057,8388615,12320769,19333121,21168129,38928385],"gmp_randinit_set":[6094849,12976135,19333121,20185089,21168129,23986177,37093377,38273025],"gmp":[65537,131074,196614,262146,327686,393221,458757,524296,589830,655362,720903,786438,851970,917509,983045,1048582,1114118,1179654,1245189,1310726,1376261,1441800,1507335,1572866,1638406,1703946,1769478,1835015,1900546,1966085,2031622,2097158,2162693,2228232,2293762,2359298,2424837,2490375,2555910,2621442,2686978,2752523,2818057,2883590,2949125,3014663,3080198,3145734,3211271,3276808,3342341,3407877,3473418,3538951,3604487,3670018,3735559,3801094,3866629,3932166,3997704,4063234,4128774,4194312,4259847,4325381,4390921,4456453,4521989,4587526,4653061,4718594,4784134,4849670,4915202,4980743,5046278,5111813,5177352,5242885,5308423,5373958,5439495,5505033,5570562,5636104,5701637,5767175,5832709,5898248,5963785,6029317,6094856,6160392,6225925,6291466,6356998,6422534,6488069,6553602,6619142,6684679,6750213,6815746,6881286,6946822,7012359,7077894,7143429,7208965,7274502,7340040,7405578,7471112,7536645,7602183,7667714,7733255,7798790,7864327,7929864,7995399,8060937,8126472,8192007,8257541,8323078,8388614,8454151,8519687,8585222,8650754,8716295,8781831,8847367,8912902,8978440,9043975,9109510,9175046,9240588,9306119,9371655,9437190,9502727,9568263,9633799,9699333,9764874,9830407,9895941,9961479,10027014,10092549,10158090,10223622,10289159,10354694,10420229,10485766,10551303,10616837,10682375,10747906,10813445,10878982,10944523,11010056,11075590,11141128,11206662,11272199,11337735,11403272,11468805,11534342,11599874,11665417,11730952,11796486,11862019,11927559,11993090,12058629,12124167,12189701,12255237,12320774,12386310,12451842,12517383,12582919,12648450,12713992,12779527,12845063,12910600,12976135,13041670,13107207,13172743,13238279,13303813,13369350,13434885,13500424,13565957,13631495,13697031,13762565,13828103,13893639,13959174,14024710,14090246,14155781,14221319,14286857,14352393,14417928,14483464,14548997,14614536,14680066,14745610,14811143,14876678,14942213,15007750,15073289,15138824,15204357,15269895,15335432,15400965,15466504,15532041,15597574,15663110,15728642,15794182,15859714,15925259,15990791,16056327,16121863,16187398,16252936,16318469,16384007,16449543,16515080,16580613,16646150,16711686,16777221,16842757,16908296,16973829,17039366,17104902,17170437,17235974,17301510,17367045,17432581,17498117,17563656,17629191,17694726,17760262,17825799,17891330,17956869,18022407,18087941,18153478,18219010,18284550,18350085,18415618,18481159,18546696,18612230,18677770,18743303,18808840,18874375,18939920,19005450,19070984,19136518,19202054,19267589,19333122,19398661,19464198,19529734,19595269,19660807,19726347,19791880,19857415,19922950,19988486,20054024,20119557,20185094,20250634,20316165,20381701,20447239,20512770,20578310,20643845,20709382,20774914,20840454,20905993,20971527,21037063,21102594,21168137,21233670,21299206,21364743,21430277,21495813,21561349,21626887,21692422,21757958,21823495,21889031,21954565,22020098,22085634,22151170,22216711,22282246,22347783,22413317,22478857,22544391,22609925,22675462,22740999,22806535,22872069,22937607,23003142,23068677,23134214,23199751,23265282,23330818,23396357,23461894,23527432,23592966,23658503,23724038,23789573,23855113,23920645,23986182,24051721,24117256,24182786,24248326,24313861,24379399,24444933,24510470,24576006,24641543,24707079,24772616,24838152,24903687,24969221,25034757,25100296,25165831,25231371,25296904,25362441,25427970,25493514,25559047,25624581,25690118,25755656,25821194,25886726,25952263,26017800,26083330,26148871,26214406,26279946,26345484,26411021,26476550,26542087,26607626,26673158,26738694,26804227,26869766,26935304,27000838,27066374,27131911,27197447,27262984,27328517,27394053,27459590,27525127,27590662,27656199,27721734,27787272,27852809,27918338,27983879,28049415,28114950,28180486,28246022,28311558,28377098,28442630,28508167,28573702,28639239,28704775,28770310,28835846,28901384,28966919,29032453,29097989,29163529,29229064,29294600,29360136,29425670,29491207,29556741,29622274,29687815,29753351,29818886,29884421,29949958,30015497,30081030,30146565,30212101,30277641,30343174,30408710,30474242,30539784,30605314,30670850,30736390,30801926,30867462,30933001,30998536,31064070,31129607,31195141,31260678,31326213,31391749,31457286,31522824,31588360,31653896,31719430,31784965,31850502,31916037,31981575,32047111,32112646,32178183,32243719,32309255,32374789,32440329,32505864,32571399,32636934,32702470,32768007,32833543,32899082,32964615,33030152,33095686,33161227,33226757,33292298,33357830,33423367,33488901,33554437,33619973,33685509,33751047,33816582,33882121,33947655,34013193,34078726,34144263,34209797,34275331,34340866,34406407,34471944,34537478,34603015,34668549,34734087,34799622,34865157,34930694,34996231,35061766,35127301,35192840,35258376,35323912,35389446,35454983,35520520,35586055,35651592,35717126,35782658,35848198,35913734,35979270,36044809,36110341,36175878,36241414,36306950,36372487,36438022,36503554,36569095,36634632,36700162,36765698,36831240,36896770,36962306,37027846,37093382,37158917,37224454,37289993,37355526,37421061,37486598,37552134,37617672,37683207,37748745,37814279,37879816,37945351,38010886,38076421,38141959,38207494,38273031,38338567,38404098,38469634,38535175,38600712,38666245,38731783,38797318,38862850,38928389,38993926,39059464,39124997,39190534,39256070,39321606,39387145,39452677,39518216,39583749,39649286,39714824,39780362,39845895,39911432,39976967,40042504,40108037,40173573,40239111,40304647,40370183,40435717,40501254,40566790,40632326,40697862,40763397,40828933,40894469,40960005,41025545,41091082,41156617,41222150,41287687,41353221,41418758],"gcnew":[13172737],"gmp_set_memory_functions":[9240585,10158081,19333121,21168129]} \ No newline at end of file diff --git a/docs/fti/FTI_104.json b/docs/fti/FTI_104.json index 77cb7b7..28e9021 100644 --- a/docs/fti/FTI_104.json +++ b/docs/fti/FTI_104.json @@ -1 +1 @@ -{"hamming":[4915202,12517381,17170434,37552132],"h55555555":[4718593,19136513,21889025],"h8000000000000000":[31064065],"h40000000":[20578306],"hex":[5177348,22937604,35520513],"h11111111":[8454145],"hc2d24d55":[5963777],"holds":[23068673],"heap":[8847361],"h5555":[4718593,19136513,21889025],"h80":[23986177,34930689],"h435e50d7":[23724033,28704769,41222145],"h22222222":[8454145],"h13":[23724033,28704769,41222145],"h80000000":[31064065],"hfffffffc":[28180481],"hfffffffe":[1114113,2621441,18350081,22282241,22413313,25952257,27197441,28180481,30277633,30670849,30998529,34144257,36044801,37486593,41156609],"hffffffff":[1114115,1966081,2621442,3080194,4325380,4718593,6094850,7012354,7929858,13434882,15138818,18350083,18677762,19136513,20643842,21889025,22282243,23724033,24969218,25952259,26345474,27197443,27394050,28180482,28704769,29818882,30277635,30539778,30670850,30998531,31064067,31653890,34144259,36044803,37224452,37486595,37552131,37945345,40894468,41156611,41222145],"hardware":[17235969,20316161,39911425],"hexadecimal":[9240577,16908289,17498113,22740993,32178177],"hf0f0f0f":[18219010],"hierarchy":[8650753,12124161,14090241,16646145,17170433,21626881,23134209,39649281],"handle":[7667713,9437185,14680065,23986177,34734081,34930689,40566785],"hd79":[23724033,28704769,41222145],"habcd1234":[4784129],"h40":[1376257],"he8":[16187393],"hf0f0f0f0":[327684,18219010,21364740],"high":[5636097,21889025,37945345],"highest":[33292289,38076417],"higher":[4915201,13631489,17170433,24248321,29097986],"h7ab824fd":[4784129],"h10000":[36765697],"hd4a51000":[16187393],"habcd12347ab824fd":[4784129],"hedcba987":[2621441,30670849],"hffff":[1966081,4718593,19136513,21889025,22413313,23724033,28704769,37945345,41222145],"h555555555555":[19136513],"h44444444":[8454145],"h5555aaaa":[37945345],"host":[23986179,34930690],"happens":[20578305],"h964619c7":[5963778],"h12345678":[2621441,4325377,6094850,18677762,24969218,30670849,31653889,40894465],"human":[31195137],"haaaaaaaa":[37945345],"he2":[1376257],"happen":[10485761,12058625],"h33333333":[8454147],"handled":[8847361,16252929],"h1e240":[1376257],"h1000":[4784130],"h7fffffff":[31064065],"hhc":[4063234,6225922,9109506,13762562,23920642,34406402],"help":[20185089],"half":[5636097],"hash":[131073,1048578,1310721,1572865,1835009,2752514,4259841,4390914,4587521,4653057,5701633,8650753,11337729,12124161,13238273,13697026,14090241,16646145,17104897,18874369,20971522,21626881,23134209,25624578,28246017,28311553,28966913,29360130,30736385,31195137,32440322,33095681,35389441,35717121,38141953,38600705,39649281,39714817]} \ No newline at end of file +{"hamming":[12517381,19333122,21168130,29294596],"h55555555":[5505025,19726337,20054017],"h8000000000000000":[31522817],"h40000000":[18939906],"hex":[5177348,24772612,40304641],"h11111111":[9764865],"hc2d24d55":[6291457],"holds":[21037057],"heap":[5898241],"h5555":[5505025,19726337,20054017],"h80":[26607617,33161217],"h435e50d7":[25362433,26345473,39780353],"h22222222":[9764865],"h13":[25362433,26345473,39780353],"h80000000":[31522817],"hfffffffc":[28901377],"hfffffffe":[2752513,2818049,19005441,20250625,25296897,26279937,28901377,32440321,32899073,33292289,33882113,36044801,37748737,37879809,41156609],"hffffffff":[1703937,2752515,2818050,3473410,4390916,5505025,5963778,7405570,8060930,14352386,14417922,15532034,18677762,19005443,19726337,20054017,20250627,25100290,25362433,25493506,26279939,26345473,26542082,27852802,28377090,28901378,29163521,29294595,30932994,31522819,32440323,32899075,33292291,33882114,36044803,37289988,37748739,37879811,39387140,39780353,41156611],"hardware":[17235969,23592961,40697857],"hexadecimal":[8192001,14942209,16449537,25165825,30212097],"hf0f0f0f":[18808834],"hierarchy":[10944513,11534337,13172737,16515073,21168129,24117249,25821185,40566785],"handle":[8454145,8781825,12713985,26607617,32702465,33161217,35717121],"hd79":[25362433,26345473,39780353],"habcd1234":[4980737],"h40":[3997697],"he8":[16384001],"hf0f0f0f0":[524292,18808834,19070980],"high":[6094849,20054017,29163521],"highest":[35127297,40108033],"higher":[13041665,19333121,21168129,22937601,27656194],"h7ab824fd":[4980737],"h10000":[41025537],"hd4a51000":[16384001],"habcd12347ab824fd":[4980737],"hedcba987":[2818049,33882113],"hffff":[1703937,5505025,19726337,20054017,25296897,25362433,26345473,29163521,39780353],"h555555555555":[19726337],"h44444444":[9764865],"h5555aaaa":[29163521],"host":[25231361,26607619,33161218],"happens":[18939905],"h964619c7":[6291458],"h12345678":[2818049,4390913,5963778,15532034,27852802,30932993,33882113,39387137],"human":[36831233],"haaaaaaaa":[29163521],"he2":[3997697],"happen":[10551297,12779521],"h33333333":[9764867],"handled":[5898241,14745601],"h1e240":[3997697],"h1000":[4980738],"h7fffffff":[31522817],"hhc":[4653058,6029314,8388610,12320770,21561346,38928386],"help":[25231361],"half":[6094849],"hash":[131073,983042,1245185,1572865,2293761,2949122,4194305,4325377,4456450,4718593,7667713,10747905,10944513,11534337,13172737,13565954,14286849,16515073,18219009,18415617,20643842,23330817,24117249,24182785,24969218,25821185,30146562,31916034,33685505,34340865,36110337,36700161,36831233,36896769,36962305,38404097,39452673,40566785]} \ No newline at end of file diff --git a/docs/fti/FTI_105.json b/docs/fti/FTI_105.json index b970a6a..2ba5c27 100644 --- a/docs/fti/FTI_105.json +++ b/docs/fti/FTI_105.json @@ -1 +1 @@ -{"identity":[38010881],"included":[38076417],"index":[4784129,8454145,10485763,12058627,12124161,12451841,23592961,24379400,26869761,27525122,29032450,38273025],"ignored":[1769473,4128769,4784129,9633793,16908290,20250627,21561345,22740993,24313857,24576001,34930689,35520513],"iterates":[12124161,39714817,40435714],"implicit":[262146,1179650,3997698,6422530,7340034,10813442,12976130,14155778,14483458,15204354,15597570,17498114,17760258,17825794,19005442,19202050,19660802,21495810,22216706,23330818,23855106,24182786,25034754,26411010,28508162,31326210,31719425,32178178,32768002,33226754,35127298,35979266,36372482,40501250],"inherited":[131074,1310721,1572865,1835009,4259841,4587522,4653057,5701637,8650758,11141121,11337733,12124166,13238273,14090246,16056321,16646149,17104901,18874369,21626886,23134214,28246017,28311558,28966918,30736385,31195137,33095682,35389446,35717121,38141953,38600706,39649286,39714822],"increment":[6881282,13107202,18743298,25493506,28049410],"implementation":[1769473,2424833,4128769,4915201,6029313,10485761,11272193,12058625,12451841,12517377,16515073,17170433,20905985,26869761,37814273,38273025,39976961],"identical":[851969,1638401,4718593,14352385,21561345,22544385,23724033,27983873,28770305,36765697,37289985,41222145],"ienumerable":[12124168,40435713],"initialize":[458754,589826,720898,851970,983042,1245185,1376258,1441794,1638402,2293762,2424838,2490371,2555908,2686980,2883586,3014658,3211268,3276802,3342340,3473410,3670021,3735554,3866628,4521986,4784130,4915223,5242882,5373954,5439492,5636100,5767172,6029314,6488066,6553602,6750210,6881282,6946822,7274498,7471108,7602182,7667716,7733254,8192004,8257540,8323077,8716294,8847362,8912902,8978434,9043972,9175044,9240578,9306114,9437186,9633794,9764868,9830404,9961474,10027010,10092548,10485762,10616834,10747908,10878978,10944514,11272198,11403266,11468804,11599874,11730948,11927556,11993092,12058626,12255238,12386306,12451842,12517380,12582914,12713988,12845062,13041666,13107204,13303810,13369347,13500420,13631490,13828102,13893638,14286850,14352388,14548996,14614530,14680070,14745602,14876676,14942210,15073284,15269892,15335428,15400964,15728644,15859714,15990786,16252931,16449542,16515076,16711684,16908290,16973826,17170455,17235970,17563652,17629186,17694722,17891334,18546690,18743298,18808838,18939906,19070980,19267588,19398658,19595267,19529730,19791878,20250626,20316162,20381698,20512772,20709380,20774916,20840450,20905986,21037058,21102594,21299203,21430276,21561348,21757954,21823492,21954562,22020100,22085636,22151174,22347778,22478852,22544386,22740994,23003139,23068674,23265283,23658502,23986179,24248324,24313862,24444932,24576002,24772612,24838147,25100291,25165826,25231364,25296898,25362434,25427970,25493506,25559048,25690116,26017794,26279940,26673154,26804228,26869762,27000838,27656196,27721730,27787266,27983880,28049412,28114948,28442626,28770308,28835844,29097988,29229058,29294596,29491202,29556742,29687810,29949956,30015492,30081028,30212098,31129602,31391748,31457284,31522818,31588354,31719426,32047108,32112644,32309250,32374786,32505858,32636930,32702470,32899074,32964610,33357830,33488898,33554434,33619972,33816582,33882118,34013186,34209795,34275331,34340867,34603012,34668547,34799618,34930690,35061764,35192835,35258370,35520513,35651590,35913732,36110338,36241412,36306946,36700164,36831234,36896774,36962306,37289986,37683202,37814274,37879812,38010884,38273026,38207490,38338566,38404098,38535170,38469634,38797318,39124996,39256066,39321604,39452676,39583748,39780354,39911426,39976966,40042502,40108034,40632326,40828929,40960003,41025540,41287684,41353220],"initializing":[589825,2490369,3342337,3604481,5111809,8847361,8978433,10944513,14745601,16252929,21299201,21430273,23003137,25362433,26148865,26673153,26804225,27787265,29097985,29491201,31129601,32964609,34275329,34340865,35192833,35520513,38469633],"indicating":[131074,393217,917506,1310722,1572866,1835010,2097154,4259842,4587522,4653058,6291458,6684674,7995393,8519681,9502721,12648450,13238274,15007746,15663105,18874370,19726337,20119553,23986177,25755649,27852801,28246018,28901377,29425665,30736386,30867457,31195138,31260673,31784962,33095682,34078721,35717122,37158913,37355521,38141954,38600706,39845890],"indicates":[1310722,4259842,4587522,7143425,10223617,10551297,12320769,13238274,13565954,14417922,19464193,20447234,21692417,24117249,24707073,26607617,27262977,27328514,27590658,30343170,31195138,31850497,33423362,33947650,34471937,34996225,35717122,35848193,36634625,36765698,37814273,38141954,38600706,38666241],"instructions":[20185089],"inherit":[8650753,23134209],"information":[1376257,6553601,8454145,12713985,23658497,31522817,32047105],"interpreted":[9306113,20250625],"implements":[12124161,40435713],"invoking":[12713985,15073281,23658497,32047105],"inclusive":[720897,2424835,4325377,4915208,12713985,17170440,20840449,23658497,31653889,32047105,40894465],"inheritance":[8650753,12124161,14090241,16646145,17170433,21626881,23134209,39649281],"identified":[13631490],"implemented":[37224449],"inequality":[1310721,4259841,4587521,13238273,13565953,14417921,19464193,20447233,21692417,24707073,27262977,27328513,27590657,30343169,31195137,33423361,33947649,34996225,35717121,35848193,36634625,38141953,38600705,38666241],"ienumerator":[40435718],"install":[20185091],"internal":[4915201,8781825,17170433,37814274],"improve":[16318465],"integer":[262145,327682,458756,524290,720898,851972,983043,1048578,1114116,1245188,1376258,1507329,1638403,1900545,1966083,2293761,2359298,2424836,2555908,2621443,2686980,2752514,2818049,2883585,3014661,3080196,3145730,3276805,3473410,3866628,4063233,4259841,4325379,4390914,4718595,4784132,4915236,5177346,5242885,5373957,5439492,5898241,5963779,6029314,6094851,6225921,6488069,6553605,6750211,6881281,6946820,7012355,7274501,7405570,7471110,7602181,7733252,7929859,8126465,8323079,8388609,8454145,8650753,8781826,8847365,8912901,9043971,9109505,9175046,9240578,9306113,9371649,9633793,9961477,10027013,10092545,10158082,10485762,10616835,10747908,11272196,11337730,11468804,11599876,11730949,11862017,11993089,12058626,12451842,12517379,12582916,12713990,12779521,12845060,12976129,13041669,13107208,13238273,13303809,13369346,13434883,13500417,13631491,13697026,13762561,13828099,13893636,14221313,14286852,14352387,14483457,14548996,14614531,14745603,14876676,14942209,15073282,15138819,15269892,15335429,15400963,15728644,15794177,15859717,15990788,16056321,16121857,16187394,16252931,16318470,16449540,16515075,16646146,16711684,16842753,16908294,16973827,17039362,17170468,17301505,17563652,17629189,17694725,17891332,17956866,18087937,18219010,18350083,18481153,18546689,18677763,18743300,18939909,19070979,19136515,19267588,19333121,19398660,19529730,19595267,19791877,20054017,20250626,20316161,20381699,20512773,20578306,20643843,20774913,20840451,20905986,20971522,21037060,21102595,21364738,21430275,21561348,21757957,21823492,21889026,21954562,22151172,22282243,22347780,22413314,22478851,22544388,22740995,22937602,23068674,23134213,23658504,23724033,23920641,23986182,24051713,24182785,24248321,24313860,24379393,24444934,24576003,24641540,24772611,24969219,25100292,25165825,25231366,25296901,25427971,25493505,25559045,25624578,25690116,25952260,26017797,26214402,26279939,26345475,26869762,27000836,27197443,27394050,27459585,27525121,27656197,27721731,27983877,28049416,28180482,28704772,28770307,28835844,29032449,29229061,29294596,29360130,29556740,29687811,29818882,29949955,30015490,30212100,30277635,30539779,30605313,30670851,30998531,31064066,31129601,31457281,31522821,31653891,31719425,32047110,32112643,32309253,32374786,32440322,32505857,32636929,32702468,32899074,33161217,33488898,33554436,33619972,33685505,33816579,33882116,34013197,34144258,34209797,34406401,34603013,34668545,34734081,34799619,34865153,34930694,35061762,35192835,35258373,35454977,35520515,35651589,35717121,36044803,36110339,36241409,36306947,36569089,36700164,36765698,36831237,36896772,36962307,37224450,37289987,37486595,37552130,37683201,37814275,37945346,38010883,38076417,38141953,38207491,38273026,38338562,38404097,38535173,38731778,38797317,39059457,39124996,39190530,39321601,39452673,39583749,39780357,39976964,40042500,40108033,40239106,40566785,40828929,40894467,40960004,41025539,41156610,41222145,41287685,41418755],"including":[9240577],"intptr":[524293,4915201,9895941,11206661,11796482,16384005,17170433,20578308,23068674,27918338,29884421,31981573,33161222,38928389,40239106],"infinite":[12517377,20905985],"invoke":[20185089],"iteration":[29097985],"independent":[7012354,36044802,37224449],"initialization":[3670017,4915201,5636097,8323073,12255233,12713985,13369345,14286849,15073281,17170433,19595265,20709377,23265281,23658497,24838145,24903681,25100289,28114945,32047105,34209793,34340865,34668545,39452673,40960001],"initializations":[2490369,23003137],"interval":[39256065],"input":[1114113,4063235,4915204,5177346,6225923,9109507,9240578,10878977,13762563,13828097,14286849,16318465,17170436,20250626,20578305,22740993,22937604,23920646,24641537,29818881,34144257,34406406,37486593],"integwer":[36765697],"int64":[655362,786436,2555906,2949122,4259844,4980740,6422532,13238276,14024708,16777220,18153476,18612226,19267586,20185089,22806530,24510466,25427970,27328516,27590660,30343172,31195140,31326212,32571394,33423364,33947652,35717124,36372484,38141956,39387140,40173572,40370180,41091076],"initonly":[10289153,10354689,11796481,19988481,27918337,40239105],"inverse":[4915202,16318467,17170434,21889025,25559042,27656194,33882119,37945345],"important":[28442625,31588353],"implied":[8650753,11141121,38076417],"infinity":[458753,13303809,17235969,20316161,30212097,39911425],"introduction":[20185089],"inherits":[8650753,23134209],"instead":[6553601,13107201,14548993,16252929,17563649,28049409,30998529,31522817],"intended":[1900545,4915202,12582913,17170434,18087937,21037058,23068674,27983873],"iso":[8388609,16842753],"import":[23986179,34930689],"initialized":[589825,2490369,5111809,7077892,12124164,12713985,13369345,13959169,15073281,23003137,23658497,26148865,29097985,32047105,34209793,34340865,35323905,37093377,37421057],"iterate":[2293761,32505857],"isnot":[8585219],"incremented":[15269890,16449538],"istrue":[327682,458754,589827,851970,983042,1114114,1245185,1376260,1441794,1638402,1966082,2293764,2424834,2490370,2555908,2621442,2686980,2883586,3014658,3080196,3211266,3276802,3342340,3473410,3670018,3735554,3866626,4063246,4325378,4521986,4718594,4784138,5111810,5177346,5242882,5373954,5439490,5767170,5963780,6029314,6094850,6225934,6488066,6750210,6881282,6946818,7012356,7274498,7405570,7471106,7602178,7667714,7733250,7929860,8126470,8192002,8257538,8323074,8388612,8454146,8585218,8716290,8847364,8912900,8978434,9043970,9109518,9175042,9240580,9306116,9371650,9437185,9633794,9764866,9830402,9961474,10027010,10092546,10485762,10616834,10747906,10878982,10944516,11272194,11403266,11468802,11599874,11730950,11927554,11993090,12058626,12386306,12451842,12517378,12582916,12845058,13041666,13107204,13303810,13369346,13434882,13500418,13631490,13762574,13828098,13893634,14221316,14286850,14352386,14548994,14614530,14680066,14745602,14876674,14942210,15138820,15269890,15335426,15400962,15728642,15794178,15859714,15990786,16121860,16187394,16252930,16318465,16449538,16515074,16711684,16842756,16908290,16973828,17039362,17235970,17563650,17629186,17694722,17891330,18219010,18350082,18546690,18677762,18743298,18808834,18939906,19070978,19136518,19267588,19398658,19529732,19595266,19791876,20054018,20250626,20316162,20381698,20512774,20578312,20643844,20774914,20905986,21037058,21102596,21299206,21364738,21430274,21561348,21757954,21823490,21889028,21954562,22020098,22085634,22151170,22282244,22347780,22413314,22478850,22544386,22740996,22937604,23003140,23068674,23265282,23724036,23920654,23986178,24051714,24248322,24313858,24444932,24576008,24641538,24772610,24838146,24969218,25100290,25165826,25231364,25296898,25362438,25427970,25493506,25559042,25690114,25952260,26017794,26148866,26279938,26345476,26673154,26804226,26869762,27000834,27197444,27394052,27525122,27656194,27721730,27787268,27983874,28049412,28180484,28704772,28770306,28835844,29032450,29097988,29229058,29294596,29491202,29556738,29687810,29818882,29949954,30015490,30081028,30212098,30277636,30539780,30605316,30670850,30998532,31064068,31129602,31391746,31457282,31653890,31719428,32112642,32309250,32374786,32505860,32636930,32702466,32899074,32964614,33357826,33488898,33554434,33619970,33816578,33882114,34013188,34144258,34209794,34275334,34340866,34406414,34603014,34668546,34734084,34799620,34865156,34930712,35061762,35192834,35258370,35520513,35651588,35913730,36044804,36110338,36241410,36306946,36700162,36765702,36831234,36896770,36962306,37224452,37289986,37486594,37552130,37683204,37814274,37879810,37945348,38010882,38273026,38207492,38338566,38404098,38535170,38469638,38731778,38797316,39124994,39321602,39583748,39780354,39911426,39976962,40042498,40108034,40566788,40632322,40828930,40894466,40960002,41025538,41156610,41222148,41287682,41353218],"isolated":[2293761,32505857],"iff":[4915208,9961474,16187394,17170440,17629186,29229058,29818882,35258370,36831234,39780354],"int":[262146,458755,720898,851974,983045,1048580,1245188,1441793,1507330,1638404,2293761,2555905,2686978,2752516,2883587,3014659,3276803,3473409,4063235,4390916,5177348,5242883,5373955,5636097,5898242,6029315,6225923,6488067,6750209,7274502,7405571,7471108,7602179,7667713,8126465,8192001,8388611,8650753,9043971,9109507,9240579,9306115,9437185,9633793,9961475,10027013,10092547,10616834,10747905,11403265,11468803,11599879,11730946,11862018,11927553,12779525,12976130,13041667,13238273,13303811,13369350,13434883,13500419,13631494,13697028,13762563,14221315,14352387,14483458,14614531,14876675,14942212,15269889,15335427,15597569,15728641,15794179,15859717,15990786,16121859,16187395,16318467,16580609,16711681,16842755,16908294,16973827,17301506,17367041,17629187,17694724,18481154,18546689,18743297,18939907,19267585,19333124,19398657,19529731,19595265,20054019,20185089,20250630,20381699,20512770,20774915,20840450,20971524,21102596,21561346,21823489,21954561,22020097,22085633,22544390,22740995,22937603,23461889,23920643,23986184,24182786,24379396,24444929,24576003,24838145,25100291,25165825,25427969,25624580,25690113,26017795,26214401,26411009,26542081,26673154,27459588,27656193,27721731,28180481,28770307,28835842,29229061,29294593,29360132,29687810,29818883,30212099,30605315,31064065,31129604,31457283,31588353,31719427,31916033,32309253,32374790,32440324,32505857,32636931,32768001,32899077,33161219,33488897,33554436,33619969,33685507,33882115,34209798,34406403,34603010,34668547,34734083,34799619,34865155,34930694,35258371,35454979,35520518,35586049,35717121,35913729,35979265,36110338,36241411,36306947,36569090,36700163,36831235,36962307,37093377,37289988,37683203,37748737,37814278,37879809,38010881,38076420,38207493,38404099,38731779,38862849,39124993,39452675,39780355,40108035,40239108,40566787,40763393,40828931,41287683,41418753],"initializes":[1310721,5505025,10682369,21626881],"integers":[1376257,4915201,5242881,8454145,8847361,9175041,9633793,10878977,14614529,14745601,16252929,16908289,17170434,19398657,19529729,20185089,20316161,21102593,21757953,22740993,25231361,25296897,25362439,27918337,28377089,32899073,34275335,35192833,35520513,36306946,38535169],"inverted_number":[4915201,17170433,17432582],"imply":[1966081,19136513],"int_bit":[23986177],"instance":[131077,393220,917506,1048577,1310724,1572868,1835012,1769473,2097154,2752513,4128769,4259844,4390913,4587525,4653060,5701633,6291458,6684674,7995396,8519683,8650753,9240577,9502724,10682369,11337729,12124161,12648450,13238276,13697025,14090241,15007746,15663108,16646145,17104897,17498113,18874372,19726340,20119556,20971521,21626882,23134209,23986178,25624577,25755651,27852803,28246020,28311553,28901379,28966913,29360129,29425667,30736388,30867460,31195140,31260675,31784962,32440321,33095685,33292289,34078723,35389441,35520513,35717124,37158916,37355523,38141956,38600709,39649281,39714817,39845890],"intend":[20185089],"identify":[30015489],"iterations":[5636097],"increase":[1114113,3080193,8847361,24641537,25952257,27459585,29097985,34144257],"initial":[4915206,8323073,9240577,16252929,17170438,19595265,21889027,25100289,28442625,30146561,31588353,37945348,40960001],"increasingly":[327681,4915201,17170433],"inline":[7143425,10223617,10551297,12320769,19464193,21692417,24117249,24707073,26607617,27262977,31850497,34471937,34996225,35848193,36634625,38666241],"immediately":[31719425],"item":[12124161,23592961,24379395],"inputs":[13828097,38338561],"irrespective":[33816577,41418753],"int32":[262148,458754,851971,983042,1048577,1245186,1376258,1441794,1507332,1638403,2752513,2883586,2949124,3014657,3276801,3342338,3604482,3670018,3735553,3866625,4063233,4259844,4390913,4521986,4980740,4915202,5177347,5242882,5373953,5898244,6029313,6225921,6488065,7274498,7405569,7471105,7602177,7733249,8323074,8388609,9043969,9109505,9175042,9240578,9306114,9633794,9830402,9961474,10027009,10092546,10878978,11468802,11599874,11862020,12779521,12976132,13041665,13238276,13303810,13369348,13434881,13500418,13631491,13697025,13762561,14221313,14352387,14483460,14614531,14876673,14942210,15335425,15728641,15794177,15859713,16121857,16187393,16318465,16842753,16908291,16973826,17170434,17235970,17301508,17629186,17694721,18481156,18939905,19333121,19398658,19529730,19595266,20054017,20185092,20250627,20316162,20381698,20774914,20971521,21102594,21299202,21430274,21757954,22544387,22740994,22806532,22937603,23265282,23920641,23986180,24182788,24379393,24576002,24838146,25100290,25231362,25296898,25624577,26017793,26214402,26673154,26804226,27328516,27459585,27590660,28770305,29229058,29360129,29491202,29818881,30015489,30081026,30212098,30343172,30605313,31129602,31195140,31391746,31457282,31719426,32309249,32374786,32440321,32571396,32636930,32899075,33161218,33423364,33554434,33685505,33882113,33947652,34209797,34340866,34406401,34668546,34734081,34799618,34865153,34930693,35061762,35258370,35454977,35520516,35717124,36241410,36306945,36569092,36700162,36831234,36962307,37289987,37683202,37814276,38076417,38141956,38207490,38404098,38535170,38469634,38731779,39387140,39452673,39780354,39911425,40108033,40239105,40566785,40632321,40828930,40960002,41287681,41353217],"interface":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915202,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124163,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318466,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170434,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185092,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753],"intentionally":[7667713,9437185,14680065],"int16":[655362,2031620,2949122,4259844,4980740,6815748,7208964,11010052,13238276,15466500,20185089,21495812,22806532,24510466,25034756,25886724,27328516,27590660,30343172,31195140,32571394,33423364,33947652,35717124,36438020,37617668,38141956,39387140]} \ No newline at end of file +{"identity":[29753345],"included":[40108033],"index":[4980737,9764865,10551299,11534337,12779523,13631489,21889025,22151169,24903682,27328520,32833538,37683201],"ignored":[1441793,3538945,4980737,8585217,16449538,19857409,19922945,22544387,25165825,27262977,33161217,40304641],"iterates":[11534337,38404097,40894466],"implicit":[196610,3407874,4521986,6619138,7208962,10354690,12058626,12255234,14548994,14942210,15007746,15400962,17301506,18350082,19398658,20316162,21299202,21495810,22413314,22872066,23920642,24313858,24444930,25034754,27721730,30015489,30212098,31391746,32112642,33619970,37158914,39583746,39649282,40960002],"inherited":[131074,1245185,1572865,2293761,4194305,4325378,4718593,7667717,10747909,10944518,11534342,11599873,13172742,14286849,15859713,16515077,18219009,18415621,23330817,24117254,24182790,25821190,33685505,34340865,36110338,36700166,36831233,36896774,36962306,38404102,39452673,40566790],"increment":[7077890,14221314,18022402,27066370,33423362],"implementation":[1441793,2228225,3538945,5767169,8978433,10551297,12517377,12779521,13631489,16121857,19333121,21168129,21889025,25690113,35323905,37486593,37683201],"identical":[1179649,2031617,5505025,13697025,19857409,23855105,25362433,27459585,29491201,33095681,39780353,41025537],"ienumerable":[11534344,40894465],"initialize":[327682,589826,720900,786434,1048578,1114113,1179650,1310722,1507332,2031618,2097155,2228230,2490370,2555906,2883586,3014660,3080194,3145730,3211268,3276804,3604485,3735556,3997698,4128770,4587522,4980738,5046274,5308420,5373954,5636100,5767170,5898242,6094852,6160386,6422530,6946818,7012357,7077890,7340038,7471110,7864324,7929862,7995396,8126470,8192002,8323074,8454148,8585218,8716292,8781826,8847364,8978438,9109506,9175042,9371652,9502724,9568260,9633796,9830402,9961476,10027010,10223618,10289156,10551298,10682370,10878978,11141124,11272194,11337732,11403266,11665414,11730950,11796482,12124163,12517380,12582916,12713990,12779522,12845060,12910598,12976134,13041666,13107204,13369346,13500422,13631490,13697028,13828098,13893634,13959170,14024706,14221316,14483460,14614530,14745603,14811140,15073284,15138822,15335430,15597570,15794178,15990788,16056324,16121860,16187394,16252932,16449538,17039362,17104898,17235970,17563654,17760258,17825796,18022402,18153474,18284546,18546692,18743300,18874372,19333143,19529730,19660802,19791876,19857412,19922946,19988482,20447234,20709379,20840450,20905990,20971524,21037058,21168151,21233667,21626882,21692418,21757954,21889026,22216708,22347780,22478854,22544386,22675458,22937604,23199748,23461891,23527428,23592962,23658500,23724034,23855112,23986180,24051720,24248323,24576002,24641540,24707074,24838150,25165826,25690114,25755652,25952260,26148868,26476546,26607619,26673154,26738690,26869762,26935300,27066370,27262982,27459586,27525124,27656196,27787268,27983876,28114946,28180482,28246019,28508164,28639235,28770306,29360134,29425666,29491204,29687812,29753348,30015490,30081026,30277636,30343170,30408706,30539782,30736386,30867458,30998530,31064066,31260674,31588354,31653892,31719426,31850498,31981572,32047108,32178179,32309252,32505860,32571394,32636930,32768004,33030150,33095682,33161218,33423364,33816578,33947652,34013190,34144260,34406404,34537474,34603012,34799618,34930690,34996226,35192838,35258374,35323910,35454980,35520516,35586050,35651590,35913731,35979266,36241411,36438019,36569090,36634625,37027843,37093380,37224451,37355522,37486594,37552130,37617670,37683202,38141954,38273028,38338564,38535172,38600710,38731778,39059462,39321602,39518212,39845892,39911428,40042502,40239106,40304641,40370180,40697858,41091078,41418754],"initializing":[786433,2097153,3735553,3801089,5111809,5898241,10027009,10682369,14024705,14745601,21757953,24248321,24510465,24641537,26148865,26869761,27656193,28114945,28639233,29425665,30343169,30736385,35913729,36438017,37027841,37355521,40304641],"indicating":[131074,458753,851970,1245186,1572866,1900546,2293762,4194306,4325378,4718594,6553602,6815746,7274497,8257537,12648450,14286850,15728642,16318465,17956865,18219010,20381697,21954561,23330818,26607617,27000833,27394049,27590657,28311553,29622274,33685506,34340866,35061761,36110338,36306945,36831234,36962306,38469634,38993921,39124993,39256065,39452674],"indicates":[1245186,4194306,4325378,8519681,9306113,11927553,11993090,13238273,14286850,14680066,17629185,20774914,21102594,22740993,24379393,25427970,27131905,27197441,28049409,28966913,30605314,32243713,32964609,33685506,33751041,35782658,36110338,36372481,36831234,37486593,37945345,38862850,39452674,41025538],"instructions":[25231362],"inherit":[10944513,25821185],"information":[3997697,6160385,9764865,15073281,22478849,30277633,31588353],"interpreted":[9830401,22544385],"implements":[11534337,40894465],"invoking":[15073281,16252929,22478849,30277633],"inclusive":[1048577,2228227,4390913,15073281,19333128,19988481,21168136,22478849,30277633,30932993,39387137],"inheritance":[10944513,11534337,13172737,16515073,21168129,24117249,25821185,40566785],"identified":[13041666],"implemented":[37289985],"inequality":[1245185,4194305,4325377,11993089,14286849,14680065,17629185,20774913,21102593,22740993,24379393,25427969,27131905,30605313,32243713,32964609,33685505,33751041,35782657,36110337,36372481,36831233,38862849,39452673],"installation":[25231361],"include":[25231362],"ienumerator":[40894470],"install":[25231369],"internal":[9043969,19333121,21168129,37486594],"improve":[15925249],"integer":[196609,327684,393218,524290,589827,983042,1048578,1114116,1179652,1376257,1507332,1703939,1835009,2031619,2228228,2359298,2424833,2490369,2555905,2752516,2818051,2883589,2949122,3014660,3080194,3145733,3276804,3473412,3866626,3997698,4194305,4390915,4456450,4653057,4980740,5046277,5177346,5308420,5373957,5505027,5701633,5767170,5898245,5963779,6029313,6160389,6291459,6422533,6946819,7012359,7077889,7340036,7405571,7471109,7602178,7733249,7864326,7995395,8060931,8126468,8192002,8323077,8388609,8585217,8847361,8978436,9043970,9109509,9175045,9240577,9568260,9633793,9699330,9764865,9830401,9961476,10223619,10289158,10551298,10747906,10878980,10944513,11141125,11206657,11665413,11730948,12058625,12124162,12320769,12386305,12517379,12582913,12779522,12845060,12910595,13041667,13107204,13369345,13500420,13565954,13631490,13697027,13828101,13893635,13959172,14024707,14090241,14221320,14286849,14352387,14417923,14483460,14614532,14745603,14811141,15007745,15073286,15138820,15269889,15335428,15532035,15597569,15663105,15794181,15859713,15925254,15990788,16056323,16121859,16187396,16252930,16384002,16449542,16515074,16580610,16908290,16973825,17039365,17104897,17170433,17498113,17694721,17760261,17825796,18022404,18153477,18284547,18481153,18546691,18677763,18743300,18808834,18874369,18939906,19005443,19070978,19333156,19529731,19660804,19726339,19791877,19857412,19922947,19988483,20054018,20250627,20447234,20643842,20709379,20840452,20905989,20971524,21037058,21168164,21430273,21561345,21626883,21692421,21823489,21889026,22216706,22347780,22478856,22544386,22675458,22872065,22937601,23068673,23134209,23461892,23527427,23592961,23658500,23724036,23855109,24051717,24576003,24707077,24772610,24838148,24903681,24969218,25100290,25165827,25296898,25362433,25493507,25559041,25690114,25755653,25821189,25952262,26148867,26279940,26345476,26411012,26476547,26542082,26607622,26673157,26738689,26935302,27066369,27262980,27328513,27459588,27787267,27852803,27983875,28180483,28377091,28508164,28770309,28835842,28901378,29163522,29294594,29360132,29425665,29491203,29687812,29753347,30015489,30146562,30277638,30408708,30539780,30867461,30932995,31064069,31260673,31522818,31588357,31653891,31719426,31784961,31850499,31916034,31981569,32178181,32440323,32505861,32571405,32636931,32702465,32768002,32833537,32899075,33030149,33095683,33161222,33292291,33423368,33554433,33685505,33816581,33882115,33947652,34013189,34275329,34406401,34537474,34603012,34668546,34799618,34930693,34996225,35192836,35258372,35323908,35520515,35586051,35651587,35717121,35979265,36044803,36241409,36438019,36634625,37224452,37289986,37486595,37552132,37617668,37683202,37748738,37879810,38010881,38076417,38141953,38273025,38338565,38535172,38731777,38928385,39321603,39387139,39452673,39518211,39780353,39911429,39976963,40042500,40108033,40239109,40304643,40370177,40632321,40828930,41025538,41091074,41156611,41287682,41418755],"including":[8192001],"intptr":[393221,10092549,10616837,12189698,17367045,18939908,19333121,21037058,21168129,29097989,31326213,34209794,38076422,40828930,41353221],"infinite":[12517377,25690113],"invoke":[25231361],"iteration":[27656193],"independent":[7405570,33292290,37289985],"initialization":[3604481,6094849,7012353,12124161,12976129,14614529,15073281,16252929,19333121,20185089,20709377,21233665,21168129,22478849,23461889,23986177,28246017,30277633,32178177,35913729,36241409,37093377,37224449,38273025],"initializations":[2097153,28639233],"interval":[30998529],"input":[2752513,4653059,5177346,6029315,8192002,8388611,11403265,12320771,12910593,14614529,15925249,18939905,19333124,21168132,21561350,22544386,24772612,25165825,25231361,26411009,26542081,37748737,38928390,41156609],"integwer":[41025537],"int64":[655362,917508,2686978,3014658,4194308,4915204,6619140,14155780,14286852,16646148,16777220,17891330,20774916,20971522,21102596,23265282,24576002,25231361,27721732,27918338,30605316,30670850,33685508,35389444,35782660,36503556,36831236,37421060,38862852,39452676,39649284,40173572],"initonly":[9437185,9895937,12189697,20119553,34209793,40828929],"inverse":[15925251,19333122,20054017,21168130,24051714,25755650,29163521,37617671],"important":[30081025,36569089],"implied":[10944513,11599873,40108033],"infinity":[327681,13369345,17235969,23592961,30408705,40697857],"introduction":[25231361],"inherits":[10944513,25821185],"instead":[6160385,12845057,14221313,14745601,18743297,25231361,31588353,32899073,33423361],"intended":[1835009,13959169,18481153,19333122,19660802,21037058,21168130,23855105],"iso":[7733249,15269889],"import":[26607619,33161217],"initialized":[786433,2097153,5111809,8650756,11534340,12124161,13303809,15073281,16252929,22478849,24510465,27656193,28639233,29032449,30277633,32178177,33226753,34865153,35913729],"iterate":[2490369,38141953],"i686":[25231363],"isnot":[10158083],"incremented":[13107202,15138818],"istrue":[327682,524290,589826,720898,786435,1114113,1179650,1310722,1507332,1703938,2031618,2097154,2228226,2490372,2555906,2752514,2818050,2883586,3014660,3080194,3145730,3211266,3276802,3473412,3604482,3735556,3997700,4128770,4390914,4587522,4653070,4980746,5046274,5111810,5177346,5308418,5373954,5505026,5636098,5767170,5898244,5963778,6029326,6291460,6422530,6946818,7012354,7077890,7340034,7405572,7471106,7602178,7733252,7864322,7929858,7995394,8060932,8126466,8192004,8323074,8388622,8454146,8585218,8716290,8781825,8847362,8978434,9109506,9175042,9240582,9371650,9502722,9568258,9633794,9764866,9830404,9961474,10027010,10158082,10223618,10289154,10551298,10682372,10878978,11141126,11272194,11337730,11403270,11665412,11730946,11796482,12124162,12320782,12517378,12582914,12713986,12779522,12845058,12910594,13041666,13107202,13369346,13500418,13631490,13697026,13828098,13893634,13959172,14024706,14090244,14221316,14352388,14417922,14483458,14614530,14745602,14811138,15138818,15269892,15335426,15532034,15597570,15663108,15794178,15925249,15990786,16056322,16121858,16187394,16384002,16449538,16908290,16973826,17039362,17104898,17235970,17563650,17760258,17825796,18022402,18153474,18284548,18546690,18677764,18743298,18808834,18874370,18939912,19005442,19070978,19529732,19660802,19726342,19791878,19857412,19922952,20054020,20250628,20447236,20709378,20840450,20905988,20971524,21037058,21233666,21430274,21561358,21626882,21692418,21757954,21823490,21889026,22216706,22347778,22544386,22675458,22937602,23134212,23199746,23461890,23527426,23592962,23658498,23724036,23855106,24051714,24248326,24510466,24576002,24641538,24707074,24772612,24838146,24903682,25100292,25165828,25296898,25362436,25493508,25559042,25690114,25755650,25952260,26148866,26279940,26345476,26411010,26476546,26542082,26607618,26673154,26738690,26869764,26935300,27066370,27262978,27459586,27525122,27656196,27787266,27852802,27983874,28114950,28180482,28246018,28377092,28508164,28639236,28770306,28901380,29163524,29294594,29360130,29425666,29491202,29687810,29753346,30015492,30343174,30408706,30539778,30736386,30867458,30932994,31064066,31260674,31522820,31653890,31719426,31850498,31981570,32047108,32178178,32309250,32440324,32505862,32571396,32636930,32702468,32768002,32833538,32899076,33030148,33095682,33161240,33292292,33423364,33816578,33882114,33947652,34013188,34144258,34406402,34537474,34603010,34799618,34930690,34996228,35192834,35258370,35323906,35454978,35520514,35586052,35651586,35717124,35913730,35979266,36044804,36241410,36438018,36634626,37027846,37224450,37289988,37355526,37486594,37552130,37617666,37683202,37748738,37879810,38010884,38141956,38338562,38535170,38600706,38731778,38928398,39059458,39321604,39387138,39518210,39780356,39845890,39911428,40042498,40239106,40304641,40370178,40697858,41025542,41091078,41156610,41287682,41418754],"isolated":[2490369,38141953],"iff":[9109506,16384002,17039362,19333128,21168136,26542082,26673154,28770306,33816578,34930690],"int":[196610,327683,589829,983044,1048578,1114116,1179654,1310721,1376258,1507330,2031620,2490369,2555907,2883587,2949124,3014657,3080193,3145731,4456452,4653059,5046275,5177348,5373955,5701634,5767171,6029315,6094849,6422531,6946817,7471107,7602179,7733251,7864324,7995395,8192003,8323078,8388611,8454145,8585217,8716289,8781825,9109507,9175045,9240577,9568257,9633795,9830403,9961475,10223618,10878983,10944513,11141122,11206661,11337729,11796481,12058626,12124166,12320771,12386306,12582915,13041670,13107201,13369347,13565956,13697027,13828099,13893635,14090243,14286849,14417923,14483459,14811139,15007746,15204353,15269891,15400961,15597572,15663107,15794181,15925251,15990785,16187394,16384003,16449542,16711681,16973827,17039363,17104897,17170436,17498114,17694722,17760260,17825793,18022401,18153475,18284547,18874371,19267585,19529732,19791874,19857410,19922947,19988482,20447235,20643844,20709377,20840449,20971521,21233665,21430275,21561347,21626883,21757954,22347777,22544390,22675457,22806529,22872066,23068676,23134211,23199745,23461891,23658497,24576001,24772611,24969220,25165827,25231361,25755649,26476547,26542083,26607624,26673157,26738689,26935297,27328516,27459590,27525121,28180482,28508161,28770307,28835841,28901377,29032449,29425668,29491203,29687809,29753345,29949953,30015491,30081025,30146564,30408707,30867461,31064067,31260675,31391745,31522817,31719425,31784963,31850499,31916036,31981571,32112641,32178182,32505858,32636931,32702467,33095684,33161222,33554435,33816579,33947650,34144257,34406403,34537478,34603011,34799621,34930691,34996227,35454977,35586053,35717123,35979267,36241411,36634627,37486598,37552132,37617667,37814273,38010883,38076419,38141953,38273027,38338563,38535169,38731779,38928387,39190529,39321603,39452673,39583745,39976961,40108036,40304646,40632322,40763393,40828932,41222145,41287683,41418754],"initializes":[1245185,6750209,10813441,24117249],"integers":[3997697,5046273,5898241,8585217,9764865,10289153,11403265,13893633,14024705,14745601,16449537,19333121,19529729,20447233,20840449,21168130,21692417,23592961,24707073,25165825,25231361,25952257,26804225,28114951,31850498,34209793,34799617,36438017,37027847,40239105,40304641],"installed":[25231361],"inverted_number":[19333121,21168129,21364742],"imply":[1703937,19726337],"int_bit":[26607617],"instance":[131077,458756,851970,983041,1245188,1441793,1572868,1900546,2293764,2949121,3538945,4194308,4325381,4456449,4718596,6553602,6815746,7274499,7667713,8257540,8192001,10747905,10813441,10944513,11534337,12648450,13172737,13565953,14286852,14942209,15728642,16318468,16515073,17956868,18219012,18415617,20381700,20643841,21954564,23330820,24117250,24182785,24969217,25821185,26607618,27000835,27394052,27590659,28311555,29622274,30146561,31916033,33685508,34340868,35061763,35127297,36110341,36306947,36700161,36831236,36896769,36962309,38404097,38469634,38993923,39124996,39256067,39452676,40304641,40566785],"intend":[25231361],"identify":[22216705],"iterations":[6094849],"increase":[2752513,3473409,5898241,23068673,26279937,26411009,27656193,37748737],"initial":[7012353,8192001,14745601,19333126,20054019,20709377,21168134,23461889,29163524,30081025,32374785,36569089,37224449],"increasingly":[524289,19333121,21168129],"inline":[8519681,9306113,11927553,13238273,17629185,22740993,24379393,27131905,27197441,28049409,28966913,32243713,32964609,33751041,36372481,37945345],"immediately":[30015489],"item":[11534337,22151169,27328515],"inputs":[12910593,41091073],"irrespective":[35651585,39976961],"int32":[196612,327682,589826,983041,1114114,1179651,1310722,1376260,2031619,2555906,2686980,2883585,2949121,3145729,3276801,3604482,3735554,3801090,3997698,4128769,4194308,4456449,4653057,4587522,4915204,5046274,5177347,5373953,5701636,5767169,6029313,6422529,7012354,7471105,7602177,7733249,7864321,7995393,8126465,8192002,8323074,8388609,8585218,9109506,9175041,9371650,9633794,9830402,9961474,10289154,10878978,11206657,11403266,12058628,12124164,12320769,12386308,12582914,13041667,13369346,13565953,13697027,13828097,13893635,14090241,14286852,14417921,14483457,14811137,15007748,15269889,15597570,15663105,15794177,15925249,15990785,16384001,16449539,16973825,17039362,17170433,17235970,17498116,17694724,17760257,18153473,18284546,18874370,19333122,19529730,19922946,20447234,20643841,20709378,20774916,20840450,21102596,21233666,21168130,21430273,21561345,21692418,21757954,22216705,22544387,22872068,23068673,23134209,23461890,23592962,24248322,24641538,24707074,24772611,24969217,25165826,25231364,25952258,26148866,26476546,26542081,26607620,26673154,27328513,27459587,27918340,28246018,28770306,28835842,29425666,29491201,30015490,30146561,30408706,30343170,30605316,30670852,30736386,30867457,31064065,31260674,31784961,31850497,31916033,31981570,32047106,32178181,32309250,32636931,32702465,32768002,33095683,33161221,33554433,33685508,33816578,34406402,34537474,34603010,34799619,34930690,34996226,35586050,35717121,35782660,35913730,35979266,36241410,36503556,36634626,36831236,37224450,37486596,37552130,37617665,38010881,38076418,38273025,38338561,38731777,38862852,38928385,39059457,39321602,39452676,39845889,40108033,40239106,40304644,40632324,40697857,40828929,41287683],"interface":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534339,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925250,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333122,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168130,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231364,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753],"intentionally":[8454145,8781825,12713985],"int16":[655362,1769476,2686978,4194308,4915204,7143428,7798788,10485764,14286852,14876676,20774916,21102596,22609924,23265282,23920644,24313860,25231361,27918340,28442628,30605316,30670850,33488900,33685508,35782660,36503556,36831236,38862852,39452676]} \ No newline at end of file diff --git a/docs/fti/FTI_106.json b/docs/fti/FTI_106.json index 72815f9..833eda9 100644 --- a/docs/fti/FTI_106.json +++ b/docs/fti/FTI_106.json @@ -1 +1 @@ -{"just":[1769473,4784129,9240577,9633793,24576001,29097985,34930690,37683201,38076417,40108033],"jacobi":[851972,1638404,4915206,9043972,14352388,17170438,22544388,28770305,37289988]} \ No newline at end of file +{"just":[1441793,4980737,8192001,8585217,19922945,27656193,33161218,34996225,38731777,40108033],"jacobi":[1179652,2031620,7995396,13697028,19333126,21168134,27459588,29491201,33095684]} \ No newline at end of file diff --git a/docs/fti/FTI_107.json b/docs/fti/FTI_107.json index a1758aa..45e0cc8 100644 --- a/docs/fti/FTI_107.json +++ b/docs/fti/FTI_107.json @@ -1 +1 @@ -{"kronecker":[851973,1638405,4915205,14352389,17170437,22544389,37289989],"kind":[12713985,31522817,39256065],"known":[4915202,6946817,10747905,16252929,16318465,17170434],"know":[23986177,31719425],"knut":[4915201,17170433,37814273],"keys":[28442625,31588353],"knuth":[37814273,38010881]} \ No newline at end of file +{"kronecker":[1179653,2031621,13697029,19333125,21168133,27459589,33095685],"kind":[15073281,30998529,31588353],"known":[7340033,9568257,14745601,15925249,19333122,21168130],"know":[26607617,30015489],"knut":[19333121,21168129,37486593],"keys":[30081025,36569089],"knuth":[29753345,37486593]} \ No newline at end of file diff --git a/docs/fti/FTI_108.json b/docs/fti/FTI_108.json index 1d3ee62..e3640e3 100644 --- a/docs/fti/FTI_108.json +++ b/docs/fti/FTI_108.json @@ -1 +1 @@ -{"lower":[4915201,14614530,16908290,17170433,19529730,20250626,22740994,31719426,38076417,39321601,40828930],"likely":[12713985,31522817,39256065],"limb":[1900546,3080193,4784132,4915215,5177346,5963777,7012353,8323073,8781826,11796481,12124161,12582914,13959169,14286850,16252929,17170450,18087938,18350083,19136514,19595265,20578308,20643841,21037058,22937601,23068674,23592961,24379394,25100289,25952257,26345473,27394049,27918337,28377091,28704769,29818881,30998529,31195139,33292295,34013186,35323905,36044801,36765697,37093377,37486594,38076418,40239105,40960001,41156610],"logical":[2621441,4325377,4915208,6094849,17170440,18677761,24576001,24969217,30670849,31653889,37224449,40894465],"logic":[2424833,6029313,10485761,11272193,12058625,12451841,12517377,16515073,20905985,26869761,38273025,39976961],"lot":[20250625],"locale":[9306113,20250625,40828929],"locate":[24576001],"long":[786436,1900545,2555908,4259843,4915205,5177345,5832706,6422532,6750210,8650753,9633795,10813442,11665410,12189698,12713985,13238275,14024708,16711682,16777220,17170437,17825794,18022402,18087937,18153476,18939906,19267588,20185091,20840449,23330818,23855106,23986179,25427972,27066370,29294594,30408706,30932994,31326212,31522817,32899076,35127298,35717121,36372484,36831234,37421058,38076418,39256065,40173572,40370180,41091076],"location":[1769474,7012353,8650753,11141121,36044801,38076417],"loads":[20185089],"let":[7143425,10223617,10551297,12320769,19464193,20578308,21692417,24117249,24707073,26607617,27262977,31850497,34471937,34996225,35848193,36634625,38666241],"latest":[20185089],"letters":[14614532,16908289,19529732,20250625,22740993,31719428,40828932],"large":[14614529,21889025,23658498,37945345,40108033],"limbs":[327681,1114115,1376258,1703939,1900545,1966083,2621441,3080195,3145730,3538945,3801091,4325377,4718593,4784131,4915226,5177345,5963780,6094849,6553602,7012353,7077893,7405569,7536644,7929858,8454146,8650756,8781826,9371649,11141124,12124167,12386306,12582922,13238274,13434881,13959170,14286862,15138818,15532033,16056323,16187393,16318466,17039361,17170458,18087937,18219009,18350083,18677761,19136516,19333122,20578311,20643842,21037072,21364737,21626882,21889025,22282243,22347780,22413313,22609923,22675457,22937603,23068686,23134211,23592961,24051713,24641540,24969217,25952259,26345474,26738693,27197442,27394049,27459586,28180481,28573700,28704770,29818881,30277634,30539779,30670849,30801924,30998530,31064065,31522818,31653889,32243714,33292292,34013189,34144258,35323906,36044801,36175875,36765699,37027842,37093378,37224450,37421060,37486594,37552129,37945345,38076420,38731777,39059457,39256069,39714817,40435714,40894465,41156610,41222145],"lucas":[2293766,4915201,17170433,18546691,25165830,32505859],"link":[1],"libraries":[20185089],"like":[4915202,7012353,9240578,9306113,17170434,20250625,34013185,34209793,34930689,35520514,36044801,39583745],"leave":[16318466],"lets":[7667713,9437185,14680065,34734081,40566785],"leading":[5177345,9240578,9306113,16318465,16908289,17498113,20250625,22740993,32178177,35520513],"lnsub1":[2293784,4915201,17170433],"loop":[10944513],"linear":[4915202,5636099,17170434,39452675],"list":[196609,589825,655361,917505,2097153,2949121,4194305,4915206,4980737,6291457,6684673,7077889,12648449,15007745,17170438,18612225,21299201,22806529,23396353,24510465,25362434,26935297,31784961,32571393,32964609,34275330,38469633,39387137,39845889],"library":[8388609,14090241,16842753,20185096,34734081,38207489,40566785],"little":[33292290],"lsb":[23986178,34930690],"language":[327682,458754,589826,720898,851970,983042,1114114,1245186,1376258,1441794,1638402,1900546,1966082,2293762,2424834,2490370,2555906,2621442,2686978,2883586,3014658,3080194,3211266,3276802,3342338,3473410,3604482,3670018,3735554,3866626,4063234,4325378,4521986,4718594,4784130,5046274,5111810,5177346,5242882,5373954,5439490,5636098,5767170,5963778,6029314,6094850,6225922,6488066,6553602,6750210,6881282,6946818,7012354,7274498,7405570,7471106,7602178,7667714,7733250,7929858,8126466,8192002,8257538,8323074,8388610,8454146,8585218,8716290,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9633794,9764866,9830402,9961474,10027010,10092546,10289154,10485762,10616834,10747906,10878978,10944514,11272194,11403266,11468802,11534338,11599874,11730946,11796482,11927554,11993090,12058626,12255234,12386306,12451842,12517378,12582914,12713986,12845058,13041666,13107202,13303810,13369346,13434882,13500418,13631490,13762562,13828098,13893634,14221314,14286850,14352386,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15073282,15138818,15269890,15335426,15400962,15728642,15794178,15859714,15990786,16121858,16187394,16252930,16318466,16449538,16515074,16711682,16842754,16908290,16973826,17039362,17235970,17432578,17563650,17629186,17694722,17891330,18087938,18219010,18350082,18546690,18677762,18743298,18808834,18939906,19070978,19136514,19267586,19398658,19529730,19595266,19791874,20054018,20185090,20250626,20316162,20381698,20512770,20578306,20643842,20709378,20774914,20840450,20905986,21037058,21102594,21299202,21364738,21430274,21561346,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22282242,22347778,22413314,22478850,22544386,22740994,22937602,23003138,23068674,23265282,23658498,23724034,23920642,23986178,24051714,24248322,24313858,24444930,24576002,24641538,24772610,24838146,24969218,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25690114,25952258,26017794,26148866,26214402,26279938,26345474,26542082,26673154,26804226,26869762,27000834,27197442,27394050,27525122,27656194,27721730,27787266,27918338,27983874,28049410,28114946,28180482,28442626,28704770,28770306,28835842,29032450,29097986,29229058,29294594,29491202,29556738,29687810,29753346,29818882,29949954,30015490,30081026,30212098,30277634,30539778,30605314,30670850,30998530,31064066,31129602,31391746,31457282,31522818,31588354,31653890,31719426,32047106,32112642,32309250,32374786,32505858,32636930,32702466,32899074,32964610,33357826,33488898,33554434,33619970,33816578,33882114,34013186,34144258,34209794,34275330,34340866,34406402,34603010,34668546,34734082,34799618,34865154,34930690,35061762,35192834,35258370,35520514,35651586,35913730,36044802,36110338,36241410,36306946,36503554,36700162,36765698,36831234,36896770,36962306,37224450,37289986,37486594,37552130,37683202,37814274,37879810,37945346,38010882,38273026,38207490,38338562,38404098,38469634,38535170,38731778,38797314,38862850,38993922,39124994,39256066,39321602,39452674,39583746,39780354,39911426,39976962,40042498,40108034,40239106,40566786,40632322,40828930,40894466,40960002,41025538,41156610,41222146,41287682,41353218,41418754],"legendre":[4915201,17170433,28770308],"left":[3866625,4915202,17170434,28180482,31719425,37224449],"largest":[5177345,10485761,12058625,12517377,20905985,22937601,35651586],"locations":[4915201,8585217,17170433],"larger":[31195137],"lowest":[7929857,22282241],"length":[1900545,4915203,17170435,18087937,22937601,33161222],"leaks":[8454145],"leaky":[3080193,25952257],"localeconv":[9306113,20250625,40828929],"logarithm":[30998529],"level":[327681,1114113,1703937,1900545,1966081,2621441,3080193,3801089,4325377,4718593,5177345,5963777,6094849,7012353,7405569,7536641,7929858,8454145,9371649,13434881,15138817,16187393,16318465,17039361,18087937,18219009,18350081,18677761,19136513,20185089,20578305,20643842,21364737,21889025,22282242,22413313,22609921,22937601,23724033,24051713,24641537,24969217,25952257,26345474,26738689,27197441,27394049,27525121,28180481,28573697,28704769,29032449,29818881,30277633,30539777,30670849,30801921,30998530,31064065,31653889,34144257,36044801,36175873,36765697,37224449,37486593,37552129,37945345,38731777,40894465,41156609,41222145],"log":[16318466],"low":[327681,1114113,1703937,1900545,1966081,2621441,3080193,3801089,4325377,4718593,5177345,5636097,5963777,6094849,7012353,7405569,7536641,7929857,8454145,9371649,13434881,15138817,16187393,16318465,17039361,18087937,18219009,18350081,18677761,19136513,20185089,20578305,20643842,21364737,21889026,22282241,22413313,22609921,22937601,23724033,24051713,24641537,24969217,25952257,26345474,26738689,27197441,27394049,27525121,28180481,28442625,28573697,28704769,29032449,29818881,30277633,30539777,30670849,30801921,30998530,31064065,31588353,31653889,34144257,36044801,36175873,36765697,37224449,37486593,37552129,37945346,38731777,40894465,41156609,41222145],"letter":[16908290,20250626,22740994]} \ No newline at end of file +{"lower":[13893634,16449538,19333121,20447234,21168129,22544386,25165826,30015490,36634626,40108033,40370177],"likely":[15073281,30998529,31588353],"limb":[1835010,3473409,4980740,5177346,6291457,7012353,7405569,9043970,11534337,12189697,13303809,13959170,14614530,14745601,18481154,18677761,18939908,19005443,19333135,19660802,19726338,20709377,21037058,21168146,22151169,23461889,24772609,25100289,25493505,26279937,26345473,26542081,26804227,27328514,29032449,32571394,32899073,33226753,33292289,34209793,35127303,36831235,37224449,37879810,40108034,40828929,41025537,41156610],"logical":[2818049,4390913,5963777,15532033,19333128,19922945,21168136,27852801,30932993,33882113,37289985,39387137],"logic":[2228225,5767169,8978433,10551297,12517377,12779521,13631489,16121857,21889025,25690113,35323905,37683201],"lot":[22544385],"locale":[9830401,22544385,36634625],"locate":[19922945],"long":[917508,1835009,3014660,4194307,5177345,6225922,6619140,6946818,8585219,10354690,10420226,10944513,13434882,14155780,14286851,15073281,16646148,16777220,17301506,17432578,17825794,18153474,18481153,19333125,19988481,20971524,21168133,21299202,22413314,23396354,24576004,25231363,26214402,26607619,27721732,28508162,28770306,30801922,30998529,31588353,33619970,34799620,34865154,35389444,37421060,39452673,39649284,40108034,40173572],"location":[1441794,7405569,10944513,11599873,25231361,33292289,40108033],"loads":[25231361],"let":[8519681,9306113,11927553,13238273,17629185,18939908,22740993,24379393,27131905,27197441,28049409,28966913,32243713,32964609,33751041,36372481,37945345],"letters":[13893636,16449537,20447236,22544385,25165825,30015492,36634628],"large":[13893633,20054017,22478850,29163521,38731777],"limbs":[524289,1638403,1703939,1835009,2752515,2818049,3342337,3473411,3866626,3997698,4259844,4390913,4784131,4980739,5177345,5505025,5963777,6160386,6291460,7405569,7602177,8060930,8650757,9043970,9764866,10944516,11272194,11534343,11599876,13303810,13762561,13959178,14286850,14352386,14417921,14614542,15532033,15859715,15925250,16384001,16908289,17170434,18481153,18677762,18808833,18939911,19005443,19070977,19333146,19660816,19726340,20054017,20250627,20578307,21037070,21168154,21823489,22151169,23068674,23724036,24117250,24772611,25100289,25296897,25493506,25559041,25624577,25821187,26017797,26279939,26345474,26411012,26542081,27852801,28377091,28704772,28901377,29032450,29163521,29294593,30474242,30932993,30998533,31522817,31588354,32440322,32571397,32899074,33226754,33292289,33882113,34078722,34275329,34734084,34865156,35127300,36044802,37289986,37748738,37879810,38404097,39387137,39780353,40108036,40501251,40894466,41025539,41156610,41287681],"lucas":[2490374,17104899,19333121,21168129,26738694,38141955],"link":[1],"libraries":[25231362],"like":[7405569,8192002,9830401,19333122,21168130,22544385,32178177,32571393,33161217,33292289,39911425,40304642],"leave":[15925250],"lets":[8454145,8781825,12713985,32702465,35717121],"leading":[5177345,8192002,9830401,14942209,15925249,16449537,22544385,25165825,30212097,40304641],"lnsub1":[2490392,19333121,21168129],"libgmp":[25231365],"loop":[10682369],"linear":[6094851,19333122,21168130,38273027],"list":[262145,655361,786433,851969,1900545,2686977,3670017,4915201,6553601,6815745,8650753,12648449,15728641,17891329,19333126,21168134,22020097,23265281,24248321,26083329,27918337,28114946,29622273,30343169,30670849,36503553,37027842,37355521,38469633],"library":[7733249,13172737,15269889,25231375,32702465,35586049,35717121],"little":[35127298],"lsb":[26607618,33161218],"language":[327682,524290,589826,720898,786434,1048578,1114114,1179650,1310722,1507330,1703938,1835010,2031618,2097154,2228226,2490370,2555906,2752514,2818050,2883586,3014658,3080194,3145730,3211266,3276802,3473410,3604482,3735554,3801090,3997698,4128770,4390914,4587522,4653058,4980738,5046274,5111810,5177346,5308418,5373954,5439490,5505026,5636098,5767170,5898242,5963778,6029314,6094850,6160386,6291458,6422530,6946818,7012354,7077890,7340034,7405570,7471106,7602178,7733250,7864322,7929858,7995394,8060930,8126466,8192002,8323074,8388610,8454146,8585218,8716290,8781826,8847362,8978434,9109506,9175042,9240578,9371650,9437186,9502722,9568258,9633794,9764866,9830402,9961474,10027010,10158082,10223618,10289154,10551298,10682370,10878978,11010050,11141122,11272194,11337730,11403266,11665410,11730946,11796482,12124162,12189698,12320770,12517378,12582914,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13369346,13500418,13631490,13697026,13828098,13893634,13959170,14024706,14090242,14221314,14352386,14417922,14483458,14614530,14745602,14811138,15073282,15138818,15269890,15335426,15466498,15532034,15597570,15663106,15794178,15925250,15990786,16056322,16121858,16187394,16252930,16384002,16449538,16908290,16973826,17039362,17104898,17235970,17563650,17760258,17825794,18022402,18153474,18284546,18481154,18546690,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19529730,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20250626,20447234,20709378,20840450,20905986,20971522,21037058,21233666,21364738,21430274,21561346,21626882,21692418,21757954,21823490,21889026,22216706,22347778,22478850,22544386,22675458,22806530,22937602,23134210,23199746,23461890,23527426,23592962,23658498,23724034,23855106,23986178,24051714,24248322,24510466,24576002,24641538,24707074,24772610,24838146,24903682,25100290,25165826,25231362,25296898,25362434,25493506,25559042,25690114,25755650,25952258,26148866,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26869762,26935298,27066370,27262978,27459586,27525122,27656194,27787266,27852802,27983874,28114946,28180482,28246018,28377090,28508162,28639234,28770306,28835842,28901378,29163522,29294594,29360130,29425666,29491202,29687810,29753346,30015490,30081026,30277634,30343170,30408706,30539778,30736386,30867458,30932994,30998530,31064066,31129602,31260674,31522818,31588354,31653890,31719426,31850498,31981570,32047106,32178178,32309250,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32899074,33030146,33095682,33161218,33292290,33423362,33816578,33882114,33947650,34013186,34144258,34209794,34406402,34471938,34537474,34603010,34799618,34930690,34996226,35192834,35258370,35323906,35454978,35520514,35586050,35651586,35717122,35913730,35979266,36044802,36241410,36438018,36569090,36634626,37027842,37093378,37224450,37289986,37355522,37486594,37552130,37617666,37683202,37748738,37814274,37879810,38010882,38141954,38273026,38338562,38535170,38600706,38731778,38928386,39059458,39321602,39387138,39518210,39714818,39780354,39845890,39911426,39976962,40042498,40239106,40304642,40370178,40697858,40828930,41025538,41091074,41156610,41287682,41418754],"legendre":[19333121,21168129,29491204],"left":[3276801,19333122,21168130,28901378,30015489,37289985],"largest":[5177345,10551297,12517377,12779521,24772609,25690113,33030146],"linker":[25231361],"locations":[10158081,19333121,21168129],"larger":[36831233],"lowest":[8060929,20250625],"length":[1835009,18481153,19333123,21168131,24772609,38076422],"lib":[25231361],"leaks":[9764865],"leaky":[3473409,26279937],"localeconv":[9830401,22544385,36634625],"logarithm":[32899073],"level":[524289,1638401,1703937,1835009,2752513,2818049,3473409,4259841,4390913,4784129,5177345,5505025,5963777,6291457,7405569,7602177,8060930,9764865,14352385,14417921,15532033,15925249,16384001,16908289,18481153,18677762,18808833,18939905,19005441,19070977,19726337,20054017,20250626,20578305,21823489,24772609,24903681,25100289,25231362,25296897,25362433,25493506,25559041,26017793,26279937,26345473,26411009,26542081,27852801,28377089,28704769,28901377,29163521,29294593,30932993,31522817,32440321,32833537,32899074,33292289,33882113,34734081,36044801,37289985,37748737,37879809,39387137,39780353,40501249,41025537,41156609,41287681],"log":[15925250],"low":[524289,1638401,1703937,1835009,2752513,2818049,3473409,4259841,4390913,4784129,5177345,5505025,5963777,6094849,6291457,7405569,7602177,8060929,9764865,14352385,14417921,15532033,15925249,16384001,16908289,18481153,18677762,18808833,18939905,19005441,19070977,19726337,20054018,20250625,20578305,21823489,24772609,24903681,25100289,25231362,25296897,25362433,25493506,25559041,26017793,26279937,26345473,26411009,26542081,27852801,28377089,28704769,28901377,29163522,29294593,30081025,30932993,31522817,32440321,32833537,32899074,33292289,33882113,34734081,36044801,36569089,37289985,37748737,37879809,39387137,39780353,40501249,41025537,41156609,41287681],"letter":[16449538,22544386,25165826]} \ No newline at end of file diff --git a/docs/fti/FTI_109.json b/docs/fti/FTI_109.json index 55c9bf5..10990bc 100644 --- a/docs/fti/FTI_109.json +++ b/docs/fti/FTI_109.json @@ -1 +1 @@ -{"mpz_rrandomb":[4915201,6553601,12713991,17170433,23658497,31522818,32047105],"mpz_tdiv_qr":[2555905,2686977,4915201,6750209,6946817,7602177,8912903,10027009,10747905,11730945,12845057,13041665,14876673,15335425,16711681,17170433,17694721,17891329,19070977,19267585,19791873,20512769,21561345,22151169,24313857,24772609,25427969,26279937,28835841,29294593,29556737,29949953,32112641,34603009,36110337,36896769,38797313,40042497,41025537],"mpn_lshift":[4915201,7929857,9371649,17170433,27525121,28180487,29032449,30998529,31064065,37552129],"mpq_get_d":[3735555,4915201,17170433,21299206,29491202,38469638,39911431,40108033,41353217],"mpz_congruent_ui_p":[4915201,7602177,10027015,14876673,17170433],"mpn_sec_sub_1":[1114113,1703940,1966081,3080193,4915202,7012353,8454145,16318465,17170434,19136513,24641537,25952263,34144257,36044801,37224449],"mpf_set_default_prec":[589826,2490372,3014658,3211266,3670019,4915201,5111811,5767170,7667714,8192002,8257538,8716290,8978435,9437185,9764866,10944513,11403266,11927554,11993090,12386306,13303810,13369347,13500418,14680066,14942210,17170433,17235970,18808834,22020098,22085634,23003137,23265283,24248322,24838147,26148871,27787265,29097987,31719426,32374786,32964609,33357826,34668547,35913730,36241410,36962306,37879810,38207490,39321602,40632322],"mpz_sqrt":[4915202,5439495,6488065,7471105,17170434,24444929,36306945,39583746],"mpf_neg":[3211267,4915201,5767169,7667713,8192001,8257543,8716289,9437185,9764865,11403265,11927553,14680065,17170433,18808833,22020097,22085633,33357825,35913729,37879809],"mpz_sizeinbase":[4915201,9961473,14614529,16973825,17170433,17629185,24576015,29229057,34799617,34930690,35258369,36831233,39780353,40108034],"mpz_urandomb":[4915201,6553602,12713985,17170433,23658497,31522817,32047111],"mpq_inits":[3342337,3604481,4915201,17170433,21299207,21430273,26673153,26804225,29491201,31129601,34340865,35520513,38469635],"mpn_zero_p":[4915201,7405575,13434881,16187393,17170433,29818881],"mpf_random2":[3014657,3276801,4915201,5373953,11993089,15073281,15859713,17170433,18939905,24248321,26017793,32309249,39256071,39321601],"mpz_divisible_2exp_p":[4915201,13041671,15335425,17170433,17694721],"mpz_t":[458770,524290,851984,983041,1245200,1376268,1441793,1638416,2293783,2424873,2555956,2687031,2818053,2883585,3145730,3342337,3473418,3604481,3866663,4063234,4259841,4521985,4784145,4915207,5242897,5308421,5439514,5636104,6029339,6225922,6488083,6553616,6750256,6881291,6946862,7274513,7471130,7602223,7733294,8323092,8388610,8650753,8781839,8847373,8912965,9043986,9109506,9175064,9633804,9830401,9961488,10027041,10092545,10158086,10485789,10616842,10747943,10878989,11272233,11337731,11468824,11599873,11731006,12058653,12255233,12451867,12517410,12582928,12713997,12845118,13041696,13107213,13238273,13303809,13500424,13631499,13762562,13828127,13893676,14221314,14286870,14352407,14549005,14614541,14745614,14876712,14942209,15269923,15335463,15400995,15728679,15794178,15990805,16056323,16121858,16252944,16449578,16515106,16646145,16711735,16842754,16908305,16973840,17170439,17563661,17629200,17694752,17891390,17956866,18546702,18743328,19071031,19267639,19398673,19529739,19595277,19791941,20054018,20250625,20316172,20381713,20512830,20709377,20774913,20906011,21037072,21102604,21299201,21430280,21561388,21626882,21757970,21823516,21954568,22151230,22347791,22478881,22544400,22741003,23068688,23134218,23658516,23920642,23986187,24313902,24444961,24576017,24772663,24903681,25100301,25165838,25231384,25296914,25362453,25428016,25493515,25559085,25690149,26279991,26673153,26804225,26869787,27000874,27459586,27656230,27721749,27983914,28049422,28114945,28442632,28770322,28835895,29229072,29294647,29491201,29556798,29687818,29950007,30015505,30081025,30212114,30605314,31129601,31195137,31391745,31457288,31522830,31588353,32047117,32112695,32178185,32374785,32505879,32636929,32702506,32899085,33292292,33488906,33554448,33620005,33816602,33882136,34013204,34209807,34275349,34340865,34406402,34603070,34734082,34799632,34865154,34930699,35061768,35192845,35258384,35520514,35651608,36110384,36241409,36306963,36700184,36831248,36896830,37290000,37814282,38010899,38273051,38338605,38404097,38535186,38469633,38797381,39059458,39125027,39190534,39452674,39583779,39780368,39977001,40042558,40566786,40632321,40960014,41025591,41287719,41418765],"mpz_fdiv_r_ui":[2555905,4915201,11730945,17170433,17891329,19267591,21561345,25427969,29556737,29949953,38797313,41025537],"mpz_limbs_modify":[4784129,4915201,8781827,12582913,14286849,17170433,21037057,22347777,23068680,34013185],"mpz_import":[4915201,17170433,23986184,34930689],"mpn_gcd":[4915201,5963783,17039361,17170433,20578305],"mpq_equal":[983041,2883585,4915201,10092546,11599873,17170433,20774919,31457282],"mpn_rshift":[4915201,9371649,17170433,27525121,28180481,29032449,31064071,37552129],"mpz_neg":[3866625,4915201,7733249,13893633,15269889,15400968,15728641,16449537,17170433,18743297,22478849,23986177,25690113,27000833,32702465,33619969,39124993,41287681],"mpq_clear":[983042,2883586,3342337,3735554,4063234,4915201,6225922,6881282,8388610,9109506,9240578,11599874,13107202,13762562,14221314,14548994,15794178,16121858,16842754,17170433,17563650,20054018,21299201,21430275,23920642,25493506,26673155,26804225,28049410,29097986,29491207,30605314,31129603,31391746,31457282,34340868,34406402,34734082,34865154,35520514,37683202,38535170,38469633,39911426,40108034,40566786,41353218],"mpz_congruent_p":[2555905,2686977,4915201,6750209,6946817,7602183,8912897,10027009,10747905,11730945,12845057,13041665,14876673,15335425,16711681,17170433,17694721,17891329,19070977,19267585,19791873,20512769,21561345,22151169,24313857,24772609,25427969,26279937,28835841,29294593,29556737,29949953,32112641,34603009,36110337,36896769,38797313,40042497,41025537],"mpn_com":[2621441,4325377,4915201,6094849,17170433,18219016,18677761,24969217,30670849,31653889,40894465],"mpf_ui_div":[4915201,7667719,8192001,9437185,14680065,17170433],"mpq_set_d":[3735559,4915201,17170433,39911425,40108033,41353217],"mpq_set_f":[3735553,4915201,17170433,39911425,40108033,41353223],"mpn_sqrtrem":[4718593,4915201,7929857,15138817,17170433,18350081,20643841,21889025,22282241,22413313,23724033,26345473,27197441,27394049,28704769,30277633,30539777,30998529,36765703,37486593,37945345,41156609,41222145],"mpq_set_z":[3342337,3604481,4915201,17170433,21299201,21430279,26673153,26804225,29491201,31129601,34340865,35520513,38469633],"mpz_sub":[3866625,4915201,7733249,13893639,15269889,15400961,15728641,16449537,17170433,18743297,22478849,25690113,27000833,32702465,33619969,39124993,41287681],"mpz_fits_sshort_p":[4915201,9961473,16973825,17170433,17629185,24576001,29229057,34799617,35258375,36831233,39780353],"mpz_kronecker_ui":[851970,1638408,4915201,14352386,17170433,22544386,37289986],"matches":[20185089],"mpn_andn_n":[2621441,4325377,4915201,6094849,17170433,18219009,18677761,24969217,30670855,31653889,40894465],"mpn":[1900545,18087937,20185089,33292290],"mpz_init_set_d":[4915201,8323073,17170433,19595265,20316162,25100289,34209793,40960008],"mpn_divexact_by3":[4718593,4915201,7929857,15138817,17170433,18350081,20643841,21889032,22282241,22413313,23724033,26345473,27197441,27394049,28704769,30277633,30539777,30998529,36765697,37486593,37945346,41156609,41222145],"mpz_powm":[4915201,15990785,17170433,21823489,25559047,27656193,27983873],"mixed":[851969,1638401,14352385,22544385,37289985],"mpz_perfect_power_p":[4915201,5439489,6488065,7471105,17170433,24444929,36306951,39583745],"mpf_init2":[589825,1441794,2490369,4521986,4915201,5111810,8978433,9830404,10944513,17170433,23003143,26148865,27787267,29097985,30081028,32964609,38404098],"mpn_sec_add_1":[1114113,1966081,3080199,4915202,7012353,8454145,16318465,17170434,19136513,22609924,24641537,25952257,34144257,36044801,37224449],"mpq_inv":[4915201,5046273,11534337,14811137,17170433,17432581,26542081,29753345,36503553,38862849,38993921],"mpz_inp_raw":[1376259,4915201,10878983,17170433,19529729,22740993],"mpf_abs":[3211270,4915201,5767169,7667713,8192001,8257537,8716289,9437185,9764865,11403265,11927553,14680065,17170433,18808833,22020097,22085633,33357825,35913729,37879809],"mpf_inits":[589830,2490369,4915201,5111809,8978433,10944513,17170433,23003137,26148865,27787265,29097985,32964611],"mpn_add":[4718593,4915201,7929857,15138817,17170433,18350081,20643841,21889025,22282241,22413313,23724033,26345473,27197441,27394049,28704769,30277633,30539783,30998529,36765697,37486593,37945345,41156609,41222145],"mpf_clear":[589825,1441794,2490372,3014657,3276802,4063234,4521986,4915201,5111809,5373954,6225922,8388610,8978439,9109506,9306114,10944515,11403266,12386306,13303810,13369347,13500418,13762562,14221314,14942210,15073282,15794178,15859714,16121858,16842754,17170433,17235970,18939906,20054018,20250626,21757954,23003140,23265282,23920642,24838146,26017794,26148865,27787267,29097988,30605314,31391746,31719426,32309250,32374786,32636930,32964609,34406402,34668546,34734082,34865154,35061762,36962306,38207490,38404098,39256066,40566786,40828929,41353218],"memory":[327682,458754,524290,589825,720898,851970,983042,1114114,1245185,1310723,1376258,1441794,1638402,1900546,1966082,2293762,2424834,2490370,2555906,2621442,2686978,2883586,3014658,3080194,3211266,3276802,3342338,3473410,3670018,3735554,3866626,4063234,4325378,4521986,4587521,4718594,4784130,4915207,5177346,5242882,5373954,5439490,5505026,5636098,5701633,5767170,5963778,6029314,6094850,6160385,6225922,6488066,6553602,6750210,6881282,6946818,7012355,7077893,7274498,7405570,7471106,7602178,7667714,7733250,7929858,8126477,8192002,8257538,8323074,8388610,8454146,8585223,8650753,8716290,8847363,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437185,9633794,9764866,9830402,9895938,9961474,10027010,10092546,10485762,10616834,10747906,10878978,10944514,11206658,11272194,11337729,11403266,11468802,11599874,11730946,11927554,11993090,12058626,12124166,12255234,12386306,12451842,12517378,12582914,12713986,12845058,13041666,13107202,13303810,13369346,13434882,13500418,13631490,13762562,13828098,13893634,13959170,14221314,14286850,14352386,14548994,14614530,14680066,14745602,14876674,14942210,15073282,15138818,15269890,15335426,15400962,15728642,15794178,15859714,15990786,16121858,16187394,16252930,16318465,16384003,16449538,16515074,16646145,16711682,16842754,16908290,16973826,17039362,17104897,17170439,17235970,17563650,17629186,17694722,17891330,18087938,18219010,18350082,18546690,18677762,18743298,18808834,18874369,18939906,19070978,19136514,19267586,19398658,19529730,19595266,19791874,19857409,20054018,20250626,20316162,20381698,20512770,20578306,20643842,20709378,20774914,20840450,20905986,21037058,21102594,21299202,21364738,21430274,21561346,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22282242,22347778,22413314,22478850,22544386,22740994,22937602,23003138,23068674,23134209,23265282,23527425,23658498,23724034,23920642,23986178,24051714,24248322,24313858,24444930,24576002,24641538,24772610,24838146,24903681,24969218,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25690114,25952258,26017794,26279938,26345474,26673154,26804226,26869762,27000834,27197442,27394050,27525122,27656194,27721730,27787266,27983874,28049410,28114946,28180482,28442626,28704770,28770306,28835842,29032450,29097987,29229058,29294594,29491202,29556738,29687810,29818882,29884418,29949954,30015490,30081026,30212098,30277634,30539778,30605314,30670850,30998530,31064066,31129602,31391746,31457282,31522818,31588354,31653890,31719426,31981570,32047106,32112642,32309250,32374786,32505858,32636930,32702466,32833537,32899074,32964610,33030145,33095682,33161218,33357826,33488898,33554434,33619970,33816578,33882114,34013186,34144258,34209794,34275330,34340866,34406402,34603010,34668546,34734087,34799618,34865154,34930690,35061762,35192834,35258370,35323906,35520513,35651586,35913730,36044803,36110338,36241410,36306946,36700162,36765698,36831234,36896770,36962306,37027842,37093378,37224451,37289986,37421058,37486594,37552130,37683202,37814274,37879810,37945346,38010882,38273026,38207490,38338562,38404098,38535170,38469634,38600707,38731778,38797314,38928385,39059459,39124994,39256066,39321602,39452674,39583746,39780354,39911426,39976962,40042498,40108034,40304641,40566791,40632322,40828929,40894466,40960002,41025538,41156610,41222146,41287682,41353218],"mod":[1966082,4915206,5636097,7602180,10027012,14876675,16318465,17170438,19136514,21561351,21889026,22413314,24313862,24641538,25559063,27656213,27983895,33882116,37945346],"mpz_init2":[4915201,8847361,14745601,16252936,17170433,25362433,34275329,35192833],"mpn_cmp":[4915201,7405569,13434887,16187393,17170433,29818881],"mpf_sqrt_ui":[4915201,9764865,11403271,17170433],"mpz_abs":[3866625,4915201,7733249,13893633,15269889,15400961,15728641,16449537,17170433,18743297,22478855,25690113,27000833,32702465,33619969,39124993,41287681],"mpz_inits":[2293762,4915201,8847361,8912898,11730946,14745601,16252930,17170433,19791874,20512770,24444930,25362435,32505858,34275335,34603010,35192833,38338562,38797314,39583746],"msys2":[20185089],"mpn_submul_1":[4718593,4915201,7929857,15138817,17170433,18350081,20643841,21889025,22282241,22413313,23724033,26345479,27197441,27394049,28704769,30277633,30539777,30998529,36765697,37486593,37945345,41156609,41222145],"mpz_clear":[458754,851970,1245185,1376258,1638402,3473410,4063234,4784130,4915201,5242882,5636098,6029314,6225922,6488066,6553602,6750210,7274498,8388610,8847363,9109506,9633794,9961474,10027010,10485762,10616834,10878978,12058626,12451841,12582914,12713986,13041666,13107202,13500418,13631490,13762562,14221314,14286850,14548994,14614530,14745607,15794178,15990786,16121858,16252931,16842754,16908290,16973826,17170433,17563650,17629186,17694722,18546690,18743298,19398658,19529730,19595266,20054018,20316162,20381698,21037058,21102594,21430274,21757954,21954562,22347778,22544386,22740994,23068674,23920642,23986178,24576002,25100290,25165826,25296898,25362433,25427970,26869762,27721730,28049410,28442626,29229058,29687810,30212098,30605314,31457282,31522818,32047106,32899074,33488898,33554434,34013186,34209794,34275329,34406402,34734082,34799618,34865154,34930690,35061762,35192835,35258370,36110338,36306946,36831234,37289986,37814274,38273026,38535170,39780354,40566786,40960002],"multiplication":[20643841,21889025,26345473,30998529,37945345],"mpz_sub_ui":[4915201,13893633,17170433,25690113,33619975],"mp_base":[3538946,8650759,10682374,11141122,16056322,21626889,23134215,32243715,33292290,35389443,39059457],"mpf_set":[1441793,4521985,4915201,9830407,17170433,20250625,30081025,31391745,35061761,38404097],"macros":[10289153,40239105],"mpq_canonicalize":[3342337,3604485,3735553,4915201,9240577,17170433,21299201,21430273,26673154,26804225,29491201,31129602,34340865,35520514,38469633],"mpz_tdiv_r_2exp":[4915201,8912897,12845057,16711681,17170433,19070977,29294593,32112647,34603009,36110337,36896769],"mpz_fits_slong_p":[4915201,9961473,16973825,17170433,17629185,24576001,29229057,32899073,34799617,35258369,36831239,39780353],"mpf_fits_slong_p":[3014657,3276801,4915201,5373953,11993089,15073281,15859713,17170433,18939911,24248321,26017793,26214401,32309249,36962305,39256065,39321601],"mpq_swap":[3342343,3604481,4915201,17170433,21299201,21430273,26673153,26804225,29491201,31129601,34340865,35520513,38469633],"mp_ptr":[327702,1114185,1703948,1900556,1966140,2621490,3080257,3801100,4325426,4718659,4784129,4915236,5177354,5963808,6094898,7012424,7077895,7405580,7536655,7929930,8454200,8781825,9371664,12124172,12582920,13434899,13959175,14286859,15138881,15532034,16187404,16318529,17039375,17170468,18087948,18219053,18350154,18677810,19136582,20578346,20643907,21037064,21364758,21889099,22282314,22347777,22413369,22609932,22937613,23068680,23527430,23592963,23724103,24051727,24379394,24641613,24969266,25952321,26345539,26738718,26935297,27197507,27394118,27525136,28180506,28573716,28704852,29032464,29818892,30277706,30539848,30670898,30801940,30998597,31064090,31653938,33292295,34013185,34144319,35323911,36044872,36175888,36765774,37027847,37093383,37224507,37421063,37486668,37552151,37945419,38731786,39059457,39714819,40435714,40894514,41156675,41222215],"mpf_get_ui":[4915201,9306114,17170433,17235969,26214405,31719425,36962305,38207489],"mpf_fits_ushort_p":[3014657,3276801,4915201,5373953,11993089,15073281,15859713,17170433,18939905,24248321,26017799,32309249,39256065,39321601],"mpn_addmul_1":[4718593,4915201,7929857,15138817,17170433,18350081,20643847,21889025,22282241,22413313,23724033,26345473,27197441,27394049,28704769,30277633,30539777,30998529,36765697,37486593,37945345,41156609,41222145],"mpf_get_si":[4915201,17170433,17235969,26214401,31719425,36962311,38207489],"mpn_cnd_sub_n":[1114113,1966081,3080193,4915201,7012353,8454145,16318465,17170433,19136513,24641537,25952257,34144257,36044807,37224449],"mpf_get_default_prec":[589825,2490369,4915201,5111815,8978433,10944513,17170433,23003137,26148867,27787265,29097985,32964609],"mpz_submul_ui":[4915201,17170433,32702465,39124999],"mpz_lcm":[4915201,17170433,33816583,41418753],"mpz_and":[2424833,4915201,6029313,10485761,11272199,12058625,12451841,12517377,16515073,17170433,20905985,26869761,38273025,39976961],"mpz_rootrem":[4915201,5439489,6488065,7471105,17170433,24444935,36306945,39583745],"mpz_set":[4915201,5242881,9175047,13107201,14548993,16908289,17170433,17563649,19398657,21757953,25231361,25296897,28049409,38535169],"mpf_sqrt":[3211265,4915201,5767169,7667713,8192001,8257537,8716289,9437185,9764871,11403265,11927553,14680065,17170433,18808833,22020097,22085633,33357825,35913729,37879809],"mpz_combit":[2424833,4915201,6029313,10485761,11272193,12058625,12451847,12517377,16515073,17170433,20905985,26869761,38273025,39976961],"mpn_get_str":[4915201,5177351,17170433,22937601,38731777],"mpz_kronecker_si":[851975,1638401,4915201,14352385,17170433,22544385,37289985],"mpf_ceil":[3014657,3276801,4915201,5373953,11993089,15073281,15859713,17170433,18939905,24248327,26017793,32309249,39256065,39321601],"mp_limb_t":[196620,786441,1114117,1507337,1703940,1966085,3080209,4390914,4653062,4718606,4784133,4915202,5963777,7012368,7143438,7798793,7929872,7995395,8388610,8454149,8650753,8781825,9699337,12124165,13238273,14155785,14221314,14286849,15138836,15794178,16121858,16252929,16318469,16777225,16842754,17039370,17170434,18350095,18415625,18481161,19136524,19660809,20054018,20185091,20578305,20643861,21889044,22282257,22413331,22609924,22872073,23134209,23330825,23724055,23789572,23855113,24379399,24641541,25952273,26345493,26411017,27197461,27328547,27394065,28180487,28704778,29425674,30277649,30539792,30605314,30932999,30998549,31064071,31195179,34144261,34734082,34865154,35848206,36044816,36438025,36765706,37224457,37486602,37617673,37945368,39059458,39387160,39845892,40435718,40566786,40763401,41156618,41222167],"mpz_get_ui":[4915201,9633799,10878978,14614529,14745602,17170433,18743298,19398658,19595266,20316161,21102593,22740994,27000834,32899073,33292289],"manner":[7667713,9437185,14680065],"mpz_get_si":[2293764,2424834,2555906,2686978,3473410,3866626,4915201,5242882,5439490,6946818,7471106,7733250,8323074,8847362,8912900,9175042,9633793,10616834,10747906,11272194,11730948,12451842,12845058,13828098,13893634,14614529,15269890,15400962,15728642,15990786,16252930,16449538,16515074,16711682,17170433,17891330,18546690,19070978,19267586,19791876,20316161,20512772,21102593,21561346,21757954,21823490,21954562,22151170,22478850,24313858,24444932,24772610,25100290,25165826,25231364,25296898,25362438,25559042,25690114,26279938,26869762,27656194,27983874,28835842,29294594,29556738,29687810,29949954,30015490,32112642,32505860,32702466,32899079,33488898,33619970,33816578,33882114,34013186,34275334,34603012,35651586,36896770,38010882,38273026,38338566,38535170,38797316,39124994,39583748,39976962,40042498,40960002,41025538,41287682],"mpf_div_ui":[4915201,7667713,8192001,9437190,14680065,17170433],"minimum":[6356993,10944513,23003137,26148865,29097985,34537473],"mpf_integer_p":[3014663,3276801,4915201,5373953,11993089,15073281,15859713,17170433,18939905,24248321,26017793,32309249,39256065,39321601],"mpf_fits_uint_p":[3014657,3276801,4915201,5373959,11993089,15073281,15859713,17170433,18939905,24248321,26017793,32309249,39256065,39321601],"mpf_out_str":[4915201,9306113,17170433,40828934],"mpz_clrbit":[2424833,4915201,6029313,10485761,11272193,12058625,12451841,12517377,16515073,17170433,20905985,26869767,38273025,39976961],"miller":[13631490],"mpz_init_set_ui":[851970,1376258,1638402,2424836,4915201,5636098,6946820,7274498,7602182,7733252,8323073,9043972,9633794,9961474,10027010,10485762,10747906,10878978,11272196,11468802,12058626,12517380,13041666,13631490,13828100,13893636,14352388,14548994,14876676,15335428,16449542,16515074,16973826,17170433,17563650,17629186,17694722,19595271,19529730,20905986,21561346,21823490,22544386,23068674,24313860,25100289,25559046,25690114,27000836,27656196,27721730,27983878,28442626,28770308,29229058,30015490,30212098,32702468,33554434,33619970,33816580,33882116,34209793,34799618,35258370,35651588,36700164,36831234,37289986,37814274,38338564,39780354,39976964,40960001],"mpz_cdiv_r":[2686977,4915201,6750209,17170433,19791873,20512769,22151169,24772609,26279937,28835841,40042503],"mpn_sec_mul_itch":[1114116,4915201,17170433,28573701],"mpz_ui_pow_ui":[4915201,15990791,17170433,21823489,25559041,27656193,27983873],"mpq_out_str":[4915201,9240577,17170433,37683207],"mpn_sub_n":[4718593,4915202,7929857,15138817,17170434,18350081,20643841,21889025,22282241,22413313,23724033,26345473,27197441,27394050,28704769,30277639,30539777,30998529,36044803,36765697,37486593,37945345,41156609,41222145],"mp_size_t":[327687,1114145,1703950,1900553,1966112,2097156,2621453,2949136,3014657,3080219,3145735,3276801,3538951,3801102,3932169,4063235,4325389,4718623,4784139,4915214,5177350,5373953,5963797,6094861,6225923,6422537,6553606,7012377,7077889,7208969,7405576,7536665,7929887,8454176,8781837,9109507,9371656,11665417,11796489,11993089,12124161,12582918,12713986,12976137,13238316,13434888,13762563,14286858,14483465,15073281,15138846,15532038,15859713,16187400,16318489,17039370,17170446,17760265,18087945,18219022,18284553,18350115,18677773,18939905,19136544,19202057,20119555,20185089,20578332,20643871,21037067,21233673,21364743,21495817,21889060,22282275,22347787,22413343,22609934,22675463,22937609,23068683,23658498,23724066,23920643,24051719,24117262,24248321,24510484,24641568,24969229,25952283,26017793,26345503,26476548,26738715,27066377,27197471,27394080,27525124,27590691,27918345,28180488,28246022,28573721,28704807,29032452,29818888,30277663,30539810,30670861,30801945,30998560,31064072,31260682,31522822,31653901,32047106,32309249,32440322,33226761,34013196,34144282,34406403,35454983,35586057,36044825,36175886,36634638,36765735,37027846,37224470,37486624,37552136,37748745,37945380,38731782,39059457,39256069,39321601,40894477,41091081,41156639,41222182],"mpf_swap":[1441793,4521985,4915201,9830401,17170433,20250625,30081031,31391745,35061761,38404097],"maxvalue":[3276802,5373954,9961474,15859714,17629186,18939906,26017794,29229058,32309250,35258370,36831234,39780354],"mpz_out_str":[1376257,4915201,10878977,17170433,19529735,22740993],"mpf_set_si":[1441793,4521985,4915201,9830405,17170433,20250625,30081029,31391745,35061761,38404103,41353218],"mpf_set_ui":[1441799,4521985,4915201,9830401,17170433,20250625,30081025,31391745,35061761,38404097],"mpn_sub_1":[4718593,4915201,7929857,15138817,17170433,18350081,20643841,21889025,22282241,22413313,23724033,25952257,26345473,27197447,27394049,28704769,30277633,30539777,30998529,36765697,37486593,37945345,41156609,41222145],"mpn_sizeinbase":[4915201,5177345,17170433,22937601,38731783],"mpf_sub":[3211265,4915201,5767169,7667713,8192001,8257537,8716289,9437185,9764865,11403265,11927553,14680065,17170433,18808839,22020097,22085633,33357825,35913729,37879809],"mpz_ui_sub":[4915201,13893633,17170433,25690119,33619969],"mpz_fdiv_r":[2555905,4915201,11730945,17170433,17891335,19267585,25427969,29556737,29949953,38797313,41025537],"mpz_swap":[4915201,5242881,9175041,16908289,17170433,19398657,21757953,25231367,25296897,38535169],"mpn_set_str":[4915201,5177345,17170433,22937607,38731777],"mpf_sgn":[4915201,13303809,13500417,14942209,17170433,32374785,32636935,36241409,40632321],"mpq_div_2exp":[4915201,5046273,11534337,14811137,17170433,17432577,26542085,29753345,36503553,38862849,38993921],"mantissa":[4915201,8650753,9306114,11141121,15073281,17170433,19333121,20250627,31719425,33292289,40828930],"mpz_invert":[4915201,17170433,25559041,27656193,33882119],"mpz_fits_ushort_p":[4915201,9961473,16973825,17170433,17629191,24576001,29229057,34799617,35258369,36831233,39780353],"moved":[1769474],"mpz_root":[4915201,5439489,6488065,7471111,17170433,24444929,36306945,39583745],"mpz_set_si":[4915201,5242887,8323074,9175045,16908289,17170433,19398657,21430274,21757953,25231361,25296897,31457282,38535169],"mpz_set_ui":[4915201,5242881,9175041,16908289,17170433,19398663,21037058,21757953,25231361,25296897,33292289,35061762,38535169],"mpz_hamdist":[2424833,4915201,6029313,10485761,11272193,12058625,12451841,12517383,16515073,17170433,20905985,26869761,38273025,39976961],"mpz_mfac_uiui":[3473409,4915201,17170433,29687815,33488897],"mpz_fdiv_q_2exp":[2555905,4915201,11730945,17170433,17891329,19267585,25427969,29556737,29949953,38797313,41025543],"mpq_t":[983055,1441793,2359299,2883599,3342363,3604496,3735564,4063234,4259841,4521985,4915202,5046302,5242881,5570565,6225922,6881293,7864325,8388610,8650753,9109506,9175041,9240586,9830401,10092570,10158082,11534370,11599887,13107215,13238273,13762562,14221314,14549007,14811170,15794178,16121858,16646154,16842754,16908289,17104899,17170434,17432606,17498121,17563663,19398657,20054018,20250625,20774936,21299227,21430292,21757953,23134209,23920642,25231361,25296897,25493517,26542110,26673173,26804251,28049424,29097987,29491221,29753374,30081025,30605314,31129621,31195137,31391752,31457299,31981570,34340885,34406402,34734082,34865154,35061761,35520532,35782658,36503586,37683209,38404097,38469659,38535176,38862878,38993954,39059457,39190530,39911435,40108043,40566786,41353227],"mpz_cdiv_q_ui":[2686983,4915201,6750209,17170433,19791873,20512769,22151169,24772609,26279937,28835841,40042497],"mpz_sgn":[458753,1245185,4915201,7274497,8781825,11468801,17170433,20381703,30212097,33554433,34930689,36700161],"mpz_cmpabs_ui":[458753,1245190,4915201,7274497,11468801,17170433,20381697,30212097,36700161],"mpf_init_set_si":[3211266,3670019,4915201,5767170,7667714,8192002,8257538,8716292,9437185,9764866,11927554,13303810,13369345,13500418,14680068,14942210,17170433,18808836,22020098,22085634,23265281,24838145,32374786,32636930,33357828,34668551,35913730,36241412,37879810,40632324],"mpz_divisible_ui_p":[4915201,13041665,15335425,17170433,17694727],"mpf_cmp_si":[4915201,13303809,13500417,14942209,17170433,32374791,32636929,36241409,40632321],"mpf_cmp_ui":[4915201,13303809,13500417,14942215,17170433,32374785,32636929,36241409,40632321],"mpn_random2":[1900553,4915201,17170433,18087939],"makes":[16252929,20250625],"mpn_mul_1":[4718593,4915201,7929857,15138817,17170433,18350081,20643841,21889025,22282241,22413313,23724033,26345473,27197441,27394049,28704769,30277633,30539777,30998535,36765697,37486593,37945345,41156609,41222145],"mp_bitcnt_t":[589829,1114114,1572870,1966082,2162692,2424838,2490373,2555906,2686978,3014657,3080194,3276801,3670017,3866629,4259884,4456457,4915203,5111818,5373953,5636102,5767173,5832713,6029322,6553603,6750210,6815753,7012354,7602177,7733249,8454147,8519690,8716289,8847366,8912898,8978436,9371655,10027009,10485778,10944520,11272198,11730946,11993089,12058642,12255234,12451850,12517388,12713990,12845058,13041669,13369345,13697026,14024713,14745602,14876677,15073285,15204361,15335425,15466505,15597577,15663107,15728641,15859713,16252935,16318470,16515078,16580615,16711682,17170435,17301513,17694721,17825801,17891330,18612238,18939905,19070982,19136514,19267586,19791874,20185089,20512770,20709378,20905996,21692430,22085633,22151170,22216713,22806550,23003144,23265281,23658498,24248321,24641544,24772614,24838145,24903682,25362434,25427970,25952258,26017793,26083337,26148872,26279942,26738699,26869770,27525131,27787273,28114946,28180482,28835842,29032459,29097998,29294594,29556738,29949958,30343203,30474249,31064066,31326217,31522819,31784964,32047110,32112646,32309249,32768009,32964612,33292289,34013187,34144258,34275330,34471950,34603010,34668545,35192834,35651589,36044802,36110338,36175876,36569097,36896770,37224450,37552135,38273034,38797314,39059457,39256065,39321601,39452679,39976966,40042498,40697864,41025542,41287681],"mpz_roinit_n":[4784129,4915201,8781825,12582913,14286856,17170433,21037057,22347777,23068673,34013185],"meaning":[20250625],"mpz_limbs_finish":[4784129,4915201,8781830,12582913,14286849,17170433,21037059,22347777,23068675,34013185],"mpz_limbs_write":[4784129,4915201,8781826,12582913,14286849,17170433,21037064,22347777,23068673,34013185],"mpn_mul_n":[4718593,4915201,7929857,15138817,17170433,18350081,20643841,21889025,22282241,22413313,23724033,26345473,27197441,27394049,28704769,30277633,30539777,30998529,36765697,37486599,37945345,41156609,41222145],"mpf_sub_ui":[4915201,17170433,18808833,35913735,37879809],"mpn_sec_invert":[1114113,1966081,3080193,4915202,7012353,8454145,16318470,17170434,19136513,24641537,25952257,34144257,36044801,36175876,37224449],"mpn_gcdext":[4915201,5963777,17039361,17170433,20578311],"mpz_cmp_si":[458753,1245185,4915201,7274503,11468801,13107202,17170433,20381697,28049410,30212097,33554433,36700161],"mpz_cmp_ui":[458753,1245185,4915201,7274497,11468801,17170433,20381697,30212097,33554439,36700161],"map":[20185089],"mpn_sqr":[4718593,4915201,7929857,15138817,17170433,18350081,20643841,21889025,22282241,22413313,23724033,26345473,27197441,27394049,28704769,30277633,30539777,30998529,36765697,37486594,37945345,41156615,41222145],"methods":[131074,1310721,1572866,1835010,4259841,4587521,4653058,4915202,5701634,8650753,11337730,12124161,13238273,14090241,16646145,17104898,17170433,18874370,21626881,23134209,28246018,28311554,28966914,30736386,31195137,33095682,35389442,35717121,38141953,38600705,39649281,39714818],"mpz_mul_2exp":[3866631,4915201,7733249,15728641,17170433,41287681],"mpn_sec_mul":[1114119,1966081,3080193,4915202,7012353,8454145,16318465,17170434,19136513,24641537,25952257,28573701,34144257,36044801,37224449],"multiply":[4915205,17170437,18350081,20643841,21889025,26345473,30998529,37486593,37945345],"mpz_lcm_ui":[4915201,17170433,33816577,41418757],"mpn_add_1":[3080193,4718593,4915201,7929857,15138823,17170433,18350081,20643841,21889025,22282241,22413313,23724033,26345473,27197441,27394049,28704769,30277633,30539777,30998529,36765697,37486593,37945345,41156609,41222145],"make":[3604481,4784129,4915201,7667713,8978433,9437185,14286850,14680065,16252929,17170433,20185089,21037057,21757953,23068673,25296897,29491201,38535169,40960001],"mpz_limbs_read":[4784129,4915201,8781825,12582919,14286849,17170433,21037057,22347777,23068673,34013185],"mpz_cdiv_r_ui":[2686977,4915201,6750209,17170433,19791873,20512769,22151169,24772609,26279937,28835847,40042497],"mpz_tdiv_r":[4915201,8912897,12845057,16711681,17170433,19070977,29294593,32112641,34603009,36110337,36896775],"mpn_add_n":[4718593,4915202,7012355,7929863,15138817,17170434,18350081,20643841,21889025,22282241,22413313,23724033,26345473,27197441,27394049,28704769,30277633,30539777,30998529,36765697,37486593,37945345,41156609,41222145],"mpn_sec_sub_1_itch":[1703941,4915201,17170433,25952260],"mpf_reldiff":[4915201,13303809,13500417,14942209,17170433,32374785,32636929,36241409,40632327],"mpn_xnor_n":[2621441,4325377,4915201,6094855,17170433,18219009,18677761,24969217,30670849,31653889,40894465],"mpz_sqrtrem":[4915201,5439489,6488065,7471105,17170433,24444929,36306945,39583751],"mpz_init_set_str":[4784130,4915201,8323073,17170433,19595265,21102594,22347778,23658498,25100289,34209799,34930690,40960001],"minus":[14614529,20250625,24576001,31719425,40108033],"mpn_nior_n":[2621441,4325377,4915201,6094849,17170433,18219009,18677761,24969217,30670849,31653895,40894465],"machine":[27983873,31195137],"mpz_random":[4915201,6553607,12713985,17170433,23658497,31522819,32047105],"mimic":[20185089],"mpf_mul":[3211265,4915201,5767169,7667713,8192001,8257537,8716295,9437185,9764865,11403265,11927553,14680065,17170433,18808833,22020097,22085633,33357825,35913729,37879809],"mpz_fits_sint_p":[4915201,9961473,16973825,17170433,17629185,24576001,29229063,34799617,35258369,36831233,39780353],"mean":[38076418],"mpq_neg":[4915201,5046273,11534337,14811137,17170433,17432577,26542081,29753349,36503553,38862849,38993921],"means":[31195137,38076417],"mpn_divexact_by3c":[4718593,4915201,7929857,15138817,17170433,18350081,20643841,21889027,22282241,22413313,23724033,26345473,27197441,27394049,28704769,30277633,30539777,30998529,36765697,37486593,37945353,41156609,41222145],"mpf_trunc":[3014657,3276801,4915201,5373953,11993095,15073281,15859713,17170433,18939905,24248321,26017793,32309249,39256065,39321601],"mpq_mul":[4915201,5046273,11534337,14811141,17170433,17432577,26542081,29753345,36503553,38862849,38993921],"mpz_ior":[2424839,4915201,6029313,10485761,11272193,12058625,12451841,12517377,16515073,17170433,20905985,26869761,38273025,39976961],"mpf_fits_sint_p":[3014657,3276801,4915201,5373953,11993089,15073281,15859719,17170433,18939905,24248321,26017793,32309251,39256065,39321601],"mpz_xor":[2424833,4915201,6029313,10485761,11272193,12058625,12451841,12517377,16515073,17170433,20905985,26869761,38273025,39976967],"measured":[4915203,17170435,22347778,24576002,38731778],"mpz_lucnum2_ui":[2293769,4915201,17170433,18546689,25165826,32505857],"mpz_mul":[3866625,4915201,7733255,13893633,15269889,15400961,15728641,16449537,17170433,18743297,22478849,25690113,27000833,32702465,33619969,39124993,41287681],"mpq_clears":[3342339,3604481,4915201,10092546,17170433,20774914,21299203,21430273,26673153,26804227,29491201,31129601,34340865,35520513,38469639],"macro":[21889025,23724033,37945345,41222145],"mpq_mul_2exp":[4915201,5046273,11534337,14811137,17170433,17432577,26542081,29753345,36503553,38862853,38993921],"m2exp":[4915201,5636103,17170433,39452674],"mpn_sec_div_r_itch":[1966084,4915201,7536645,17170433],"mpn_sec_div_qr":[1114113,1966081,3080193,4915202,7012353,8454145,16318465,17170434,19136519,24641537,25952257,30801925,34144257,36044801,37224449],"mpn_ior_n":[2621441,4325377,4915201,6094849,17170433,18219009,18677761,24969217,30670849,31653889,40894471],"mpf_t":[589843,1179657,1441809,2228229,2490384,3014678,3211300,3276822,3670036,3735553,4063234,4259841,4522001,4915202,5111819,5242881,5373974,5701635,5767206,6225922,7667752,8192040,8257570,8388610,8650762,8716333,8978448,9109506,9175041,9306121,9437222,9568261,9764899,9830424,10944527,11141123,11403292,11927588,11993117,12386312,13238273,13303826,13369359,13500433,13762562,14221314,14680111,14942225,15073302,15794178,15859734,16121858,16646145,16842754,16908289,17170434,17235980,18808877,18939926,19333122,19398657,19922946,20054018,20250641,21626882,21757960,22020130,22085670,22675458,23003152,23134209,23265293,23920642,24248349,24838157,25231361,25296897,26017814,26148873,26214411,27787279,29098008,29884418,30081048,30605314,31195137,31391761,31719436,32309270,32374801,32636945,32964630,33292289,33357867,34406402,34668557,34734082,34865154,35061777,35913766,36241434,36962318,37879846,38076418,38207500,38404113,38535169,39059458,39256086,39321629,39911425,40108033,40566786,40632351,40828936,41353224],"missing":[17170433,39059457],"manual":[20185090,38207489],"mpq_set":[3342337,3604481,4915201,17170433,21299201,21430273,26673153,26804231,29491201,31129601,34340865,35520513,38469633],"mpz_lucnum_ui":[2293761,4915201,17170433,25165831],"modular":[33882114],"mpn_divrem_1":[4718593,4915201,7929857,15138817,17170433,18350081,20643841,21889026,22282241,22413313,23724034,26345473,27197441,27394049,28704769,30277633,30539777,30998529,36765697,37486593,37945346,41156609,41222152],"mpz_nextprime":[4915201,13631489,17170433,30015495],"mpz_gcd":[4915201,13828103,17170433,27721729,38338561],"mpf_mul_ui":[4915201,5767169,8716289,17170433,22085639],"monotonously":[1114113,3080193,24641537,25952257,34144257],"mpn_sec_invert_itch":[4915201,16318467,17170433,36175877],"mpz_legendre":[851969,1638401,4915201,9043969,14352385,17170433,22544385,28770311,37289985],"memberwiseclone":[5701633,8650753,11337729,12124161,14090241,16646145,17104897,21626881,23134209,28311553,28966913,35389441,39649281,39714817],"mpf_set_prec_raw":[589825,2490369,4915201,5111809,8978433,10944513,17170433,23003137,26148865,27787265,29097997,32964609],"mpz_fits_ulong_p":[4915201,9961473,16973825,17170433,17629185,24576001,29229057,34799617,35258369,36831233,39780359],"mpn_divmod_1":[4718593,4915201,7929857,15138817,17170433,18350081,20643841,21889025,22282241,22413313,23724040,26345473,27197441,27394049,28704769,30277633,30539777,30998529,36765697,37486593,37945345,41156609,41222146],"mpf_fits_ulong_p":[3014657,3276801,4915201,5373953,11993089,15073281,15859713,17170433,18939905,24248321,26017793,26214401,32309253,36962305,39256065,39321601],"mpz_si_kronecker":[851969,1638401,4915201,14352385,17170433,22544391,37289985],"mpz_fdiv_qr_ui":[2555905,4915201,11730951,17170433,17891329,19267585,25427969,29556737,29949953,38797313,41025537],"mpz_probab_prime_p":[4915201,13631495,17170433,30015489,37814273],"mpn_copyd":[327681,4915201,17170433,21364743,24051713],"mpn_copyi":[327687,4915201,17170433,21364737,24051713],"mpn_perfect_power_p":[4915201,7405569,13434881,16187399,17170433,29818881],"mpz_fdiv_r_2exp":[2555905,4915201,11730945,17170433,17891329,19267585,25427969,29556737,29949959,38797313,41025537],"mpz_com":[2424833,4915201,6029313,10485761,11272193,12058625,12451841,12517377,16515079,17170433,20905985,26869761,38273025,39976961],"mpf_clears":[589826,2490369,3211266,3670018,4915201,5111809,5767170,7667714,8192002,8257538,8716290,8978433,9437185,9764866,9830402,10944513,11927554,11993090,14680066,17170433,18808834,22020098,22085634,23003137,24248322,26148865,27787265,29097985,30081026,32964615,33357826,35913730,36241410,37879810,39321602,40632322],"mpz_mul_si":[3866625,4915201,7733249,15728641,17170433,41287687],"mpf_urandomb":[3014657,3276801,4915201,5373953,11993089,15073287,15859713,17170433,18939905,24248321,26017793,32309249,39256065,39321601],"mpz_mul_ui":[3866625,4915201,7733249,15728647,17170433,41287681],"mpf_get_str":[4915201,17170433,17235969,26214401,31719431,36962305,38207489],"matching":[20185089],"mpn_cnd_swap":[1114113,1966081,3080193,4915201,7012353,8454145,16318465,17170433,19136513,24641537,25952257,34144257,36044801,37224455],"mpz_divexact":[2555905,2686977,4915201,6750209,6946823,7602177,8912897,10027009,10747905,11730945,12845057,13041665,14876673,15335425,16711681,17170433,17694721,17891329,19070977,19267585,19791873,20512769,21561345,22151169,24313857,24772609,25427969,26279937,28835841,29294593,29556737,29949953,32112641,34603009,36110337,36896769,38797313,40042497,41025537],"mpf_add":[3211265,4915201,5767169,7667713,8192001,8257537,8716289,9437185,9764865,11403265,11927553,14680065,17170433,18808833,22020097,22085633,33357831,35913729,37879809],"mpn_perfect_square_p":[4915201,7405569,13434881,16187393,17170433,29818887,36765697],"mpz_bin_ui":[4915201,10616833,17170433,38010888],"mersenne":[4915201,12255234,17170433,28114947,28442626,31588354],"machines":[1376257,7012353,10878977,36044801],"mpz_getlimbn":[4784144,4915201,8781825,12582913,14286849,17170433,21037057,22347777,23068673,34013185],"mpf_cmp":[4915201,13303809,13500417,14942209,17170433,32374785,32636929,36241416,40632321],"mpq_get_str":[3735553,4915201,17170433,34340866,35520513,39911425,40108039,41353217],"mslimb":[19136516],"mpz_get_str":[4915201,8847362,9633793,14286850,14614535,16908290,17170433,20316161,21037058,21102593,23068674,23986178,32899073,34013186,34209794,35192834],"mpq_div":[4915201,5046273,11534341,14811137,17170433,17432577,26542081,29753345,36503553,38862849,38993921],"mpz_submul":[3866625,4915201,7733249,13893633,15269889,15400961,15728641,16449537,17170433,18743297,22478849,25690113,27000833,32702471,33619969,39124993,41287681],"mpn_hamdist":[4915201,9371649,17170433,27525121,28180481,29032449,31064065,37552135],"mpz_clears":[2293762,2424834,2555906,2686978,3866626,4915201,5439490,6946818,7471106,7602178,7733250,8323074,8847361,8912898,9043970,9175042,10747906,11272194,11468802,11730946,12517378,12845058,13828098,13893634,14352386,14745601,14876674,15269890,15335426,15400962,15728642,16252929,16449538,16515074,16711682,17170433,17891330,19070978,19267586,19791874,20512770,20905985,21561346,21823490,22151170,22478850,23658498,24313858,24444930,24772610,25231362,25362439,25559042,25690114,26279938,27000834,27656194,27983874,28770306,28835842,29294594,29556738,29949954,30015490,32112642,32505858,32702466,33619970,33816578,33882114,34275331,34603010,35192833,35651586,36700162,36896770,38010882,38338562,38797314,39124994,39583746,39976962,40042498,41025538,41287682],"mpz_kronecker":[851969,1638401,4915201,14352391,17170433,22544385,37289985],"maps":[20185089],"mpz_export":[4915201,17170433,23986177,34930695],"mpz_add":[3866625,4915201,7733249,13893633,14286849,15269889,15400961,15728641,16449537,17170433,18743297,22478849,25690113,27000839,32702465,33619969,39124993,41287681],"mpn_xor_n":[2621447,4325377,4915201,6094849,17170433,18219009,18677761,24969217,30670849,31653889,40894465],"mpz_cmp":[458753,1245185,4915201,7274497,11468803,17170433,20381697,30212097,33554433,36700167],"mpn_divexact_1":[4718599,4915201,17170433,18350081,20643841,21889025,22282241,22413313,23724033,26345473,27197441,27394049,28704769,30277633,30998529,36765697,37486593,37945345,41156609,41222145],"mp_uint_per_limb":[11796481,17170433,27918343,28377089,40239105],"mpq_add":[4915201,5046273,11534337,14811137,17170433,17432577,26542081,29753345,36503557,38862849,38993921],"mpf_cmp_z":[4915201,13303809,13500423,14942209,17170433,32374785,32636929,36241409,40632321],"mpz_tdiv_q_ui":[4915201,8912897,12845057,16711687,17170433,19070977,29294593,32112641,34603009,36110337,36896769],"mpz_fib2_ui":[2293761,4915201,17170433,18546690,25165825,32505865],"mpf_cmp_d":[4915201,13303816,13500417,14942209,17170433,32374785,32636929,36241409,40632321],"mpz_cdiv_q":[2686977,4915201,6750209,17170433,19791873,20512769,22151175,24772609,26279937,28835841,40042497],"mpq_set_si":[983042,2883586,3342341,3604481,4915201,6881282,10092548,11599874,13107202,14548994,17170433,17563650,20774916,21299201,21430275,25493506,26673153,26804229,28049410,29491201,31129607,31457282,34340865,35520513,38469633,39911426,40108034,41353218],"mpq_set_ui":[3342337,3604481,4915201,17170433,21299201,21430273,26673159,26804225,29097988,29491201,31129601,31391746,34340865,35520513,37683202,38469633],"mpz_powm_sec":[4915201,15990785,17170433,21823489,25559041,27656193,27983879],"mpz_popcount":[2424833,4915201,6029313,10485761,11272193,12058625,12451841,12517377,16515073,17170433,20905991,26869761,38273025,39976961],"mpq_get_num":[4915201,6881281,13107207,14548993,17170433,17563649,25493505,28049409],"mpz":[6881281,9306113,14286849,20250625,25493505,27459585],"mpz_random2":[4915201,6553601,12713985,17170433,23658497,31522821,32047105],"mpf_init_set_d":[3014658,3670017,4915201,11993090,13369345,17170433,17235970,23265287,24248322,24838145,31719426,34668545,36962306,38207490,39321602],"mpf_init_set_ui":[3276802,3670017,4915201,5373954,13369345,15859714,17170433,18939906,23265281,24838151,26017794,32309250,34668545,40828929],"mpq_numref":[4915201,6881281,13107203,14548993,17170433,17563651,25493511,28049409,40108033],"mpf_set_str":[1441793,4521985,4915201,9830401,13369345,17170433,20250631,30081025,31391745,35061761,38404097],"multiplier":[4915201,14811142,17170433],"mpq_get_den":[4915201,6881281,13107201,14548993,17170433,17563649,25493505,28049416],"mpz_cmp_d":[458753,1245185,4915201,7274497,11468801,17170433,20381697,30212104,33554433,36700161],"miscellaneous":[720897,3014657,3276801,5373953,9961473,11993089,15073281,15859713,16973825,17629185,18939905,20840449,24248321,24576001,26017793,26214401,29229057,32309249,34799617,35258369,36831233,36962305,39256065,39321601,39780353],"mpn_sec_tabselect":[1114113,1966081,3080193,4915201,7012353,8454151,16318465,17170433,19136513,24641537,25952257,34144257,36044801,37224449],"mpn_gcd_1":[4915201,5963777,17039367,17170433,20578305],"math":[131073,196609,262149,327687,393220,458757,524292,589829,655361,720901,786436,851973,917505,983045,1048580,1114122,1179652,1245189,1310724,1376262,1441797,1507332,1572865,1638405,1703941,1769479,1835009,1900550,1966089,2031621,2097153,2162692,2228228,2293766,2359297,2424839,2490373,2555910,2621448,2686982,2752516,2818052,2883589,2949121,3014661,3080201,3145732,3211270,3276805,3342342,3407873,3473413,3538948,3604485,3670022,3735557,3801093,3866631,3932165,3997700,4063236,4128774,4194305,4259847,4325384,4390916,4456453,4521989,4587524,4653057,4718600,4784134,4849668,4980737,4915201,5046278,5111812,5177351,5242885,5308417,5373957,5439494,5505028,5570561,5636103,5701633,5767175,5832708,5898244,5963785,6029318,6094856,6160388,6225924,6291457,6356997,6422533,6488069,6553606,6619142,6684673,6750213,6815748,6881285,6946823,7012361,7077889,7143430,7208965,7274501,7340036,7405574,7471110,7602183,7536646,7667718,7733255,7798788,7864324,7929864,7995396,8060933,8126471,8192006,8257542,8323078,8388614,8454153,8519685,8585223,8650762,8716295,8781830,8847366,8912904,8978437,9043974,9109509,9175046,9240582,9306118,9371654,9437190,9502724,9568257,9633797,9699333,9764870,9830406,9895940,9961477,10027013,10092550,10158084,10223622,10289156,10354692,10420229,10485766,10551302,10616837,10682372,10747910,10813445,10878982,10944518,11010053,11075588,11141121,11206660,11272199,11337729,11403269,11468806,11534343,11599877,11665412,11730951,11796484,11862021,11927558,11993094,12058630,12124165,12189700,12255238,12320774,12386310,12451846,12517382,12582917,12648449,12713991,12779524,12845063,12910593,12976132,13041670,13107206,13172737,13238280,13303813,13369350,13434887,13500422,13565953,13631493,13697028,13762565,13828103,13893639,13959172,14024708,14090245,14155780,14221317,14286855,14352390,14417921,14483461,14548998,14614534,14680071,14745605,14811143,14876679,14942213,15007745,15073287,15138824,15204356,15269894,15335430,15400966,15466501,15532036,15597572,15663108,15728646,15794180,15859717,15925252,15990789,16056321,16121861,16187398,16252934,16318474,16384004,16449543,16515078,16580612,16646151,16711686,16777221,16842758,16908294,16973829,17039367,17104897,17170438,17235973,17301508,17367045,17432582,17498116,17563654,17629189,17694725,17760260,17825797,17891335,17956868,18022404,18087942,18153476,18219015,18284549,18350089,18415621,18481157,18546693,18612225,18677768,18743302,18808839,18874369,18939909,19005444,19070983,19136522,19202052,19267590,19333124,19398661,19464198,19529734,19595269,19660804,19726340,19791880,19857409,19922948,19988484,20054020,20119556,20185089,20250630,20316165,20381701,20447233,20512775,20578315,20643848,20709381,20774918,20840453,20905989,20971524,21037062,21102597,21168132,21233669,21299205,21364743,21430278,21495812,21561350,21626887,21692422,21757958,21823494,21889031,21954565,22020102,22085638,22151175,22216708,22282249,22347781,22413319,22478854,22544389,22609925,22675460,22740998,22806529,22872069,22937607,23003142,23068678,23134217,23199749,23265285,23330821,23396353,23461892,23527429,23592961,23658503,23724040,23789572,23855108,23920644,23986185,24051718,24117254,24182788,24248326,24313863,24379396,24444935,24510465,24576005,24641548,24707078,24772615,24838149,24903685,24969224,25034756,25100293,25165829,25231366,25296901,25362437,25427973,25493509,25559048,25624580,25690118,25755653,25821191,25886724,25952265,26017797,26083332,26148869,26214405,26279943,26345480,26411012,26476548,26542086,26607622,26673157,26738695,26804230,26869766,26935297,27000839,27066373,27131909,27197448,27262982,27328513,27394055,27459588,27525126,27590657,27656199,27721734,27787269,27852805,27918340,27983880,28049414,28114949,28180487,28246017,28311553,28377089,28442630,28508164,28573702,28639233,28704779,28770310,28835846,28901381,28966913,29032454,29097990,29163525,29229061,29294598,29360132,29425669,29491205,29556743,29622277,29687813,29753350,29818886,29884420,29949959,30015494,30081030,30146564,30212101,30277640,30343169,30408709,30474245,30539785,30605317,30670856,30736385,30801926,30867460,30932996,30998536,31064071,31129605,31195143,31260677,31326213,31391750,31457286,31522822,31588357,31653896,31719432,31784961,31850502,31916037,31981572,32047111,32112647,32178180,32243713,32309253,32374789,32440324,32505862,32571393,32636933,32702471,32768005,32833541,32899077,32964613,33030149,33095681,33161220,33226756,33292292,33357831,33423361,33488901,33554437,33619974,33685508,33751044,33816583,33882119,33947649,34013190,34078725,34144264,34209798,34275333,34340869,34406404,34471942,34537477,34603015,34668549,34734085,34799621,34865157,34930697,34996230,35061766,35127300,35192837,35258373,35323908,35389441,35454980,35520518,35586052,35651591,35717124,35782660,35848198,35913734,35979268,36044809,36110341,36175877,36241414,36306949,36372485,36438020,36503559,36569093,36634630,36700166,36765704,36831237,36896775,36962309,37027845,37093380,37158916,37224456,37289989,37355525,37421060,37486600,37552135,37617669,37683206,37748741,37814277,37879814,37945352,38010886,38076420,38141956,38207494,38273030,38338569,38404101,38535174,38469637,38600708,38666246,38731782,38797320,38862854,38928388,38993927,39059458,39124998,39190532,39256071,39321606,39387137,39452678,39518212,39583751,39649285,39714817,39780357,39845889,39911429,39976967,40042503,40108038,40173573,40239108,40304645,40370180,40435716,40501252,40566789,40632327,40697861,40763397,40828935,40894472,40960005,41025543,41091076,41156615,41222153,41287686,41353222,41418758],"mpf_div_2exp":[4915201,7667713,8192007,9437185,14680065,17170433],"mpz_remove":[4915201,17170433,35651591],"mpz_setbit":[2424833,4915201,6029313,10485761,11272193,12058625,12451841,12517377,16515073,17170433,20905985,26869761,38273031,39976961],"mpq_set_str":[3342337,3604481,4915201,17170433,21299201,21430273,26673153,26804225,29491201,31129601,34340865,35520518,38469633],"mpz_fdiv_q":[4915201,11730945,17170433,17891329,19267585,25427969,29556743,29949953,38797313,41025537],"manipulation":[24576001],"mp_exp_t":[262153,655380,2031625,2752514,3014657,3276801,5373953,7340041,8060937,8650754,11993089,12320782,15007748,15073281,15859713,17235969,17367049,18022409,18153481,18939905,20185089,23461897,24182793,24248321,25034761,26017793,26214401,27131913,27262990,28508169,29622281,30408713,30736390,30867459,31719432,32309249,32571408,33423395,33685511,34078730,35717164,36372489,36962305,38207489,39059457,39256069,39321601,39518212,40501257],"mpf_init_set":[3670023,4915201,13369345,17170433,23265281,24838145,34668545],"mpf_get_d":[589827,1441794,2490370,3211266,3670018,4521986,4915201,5767170,7667714,8192002,8257538,8716290,8978434,9437185,9764866,9830402,10944514,11403266,11927554,11993090,14680066,17170433,17235975,18808834,22020098,22085634,23003138,23265282,24248322,24838146,26214401,27787266,30081028,31719425,32964614,33357826,34668546,35913730,36962305,37879810,38207489,38404098,39321602,40632322],"msb":[23986178,34930690],"mpz_set_str":[4915202,5242881,8847362,9175041,12582914,16908295,17170434,19398657,21757953,25231361,25296897,34013186,34209794,35520513,38535169],"members":[131073,1310721,1572865,1835009,2359297,3407873,4259841,4587521,4653057,4915201,5308417,5570561,5701633,8650753,9568257,11141121,11337729,12124161,12910593,13172737,13238273,13565953,14090241,14417921,16056321,16646145,17104897,17170433,18874369,19857409,20447233,21626881,23134209,23592961,27328513,27590657,28246017,28311553,28377089,28639233,28966913,30343169,30736385,31195137,32243713,33095681,33423361,33947649,35389441,35717121,38141953,38600705,39649281,39714817],"mpq_init":[983042,2883586,3342341,3604481,3735554,4915201,6881282,9240578,10092548,11599874,13107202,14548994,17170433,17563650,20774916,21299201,21430275,25493506,26673155,26804229,28049410,29097986,29491203,31129603,31391746,31457282,34340871,35520514,37683202,38469633,39911426,40108034,41353218],"mpz_tdiv_r_ui":[4915201,8912897,12845057,16711681,17170433,19070977,29294599,32112641,34603009,36110337,36896769],"men":[9306113,20250625],"mpz_gcd_ui":[4915201,13828097,17170433,27721735,38338561],"mp_bits_per_limb":[4915201,11796481,16318466,17170434,21889026,24641537,27918337,28180481,28377089,31064065,37945346,40239111],"mpf_pow_ui":[3211265,4915201,5767169,7667713,8192001,8257537,8716289,9437185,9764865,11403265,11927553,14680065,17170433,18808833,22020103,22085633,33357825,35913729,37879809],"multi":[327682,1114114,1900546,1966082,2621442,3080194,4259841,4325378,4718594,4915201,5177346,5963778,6094850,7012354,7405570,7929858,8454146,9371650,13238273,13434882,15138818,16187394,16318465,17039362,17170433,18087938,18219010,18350082,18677762,19136514,20185089,20578306,20643842,21364738,21889026,22282242,22413314,22937602,23724034,24051714,24641538,24969218,25952258,26345474,27197442,27394050,27525122,28180482,28704770,29032450,29687809,29818882,30277634,30539778,30670850,30998530,31064066,31195137,31653890,34144258,36044802,36765698,37224450,37486594,37552130,37945346,38731778,40894466,41156610,41222146],"mpq_set_num":[4915201,6881281,13107201,14548993,17170433,17563655,25493505,28049409],"mpq_cmp_si":[983041,2883585,3342340,4915201,6881282,10092545,11599879,13107202,14548994,17170433,17563650,20774913,21430274,25493506,26804226,28049410,31129602,31457281,41353218],"mpq_cmp_ui":[983047,2883585,4915201,9240578,10092545,11599873,17170433,20774913,26673154,31457281],"mpz_divisible_p":[2555905,2686977,4915201,6750209,6946817,7602177,8912897,10027009,10747905,11730945,12845057,13041665,14876673,15335431,16711681,17170433,17694721,17891329,19070977,19267585,19791873,20512769,21561345,22151169,24313857,24772609,25427969,26279937,28835841,29294593,29556737,29949953,32112641,34603009,36110337,36896769,38797313,40042497,41025537],"mpn_sec_powm_itch":[4915201,8454145,17170433,24641540,26738693],"mpz_get_d":[4915201,9633793,14614529,17170433,20316167,21102593,32899073],"mimics":[14090241],"mpz_cdiv_q_2exp":[2686977,4915201,6750209,17170433,19791873,20512769,22151169,24772609,26279943,28835841,40042497],"mpn_sec_div_r":[1114113,1966087,3080193,4915202,7012353,7536645,8454145,16318465,17170434,19136513,24641537,25952257,34144257,36044801,37224449],"mpq_set_den":[4915201,6881281,13107201,14548999,17170433,17563649,25493505,28049409],"mpz_odd_p":[4915201,9961473,16973831,17170433,17629185,24576001,29229057,34799619,35258369,36831233,39780353],"maximum":[6553601,8388609,16252929,16842753,20185089,31522817,31719425,39256065,40828930],"mpz_millerrabin":[4915201,13631489,17170433,37814280],"malloc":[1769473,4128769,34930690],"mpz_bin_uiui":[4915201,10616839,17170433,38010881],"mpz_pow_ui":[4915201,15990785,17170433,21823495,25559041,27656193,27983873],"mpz_congruent_2exp_p":[4915201,7602177,10027009,14876679,17170433],"mpz_2fac_ui":[3473409,4915201,17170433,29687809,33488903],"mpn_sec_sqr":[1114114,1966081,3080193,3801092,4915202,7012353,8454145,16318465,17170434,19136513,24641537,25952257,34144263,36044801,37224449],"mpf_inp_str":[4915201,9306119,17170433,40828929],"mpz_cmpabs":[458753,1245185,4915201,7274497,11468805,17170433,20381697,30212097,33554433,36700161],"mpf_set_d":[1441793,4521991,4915201,9830401,17170433,20250625,30081025,31391745,35061761,38404097],"mpf_set_q":[1441793,4521985,4915201,9830401,17170433,20250625,29097988,30081025,31391751,35061761,38404097],"mpf_set_z":[1441793,4521985,4915201,9830401,17170433,20250625,30081025,31391745,35061767,38404097],"mpn_and_n":[2621441,4325377,4915201,6094849,17170433,18219009,18677767,24969219,30670849,31653889,40894465],"mpf_div":[3211265,4915201,5767169,7667713,8192001,8257537,8716289,9437185,9764865,11403265,11927553,14680071,17170433,18808833,22020097,22085633,33357825,35913729,37879809],"mpf_init_set_str":[3670017,4915201,13369351,17170433,23265281,24838145,34668545],"mpz_urandomm":[4915201,6553602,12713985,17170433,23658503,31522817,32047105],"mpq_inp_str":[4915201,9240583,17170433,37683201],"max_size":[4915203,6553607,17170435,31522823,39256071],"mpn_scan1":[4915201,9371649,17170433,27525121,28180481,29032455,31064065,37552129],"mpn_scan0":[4915201,9371649,17170433,27525127,28180481,29032449,31064065,37552129],"mpz_tstbit":[2424833,4915201,6029319,10485761,11272193,12058625,12451841,12517377,16515073,17170433,20905985,26869761,38273025,39976961],"mpz_primorial_ui":[4915201,17170433,21954567],"mpz_powm_ui":[4915201,15990785,17170433,21823489,25559041,27656199,27983873],"mpz_tdiv_q":[4915201,8912897,12845063,16711681,17170433,19070977,29294593,32112641,34603009,36110337,36896769],"mpz_set_d":[4915201,5242881,9175041,16908289,17170433,19398657,21757953,25231361,25296904,38535169],"mpf_init":[589825,2490375,3211266,4915201,5111810,5767170,7667714,8192002,8257538,8716290,8978435,9306114,9437185,9764866,10944515,11403266,11927554,11993090,14680066,15073282,17170433,18808834,20250626,22020098,22085634,23003137,24248322,26148866,27787265,29097987,31391746,32964609,33357826,35061762,35913730,37879810,39256066,39321602,40632322,41353218],"mpz_set_f":[4915201,5242881,9175041,16908289,17170433,19398657,21757960,25231361,25296897,38535169],"mpz_get_d_2exp":[4915201,9633793,14614529,17170433,20316161,21102599,32899073],"mpz_set_q":[4915201,5242881,9175041,16908289,17170433,19398657,21757953,25231361,25296897,38535176],"mpz_perfect_square_p":[4915201,5439489,6488071,7471105,17170433,24444929,36306945,39583745],"mpn_popcount":[4915201,9371655,17170433,27525121,28180481,29032449,31064065,37552129],"multiplicand":[4915201,14811142,17170433],"mpz_cdiv_ui":[2686977,4915201,6750215,17170433,19791873,20512769,22151169,24772609,26279937,28835841,40042497],"mpz_addmul":[3866625,4915201,7733249,13893633,15269889,15400961,15728641,16449543,17170433,18743297,22478849,25690113,27000833,32702465,33619969,39124993,41287681],"mpn_sec_powm":[1114113,1966081,3080193,4915202,7012353,8454145,16318465,17170434,19136513,24641543,25952257,26738694,34144257,36044801,37224449],"mpf_mul_2exp":[4915201,5767175,8716289,17170433,22085633],"mpz_init":[2424834,2555906,2686978,3473410,3866626,4915201,5242882,5439490,6553602,6946818,7471106,7733250,8323074,8847363,9175044,10616834,10747906,11272194,12582914,12713986,12845058,13107202,13828098,13893634,14286850,14745603,15400962,15728642,15990786,16252930,16515074,16711682,16908290,17170433,17891330,18546690,18743298,19070978,19267586,19398658,21037058,21430274,21561346,21757954,21823490,21954562,22151170,22478850,22740994,23658498,23986178,24313858,24772610,25165826,25296898,25362433,25559042,25690114,26279938,27000834,27656194,27983874,28049410,28835842,29294594,29556738,29687810,29949954,30015490,31457282,31522818,32047106,32112642,33488898,33619970,33816578,33882114,34013186,34275329,35061762,35192839,35651586,36896770,38010882,38535170,39976962,40042498,41025538,41287682],"mpn_zero":[327681,4915201,17170433,21364737,24051719],"magnitude":[2424833,6029313,8650753,10485761,11141121,11272193,12058625,12451841,12517377,16056321,16515073,20905985,21626881,23134209,26869761,32243713,33292290,38273025,39976961],"mpz_out_raw":[1376263,4915202,10878981,17170434,19529729,22740993],"mpn_tdiv_qr":[4718593,4915201,7929857,15138817,17170433,18350081,20643841,21889025,22282241,22413313,23724033,26345473,27197441,27394049,28704775,30277633,30539777,30998529,36765697,37486593,37945345,41156609,41222145],"mpf_get_prec":[589825,2490369,4915201,5111809,8978433,10944515,17170433,23003141,26148865,27787271,29097986,32964609],"mpf_size":[4915201,12386311,17170433],"mpn_neg":[4718593,4915201,7929857,15138817,17170433,18350081,20643841,21889025,22282241,22413313,23724033,26345473,27197441,27394055,28704769,30277633,30539777,30998529,36765697,37486593,37945345,41156609,41222145],"minuend":[4915201,17170433,27394049,38993926],"mpz_jacobi":[4915201,9043975,17170433,28770305],"mpn_cnd_add_n":[1114113,1966081,3080193,4915201,7012359,8454145,16318465,17170433,19136513,24641537,25952257,34144257,36044801,37224449],"mpn_nand_n":[2621441,4325377,4915201,6094849,17170433,18219009,18677761,24969221,30670849,31653889,40894465],"mpz_cdiv_qr":[2555905,2686977,4915201,6750209,6946817,7602177,8912897,10027009,10747905,11730945,12845057,13041665,14876673,15335425,16711681,17170433,17694721,17891329,19070977,19267585,19791879,20512769,21561345,22151169,24313857,24772609,25427969,26279937,28835841,29294593,29556737,29949953,32112641,34603009,36110337,36896769,38797313,40042497,41025537],"mpq_sgn":[983041,2883591,4915201,10092545,11599873,17170433,20774913,31457281],"mpz_realloc2":[4915201,8847369,14745601,16252929,17170433,25362433,34013187,34275329,35192833],"mpz_divexact_ui":[4915201,6946817,10747911,17170433],"mpz_fac_ui":[3473415,4915201,17170433,29687809,33488897],"mpq_abs":[4915201,5046277,11534337,14811137,17170433,17432577,26542081,29753345,36503553,38862849,38993921],"mpz_fib_ui":[4915201,17170433,18546695,32505857],"mpq_sub":[4915201,5046273,11534337,14811137,17170433,17432577,26542081,29753345,36503553,38862849,38993925],"mpz_fdiv_ui":[2555905,4915201,11730945,17170433,17891329,19267585,21561345,25427975,29556737,29949953,38797313,41025537],"mpz_size":[4784131,4915201,8781826,12582914,14286849,17170433,21037057,22347785,23068673,34013185],"mpz_cmpabs_d":[458760,1245185,4915201,7274497,11468801,17170433,20381697,30212097,33554433,36700161],"multiple":[524290,2228225,2818049,4915202,5636097,5701633,7864321,8650755,11337729,16646147,17104897,17170434,23134211,29884418,31195137,31981570,33816579,39059460,41418753],"mpf_get_d_2exp":[4915201,17170433,17235969,26214401,31719425,36962305,38207495],"mpz_gcdext":[4915201,13828097,17170433,27721729,38338567],"mpz_mod":[2555905,2686977,4915201,6750209,6946817,7602177,8912897,10027009,10747905,11730945,12845057,13041665,14876673,15335425,16711681,17170433,17694721,17891329,19070977,19267585,19791873,20512769,21561345,22151169,24313863,24772609,25427969,26279937,28835841,29294593,29556737,29949953,32112641,34603009,36110337,36896769,38797313,40042497,41025537],"mpf_add_ui":[4915201,11927559,17170433,33357825],"mpn_sub":[4718593,4915201,7929857,15138817,17170433,18350081,20643841,21889025,22282247,22413313,23724033,26345473,27197441,27394049,28704769,30277633,30539777,30998529,36765697,37486593,37945345,41156609,41222145],"mpn_sec_add_1_itch":[3080196,4915201,17170433,22609925],"mp_bytes_per_limb":[1900546,4784132,11796487,12582916,14286852,17170433,18087938,19136516,21037060,22347780,23068674,27918337,28377089,31064066,36765700,40239105],"mpf_floor":[3014657,3276801,4915201,5373953,11993089,15073281,15859713,17170433,18939905,24248321,26017793,32309249,39256065,39321607],"modulo":[1966081,4915211,7602178,10027010,14876674,16318465,17170443,19136513,24641537,25559043,27656195,27983874,33882113],"mutable":[11075585,38928385],"mpz_fdiv_qr":[2555905,2686977,4915201,6750209,6946817,7602177,8912897,10027009,10747905,11730945,12845057,13041665,14876673,15335425,16711681,17170433,17694721,17891329,19070977,19267585,19791873,20512769,21561345,22151169,24313857,24772609,25427969,26279937,28835841,29294593,29556737,29949953,32112641,34603009,36110337,36896769,38797319,40042497,41025537],"mpq_denref":[4915201,6881287,13107201,14548995,17170433,17563649,25493505,28049411,40108033],"mpz_addmul_ui":[4915201,15269895,16449537,17170433],"mpn_mod_1":[4718593,4915201,7929857,15138817,17170433,18350081,20643841,21889025,22282241,22413319,23724033,26345473,27197441,27394049,28704769,30277633,30539777,30998529,36765697,37486593,37945345,41156609,41222145],"modified":[6553601,12713985,23658497,31522817,32047105],"mpz_add_ui":[4915201,6881282,13107202,17170433,18743305,25493506,27000833,28049410],"mpz_init_set":[4915201,8323079,17170433,19595265,25100289,34209793,40960001],"making":[20250625],"mpf_set_prec":[589825,2490369,4915201,5111809,8978433,10944519,17170433,23003137,26148865,27787265,29097987,32964609,33292289],"mpz_cdiv_qr_ui":[2686977,4915201,6750209,17170433,19791873,20512775,22151169,24772609,26279937,28835841,40042497],"mpz_tdiv_qr_ui":[4915201,8912897,12845057,16711681,17170433,19070977,29294593,32112641,34603015,36110337,36896769],"mpq_cmp":[983041,2883585,4915201,10092552,11599873,17170433,20774914,31457282],"mpz_even_p":[4915201,9961473,16973827,17170433,17629185,24576001,29229057,34799623,35258369,36831233,39780353],"mpz_cdiv_r_2exp":[2686977,4915201,6750209,17170433,19791873,20512769,22151169,24772615,26279937,28835841,40042497],"mpn_sec_sqr_itch":[3801093,4915201,17170433,34144260],"mpf_ui_sub":[4915201,17170433,18808833,35913729,37879815],"marshal":[5177346,22937602,23986178,34930690],"mpz_ui_kronecker":[851969,1638401,4915201,14352385,17170433,22544385,37289991],"mpn_random":[1900546,4915201,17170433,18087944],"method":[327681,393217,458753,524289,589825,720897,851969,917505,983041,1048577,1114113,1245185,1376257,1441793,1638401,1703937,1769473,1900545,1966081,2097153,2162689,2293761,2424833,2490369,2555905,2621441,2686977,2752513,2883585,3014657,3080193,3211265,3276801,3342337,3473409,3604481,3670017,3735553,3801089,3866625,4063233,4128769,4325377,4390913,4521985,4718593,4784129,4849665,5046273,5111809,5177345,5242881,5373953,5439489,5636097,5767169,5963777,6029313,6094849,6225921,6291457,6356993,6488065,6553601,6684673,6750209,6881281,6946817,7012353,7274497,7405569,7471105,7536641,7602177,7667713,7733249,7929857,7995393,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9764865,9830401,9895937,9961473,10027009,10092545,10485761,10616833,10747905,10878977,10944513,11206657,11272193,11403265,11468801,11534337,11599873,11730945,11927553,11993089,12058625,12255233,12386305,12451841,12517377,12582913,12648449,12713985,12845057,13041665,13107201,13303809,13369345,13434881,13500417,13631489,13697025,13762561,13828097,13893633,14221313,14286849,14352385,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15269889,15335425,15400961,15663105,15728641,15794177,15859713,15990785,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16711681,16842753,16908289,16973825,17039361,17235969,17432577,17563649,17629185,17694721,17891329,17956865,18087937,18219009,18350081,18546689,18677761,18743297,18808833,18939905,19070977,19136513,19267585,19398657,19529729,19595265,19726337,19791873,19922945,20054017,20119553,20185089,20250625,20316161,20381697,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21299201,21364737,21430273,21561345,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22478849,22544385,22609921,22740993,22937601,23003137,23068673,23265281,23527425,23658497,23724033,23789569,23920641,23986177,24051713,24248321,24313857,24444929,24576001,24641537,24772609,24838145,24903681,24969217,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25952257,26017793,26148865,26214401,26279937,26345473,26476545,26542081,26673153,26738689,26804225,26869761,26935297,27000833,27197441,27394049,27525121,27656193,27721729,27787265,27852801,27983873,28049409,28114945,28180481,28442626,28573697,28704769,28770305,28835841,28901377,29032449,29097985,29229057,29294593,29360129,29425665,29491201,29556737,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30212097,30277633,30539777,30605313,30670849,30801921,30867457,30998529,31064065,31129601,31260673,31391745,31457281,31522817,31588354,31653889,31719425,31784961,31981569,32047105,32112641,32309249,32374785,32440321,32505857,32636929,32702465,32833537,32899073,32964609,33030145,33161217,33357825,33488897,33554433,33619969,33751041,33816577,33882113,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34603009,34668545,34734081,34799617,34865153,34930689,35061761,35192833,35258369,35520513,35651585,35782657,35913729,36044801,36110337,36175873,36241409,36306945,36503553,36700161,36765697,36831233,36896769,36962305,37158913,37224449,37289985,37355521,37486593,37552129,37683201,37814273,37879809,37945345,38010881,38207489,38273025,38338561,38404097,38469633,38535169,38731777,38797313,38862849,38993921,39124993,39256065,39321601,39452673,39518209,39583745,39780353,39845889,39911425,39976961,40042497,40108033,40304641,40435713,40566785,40632321,40828929,40894465,40960001,41025537,41156609,41222145,41287681,41353217,41418753],"mpq_cmp_z":[983041,2883585,4915201,10092545,11599873,17170433,20774913,31457287],"mpz_tdiv_ui":[4915201,8912897,12845057,16711681,17170433,19070977,29294593,32112641,34603009,36110343,36896769],"mpz_inp_str":[1376257,4915201,10878977,17170433,19529729,22740999],"mpz_mod_ui":[4915201,17170433,21561352,24313857],"mpn_sec_div_qr_itch":[4915201,17170433,19136516,30801925],"mpn_iorn_n":[2621441,4325383,4915201,6094849,17170433,18219009,18677761,24969217,30670849,31653889,40894465],"mpf_fits_sshort_p":[3014657,3276807,4915201,5373953,11993089,15073281,15859713,17170433,18939905,24248321,26017793,32309249,39256065,39321601],"mpz_fdiv_q_ui":[2555911,4915201,11730945,17170433,17891329,19267585,25427969,29556737,29949953,38797313,41025537],"mpz_init_set_si":[458754,1245185,2555906,2686978,3866626,4915201,5439490,6029314,6488066,6750210,7471106,8323073,8912900,11468802,11730946,12451842,12845060,13500418,14614530,15269892,15400962,15728642,16711682,17170433,17891332,19070978,19267586,19595265,19791876,20381698,20512770,22151172,22478850,24444930,24576002,24772610,25100295,25231364,25427970,26279938,26869762,28835842,29294594,29556740,29949954,32112642,32702466,32899074,34209793,34603010,36110338,36306946,36896772,38010882,38273026,38797316,39124996,39583746,40042500,40960001,41025538,41287682],"mpz_tdiv_q_2exp":[4915201,8912897,12845057,16711681,17170433,19070983,29294593,32112641,34603009,36110337,36896769],"mpn_mul":[4718593,4915201,7929857,15138817,17170433,18350087,20643841,21889025,22282241,22413313,23724033,26345473,27197441,27394049,28704769,30277633,30539777,30998529,36765697,37486593,37945345,41156609,41222145],"mpz_fits_uint_p":[4915201,9961479,16973825,17170433,17629185,24576001,29229057,34799617,35258369,36831233,39780353],"mpz_scan1":[2424833,4915201,6029313,10485762,11272193,12058632,12451841,12517377,16515073,17170433,20905985,26869761,38273025,39976961],"member":[327681,458753,524289,589825,720897,851969,983041,1114113,1245185,1376257,1441793,1638401,1703937,1769473,1900545,1966081,2293761,2424833,2490369,2555905,2621441,2686977,2883585,3014657,3080193,3211265,3276801,3342337,3473409,3604481,3670017,3735553,3801089,3866625,4063233,4128769,4325377,4521985,4718593,4784129,5046273,5111809,5177345,5242881,5373953,5439489,5636097,5767169,5963777,6029313,6094849,6225921,6356993,6488065,6553601,6750209,6881281,6946817,7012353,7274497,7405569,7471105,7602177,7536641,7667713,7733249,7929857,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9633793,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10485761,10616833,10747905,10878977,10944513,11206657,11272193,11403265,11468801,11534337,11599873,11730945,11927553,11993089,12058625,12255233,12386305,12451841,12517377,12582913,12713985,12779521,12845057,13041665,13107201,13303809,13369345,13434881,13500417,13631489,13762561,13828097,13893633,14221313,14286849,14352385,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15073281,15138817,15269889,15335425,15400961,15532033,15728641,15794177,15859713,15990785,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16711681,16842753,16908289,16973825,17039361,17235969,17432577,17563649,17629185,17694721,17891329,18087937,18219009,18350081,18546689,18677761,18743297,18808833,18939905,19070977,19136513,19267585,19333121,19398657,19529729,19595265,19791873,20054017,20250625,20316161,20381697,20512769,20578305,20643841,20709377,20774913,20840449,20905985,21037057,21102593,21299201,21364737,21430273,21561345,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22478849,22544385,22609921,22740993,22937601,23003137,23068673,23265281,23527425,23658497,23724033,23920641,23986177,24051713,24248321,24313857,24379393,24444929,24576001,24641537,24772609,24838145,24903681,24969217,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25690113,25755649,25952257,26017793,26148865,26214401,26279937,26345473,26542081,26673153,26738689,26804225,26869761,27000833,27197441,27394049,27459585,27525121,27656193,27721729,27787265,27852801,27983873,28049409,28114945,28180481,28442625,28573697,28704769,28770305,28835841,28901377,29032449,29097985,29229057,29294593,29425665,29491201,29556737,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30212097,30277633,30539777,30605313,30670849,30801921,30998529,31064065,31129601,31260673,31391745,31457281,31522817,31588353,31653889,31719425,31981569,32047105,32112641,32309249,32374785,32505857,32636929,32702465,32833537,32899073,32964609,33030145,33161217,33357825,33488897,33554433,33619969,33816577,33882113,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34603009,34668545,34734081,34799617,34865153,34930689,35061761,35192833,35258369,35520513,35651585,35913729,36044801,36110337,36175873,36241409,36306945,36503553,36700161,36765697,36831233,36896769,36962305,37224449,37289985,37355521,37486593,37552129,37683201,37814273,37879809,37945345,38010881,38076417,38273025,38207489,38338561,38404097,38535169,38469633,38731777,38797313,38862849,38993921,39124993,39190529,39256065,39321601,39452673,39583745,39780353,39911425,39976961,40042497,40108033,40304641,40566785,40632321,40828929,40894465,40960001,41025537,41156609,41222145,41287681,41353217,41418753],"mpz_scan0":[2424833,4915201,6029313,10485768,11272193,12058626,12451841,12517377,16515073,17170433,20905985,26869761,38273025,39976961]} \ No newline at end of file +{"mpz_rrandomb":[6160385,15073287,19333121,21168129,22478849,30277633,31588354],"mpz_tdiv_qr":[1507329,3014657,6946817,7340033,7471105,9175041,9568257,11141121,11665415,11730945,13828097,14483457,14811137,15335425,17760257,17825793,18546689,19333121,19791873,19857409,20905985,20971521,21168129,23527425,24576001,24838145,27262977,27787265,28508161,31653889,32505857,33947649,34013185,35192833,35258369,35520513,39518209,40042497,41418753],"mpn_lshift":[8060929,19333121,21168129,21823489,24903681,28901383,29294593,31522817,32833537,32899073],"mpq_get_d":[4128771,19333121,21168129,24248326,30343174,30736386,38731777,39845889,40697863],"main":[25231361],"mpz_congruent_ui_p":[7471105,9175047,14483457,19333121,21168129],"mpn_sec_sub_1":[1638404,1703937,2752513,3473409,7405569,9764865,15925249,19333122,19726337,21168130,26279943,26411009,33292289,37289985,37748737],"mpf_set_default_prec":[720898,786434,2097156,3145730,3211266,3604483,5111811,5636098,7929858,8454146,8716290,8781825,8847362,9502722,10027011,10682369,11272194,11337730,11796482,12124163,12582914,12713986,13369346,15597570,17235970,17563650,19333121,21168129,21233667,22937602,23199746,24510471,26869761,27525122,27656195,28246019,28639233,30015490,32636930,34144258,34406402,34537474,35454978,35586050,36241411,37355521,38600706,39059458,40370178],"mpz_sqrt":[5308423,6422529,7864321,19333122,21168130,26935297,31850497,39911426],"mpf_neg":[720897,3211267,5636097,7929857,8454145,8716289,8781825,9502727,11337729,11796481,12713985,17563649,19333121,21168129,23199745,27525121,34144257,35454977,38600705],"mpz_sizeinbase":[9109505,13893633,17039361,18284545,19333121,19922959,21168129,26673153,28770305,33161218,33816577,34930689,38731778,39321601],"mpz_urandomb":[6160386,15073281,19333121,21168129,22478849,30277639,31588353],"mpq_inits":[3735553,3801089,19333121,21168129,21757953,24248327,24641537,26148865,29425665,30343171,30736385,35913729,40304641],"mpn_zero_p":[7602183,14417921,16384001,19333121,21168129,26542081],"mpf_random2":[2883585,3145729,5373953,8847361,15794177,16252929,18153473,19333121,21168129,22937601,30867457,30998535,31064065,40370177],"mpz_divisible_2exp_p":[13828103,14811137,17760257,19333121,21168129],"mpz_t":[327698,393218,589825,1114128,1179664,1310721,1507383,2031632,2228265,2424837,2490391,2555905,3014708,3080202,3276839,3735553,3801089,3866626,3997708,4063237,4194305,4587521,4653058,4980753,5046289,5308442,5767195,5898253,6029314,6094856,6160400,6422547,6946864,7012372,7077899,7340078,7471151,7733250,7864346,7995410,8126510,8323089,8388610,8585228,8978473,9043983,9109520,9175073,9371649,9568295,9633793,9699334,9961496,10223626,10289176,10551325,10747907,10878977,10944513,11141182,11403277,11665477,11731006,12320770,12517410,12582920,12779549,12845069,12910623,12976129,13041675,13107235,13369345,13500460,13631515,13697047,13828128,13893645,13959184,14024718,14090242,14221325,14286849,14483496,14614550,14745616,14811175,15073293,15138858,15269890,15335486,15597569,15663106,15859715,15990823,16056355,16121890,16187413,16449553,16515073,16580610,16973826,17039376,17104910,17760288,17825847,18022432,18284560,18546743,18743309,18874369,19333127,19529740,19660816,19791934,19857452,19922961,20185089,20447243,20709389,20840465,20906053,20971575,21037072,21168135,21430274,21561346,21626901,21692434,21757953,21889051,22216721,22347813,22478868,22544385,22675464,23068674,23134210,23461901,23527479,23592972,23658524,23724047,23855146,23986177,24051757,24117250,24248321,24576048,24707090,24641537,24838206,25165835,25690139,25755686,25821194,25952280,26148872,26476561,26607627,26673168,26738702,26935329,27066379,27263022,27459600,27787319,27983905,28114965,28180490,28508215,28770320,29360170,29425665,29491218,29687843,29753363,30081025,30212105,30277645,30408722,30343169,30539818,30736385,31260673,31588366,31653943,31719434,31850515,31981576,32047105,32178191,32309249,32505918,32571412,32702466,32768008,33030168,33095696,33161227,33423374,33816592,33947703,34013253,34275330,34406401,34537473,34603032,34668550,34799629,34930704,35127300,35192894,35258430,35323945,35520567,35651610,35717122,35913729,35979265,36438029,36569096,36831233,37027861,37093377,37224462,37486602,37552144,37617688,37683227,38010882,38141975,38273026,38338599,38535205,38928386,39059457,39321616,39518263,39911459,39976973,40042558,40239122,40304642,41091117,41418800],"mpz_fdiv_r_ui":[3014657,11141121,15335425,19333121,19857409,20971527,21168129,24576001,34013185,35258369,35520513,39518209],"mpz_limbs_modify":[4980737,9043971,13959169,14614529,19333121,19660801,21037064,21168129,23724033,32571393],"mpz_import":[19333121,21168129,26607624,33161217],"mpn_gcd":[6291463,16908289,18939905,19333121,21168129],"mpq_equal":[589825,2555905,9633794,10878977,18874375,19333121,21168129,31981570],"mpn_rshift":[19333121,21168129,21823489,24903681,28901377,29294593,31522823,32833537],"mpz_neg":[3276801,8126465,13107201,13500417,15138817,15990785,16056328,18022401,19333121,21168129,22347777,26607617,27983873,29360129,29687809,30539777,38338561,38535169],"mpq_clear":[589826,2555906,3735553,4128770,4653058,6029314,7077890,7733250,8192002,8388610,10878978,12320770,12845058,14090242,14221314,15269890,15663106,16973826,18743298,19333121,21168129,21430274,21561346,21757955,23134210,24248321,24641537,26148867,27066370,27656194,29425667,30343169,30736391,31981570,32309250,32702466,33423362,34996226,35717122,35913732,38010882,38731778,38928386,39845890,40239106,40304642,40697858],"mpz_congruent_p":[1507329,3014657,6946817,7340033,7471111,9175041,9568257,11141121,11665409,11730945,13828097,14483457,14811137,15335425,17760257,17825793,18546689,19333121,19791873,19857409,20905985,20971521,21168129,23527425,24576001,24838145,27262977,27787265,28508161,31653889,32505857,33947649,34013185,35192833,35258369,35520513,39518209,40042497,41418753],"mpn_com":[2818049,4390913,5963777,15532033,18808840,19333121,21168129,27852801,30932993,33882113,39387137],"mpf_ui_div":[8454151,8716289,8781825,12713985,19333121,21168129],"mpq_set_d":[4128775,19333121,21168129,38731777,39845889,40697857],"mpq_set_f":[4128769,19333121,21168129,38731777,39845895,40697857],"mpn_sqrtrem":[5505025,8060929,14352385,18677761,19005441,19333121,20054017,20250625,21168129,25100289,25296897,25362433,25493505,26345473,28377089,29163521,32440321,32899073,36044801,37879809,39780353,41025543,41156609],"mpq_set_z":[3735553,3801089,19333121,21168129,21757953,24248321,24641537,26148871,29425665,30343169,30736385,35913729,40304641],"mpz_sub":[3276801,8126465,13107201,13500423,15138817,15990785,16056321,18022401,19333121,21168129,22347777,27983873,29360129,29687809,30539777,38338561,38535169],"mpz_fits_sshort_p":[9109505,17039361,18284545,19333121,19922945,21168129,26673153,28770305,33816583,34930689,39321601],"mpz_kronecker_ui":[1179650,2031624,13697026,19333121,21168129,27459586,33095682],"matches":[25231361],"mpn_andn_n":[2818049,4390913,5963777,15532033,18808833,19333121,21168129,27852801,30932993,33882119,39387137],"mpn":[1835009,18481153,25231361,35127298],"mpz_init_set_d":[7012353,19333121,20709377,21168129,23461889,23592962,32178177,37224456],"mpn_divexact_by3":[5505025,8060929,14352385,18677761,19005441,19333121,20054024,20250625,21168129,25100289,25296897,25362433,25493505,26345473,28377089,29163522,32440321,32899073,36044801,37879809,39780353,41025537,41156609],"mpz_powm":[16187393,19333121,21168129,23658497,23855105,24051719,25755649],"mixed":[1179649,2031617,13697025,27459585,33095681],"mpz_perfect_power_p":[5308417,6422529,7864321,19333121,21168129,26935297,31850503,39911425],"mpf_init2":[786433,1310722,2097153,4587522,5111810,9371652,10027009,10682369,19333121,21168129,24510465,26869763,27656193,28639239,32047108,35979266,37355521],"mpn_sec_add_1":[1703937,2752513,3473415,7405569,9764865,15925249,19333122,19726337,20578308,21168130,26279937,26411009,33292289,37289985,37748737],"mpq_inv":[5439489,11010049,15466497,19333121,21168129,21364741,22806529,31129601,34471937,37814273,39714817],"mpz_inp_raw":[3997699,11403271,19333121,20447233,21168129,25165825],"mpf_abs":[720897,3211270,5636097,7929857,8454145,8716289,8781825,9502721,11337729,11796481,12713985,17563649,19333121,21168129,23199745,27525121,34144257,35454977,38600705],"mpf_inits":[786438,2097153,5111809,10027009,10682369,19333121,21168129,24510465,26869761,27656193,28639233,37355523],"mpn_add":[5505025,8060929,14352385,18677761,19005441,19333121,20054017,20250625,21168129,25100289,25296897,25362433,25493505,26345473,28377095,29163521,32440321,32899073,36044801,37879809,39780353,41025537,41156609],"mpf_clear":[786433,1310722,2097156,2883586,3145729,4587522,4653058,5111809,5373954,6029314,7733250,8388610,9830402,10027015,10682371,11272194,11796482,12124163,12320770,12582914,13369346,14090242,15269890,15597570,15663106,15794178,16252930,16973826,17235970,18153474,19333121,21168129,21233666,21430274,21561346,22544386,23134210,24510465,24707074,26869763,27656196,28246018,28639236,30015490,30867458,30998530,31064066,31260674,32309250,32636930,32702466,32768002,34537474,35586050,35717122,35979266,36241410,36634625,37355521,38010882,38928386,39845890],"memory":[327682,393218,524290,589826,720898,786433,1048578,1114113,1179650,1245187,1310722,1507330,1703938,1835010,2031618,2097154,2228226,2490370,2555906,2752514,2818050,2883586,3014658,3080194,3145730,3211266,3276802,3473410,3604482,3735554,3997698,4128770,4325377,4390914,4587522,4653058,4980738,5046274,5177346,5308418,5373954,5505026,5636098,5767170,5832705,5898243,5963778,6029314,6094850,6160386,6291458,6422530,6750210,6946818,7012354,7077890,7340034,7405571,7471106,7602178,7667713,7733250,7864322,7929858,7995394,8060930,8126466,8192002,8323074,8388610,8454146,8585218,8650757,8716290,8781825,8847362,8978434,9109506,9175042,9240589,9371650,9502722,9568258,9633794,9764866,9830402,9961474,10027010,10092546,10158087,10223618,10289154,10551298,10616834,10682370,10747905,10878978,10944513,11141122,11272194,11337730,11403266,11534342,11665410,11730946,11796482,12124162,12320770,12517378,12582914,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13303810,13369346,13500418,13631490,13697026,13828098,13893634,13959170,14024706,14090242,14221314,14352386,14417922,14483458,14614530,14745602,14811138,15073282,15138818,15269890,15335426,15532034,15597570,15663106,15794178,15925249,15990786,16056322,16121858,16187394,16252930,16384002,16449538,16515073,16908290,16973826,17039362,17104898,17235970,17367043,17563650,17760258,17825794,18022402,18153474,18219009,18284546,18415617,18481154,18546690,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19333127,19464193,19529730,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20185089,20250626,20447234,20512769,20709378,20840450,20905986,20971522,21037058,21168135,21233666,21430274,21561346,21626882,21692418,21757954,21823490,21889026,22216706,22347778,22478850,22544386,22675458,22937602,23134210,23199746,23461890,23527426,23592962,23658498,23724034,23855106,23986178,24051714,24248322,24576002,24641538,24707074,24772610,24838146,24903682,25100290,25165826,25296898,25362434,25493506,25559042,25690114,25755650,25821185,25952258,26148866,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26869762,26935298,27066370,27262978,27459586,27525122,27656195,27787266,27852802,27983874,28114946,28180482,28246018,28377090,28508162,28639234,28770306,28901378,29032450,29097986,29163522,29294594,29360130,29425666,29491202,29687810,29753346,30015490,30081026,30277634,30343170,30408706,30539778,30736386,30867458,30932994,30998530,31064066,31260674,31326210,31457281,31522818,31588354,31653890,31719426,31850498,31981570,32047106,32178178,32309250,32440322,32505858,32571394,32636930,32702471,32768002,32833538,32899074,33030146,33095682,33161218,33226754,33292291,33423362,33816578,33882114,33947650,34013186,34078722,34144258,34275331,34406402,34537474,34603010,34799618,34865154,34930690,34996226,35192834,35258370,35323906,35454978,35520514,35586050,35651586,35717127,35913730,35979266,36044802,36110339,36241410,36438018,36569090,36634625,36962306,37027842,37093378,37224450,37289987,37355522,37486594,37552130,37617666,37683202,37748738,37879810,38010882,38076418,38141954,38207489,38273026,38338562,38535170,38600706,38731778,38797313,38928386,39059458,39321602,39387138,39518210,39780354,39845890,39911426,40042498,40239106,40304641,40370178,40697858,41025538,41091074,41156610,41287682,41353217,41418754],"mod":[1703938,6094849,7471108,9175044,14483459,15925249,19333126,19726338,19857415,20054018,21168134,23855127,24051735,25296898,25755669,26411010,27262982,29163522,37617668],"mpz_init2":[5898241,14024705,14745608,19333121,21168129,28114945,36438017,37027841],"mpn_cmp":[7602177,14417927,16384001,19333121,21168129,26542081],"mpf_sqrt_ui":[720897,11796487,19333121,21168129],"mpz_abs":[3276801,8126465,13107201,13500417,15138817,15990785,16056321,18022401,19333121,21168129,22347777,27983879,29360129,29687809,30539777,38338561,38535169],"mpz_inits":[2490370,5898241,11141122,11665410,14024705,14745602,19333121,19791874,20905986,21168129,26935298,28114947,32505858,34013186,36438017,37027847,38141954,39911426,41091074],"msys2":[25231372],"mpn_submul_1":[5505025,8060929,14352385,18677761,19005441,19333121,20054017,20250625,21168129,25100289,25296897,25362433,25493511,26345473,28377089,29163521,32440321,32899073,36044801,37879809,39780353,41025537,41156609],"mpz_clear":[327682,1114113,1179650,2031618,3080194,3997698,4653058,4980738,5046274,5767170,5898243,6029314,6094850,6160386,6422530,6946818,7733250,8323074,8388610,8585218,9109506,9175042,10223618,10551298,11403266,12320770,12582914,12779522,12845058,13041666,13631489,13828098,13893634,13959170,14024711,14090242,14221314,14614530,14745603,15073282,15269890,15663106,16187394,16449538,16973826,17039362,17104898,17760258,18022402,18284546,18743298,19333121,19529730,19660802,19922946,20447234,20709378,20840450,21037058,21168129,21430274,21561346,21626882,21692418,21889026,22675458,23134210,23461890,23592962,23724034,24576002,24707074,25165826,26148866,26476546,26607618,26673154,26738690,27459586,28114945,28180482,28770306,30277634,30408706,31588354,31719426,31850498,31981570,32178178,32571394,32702466,32768002,33095682,33161218,33423362,33816578,34799618,34930690,35717122,36438019,36569090,37027841,37224450,37486594,37552130,37683202,38010882,38928386,39321602,40239106,41418754],"multiplication":[18677761,20054017,25493505,29163521,32899073],"mpz_sub_ui":[13500417,19333121,21168129,22347777,38535175],"mp_base":[3342338,10813446,10944519,11599874,15859714,24117257,25821191,30474243,34275329,35127298,36700163],"mpf_set":[1310721,4587521,9371655,19333121,21168129,22544385,32047105,32309249,32768001,35979265],"macros":[9437185,40828929],"mpq_canonicalize":[3735553,3801093,4128769,8192001,19333121,21168129,21757954,24248321,24641537,26148865,29425666,30343169,30736385,35913729,40304642],"mpz_tdiv_r_2exp":[11665409,11730945,17825793,18546689,19333121,21168129,28508161,31653895,32505857,35192833,41418753],"mpz_fits_slong_p":[9109505,17039361,18284545,19333121,19922945,21168129,26673153,28770311,33816577,34799617,34930689,39321601],"mpf_fits_slong_p":[2883585,3145729,5373953,8847361,15794177,16252929,18153479,19333121,21168129,22937601,28835841,30867457,30998529,31064065,32636929,40370177],"mpq_swap":[3735559,3801089,19333121,21168129,21757953,24248321,24641537,26148865,29425665,30343169,30736385,35913729,40304641],"mpf_get_ui":[9830402,17235969,19333121,21168129,28835845,30015489,32636929,35586049],"mp_ptr":[524310,1638412,1703996,1835020,2752585,2818098,3473473,4259855,4390962,4784140,4980737,5177354,5505091,5963826,6291488,7405640,7602188,8061002,8650759,9043969,9764920,11534348,13303815,13762562,13959176,14352449,14417939,14614539,15532082,15925313,16384012,16908303,18481164,18677827,18808877,18939946,19005514,19070998,19333156,19464198,19660808,19726406,20054091,20250698,20578316,21037064,21168164,21823504,22020097,22151171,23724033,24772621,24903696,25100358,25296953,25362503,25493571,25559055,26017822,26280001,26345556,26411085,26542092,27328514,27852850,28377160,28704788,28901402,29032455,29163595,29294615,30933042,31522842,32440387,32571393,32833552,32899141,33226759,33292360,33882162,34078727,34275329,34734100,34865159,35127303,36044874,37290043,37748799,37879875,38404099,39387186,39780423,40501264,40894466,41025614,41156684,41287690],"mpf_fits_ushort_p":[2883585,3145729,5373953,8847361,15794177,16252929,18153473,19333121,21168129,22937601,30867457,30998529,31064071,40370177],"mpn_addmul_1":[5505025,8060929,14352385,18677767,19005441,19333121,20054017,20250625,21168129,25100289,25296897,25362433,25493505,26345473,28377089,29163521,32440321,32899073,36044801,37879809,39780353,41025537,41156609],"mpf_get_si":[17235969,19333121,21168129,28835841,30015489,32636935,35586049],"mpn_cnd_sub_n":[1703937,2752513,3473409,7405569,9764865,15925249,19333121,19726337,21168129,26279937,26411009,33292295,37289985,37748737],"mpf_get_default_prec":[786433,2097153,5111815,10027009,10682369,19333121,21168129,24510467,26869761,27656193,28639233,37355521],"mpz_submul_ui":[19333121,21168129,29360129,29687815],"mpz_lcm":[19333121,21168129,35651591,39976961],"mpz_and":[2228225,5767169,8978439,10551297,12517377,12779521,13631489,16121857,19333121,21168129,21889025,25690113,35323905,37683201],"mpz_rootrem":[5308417,6422529,7864321,19333121,21168129,26935303,31850497,39911425],"mpz_set":[5046273,10289159,12845057,14221313,16449537,18743297,19333121,20840449,21168129,21692417,24707073,25952257,33423361,40239105],"mpf_sqrt":[720903,3211265,5636097,7929857,8454145,8716289,8781825,9502721,11337729,11796481,12713985,17563649,19333121,21168129,23199745,27525121,34144257,35454977,38600705],"mpz_combit":[2228225,5767169,8978433,10551297,12517377,12779521,13631495,16121857,19333121,21168129,21889025,25690113,35323905,37683201],"mpn_get_str":[5177351,19333121,21168129,24772609,41287681],"mpz_kronecker_si":[1179655,2031617,13697025,19333121,21168129,27459585,33095681],"msys":[25231361],"mpf_ceil":[2883585,3145729,5373953,8847361,15794177,16252929,18153473,19333121,21168129,22937607,30867457,30998529,31064065,40370177],"mp_limb_t":[262156,917513,1376265,1638404,1703941,2752517,3473425,4456450,4718598,4980741,5505038,6291457,7405584,7536649,7733250,8060944,8257539,8519694,8912905,9043969,9764869,10944513,11534341,12255241,14090242,14286849,14352404,14614529,14745601,15269890,15663106,15925253,16646153,16908298,16973826,17694729,18677781,18939905,19005455,19136521,19333122,19398665,19595268,19726348,20054036,20250641,20578308,20774947,21168130,21299209,21430274,22413321,23134210,23396359,25100305,25231363,25296915,25362455,25493525,25821185,25886729,26279953,26345482,26411013,27000842,27328519,28377104,28442633,28901383,29163544,31391753,31522823,32440341,32702466,32899093,33292304,33488905,33751054,34275330,35717122,36044817,36503576,36831275,37289993,37748741,37879818,38010882,38469636,39190537,39780375,40894470,41025546,41156618],"mpz_get_ui":[8585223,11403266,13893633,14024706,18022402,19333121,19529729,20709378,20840450,21168129,23592961,25165826,30539778,34799617,35127297],"manner":[8454145,8781825,12713985],"mpz_get_si":[1507330,2228226,2490372,3014658,3080194,3276802,5046274,5308418,5898242,7012354,7340034,7864322,8126466,8585217,8978434,9568258,10223618,10289154,11141124,11665412,11730946,12910594,13107202,13500418,13631490,13893633,14745602,15138818,15335426,15990786,16056322,16121858,16187394,17104898,17825794,18546690,19333121,19529729,19791876,19857410,20905988,20971522,21168129,21692418,21889026,22216706,22347778,22675458,23461890,23527426,23592961,23658498,23855106,24051714,24707074,24838146,25755650,25952260,26738690,26935300,27262978,27787266,27983874,28114950,28180482,28508162,29360130,29687810,29753346,31653890,31719426,32505860,32571394,33030146,33947650,34013188,34799623,35192834,35258370,35323906,35520514,35651586,37027846,37224450,37617666,37683202,38141956,38338562,38535170,39518210,39911428,40042498,40239106,41091078],"mpf_div_ui":[8454145,8716289,8781830,12713985,19333121,21168129],"minimum":[6356993,10682369,24510465,27656193,28639233,33357825],"mpf_integer_p":[2883585,3145735,5373953,8847361,15794177,16252929,18153473,19333121,21168129,22937601,30867457,30998529,31064065,40370177],"mpf_fits_uint_p":[2883585,3145729,5373959,8847361,15794177,16252929,18153473,19333121,21168129,22937601,30867457,30998529,31064065,40370177],"mpf_out_str":[9830401,19333121,21168129,36634630],"mpz_clrbit":[2228225,5767169,8978433,10551297,12517377,12779521,13631489,16121857,19333121,21168129,21889031,25690113,35323905,37683201],"miller":[13041666],"mpz_init_set_ui":[1179650,2031618,2228228,3997698,6094850,7012353,7340036,7471110,7995396,8126468,8323074,8585218,8978436,9109506,9175042,9568258,9961474,10551298,11403266,12517380,12779522,12845058,12910596,13041666,13500420,13697028,13828098,14483460,14811140,15138822,16121858,17039362,17760258,18284546,18743298,19333121,19857410,20447234,20709383,21037058,21168129,21626882,22216706,22347778,23461889,23658498,23855110,24051718,25690114,25755652,26673154,27262980,27459586,28770306,29360132,29491204,30408706,30539780,32178177,33030148,33095682,33816578,34603012,34930690,35323908,35651588,36569090,37224449,37486594,37552130,37617668,38535170,39321602,41091076],"mpz_cdiv_r":[1507329,6946817,19333121,19791873,20905985,21168129,23527425,24838145,27787265,33947649,40042503],"mpn_sec_mul_itch":[2752516,19333121,21168129,34734085],"mpz_ui_pow_ui":[16187399,19333121,21168129,23658497,23855105,24051713,25755649],"mpq_out_str":[8192001,19333121,21168129,34996231],"mpn_sub_n":[5505025,8060929,14352385,18677761,19005441,19333122,20054017,20250625,21168130,25100290,25296897,25362433,25493505,26345473,28377089,29163521,32440321,32899073,33292291,36044807,37879809,39780353,41025537,41156609],"mp_size_t":[524295,1638414,1703968,1835017,1900548,2686992,2752545,2818061,2883585,3145729,3342343,3473435,3866631,3932169,4259865,4390925,4653059,4784142,4980747,5177350,5373953,5505055,5963789,6029315,6160390,6291477,6619145,7405593,7602184,7798793,8060959,8388611,8650753,8847361,9043981,9764896,10420233,11534337,12058633,12189705,12320771,13762566,13959174,14286892,14352414,14417928,14614538,15007753,15073282,15532045,15794177,15925273,16252929,16384008,16908298,18153473,18481161,18612233,18677791,18808846,18939932,19005475,19070983,19333134,19660811,19726368,20054052,20250659,20316169,20381699,20578318,21037067,21102627,21168142,21495817,21561347,21823496,22478850,22937601,23003145,23265300,23724043,24313865,24772617,24903684,25100320,25231361,25296927,25362466,25493535,25559047,25624583,26017819,26214409,26279963,26345511,26411040,26542088,27197454,27590666,27852813,28377122,28704793,28901384,29163556,29294600,29884420,30277634,30867457,30933005,30998533,31064065,31522824,31588358,31916034,32243726,32440351,32571404,32833540,32899104,33292313,33554439,33882125,34078726,34209801,34275329,34340870,34734105,36044831,37158921,37290006,37421065,37748762,37879839,38928387,39387149,39780390,40370177,40501262,40763401,41025575,41156640,41222153,41287686],"mpf_swap":[1310721,4587521,9371649,19333121,21168129,22544385,32047111,32309249,32768001,35979265],"maxvalue":[2883586,5373954,9109506,15794178,17039362,18153474,26673154,28770306,30867458,31064066,33816578,34930690],"mpz_out_str":[3997697,11403265,19333121,20447239,21168129,25165825],"mpf_set_si":[1310721,4587521,9371653,19333121,21168129,22544385,32047109,32309249,32768001,35979271,39845890],"mpf_set_ui":[1310727,4587521,9371649,19333121,21168129,22544385,32047105,32309249,32768001,35979265],"mpn_sub_1":[5505025,8060929,14352385,18677761,19005441,19333121,20054017,20250625,21168129,25100289,25296897,25362433,25493505,26279937,26345473,28377089,29163521,32440327,32899073,36044801,37879809,39780353,41025537,41156609],"mpn_sizeinbase":[5177345,19333121,21168129,24772609,41287687],"mpf_sub":[720897,3211265,5636097,7929857,8454145,8716289,8781825,9502721,11337729,11796481,12713985,17563655,19333121,21168129,23199745,27525121,34144257,35454977,38600705],"mpz_ui_sub":[13500417,19333121,21168129,22347783,38535169],"mpz_fdiv_r":[3014657,11141121,15335431,19333121,20971521,21168129,24576001,34013185,35258369,35520513,39518209],"mpz_swap":[5046273,10289153,16449537,19333121,20840449,21168129,21692417,24707073,25952263,40239105],"mpn_set_str":[5177345,19333121,21168129,24772615,41287681],"mpf_sgn":[12582913,13369345,15597569,19333121,21168129,31260679,34406401,34537473,39059457],"mercurial":[25231361],"mpq_div_2exp":[5439489,11010049,15466497,19333121,21168129,21364737,22806533,31129601,34471937,37814273,39714817],"mantissa":[9830402,10944513,11599873,16252929,17170433,19333121,21168129,22544387,30015489,35127297,36634626],"mpz_invert":[19333121,21168129,24051713,25755649,37617671],"mpz_fits_ushort_p":[9109505,17039367,18284545,19333121,19922945,21168129,26673153,28770305,33816577,34930689,39321601],"moved":[1441794],"mpz_root":[5308417,6422529,7864327,19333121,21168129,26935297,31850497,39911425],"mpz_set_si":[5046279,7012354,10289157,16449537,19333121,20840449,21168129,21692417,24707073,25952257,26148866,31981570,40239105],"mpz_set_ui":[5046273,10289153,16449537,19333121,19660802,20840455,21168129,21692417,24707073,25952257,32768002,35127297,40239105],"mpz_hamdist":[2228225,5767169,8978433,10551297,12517383,12779521,13631489,16121857,19333121,21168129,21889025,25690113,35323905,37683201],"mpz_mfac_uiui":[3080193,19333121,21168129,28180487,31719425],"mpz_fdiv_q_2exp":[3014657,11141121,15335425,19333121,20971521,21168129,24576001,34013185,35258369,35520513,39518215],"mpq_t":[589839,1310721,2359299,2555919,3735579,3801104,4128780,4194305,4587521,4653058,5046273,5439518,5570565,6029314,6488069,7077901,7733250,8192010,8388610,9371649,9633818,9699330,10289153,10878991,10944513,11010082,12320770,12845071,14090242,14221327,14286849,14942217,15269890,15466530,15663106,16449537,16515082,16973826,18415619,18743311,18874392,19333122,20840449,21168130,21364766,21430274,21561346,21692417,21757973,22544385,22806558,23134210,24248347,24641563,24707073,25821185,25952257,26148884,27066381,27656195,29097986,29425685,30343195,30736405,31129630,31981587,32047105,32309256,32702466,32768001,33423376,34275329,34471970,34668546,34996233,35717122,35913749,35979265,36831233,37814302,38010882,38731787,38928386,39714850,39845899,40239112,40304660,40435714,40697867],"mpz_cdiv_q_ui":[1507335,6946817,19333121,19791873,20905985,21168129,23527425,24838145,27787265,33947649,40042497],"mpz_sgn":[327681,1114113,8323073,9043969,9961473,19333121,21168129,26476551,30408705,33161217,34603009,37552129],"mpz_cmpabs_ui":[327681,1114118,8323073,9961473,19333121,21168129,26476545,30408705,34603009],"mpf_init_set_si":[720898,3211266,3604483,5636098,7929860,8454146,8716290,8781825,9502722,11337730,12124161,12582914,12713988,13369346,15597570,17563652,19333121,21168129,21233665,23199746,27525122,28246017,31260674,34144258,34406404,34537474,35454978,36241415,38600708,39059460],"mpz_divisible_ui_p":[13828097,14811137,17760263,19333121,21168129],"mpf_cmp_si":[12582913,13369345,15597569,19333121,21168129,31260673,34406401,34537479,39059457],"mpf_cmp_ui":[12582913,13369345,15597575,19333121,21168129,31260673,34406401,34537473,39059457],"mpn_random2":[1835017,18481155,19333121,21168129],"makes":[14745601,22544385],"mpn_mul_1":[5505025,8060929,14352385,18677761,19005441,19333121,20054017,20250625,21168129,25100289,25296897,25362433,25493505,26345473,28377089,29163521,32440321,32899079,36044801,37879809,39780353,41025537,41156609],"mp_bitcnt_t":[786437,1507330,1572870,1703938,1966084,2097157,2228230,2752514,2883585,3014658,3145729,3276805,3473410,3604481,4194348,4849673,5111818,5373953,5636101,5767178,5898246,6094854,6160387,6225929,6946818,7143433,7274506,7405570,7471105,7929857,8126465,8847361,8978438,9175041,9764867,10027012,10551314,10682376,11141122,11665410,11730946,12124161,12517388,12779538,12976130,13565954,13631498,13828101,14024706,14155785,14483461,14549001,14745607,14811137,14876681,15073286,15204359,15335426,15400969,15794177,15925254,15990785,16121862,16252933,16318467,17301513,17498121,17760257,17825794,17891342,18153473,18546694,19333123,19726338,19791874,20185090,20905986,20971522,21168131,21233665,21823495,21889034,22478850,22937601,23199745,23527430,23986178,24379406,24510472,24576002,24838146,24903691,25034761,25231361,25690124,26017803,26279938,26411016,26869769,27656206,27721737,27787270,27918358,28114946,28246017,28508162,28639240,28901378,29294599,29556745,29622276,30277638,30867457,30998529,31064065,31522818,31588355,31653894,32112649,32505858,32571395,32833547,33030149,33292290,33947650,34013186,34275329,35127297,35192834,35258370,35323910,35520518,35782691,35848200,36175881,36241409,36438018,37027842,37093378,37289986,37355524,37683210,37748738,37945358,38273031,38338561,39518214,40042498,40370177,40501252,40632329,41418754],"mpz_roinit_n":[4980737,9043969,13959169,14614536,19333121,19660801,21037057,21168129,23724033,32571393],"meaning":[22544385],"mpz_limbs_finish":[4980737,9043974,13959169,14614529,19333121,19660803,21037059,21168129,23724033,32571393],"mpz_limbs_write":[4980737,9043970,13959169,14614529,19333121,19660808,21037057,21168129,23724033,32571393],"mpn_mul_n":[5505025,8060929,14352385,18677761,19005441,19333121,20054017,20250625,21168129,25100289,25296897,25362433,25493505,26345473,28377089,29163521,32440321,32899073,36044801,37879809,39780353,41025537,41156615],"mpf_sub_ui":[17563649,19333121,21168129,34144263,35454977],"mpn_sec_invert":[1703937,2752513,3473409,7405569,9764865,15925254,19333122,19726337,21168130,26279937,26411009,33292289,37289985,37748737,40501252],"mpn_gcdext":[6291457,16908289,18939911,19333121,21168129],"mpz_cmp_si":[327681,1114113,8323079,9961473,14221314,19333121,21168129,26476545,30408705,33423362,34603009,37552129],"mpz_cmp_ui":[327681,1114113,8323073,9961473,19333121,21168129,26476545,30408705,34603009,37552135],"map":[25231361],"mpn_sqr":[5505025,8060929,14352385,18677761,19005441,19333121,20054017,20250625,21168129,25100289,25296897,25362433,25493505,26345473,28377089,29163521,32440321,32899073,36044801,37879815,39780353,41025537,41156610],"methods":[131074,1245185,1572866,2293762,4194305,4325377,4718594,7667714,10747906,10944513,11534337,13172737,14286849,16515073,18219010,18415618,19333122,21168129,23330818,24117249,24182786,25821185,33685505,34340866,36110337,36700162,36831233,36896770,36962306,38404098,39452673,40566785],"mpz_mul_2exp":[3276807,8126465,15990785,19333121,21168129,38338561],"mpn_sec_mul":[1703937,2752519,3473409,7405569,9764865,15925249,19333122,19726337,21168130,26279937,26411009,33292289,34734085,37289985,37748737],"multiply":[18677761,19005441,19333125,20054017,21168133,25493505,29163521,32899073,41156609],"mpz_lcm_ui":[19333121,21168129,35651585,39976965],"mpn_add_1":[3473409,5505025,8060929,14352391,18677761,19005441,19333121,20054017,20250625,21168129,25100289,25296897,25362433,25493505,26345473,28377089,29163521,32440321,32899073,36044801,37879809,39780353,41025537,41156609],"make":[3801089,4980737,8454145,8781825,10027009,12713985,14614530,14745601,19333121,19660801,21037057,21168129,21692417,24707073,25231367,30736385,37224449,40239105],"mpz_limbs_read":[4980737,9043969,13959175,14614529,19333121,19660801,21037057,21168129,23724033,32571393],"mpz_cdiv_r_ui":[1507329,6946817,19333121,19791873,20905985,21168129,23527425,24838145,27787265,33947655,40042497],"mpz_tdiv_r":[11665409,11730945,17825793,18546689,19333121,21168129,28508161,31653889,32505857,35192839,41418753],"mpn_add_n":[5505025,7405571,8060935,14352385,18677761,19005441,19333122,20054017,20250625,21168130,25100289,25296897,25362433,25493505,26345473,28377089,29163521,32440321,32899073,36044801,37879809,39780353,41025537,41156609],"mpf_reldiff":[12582913,13369345,15597569,19333121,21168129,31260673,34406401,34537473,39059463],"mpn_sec_sub_1_itch":[1638405,19333121,21168129,26279940],"mpn_xnor_n":[2818049,4390913,5963783,15532033,18808833,19333121,21168129,27852801,30932993,33882113,39387137],"mpz_sqrtrem":[5308417,6422529,7864321,19333121,21168129,26935297,31850497,39911431],"mpz_init_set_str":[4980738,7012353,19333121,19529730,20709377,21168129,22478850,23461889,23724034,32178183,33161218,37224449],"minus":[13893633,19922945,22544385,30015489,38731777],"mpn_nior_n":[2818049,4390913,5963777,15532033,18808833,19333121,21168129,27852801,30932999,33882113,39387137],"machine":[23855105,36831233],"mpz_random":[6160391,15073281,19333121,21168129,22478849,30277633,31588355],"mimic":[25231361],"mpf_mul":[720897,3211265,5636097,7929863,8454145,8716289,8781825,9502721,11337729,11796481,12713985,17563649,19333121,21168129,23199745,27525121,34144257,35454977,38600705],"mpz_fits_sint_p":[9109505,17039361,18284545,19333121,19922945,21168129,26673159,28770305,33816577,34930689,39321601],"mean":[40108034],"mingw":[25231369],"mpq_neg":[5439489,11010049,15466497,19333121,21168129,21364737,22806529,31129605,34471937,37814273,39714817],"means":[36831233,40108033],"mpn_divexact_by3c":[5505025,8060929,14352385,18677761,19005441,19333121,20054019,20250625,21168129,25100289,25296897,25362433,25493505,26345473,28377089,29163529,32440321,32899073,36044801,37879809,39780353,41025537,41156609],"mpf_trunc":[2883585,3145729,5373953,8847367,15794177,16252929,18153473,19333121,21168129,22937601,30867457,30998529,31064065,40370177],"mpq_mul":[5439489,11010049,15466501,19333121,21168129,21364737,22806529,31129601,34471937,37814273,39714817],"mpz_ior":[2228231,5767169,8978433,10551297,12517377,12779521,13631489,16121857,19333121,21168129,21889025,25690113,35323905,37683201],"mpf_fits_sint_p":[2883585,3145729,5373953,8847361,15794183,16252929,18153473,19333121,21168129,22937601,30867459,30998529,31064065,40370177],"measured":[19333123,19922946,21168131,23724034,41287682],"mpz_xor":[2228225,5767169,8978433,10551297,12517377,12779521,13631489,16121857,19333121,21168129,21889025,25690113,35323911,37683201],"mpz_lucnum2_ui":[2490377,17104897,19333121,21168129,26738690,38141953],"mpz_mul":[3276801,8126471,13107201,13500417,15138817,15990785,16056321,18022401,19333121,21168129,22347777,27983873,29360129,29687809,30539777,38338561,38535169],"mpq_clears":[3735555,3801089,9633794,18874370,19333121,21168129,21757953,24248323,24641539,26148865,29425665,30343175,30736385,35913729,40304641],"macro":[20054017,25362433,29163521,39780353],"mpq_mul_2exp":[5439489,11010049,15466497,19333121,21168129,21364737,22806529,31129601,34471937,37814277,39714817],"m2exp":[6094855,19333121,21168129,38273026],"mpn_sec_div_r_itch":[1703940,4259845,19333121,21168129],"mpn_sec_div_qr":[1703937,2752513,3473409,7405569,9764865,15925249,19333122,19726343,21168130,26279937,26411009,28704773,33292289,37289985,37748737],"mpn_ior_n":[2818049,4390913,5963777,15532033,18808833,19333121,21168129,27852801,30932993,33882113,39387143],"mpf_t":[720931,786451,1310737,2097168,2162693,2883606,3145750,3211300,3604500,4128769,4194305,4521993,4587537,4653058,5046273,5111819,5373974,5636134,6029314,7667715,7733250,7929901,8388610,8454184,8716328,8781862,8847389,9371672,9502754,9830409,10027024,10289153,10682383,10944522,11272200,11337764,11599875,11796508,12124175,12320770,12582929,12714031,13369362,14090242,14286849,15269890,15597585,15663106,15794198,16252950,16449537,16515073,16973826,17170434,17235980,17563693,18087938,18153494,19333122,20840449,21168130,21233677,21430274,21561346,21692417,22085637,22544401,22937629,23134210,23199782,24117250,24510473,24707080,25624578,25821185,25952257,26869775,27525154,27656216,28246029,28639248,28835851,30015500,30867478,30998550,31064086,31260689,31326210,32047128,32309265,32636942,32702466,32768017,34144294,34275330,34406426,34537489,35127297,35455014,35586060,35717122,35979281,36241421,36634632,36831233,37355542,38010882,38600747,38731777,38928386,39059487,39845896,40108034,40239105,40370205,40697857],"missing":[21168129,34275329],"msys64":[25231361],"manual":[25231363,35586049],"mpq_set":[3735553,3801089,19333121,21168129,21757953,24248321,24641543,26148865,29425665,30343169,30736385,35913729,40304641],"mpz_lucnum_ui":[2490369,19333121,21168129,26738695],"modular":[37617666],"mpn_divrem_1":[5505025,8060929,14352385,18677761,19005441,19333121,20054018,20250625,21168129,25100289,25296897,25362434,25493505,26345473,28377089,29163522,32440321,32899073,36044801,37879809,39780360,41025537,41156609],"mpz_nextprime":[13041665,19333121,21168129,22216711],"mpz_gcd":[12910599,19333121,21168129,21626881,41091073],"mpf_mul_ui":[5636097,7929857,19333121,21168129,23199751],"monotonously":[2752513,3473409,26279937,26411009,37748737],"mpn_sec_invert_itch":[15925251,19333121,21168129,40501253],"mpz_legendre":[1179649,2031617,7995393,13697025,19333121,21168129,27459585,29491207,33095681],"memberwiseclone":[7667713,10747905,10944513,11534337,13172737,16515073,18415617,24117249,24182785,25821185,36700161,36896769,38404097,40566785],"mpf_set_prec_raw":[786433,2097153,5111809,10027009,10682369,19333121,21168129,24510465,26869761,27656205,28639233,37355521],"mpz_fits_ulong_p":[9109505,17039361,18284545,19333121,19922945,21168129,26673153,28770305,33816577,34930695,39321601],"mpn_divmod_1":[5505025,8060929,14352385,18677761,19005441,19333121,20054017,20250625,21168129,25100289,25296897,25362440,25493505,26345473,28377089,29163521,32440321,32899073,36044801,37879809,39780354,41025537,41156609],"mpf_fits_ulong_p":[2883585,3145729,5373953,8847361,15794177,16252929,18153473,19333121,21168129,22937601,28835841,30867461,30998529,31064065,32636929,40370177],"mpz_si_kronecker":[1179649,2031617,13697025,19333121,21168129,27459591,33095681],"mpz_fdiv_qr_ui":[3014657,11141127,15335425,19333121,20971521,21168129,24576001,34013185,35258369,35520513,39518209],"mpz_probab_prime_p":[13041671,19333121,21168129,22216705,37486593],"mpn_copyd":[524289,19070983,19333121,21168129,25559041],"mpn_copyi":[524295,19070977,19333121,21168129,25559041],"mpn_perfect_power_p":[7602177,14417921,16384007,19333121,21168129,26542081],"mpz_fdiv_r_2exp":[3014657,11141121,15335425,19333121,20971521,21168129,24576001,34013185,35258369,35520519,39518209],"mpz_com":[2228225,5767169,8978433,10551297,12517377,12779521,13631489,16121863,19333121,21168129,21889025,25690113,35323905,37683201],"mpf_clears":[720898,786434,2097153,3211266,3604482,5111809,5636098,7929858,8454146,8716290,8781825,8847362,9371650,9502722,10027009,10682369,11337730,12713986,17563650,19333121,21168129,22937602,23199746,24510465,26869761,27525122,27656193,28639233,32047106,34144258,34406402,35454978,37355527,38600706,39059458,40370178],"mpz_mul_si":[3276801,8126465,15990785,19333121,21168129,38338567],"mpf_urandomb":[2883585,3145729,5373953,8847361,15794177,16252935,18153473,19333121,21168129,22937601,30867457,30998529,31064065,40370177],"mpz_mul_ui":[3276801,8126465,15990791,19333121,21168129,38338561],"mpf_get_str":[17235969,19333121,21168129,28835841,30015495,32636929,35586049],"matching":[25231361],"mpn_cnd_swap":[1703937,2752513,3473409,7405569,9764865,15925249,19333121,19726337,21168129,26279937,26411009,33292289,37289991,37748737],"mpz_divexact":[1507329,3014657,6946817,7340039,7471105,9175041,9568257,11141121,11665409,11730945,13828097,14483457,14811137,15335425,17760257,17825793,18546689,19333121,19791873,19857409,20905985,20971521,21168129,23527425,24576001,24838145,27262977,27787265,28508161,31653889,32505857,33947649,34013185,35192833,35258369,35520513,39518209,40042497,41418753],"mpf_add":[720897,3211265,5636097,7929857,8454145,8716289,8781825,9502721,11337729,11796481,12713985,17563649,19333121,21168129,23199745,27525121,34144257,35454977,38600711],"mpn_perfect_square_p":[7602177,14417921,16384001,19333121,21168129,26542087,41025537],"mpz_bin_ui":[10223617,19333121,21168129,29753352],"mersenne":[12976130,19333121,21168129,30081026,36569090,37093379],"machines":[3997697,7405569,11403265,33292289],"mpz_getlimbn":[4980752,9043969,13959169,14614529,19333121,19660801,21037057,21168129,23724033,32571393],"mpf_cmp":[12582913,13369345,15597569,19333121,21168129,31260673,34406408,34537473,39059457],"mpq_get_str":[4128769,19333121,21168129,35913730,38731783,39845889,40304641,40697857],"mslimb":[19726340],"mpz_get_str":[5898242,8585217,13893639,14614530,16449538,19333121,19529729,19660802,21037058,21168129,23592961,26607618,32178178,32571394,34799617,36438018],"mpq_div":[5439489,11010053,15466497,19333121,21168129,21364737,22806529,31129601,34471937,37814273,39714817],"mpz_submul":[3276801,8126465,13107201,13500417,15138817,15990785,16056321,18022401,19333121,21168129,22347777,27983873,29360135,29687809,30539777,38338561,38535169],"mpn_hamdist":[19333121,21168129,21823489,24903681,28901377,29294599,31522817,32833537],"mpz_clears":[1507330,2228226,2490370,3014658,3276802,5308418,5898241,7012354,7340034,7471106,7864322,7995394,8126466,8978434,9568258,9961474,10289154,11141122,11665410,11730946,12517378,12910594,13107202,13500418,13697026,14024705,14483458,14745601,14811138,15138818,15335426,15990786,16056322,16121858,17825794,18546690,19333121,19791874,19857410,20905986,20971522,21168129,22216706,22347778,22478850,23527426,23658498,23855106,24051714,24838146,25690113,25755650,25952258,26935298,27262978,27787266,27983874,28114951,28508162,29360130,29491202,29687810,29753346,30539778,31653890,32505858,33030146,33947650,34013186,34603010,35192834,35258370,35323906,35520514,35651586,36438017,37027843,37617666,38141954,38338562,38535170,39518210,39911426,40042498,41091074],"mpz_kronecker":[1179649,2031617,13697031,19333121,21168129,27459585,33095681],"maps":[25231361],"mpz_export":[19333121,21168129,26607617,33161223],"mpz_add":[3276801,8126465,13107201,13500417,14614529,15138817,15990785,16056321,18022401,19333121,21168129,22347777,27983873,29360129,29687809,30539783,38338561,38535169],"mpn_xor_n":[2818055,4390913,5963777,15532033,18808833,19333121,21168129,27852801,30932993,33882113,39387137],"mpz_cmp":[327681,1114113,8323073,9961475,19333121,21168129,26476545,30408705,34603015,37552129],"mpn_divexact_1":[5505031,18677761,19005441,19333121,20054017,20250625,21168129,25100289,25296897,25362433,25493505,26345473,29163521,32440321,32899073,36044801,37879809,39780353,41025537,41156609],"mp_uint_per_limb":[12189697,21168129,26804225,34209799,40828929],"mpq_add":[5439489,11010049,15466497,19333121,21168129,21364737,22806529,31129601,34471941,37814273,39714817],"mpf_cmp_z":[12582919,13369345,15597569,19333121,21168129,31260673,34406401,34537473,39059457],"mpz_tdiv_q_ui":[11665409,11730945,17825799,18546689,19333121,21168129,28508161,31653889,32505857,35192833,41418753],"mpz_fib2_ui":[2490369,17104898,19333121,21168129,26738689,38141961],"mpf_cmp_d":[12582913,13369352,15597569,19333121,21168129,31260673,34406401,34537473,39059457],"mpz_cdiv_q":[1507329,6946817,19333121,19791873,20905985,21168129,23527425,24838151,27787265,33947649,40042497],"mpq_set_si":[589826,2555906,3735557,3801089,7077890,9633796,10878978,12845058,14221314,18743298,18874372,19333121,21168129,21757953,24248321,24641541,26148867,27066370,29425671,30343169,30736385,31981570,33423362,35913729,38731778,39845890,40304641,40697858],"mpq_set_ui":[3735553,3801089,19333121,21168129,21757959,24248321,24641537,26148865,27656196,29425665,30343169,30736385,32309250,34996226,35913729,40304641],"menu":[25231363],"mpz_powm_sec":[16187393,19333121,21168129,23658497,23855111,24051713,25755649],"mpq_get_num":[7077889,12845057,14221319,18743297,19333121,21168129,27066369,33423361],"mpz_popcount":[2228225,5767169,8978433,10551297,12517377,12779521,13631489,16121857,19333121,21168129,21889025,25690119,35323905,37683201],"mpz":[7077889,9830401,14614529,22544385,23068673,27066369],"mpz_random2":[6160385,15073281,19333121,21168129,22478849,30277633,31588357],"mpf_init_set_d":[3145730,3604481,8847362,12124161,17235970,19333121,21168129,21233665,22937602,28246023,30015490,32636930,35586050,36241409,40370178],"mpf_init_set_ui":[2883586,3604481,5373954,12124161,15794178,18153474,19333121,21168129,21233671,28246017,30867458,31064066,36241409,36634625],"mpq_numref":[7077889,12845057,14221315,18743299,19333121,21168129,27066375,33423361,38731777],"mpf_set_str":[1310721,4587521,9371649,12124161,19333121,21168129,22544391,32047105,32309249,32768001,35979265],"multiplier":[15466502,19333121,21168129],"mpq_get_den":[7077889,12845057,14221313,18743297,19333121,21168129,27066369,33423368],"mpz_cmp_d":[327681,1114113,8323073,9961473,19333121,21168129,26476545,30408712,34603009,37552129],"miscellaneous":[1048577,2883585,3145729,5373953,8847361,9109505,15794177,16252929,17039361,18153473,18284545,19922945,19988481,22937601,26673153,28770305,28835841,30867457,30998529,31064065,32636929,33816577,34930689,39321601,40370177],"mpn_sec_tabselect":[1703937,2752513,3473409,7405569,9764871,15925249,19333121,19726337,21168129,26279937,26411009,33292289,37289985,37748737],"mpn_gcd_1":[6291457,16908295,18939905,19333121,21168129],"math":[131073,196613,262145,327685,393220,458756,524295,589829,655361,720902,786437,851969,917508,983044,1048581,1114117,1179653,1245188,1310725,1376260,1441799,1507334,1572865,1638405,1703945,1769477,1835014,1900545,1966084,2031621,2097157,2162692,2228231,2293761,2359297,2424836,2490374,2555909,2621441,2686977,2752522,2818056,2883589,2949124,3014662,3080197,3145733,3211270,3276807,3342340,3407876,3473417,3538950,3604486,3670017,3735558,3801093,3866628,3932165,3997702,4063233,4128773,4194311,4259846,4325380,4390920,4456452,4521988,4587525,4653060,4718593,4784133,4849669,4915201,4980742,5046277,5111812,5177351,5242884,5308422,5373957,5439494,5505032,5570561,5636103,5701636,5767174,5832708,5898246,5963784,6029316,6094855,6160390,6225924,6291465,6356997,6422533,6488068,6553601,6619141,6684678,6750212,6815745,6881285,6946821,7012358,7077893,7143428,7208964,7274501,7340039,7405577,7471111,7536644,7602182,7667713,7733254,7798789,7864326,7929863,7995398,8060936,8126471,8192006,8257540,8323077,8388613,8454150,8519686,8585221,8650753,8716294,8781830,8847366,8912901,8978439,9043974,9109509,9175045,9240583,9306118,9371654,9437188,9502726,9568262,9633798,9699332,9764873,9830406,9895940,9961478,10027013,10092548,10158087,10223621,10289158,10354693,10420228,10485765,10551302,10616836,10682374,10747905,10813444,10878981,10944522,11010055,11075589,11141127,11206660,11272198,11337734,11403270,11468804,11534341,11599873,11665416,11730951,11796485,11862017,11927558,11993089,12058628,12124166,12189700,12255236,12320773,12386309,12451841,12517382,12582918,12648449,12713991,12779526,12845062,12910599,12976134,13041669,13107206,13172741,13238278,13303812,13369349,13434884,13500423,13565956,13631494,13697030,13762564,13828102,13893638,13959173,14024709,14090245,14155780,14221318,14286856,14352392,14417927,14483463,14548996,14614535,14680065,14745606,14811142,14876677,14942212,15007749,15073287,15138823,15204356,15269894,15335431,15400964,15466503,15532040,15597573,15663109,15728641,15794181,15859713,15925258,15990790,16056326,16121862,16187397,16252935,16318468,16384006,16449542,16515079,16580612,16646149,16711685,16777220,16842756,16908295,16973828,17039365,17104901,17170436,17235973,17301509,17367044,17432580,17498116,17563655,17629190,17694725,17760261,17825798,17891329,17956868,18022406,18087940,18153477,18219009,18284549,18350084,18415617,18481158,18546695,18612229,18677768,18743302,18808839,18874374,18939915,19005449,19070983,19136517,19202053,19267588,19333121,19398660,19464197,19529733,19595268,19660806,19726346,19791879,19857414,19922949,19988485,20054023,20119556,20185093,20250633,20316164,20381700,20447238,20512769,20578309,20643844,20709381,20774913,20840453,20905992,20971526,21037062,21102593,21168134,21233669,21299205,21364742,21430276,21495812,21561348,21626886,21692421,21757957,21823494,21889030,21954564,22020097,22085633,22151169,22216710,22282245,22347782,22413316,22478855,22544390,22609924,22675461,22740998,22806534,22872068,22937606,23003141,23068676,23134213,23199750,23265281,23330817,23396356,23461893,23527431,23592965,23658502,23724037,23789572,23855112,23920644,23986181,24051720,24117255,24182785,24248325,24313860,24379398,24444932,24510469,24576005,24641542,24707078,24772615,24838151,24903686,24969220,25034756,25100295,25165830,25231362,25296903,25362440,25427969,25493512,25559046,25624580,25690117,25755655,25821193,25886725,25952262,26017799,26083329,26148870,26214405,26279945,26345483,26411020,26476549,26542086,26607625,26673157,26738693,26804225,26869765,26935303,27000837,27066373,27131910,27197446,27262983,27328516,27394052,27459589,27525126,27590661,27656198,27721733,27787271,27852808,27918337,27983878,28049414,28114949,28180485,28246021,28311557,28377097,28442629,28508166,28573701,28639238,28704774,28770309,28835845,28901383,28966918,29032452,29097988,29163528,29229063,29294599,29360135,29425669,29491206,29556740,29622273,29687814,29753350,29818885,29884420,29949957,30015496,30081029,30146564,30212100,30277639,30343173,30408709,30474241,30539783,30605313,30670849,30736389,30801925,30867461,30933000,30998535,31064069,31129606,31195140,31260677,31326212,31391748,31457285,31522823,31588358,31653895,31719429,31784964,31850501,31916036,31981574,32047110,32112645,32178182,32243718,32309254,32374788,32440328,32505863,32571398,32636933,32702469,32768006,32833542,32899080,32964614,33030151,33095685,33161225,33226756,33292297,33357829,33423366,33488900,33554436,33619972,33685508,33751046,33816581,33882120,33947654,34013192,34078725,34144262,34209796,34275330,34340865,34406406,34471943,34537477,34603014,34668548,34734086,34799621,34865156,34930693,34996230,35061765,35127300,35192839,35258375,35323911,35389445,35454982,35520519,35586054,35651591,35717125,35782657,35848197,35913733,35979269,36044808,36110340,36175877,36241413,36306949,36372486,36438021,36503553,36569094,36634631,36700161,36765697,36831239,36896769,36962305,37027845,37093381,37158916,37224453,37289992,37355525,37421060,37486597,37552133,37617671,37683206,37748744,37814278,37879815,37945350,38010885,38076420,38141958,38207493,38273030,38338566,38404097,38469633,38535174,38600711,38666244,38731782,38797317,38862849,38928388,38993925,39059463,39124996,39190533,39256069,39321605,39387144,39452676,39518215,39583748,39649285,39714823,39780361,39845894,39911431,39976966,40042503,40108036,40173572,40239110,40304646,40370182,40435716,40501253,40566789,40632325,40697861,40763396,40828932,40894468,40960004,41025544,41091081,41156616,41222149,41287686,41353220,41418757],"mpf_div_2exp":[8454145,8716295,8781825,12713985,19333121,21168129],"mpz_remove":[19333121,21168129,33030151],"mpz_setbit":[2228225,5767169,8978433,10551297,12517377,12779521,13631489,16121857,19333121,21168129,21889025,25690113,35323905,37683207],"mpq_set_str":[3735553,3801089,19333121,21168129,21757953,24248321,24641537,26148865,29425665,30343169,30736385,35913729,40304646],"mpz_fdiv_q":[11141121,15335425,19333121,20971521,21168129,24576001,34013185,35258375,35520513,39518209],"manipulation":[19922945],"mp_exp_t":[196617,655380,1769481,2883585,2949122,3145729,5373953,6881289,7208969,8847361,10944514,13238286,15728644,15794177,16252929,16711689,16777225,17235969,17432585,18153473,19267593,22282249,22741006,22872073,22937601,23330822,23920649,24444937,25231361,27394051,28573705,28835841,30015496,30605347,30670864,30801929,30867457,30998533,31064065,31195140,31784967,32636929,34275329,35586049,38993930,39452716,39649289,40370177,40960009],"mpf_init_set":[3604487,12124161,19333121,21168129,21233665,28246017,36241409],"mpf_get_d":[720898,786435,1310722,2097154,3211266,3604482,4587522,5636098,7929858,8454146,8716290,8781825,8847362,9371650,9502722,10027010,10682370,11337730,11796482,12713986,17235975,17563650,19333121,21168129,21233666,22937602,23199746,26869762,27525122,28246018,28639234,28835841,30015489,32047108,32636929,34144258,35454978,35586049,35979266,36241410,37355526,38600706,39059458,40370178],"msb":[26607618,33161218],"mpz_set_str":[5046273,5898242,10289153,13959170,16449543,19333122,20840449,21168130,21692417,24707073,25952257,32178178,32571394,40239105,40304641],"msys32":[25231361],"members":[131073,1245185,1572865,2293761,2359297,2621441,4063233,4194305,4325377,4718593,5570561,7667713,10747905,10944513,11534337,11599873,11862017,11993089,12451841,13172737,14286849,14680065,15859713,16515073,18219009,18415617,19333121,20512769,20774913,21102593,21168129,22085633,22151169,23330817,24117249,24182785,25427969,25821185,26804225,30474241,30605313,33685505,34340865,35782657,36110337,36700161,36765697,36831233,36896769,36962305,38404097,38862849,39452673,40566785],"mpq_init":[589826,2555906,3735557,3801089,4128770,7077890,8192002,9633796,10878978,12845058,14221314,18743298,18874372,19333121,21168129,21757955,24248321,24641541,26148867,27066370,27656194,29425667,30343169,30736387,31981570,32309250,33423362,34996226,35913735,38731778,39845890,40304642,40697858],"mpz_tdiv_r_ui":[11665409,11730945,17825793,18546689,19333121,21168129,28508167,31653889,32505857,35192833,41418753],"mpz_gcd_ui":[12910593,19333121,21168129,21626887,41091073],"men":[9830401,22544385],"mp_bits_per_limb":[12189697,15925250,19333121,20054018,21168130,26411009,26804225,28901377,29163522,31522817,34209793,40828935],"mpf_pow_ui":[720897,3211265,5636097,7929857,8454145,8716289,8781825,9502721,11337729,11796481,12713985,17563649,19333121,21168129,23199745,27525127,34144257,35454977,38600705],"multi":[524290,1703938,1835010,2752514,2818050,3473410,4194305,4390914,5177346,5505026,5963778,6291458,7405570,7602178,8060930,9764866,14286849,14352386,14417922,15532034,15925249,16384002,16908290,18481154,18677762,18808834,18939906,19005442,19070978,19333121,19726338,20054018,20250626,21168129,21823490,24772610,24903682,25100290,25231361,25296898,25362434,25493506,25559042,26279938,26345474,26411010,26542082,27852802,28180481,28377090,28901378,29163522,29294594,30932994,31522818,32440322,32833538,32899074,33292290,33882114,36044802,36831233,37289986,37748738,37879810,39387138,39780354,41025538,41156610,41287682],"mpq_set_num":[7077889,12845057,14221313,18743303,19333121,21168129,27066369,33423361],"mpq_cmp_si":[589825,2555905,3735556,7077890,9633793,10878983,12845058,14221314,18743298,18874369,19333121,21168129,24641538,26148866,27066370,29425666,31981569,33423362,39845890],"mpq_cmp_ui":[589831,2555905,8192002,9633793,10878977,18874369,19333121,21168129,21757954,31981569],"mpz_divisible_p":[1507329,3014657,6946817,7340033,7471105,9175041,9568257,11141121,11665409,11730945,13828097,14483457,14811143,15335425,17760257,17825793,18546689,19333121,19791873,19857409,20905985,20971521,21168129,23527425,24576001,24838145,27262977,27787265,28508161,31653889,32505857,33947649,34013185,35192833,35258369,35520513,39518209,40042497,41418753],"mpn_sec_powm_itch":[9764865,19333121,21168129,26017797,26411012],"mpz_get_d":[8585217,13893633,19333121,19529729,21168129,23592967,34799617],"mimics":[13172737],"mpz_cdiv_q_2exp":[1507329,6946817,19333121,19791873,20905985,21168129,23527425,24838145,27787271,33947649,40042497],"mpn_sec_div_r":[1703943,2752513,3473409,4259845,7405569,9764865,15925249,19333122,19726337,21168130,26279937,26411009,33292289,37289985,37748737],"mpq_set_den":[7077889,12845063,14221313,18743297,19333121,21168129,27066369,33423361],"mpz_odd_p":[9109505,17039361,18284551,19333121,19922945,21168129,26673153,28770305,33816577,34930689,39321603],"maximum":[6160385,7733249,14745601,15269889,25231361,30015489,30998529,31588353,36634626],"mpz_millerrabin":[13041665,19333121,21168129,37486600],"malloc":[1441793,3538945,33161218],"mpz_bin_uiui":[10223623,19333121,21168129,29753345],"mpz_pow_ui":[16187393,19333121,21168129,23658503,23855105,24051713,25755649],"mpz_congruent_2exp_p":[7471105,9175041,14483463,19333121,21168129],"mpz_2fac_ui":[3080193,19333121,21168129,28180481,31719431],"mpn_sec_sqr":[1703937,2752514,3473409,4784132,7405569,9764865,15925249,19333122,19726337,21168130,26279937,26411009,33292289,37289985,37748743],"mpf_inp_str":[9830407,19333121,21168129,36634625],"mpz_cmpabs":[327681,1114113,8323073,9961477,19333121,21168129,26476545,30408705,34603009,37552129],"mpf_set_d":[1310721,4587527,9371649,19333121,21168129,22544385,32047105,32309249,32768001,35979265],"mpf_set_q":[1310721,4587521,9371649,19333121,21168129,22544385,27656196,32047105,32309255,32768001,35979265],"mpf_set_z":[1310721,4587521,9371649,19333121,21168129,22544385,32047105,32309249,32768007,35979265],"mpn_and_n":[2818049,4390913,5963777,15532039,18808833,19333121,21168129,27852803,30932993,33882113,39387137],"mpf_div":[720897,3211265,5636097,7929857,8454145,8716289,8781825,9502721,11337729,11796481,12713991,17563649,19333121,21168129,23199745,27525121,34144257,35454977,38600705],"mpf_init_set_str":[3604481,12124167,19333121,21168129,21233665,28246017,36241409],"mpz_urandomm":[6160386,15073281,19333121,21168129,22478855,30277633,31588353],"mpq_inp_str":[8192007,19333121,21168129,34996225],"max_size":[6160391,19333123,21168131,30998535,31588359],"mpn_scan1":[19333121,21168129,21823489,24903687,28901377,29294593,31522817,32833537],"mpn_scan0":[19333121,21168129,21823489,24903681,28901377,29294593,31522817,32833543],"mpz_tstbit":[2228225,5767175,8978433,10551297,12517377,12779521,13631489,16121857,19333121,21168129,21889025,25690113,35323905,37683201],"mpz_primorial_ui":[19333121,21168129,22675463],"mpz_powm_ui":[16187393,19333121,21168129,23658497,23855105,24051713,25755655],"mpz_tdiv_q":[11665409,11730951,17825793,18546689,19333121,21168129,28508161,31653889,32505857,35192833,41418753],"mpz_set_d":[5046273,10289153,16449537,19333121,20840449,21168129,21692424,24707073,25952257,40239105],"mpf_init":[720898,786433,2097159,3211266,5111810,5636098,7929858,8454146,8716290,8781825,8847362,9502722,9830402,10027011,10682371,11337730,11796482,12713986,16252930,17563650,19333121,21168129,22544386,22937602,23199746,24510466,26869761,27525122,27656195,28639233,30998530,32309250,32768002,34144258,35454978,37355521,38600706,39059458,39845890,40370178],"mpz_set_f":[5046273,10289153,16449537,19333121,20840449,21168129,21692417,24707080,25952257,40239105],"mpz_get_d_2exp":[8585217,13893633,19333121,19529735,21168129,23592961,34799617],"mpz_set_q":[5046273,10289153,16449537,19333121,20840449,21168129,21692417,24707073,25952257,40239112],"mpz_perfect_square_p":[5308417,6422535,7864321,19333121,21168129,26935297,31850497,39911425],"mpn_popcount":[19333121,21168129,21823495,24903681,28901377,29294593,31522817,32833537],"multiplicand":[15466502,19333121,21168129],"mpz_cdiv_ui":[1507329,6946823,19333121,19791873,20905985,21168129,23527425,24838145,27787265,33947649,40042497],"mpz_addmul":[3276801,8126465,13107201,13500417,15138823,15990785,16056321,18022401,19333121,21168129,22347777,27983873,29360129,29687809,30539777,38338561,38535169],"mpn_sec_powm":[1703937,2752513,3473409,7405569,9764865,15925249,19333122,19726337,21168130,26017798,26279937,26411015,33292289,37289985,37748737],"mpf_mul_2exp":[5636103,7929857,19333121,21168129,23199745],"mpz_init":[1507330,2228226,3014658,3080194,3276802,5046274,5308418,5898243,6160386,7012354,7340034,7864322,8126466,8978434,9568258,10223618,10289156,11730946,12910594,13500418,13959170,14024707,14221314,14614530,14745602,15073282,15335426,15990786,16056322,16121858,16187394,16449538,17104898,17825794,18022402,18546690,19333121,19660802,19857410,20840450,20971522,21168129,21692418,22216706,22347778,22478850,22675458,23527426,23658498,23855106,24051714,24707074,24838146,25165826,25755650,26148866,26607618,26738690,27262978,27787266,27983874,28114945,28180482,28508162,29753346,30277634,30539778,31588354,31653890,31719426,31981570,32571394,32768002,33030146,33423362,33947650,35192834,35258370,35323906,35520514,35651586,36438023,37027841,37617666,38338562,38535170,39518210,40042498,40239106],"mpn_zero":[524289,19070977,19333121,21168129,25559047],"magnitude":[2228225,5767169,8978433,10551297,10944513,11599873,12517377,12779521,13631489,15859713,16121857,21889025,24117249,25690113,25821185,30474241,35127298,35323905,37683201],"mpz_out_raw":[3997703,11403269,19333122,20447233,21168130,25165825],"mpn_tdiv_qr":[5505025,8060929,14352385,18677761,19005441,19333121,20054017,20250625,21168129,25100289,25296897,25362433,25493505,26345479,28377089,29163521,32440321,32899073,36044801,37879809,39780353,41025537,41156609],"mpf_get_prec":[786433,2097153,5111809,10027009,10682371,19333121,21168129,24510465,26869767,27656194,28639237,37355521],"mpf_size":[11272199,19333121,21168129],"mpn_neg":[5505025,8060929,14352385,18677761,19005441,19333121,20054017,20250625,21168129,25100295,25296897,25362433,25493505,26345473,28377089,29163521,32440321,32899073,36044801,37879809,39780353,41025537,41156609],"minuend":[19333121,21168129,25100289,39714822],"mpz_jacobi":[7995399,19333121,21168129,29491201],"mpn_cnd_add_n":[1703937,2752513,3473409,7405575,9764865,15925249,19333121,19726337,21168129,26279937,26411009,33292289,37289985,37748737],"mpn_nand_n":[2818049,4390913,5963777,15532033,18808833,19333121,21168129,27852805,30932993,33882113,39387137],"mpz_cdiv_qr":[1507329,3014657,6946817,7340033,7471105,9175041,9568257,11141121,11665409,11730945,13828097,14483457,14811137,15335425,17760257,17825793,18546689,19333121,19791873,19857409,20905991,20971521,21168129,23527425,24576001,24838145,27262977,27787265,28508161,31653889,32505857,33947649,34013185,35192833,35258369,35520513,39518209,40042497,41418753],"mpq_sgn":[589825,2555911,9633793,10878977,18874369,19333121,21168129,31981569],"mpz_realloc2":[5898249,14024705,14745601,19333121,21168129,28114945,32571395,36438017,37027841],"mpz_divexact_ui":[7340033,9568263,19333121,21168129],"mpz_fac_ui":[3080199,19333121,21168129,28180481,31719425],"mpq_abs":[5439493,11010049,15466497,19333121,21168129,21364737,22806529,31129601,34471937,37814273,39714817],"mpz_fib_ui":[17104903,19333121,21168129,38141953],"mpq_sub":[5439489,11010049,15466497,19333121,21168129,21364737,22806529,31129601,34471937,37814273,39714821],"mpz_fdiv_ui":[3014657,11141121,15335425,19333121,19857409,20971521,21168129,24576007,34013185,35258369,35520513,39518209],"mpz_size":[4980739,9043970,13959170,14614529,19333121,19660801,21037057,21168129,23724041,32571393],"mpz_cmpabs_d":[327688,1114113,8323073,9961473,19333121,21168129,26476545,30408705,34603009,37552129],"mpf_get_d_2exp":[17235969,19333121,21168129,28835841,30015489,32636929,35586055],"multiple":[393218,2162689,2424833,6094849,6488065,7667713,10747905,10944515,16515075,18415617,19333122,21168130,25821187,29097986,31326210,34275332,35651587,36831233,39976961],"mpz_gcdext":[12910593,19333121,21168129,21626881,41091079],"mpz_mod":[1507329,3014657,6946817,7340033,7471105,9175041,9568257,11141121,11665409,11730945,13828097,14483457,14811137,15335425,17760257,17825793,18546689,19333121,19791873,19857409,20905985,20971521,21168129,23527425,24576001,24838145,27262983,27787265,28508161,31653889,32505857,33947649,34013185,35192833,35258369,35520513,39518209,40042497,41418753],"mpf_add_ui":[11337735,19333121,21168129,38600705],"mpn_sub":[5505025,8060929,14352385,18677761,19005441,19333121,20054017,20250631,21168129,25100289,25296897,25362433,25493505,26345473,28377089,29163521,32440321,32899073,36044801,37879809,39780353,41025537,41156609],"mpn_sec_add_1_itch":[3473412,19333121,20578309,21168129],"mp_bytes_per_limb":[1835010,4980740,12189703,13959172,14614532,18481154,19660804,19726340,21037058,21168129,23724036,26804225,31522818,34209793,40828929,41025540],"mpf_floor":[2883585,3145729,5373953,8847361,15794177,16252929,18153473,19333121,21168129,22937601,30867457,30998529,31064065,40370183],"modulo":[1703937,7471106,9175042,14483458,15925249,19333131,19726337,21168139,23855106,24051715,25755651,26411009,37617665],"mutable":[11468801,41353217],"mpz_fdiv_qr":[1507329,3014657,6946817,7340033,7471105,9175041,9568257,11141121,11665409,11730945,13828097,14483457,14811137,15335425,17760257,17825793,18546689,19333121,19791873,19857409,20905985,20971521,21168129,23527425,24576001,24838145,27262977,27787265,28508161,31653889,32505857,33947649,34013191,35192833,35258369,35520513,39518209,40042497,41418753],"mpq_denref":[7077895,12845059,14221313,18743297,19333121,21168129,27066369,33423363,38731777],"mpz_addmul_ui":[13107207,15138817,19333121,21168129],"mpn_mod_1":[5505025,8060929,14352385,18677761,19005441,19333121,20054017,20250625,21168129,25100289,25296903,25362433,25493505,26345473,28377089,29163521,32440321,32899073,36044801,37879809,39780353,41025537,41156609],"modified":[6160385,15073281,22478849,30277633,31588353],"mpz_add_ui":[7077890,14221314,18022409,19333121,21168129,27066370,30539777,33423362],"mpz_init_set":[7012359,19333121,20709377,21168129,23461889,32178177,37224449],"making":[22544385],"mpf_set_prec":[786433,2097153,5111809,10027009,10682375,19333121,21168129,24510465,26869761,27656195,28639233,35127297,37355521],"mpz_cdiv_qr_ui":[1507329,6946817,19333121,19791879,20905985,21168129,23527425,24838145,27787265,33947649,40042497],"mpz_tdiv_qr_ui":[11665409,11730945,17825793,18546689,19333121,21168129,28508161,31653889,32505863,35192833,41418753],"mpq_cmp":[589825,2555905,9633800,10878977,18874370,19333121,21168129,31981570],"mpz_even_p":[9109505,17039361,18284547,19333121,19922945,21168129,26673153,28770305,33816577,34930689,39321607],"mpz_cdiv_r_2exp":[1507329,6946817,19333121,19791873,20905985,21168129,23527431,24838145,27787265,33947649,40042497],"mpn_sec_sqr_itch":[4784133,19333121,21168129,37748740],"mpf_ui_sub":[17563649,19333121,21168129,34144257,35454983],"marshal":[5177346,24772610,26607618,33161218],"mpz_ui_kronecker":[1179649,2031617,13697025,19333121,21168129,27459585,33095687],"mpn_random":[1835010,18481160,19333121,21168129],"method":[327681,393217,458753,524289,589825,720897,786433,851969,983041,1048577,1114113,1179649,1310721,1441793,1507329,1638401,1703937,1835009,1900545,1966081,2031617,2097153,2228225,2490369,2555905,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3473409,3538945,3604481,3735553,3801089,3997697,4128769,4259841,4390913,4456449,4587521,4653057,4784129,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5636097,5767169,5898241,5963777,6029313,6094849,6160385,6291457,6356993,6422529,6553601,6815745,6946817,7012353,7077889,7274497,7340033,7405569,7471105,7602177,7733249,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8716289,8781825,8847361,8978433,9043969,9109505,9175041,9240577,9371649,9502721,9568257,9633793,9764865,9830401,9961473,10027009,10092545,10158081,10223617,10289153,10551297,10616833,10682369,10878977,11010049,11141121,11272193,11337729,11403265,11665409,11730945,11796481,12124161,12320769,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13369345,13500417,13565953,13631489,13697025,13828097,13893633,13959169,14024705,14090241,14221313,14352385,14417921,14483457,14614529,14745601,14811137,15073281,15138817,15269889,15335425,15466497,15532033,15597569,15663105,15728641,15794177,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16580609,16908289,16973825,17039361,17104897,17235969,17367041,17563649,17760257,17825793,17956865,18022401,18087937,18153473,18284545,18481153,18546689,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20185089,20250625,20381697,20447233,20578305,20643841,20709377,20840449,20905985,20971521,21037057,21233665,21364737,21430273,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22216705,22347777,22478849,22544385,22675457,22806529,22937601,23134209,23199745,23461889,23527425,23592961,23658497,23724033,23855105,23986177,24051713,24248321,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25100289,25165825,25231361,25296897,25362433,25493505,25559041,25690113,25755649,25952257,26017793,26148865,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26869761,26935297,27000833,27066369,27262977,27394049,27459585,27525121,27590657,27656193,27787265,27852801,27983873,28114945,28180481,28246017,28311553,28377089,28508161,28639233,28704769,28770305,28835841,28901377,29097985,29163521,29294593,29360129,29425665,29491201,29622273,29687809,29753345,29884417,30015489,30081026,30146561,30277633,30343169,30408705,30539777,30736385,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31457281,31522817,31588353,31653889,31719425,31850497,31916033,31981569,32047105,32178177,32309249,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,33030145,33095681,33161217,33292289,33423361,33816577,33882113,33947649,34013185,34144257,34406401,34471937,34537473,34603009,34734081,34799617,34930689,34996225,35061761,35192833,35258369,35323905,35454977,35520513,35586049,35651585,35717121,35913729,35979265,36044801,36241409,36306945,36438017,36569090,36634625,37027841,37093377,37224449,37289985,37355521,37486593,37552129,37617665,37683201,37748737,37814273,37879809,38010881,38076417,38141953,38207489,38273025,38338561,38469633,38535169,38600705,38666241,38731777,38797313,38928385,38993921,39059457,39124993,39256065,39321601,39387137,39518209,39714817,39780353,39845889,39911425,39976961,40042497,40239105,40304641,40370177,40435713,40501249,40697857,40894465,41025537,41091073,41156609,41287681,41418753],"mpq_cmp_z":[589825,2555905,9633793,10878977,18874369,19333121,21168129,31981575],"mpz_tdiv_ui":[11665409,11730945,17825793,18546689,19333121,21168129,28508161,31653889,32505857,35192833,41418759],"mpz_inp_str":[3997697,11403265,19333121,20447233,21168129,25165831],"mpz_mod_ui":[19333121,19857416,21168129,27262977],"mpn_sec_div_qr_itch":[19333121,19726340,21168129,28704773],"mpn_iorn_n":[2818049,4390919,5963777,15532033,18808833,19333121,21168129,27852801,30932993,33882113,39387137],"mpf_fits_sshort_p":[2883591,3145729,5373953,8847361,15794177,16252929,18153473,19333121,21168129,22937601,30867457,30998529,31064065,40370177],"mpz_fdiv_q_ui":[3014663,11141121,15335425,19333121,20971521,21168129,24576001,34013185,35258369,35520513,39518209],"mpz_init_set_si":[327682,1114113,1507330,3014658,3276802,5308418,5767170,6422530,6946818,7012353,7864322,9961474,11141122,11665412,11730948,12582914,13107204,13631490,13893634,15335428,15990786,16056322,17825794,18546690,19333121,19791874,19922946,20709377,20905988,20971522,21168129,21889026,23461895,23527426,24576002,24838148,25952260,26476546,26935298,27787266,27983874,28508162,29360130,29687812,29753346,31653890,31850498,32178177,32505858,33947650,34013188,34799618,35192836,35258372,35520514,37224449,37683202,38338562,39518210,39911426,40042500,41418754],"mpz_tdiv_q_2exp":[11665409,11730945,17825793,18546695,19333121,21168129,28508161,31653889,32505857,35192833,41418753],"mpn_mul":[5505025,8060929,14352385,18677761,19005447,19333121,20054017,20250625,21168129,25100289,25296897,25362433,25493505,26345473,28377089,29163521,32440321,32899073,36044801,37879809,39780353,41025537,41156609],"mpz_fits_uint_p":[9109511,17039361,18284545,19333121,19922945,21168129,26673153,28770305,33816577,34930689,39321601],"mpz_scan1":[2228225,5767169,8978433,10551298,12517377,12779528,13631489,16121857,19333121,21168129,21889025,25690113,35323905,37683201],"member":[327681,393217,524289,589825,720897,786433,1048577,1114113,1179649,1310721,1441793,1507329,1638401,1703937,1835009,2031617,2097153,2228225,2490369,2555905,2752513,2818049,2883585,3014657,3080193,3145729,3211265,3276801,3473409,3538945,3604481,3735553,3801089,3997697,4128769,4259841,4390913,4587521,4653057,4784129,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5505025,5636097,5767169,5898241,5963777,6029313,6094849,6160385,6291457,6356993,6422529,6946817,7012353,7077889,7274497,7340033,7405569,7471105,7602177,7733249,7864321,7929857,7995393,8060929,8126465,8192001,8323073,8388609,8454145,8585217,8716289,8781825,8847361,8978433,9043969,9109505,9175041,9240577,9371649,9502721,9568257,9633793,9699329,9764865,9830401,9961473,10027009,10092545,10158081,10223617,10289153,10551297,10616833,10682369,10878977,11010049,11141121,11206657,11272193,11337729,11403265,11665409,11730945,11796481,12124161,12320769,12517377,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13369345,13500417,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14221313,14352385,14417921,14483457,14614529,14745601,14811137,15073281,15138817,15269889,15335425,15466497,15532033,15597569,15663105,15794177,15925249,15990785,16056321,16121857,16187393,16252929,16384001,16449537,16908289,16973825,17039361,17104897,17170433,17235969,17367041,17563649,17760257,17825793,18022401,18153473,18284545,18481153,18546689,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19464193,19529729,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20185089,20250625,20447233,20578305,20709377,20840449,20905985,20971521,21037057,21233665,21364737,21430273,21561345,21626881,21692417,21757953,21823489,21889025,22216705,22347777,22478849,22544385,22675457,22806529,22937601,23068673,23134209,23199745,23461889,23527425,23592961,23658497,23724033,23855105,23986177,24051713,24248321,24510465,24576001,24641537,24707073,24772609,24838145,24903681,25100289,25165825,25296897,25362433,25493505,25559041,25690113,25755649,25952257,26017793,26148865,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26869761,26935297,27000833,27066369,27262977,27328513,27459585,27525121,27590657,27656193,27787265,27852801,27983873,28114945,28180481,28246017,28311553,28377089,28508161,28639233,28704769,28770305,28835841,28901377,29097985,29163521,29294593,29360129,29425665,29491201,29687809,29753345,30015489,30081025,30277633,30343169,30408705,30539777,30736385,30867457,30932993,30998529,31064065,31129601,31260673,31326209,31457281,31522817,31588353,31653889,31719425,31850497,31981569,32047105,32178177,32309249,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,33030145,33095681,33161217,33292289,33423361,33816577,33882113,33947649,34013185,34144257,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34930689,34996225,35061761,35192833,35258369,35323905,35454977,35520513,35586049,35651585,35717121,35913729,35979265,36044801,36241409,36306945,36438017,36569089,36634625,37027841,37093377,37224449,37289985,37355521,37486593,37552129,37617665,37683201,37748737,37814273,37879809,38010881,38076417,38141953,38207489,38273025,38338561,38535169,38600705,38731777,38797313,38928385,38993921,39059457,39256065,39321601,39387137,39518209,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40239105,40304641,40370177,40501249,40697857,41025537,41091073,41156609,41287681,41418753],"mpz_scan0":[2228225,5767169,8978433,10551304,12517377,12779522,13631489,16121857,19333121,21168129,21889025,25690113,35323905,37683201]} \ No newline at end of file diff --git a/docs/fti/FTI_110.json b/docs/fti/FTI_110.json index cf9aba0..522486a 100644 --- a/docs/fti/FTI_110.json +++ b/docs/fti/FTI_110.json @@ -1 +1 @@ -{"num2":[983050,4915202,11599882,17170434],"necessary":[1376257,1769473,2293761,4915205,8847361,10878977,16252930,17170437,17235969,18546689,20316162,21102594,25165825,32505857,34930689,38207489,39911425],"new_free":[8126468],"need":[16252929,20185089],"new":[262145,327692,458754,589828,720900,786433,851970,983042,1114128,1179649,1245185,1310721,1376260,1441796,1507329,1638402,1769475,1900548,1966090,2031617,2228227,2293764,2424838,2490372,2555908,2621456,2686980,2818051,2883588,3014660,3080204,3211272,3276802,3342344,3473410,3670024,3735556,3866628,3932161,3997697,4063238,4194306,4259841,4325392,4456449,4521988,4718604,4784134,5177354,5242884,5373954,5439492,5505028,5636102,5767176,5832705,5898241,5963790,6029314,6094864,6160387,6225926,6422529,6488066,6553602,6750210,6815745,6881282,6946822,7012368,7077893,7208961,7274498,7340033,7405572,7471108,7602182,7667720,7733254,7798785,7864323,7929872,8060929,8126469,8192008,8257544,8323080,8388610,8454154,8650753,8716300,8781825,8847366,8912904,8978436,9043972,9109512,9175048,9240580,9306116,9371652,9437188,9633794,9699329,9764872,9830408,9961474,10027010,10092548,10420225,10485762,10616834,10682371,10747908,10813441,10878980,10944517,11010049,11272198,11403268,11468804,11599874,11665409,11730950,11862017,11927560,11993096,12058626,12124165,12189700,12255240,12386306,12451842,12517380,12582918,12713990,12845062,12976129,13041666,13107206,13238273,13303812,13369350,13434888,13500424,13631490,13762568,13828102,13893638,13959171,14024705,14090245,14155777,14221314,14286866,14352388,14483457,14548998,14614530,14680076,14745604,14876676,14942212,15073286,15138828,15204353,15269892,15335428,15400964,15466497,15597569,15728644,15859714,15925249,15990786,16121858,16187396,16252932,16318472,16449542,16515076,16580612,16646145,16711684,16777217,16842754,16908294,16973826,17039364,17235972,17301505,17367041,17432577,17498113,17563654,17629186,17694722,17760257,17825793,17891334,18022401,18087940,18153473,18219020,18284545,18350096,18415617,18481153,18546690,18677776,18743298,18808844,18939906,19005441,19070980,19136530,19202049,19267588,19398660,19529732,19595266,19660801,19791880,20250630,20316162,20381698,20512774,20578330,20643852,20709380,20774916,20840452,20905986,21037060,21102596,21168131,21233665,21299208,21364748,21430280,21495809,21561348,21626881,21757956,21823492,21889036,21954562,22020104,22085640,22151174,22216705,22282256,22347782,22413316,22478852,22544386,22740996,22872065,22937612,23003140,23068674,23134209,23199745,23265284,23330817,23461889,23658506,23724044,23855105,23920646,23986180,24051720,24182785,24248328,24313862,24444934,24576002,24641556,24772612,24838148,24969232,25034753,25100290,25165826,25231368,25296900,25362440,25427970,25493506,25559048,25690116,25821185,25886721,25952268,26017794,26083329,26279940,26345484,26411009,26673156,26804232,26869762,27000838,27066369,27131905,27197452,27394060,27525124,27656198,27721730,27787268,27983880,28049414,28114948,28180492,28442630,28508161,28704792,28770308,28835844,29032452,29097994,29163521,29229058,29294596,29491204,29556742,29622273,29687810,29818884,29949956,30015492,30081032,30146563,30212098,30277648,30408705,30474241,30539792,30605314,30670864,30932996,30998540,31064076,31129604,31195137,31326209,31391752,31457284,31522818,31588356,31653904,31719430,31916033,32047110,32112644,32178177,32309250,32374788,32505860,32636930,32702470,32768001,32899074,32964616,33226753,33357836,33488898,33554434,33619972,33685508,33816582,33882118,34013191,34144268,34209796,34275336,34340868,34406406,34603014,34668548,34734082,34799618,34865154,34930694,35061768,35127297,35192836,35258370,35323907,35454980,35520515,35586049,35651590,35717121,35913736,35979265,36044816,36110338,36241416,36306946,36372481,36438017,36569089,36700164,36765716,36831234,36896774,36962308,37027843,37093379,37224464,37289986,37421059,37486608,37552136,37617665,37683204,37748737,37814274,37879816,37945356,38010884,38141953,38273026,38207494,38338570,38404100,38535172,38469640,38731780,38797320,39124996,39256066,39321608,39452676,39583750,39649281,39780354,39911426,39976966,40042502,40108034,40173569,40370177,40501249,40566786,40632332,40697857,40763393,40828930,40894480,40960002,41025540,41091073,41156620,41222156,41287684,41353224],"needed":[1769473,4128769,8847361,16252930,21037057,23068673,34930689],"new_allocate":[8126468],"numerator":[983041,2359297,2555905,2686977,3604481,4915206,6750209,6946817,8912897,9240577,10158082,10747905,11599873,11730945,12845057,13041665,13107209,15335425,16646145,16711681,17170438,17498113,17563657,17694721,17891329,19070977,19267585,19791873,20512769,21561345,22151169,24313857,24772609,25427969,25493508,26279937,28049410,28704769,28835841,29294593,29556737,29949953,32112641,34603009,35520514,36110337,36896769,38797313,40042497,41025537],"num":[6881286,13107218,14548994,17563658,25493510,28049412,37683202,40108034],"negative":[458753,983041,1179649,1245185,2883586,3145732,6553602,7274497,8650754,9306114,10092545,10485761,11141122,11468801,11599873,12058625,13303809,13434881,13500417,13828097,14286850,14942209,16056322,20250626,20578306,21561345,22675458,23134210,24313857,25559041,27656193,30212097,31457281,31522818,32374785,33554433,36241409,36306945,36700161,38010881,38076417,38338561,39256066],"nan":[458753,13303809,30212097],"numbers":[589827,2293764,4915202,6553602,9306113,12713986,16252929,17170434,18546691,20185089,20250625,21954561,23658497,25165827,28442627,31522819,31588355,32047105,32505862,32964614,39256066],"nail":[34930689],"native":[65537,131074,196610,262150,327688,393221,458758,524293,589830,655362,720902,786437,851974,917506,983046,1048581,1114123,1179653,1245190,1310725,1376263,1441798,1507333,1572866,1638406,1703942,1769480,1835010,1900551,1966090,2031622,2097154,2162693,2228229,2293767,2359298,2424840,2490374,2555911,2621449,2686983,2752517,2818053,2883590,2949122,3014662,3080202,3145733,3211271,3276806,3342343,3407874,3473414,3538949,3604486,3670023,3735558,3801094,3866632,3932166,3997701,4063237,4128775,4194306,4259848,4325385,4390917,4456454,4521990,4587525,4653058,4718601,4784135,4849669,4915202,4980738,5046279,5111813,5177352,5242886,5308418,5373958,5439495,5505029,5570562,5636104,5701634,5767176,5832709,5898245,5963786,6029319,6094857,6160389,6225925,6291458,6356998,6422534,6488070,6553607,6619143,6684674,6750214,6815749,6881286,6946824,7012362,7077890,7143431,7208966,7274502,7340037,7405575,7471111,7536647,7602184,7667719,7733256,7798789,7864325,7929865,7995397,8060934,8126472,8192007,8257543,8323079,8388615,8454154,8519686,8585224,8650763,8716296,8781831,8847367,8912905,8978438,9043975,9109510,9175047,9240583,9306119,9371655,9437191,9502725,9568258,9633798,9699334,9764871,9830407,9895941,9961478,10027014,10092551,10158085,10223623,10289157,10354693,10420230,10485767,10551303,10616838,10682373,10747911,10813446,10878983,10944519,11010054,11075589,11141122,11206661,11272200,11337730,11403270,11468807,11534344,11599878,11665413,11730952,11796485,11862022,11927559,11993095,12058631,12124166,12189701,12255239,12320775,12386311,12451847,12517383,12582918,12648450,12713992,12779525,12845064,12910594,12976133,13041671,13107207,13172738,13238281,13303814,13369351,13434888,13500423,13565954,13631494,13697029,13762566,13828104,13893640,13959173,14024709,14090246,14155781,14221318,14286856,14352391,14417922,14483462,14548999,14614535,14680072,14745606,14811144,14876680,14942214,15007746,15073288,15138825,15204357,15269895,15335431,15400967,15466502,15532037,15597573,15663109,15728647,15794181,15859718,15925253,15990790,16056322,16121862,16187399,16252935,16318475,16384005,16449544,16515079,16580613,16646152,16711687,16777222,16842759,16908295,16973830,17039368,17104898,17170439,17235974,17301509,17367046,17432583,17498117,17563655,17629190,17694726,17760261,17825798,17891336,17956869,18022405,18087943,18153477,18219016,18284550,18350090,18415622,18481158,18546694,18612226,18677769,18743303,18808840,18874370,18939910,19005445,19070984,19136523,19202053,19267591,19333125,19398662,19464199,19529735,19595270,19660805,19726341,19791881,19857410,19922949,19988485,20054021,20119557,20185093,20250631,20316166,20381702,20447234,20512776,20578316,20643849,20709382,20774919,20840454,20905990,20971525,21037063,21102598,21168133,21233670,21299206,21364744,21430279,21495813,21561351,21626888,21692423,21757959,21823495,21889032,21954566,22020103,22085639,22151176,22216709,22282250,22347782,22413320,22478855,22544390,22609926,22675461,22740999,22806530,22872070,22937608,23003143,23068679,23134218,23199750,23265286,23330822,23396354,23461893,23527430,23592962,23658504,23724041,23789573,23855109,23920645,23986188,24051719,24117255,24182789,24248327,24313864,24379397,24444936,24510466,24576006,24641549,24707079,24772616,24838150,24903686,24969225,25034757,25100294,25165830,25231367,25296902,25362438,25427974,25493510,25559049,25624581,25690119,25755654,25821192,25886725,25952266,26017798,26083333,26148870,26214406,26279944,26345481,26411013,26476549,26542087,26607623,26673158,26738696,26804231,26869767,26935298,27000840,27066374,27131910,27197449,27262983,27328514,27394056,27459589,27525127,27590658,27656200,27721735,27787270,27852806,27918341,27983881,28049415,28114950,28180488,28246018,28311554,28377090,28442631,28508165,28573703,28639234,28704780,28770311,28835847,28901382,28966914,29032455,29097991,29163526,29229062,29294599,29360133,29425670,29491206,29556744,29622278,29687814,29753351,29818887,29884421,29949960,30015495,30081031,30146565,30212102,30277641,30343170,30408710,30474246,30539786,30605318,30670857,30736386,30801927,30867461,30932997,30998537,31064072,31129606,31195144,31260678,31326214,31391751,31457287,31522823,31588358,31653897,31719433,31784962,31850503,31916038,31981573,32047112,32112648,32178181,32243714,32309254,32374790,32440325,32505863,32571394,32636934,32702472,32768006,32833542,32899078,32964614,33030150,33095682,33161221,33226757,33292293,33357832,33423362,33488902,33554438,33619975,33685509,33751045,33816584,33882120,33947650,34013191,34078726,34144265,34209799,34275334,34340870,34406405,34471943,34537478,34603016,34668550,34734086,34799622,34865158,34930700,34996231,35061767,35127301,35192838,35258374,35323909,35389442,35454981,35520519,35586053,35651592,35717125,35782661,35848199,35913735,35979269,36044810,36110342,36175878,36241415,36306950,36372486,36438021,36503560,36569094,36634631,36700167,36765705,36831238,36896776,36962310,37027846,37093381,37158917,37224457,37289990,37355526,37421061,37486601,37552136,37617670,37683207,37748742,37814278,37879815,37945353,38010887,38076421,38141957,38207495,38273031,38338570,38404102,38469638,38535175,38600709,38666247,38731783,38797321,38862855,38928389,38993928,39059459,39124999,39190533,39256072,39321607,39387138,39452679,39518213,39583752,39649286,39714818,39780358,39845890,39911430,39976968,40042504,40108039,40173574,40239109,40304646,40370181,40435717,40501253,40566790,40632328,40697862,40763398,40828936,40894473,40960006,41025544,41091077,41156616,41222154,41287687,41353223,41418759],"nonnegative":[10485761,12058625],"new_reallocate":[8126468],"needs":[28442625,31588353,33292289,36765697],"net":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310722,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259842,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849667,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126466,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650754,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238274,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874370,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185098,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840450,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717122,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141954,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753],"nunbers":[2293762],"negation":[4915201,17170433,27394049],"n_digits":[31719433,40828935],"names":[14090241],"namespace":[131073,196609,262146,327682,393218,458754,524290,589826,655361,720898,786434,851970,917505,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572865,1638402,1703938,1769474,1835009,1900546,1966082,2031618,2097153,2162690,2228226,2293762,2359297,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949121,3014658,3080194,3145730,3211266,3276802,3342338,3407873,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194305,4259842,4325378,4390914,4456450,4521986,4587522,4653057,4718594,4784130,4849666,4980737,4915201,5046274,5111810,5177346,5242882,5308417,5373954,5439490,5505026,5570561,5636098,5701633,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291457,6356994,6422530,6488066,6553602,6619138,6684673,6750210,6815746,6881282,6946818,7012354,7077889,7143426,7208962,7274498,7340034,7405570,7471106,7602178,7536642,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568257,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141121,11206658,11272194,11337729,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648449,12713986,12779522,12845058,12910593,12976130,13041666,13107202,13172737,13238274,13303810,13369346,13434882,13500418,13565953,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417921,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007745,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056321,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104897,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612225,18677762,18743298,18808834,18874369,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857409,19922946,19988482,20054018,20119554,20250626,20316162,20381698,20447233,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806529,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396353,23461890,23527426,23592961,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510465,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935297,27000834,27066370,27131906,27197442,27262978,27328513,27394050,27459586,27525122,27590657,27656194,27721730,27787266,27852802,27918338,27983874,28049410,28114946,28180482,28246017,28311553,28377089,28442626,28508162,28573698,28639233,28704770,28770306,28835842,28901378,28966913,29032450,29097986,29163522,29229058,29294594,29360130,29425666,29491202,29556738,29622274,29687810,29753346,29818882,29884418,29949954,30015490,30081026,30146562,30212098,30277634,30343169,30408706,30474242,30539778,30605314,30670850,30736385,30801922,30867458,30932994,30998530,31064066,31129602,31195138,31260674,31326210,31391746,31457282,31522818,31588354,31653890,31719426,31784961,31850498,31916034,31981570,32047106,32112642,32178178,32243713,32309250,32374786,32440322,32505858,32571393,32636930,32702466,32768002,32833538,32899074,32964610,33030146,33095681,33161218,33226754,33292290,33357826,33423361,33488898,33554434,33619970,33685506,33751042,33816578,33882114,33947649,34013186,34078722,34144258,34209794,34275330,34340866,34406402,34471938,34537474,34603010,34668546,34734082,34799618,34865154,34930690,34996226,35061762,35127298,35192834,35258370,35323906,35389441,35454978,35520514,35586050,35651586,35717122,35782658,35848194,35913730,35979266,36044802,36110338,36175874,36241410,36306946,36372482,36438018,36503554,36569090,36634626,36700162,36765698,36831234,36896770,36962306,37027842,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37617666,37683202,37748738,37814274,37879810,37945346,38010882,38076418,38141954,38207490,38273026,38338562,38404098,38535170,38469634,38600706,38666242,38731778,38797314,38862850,38928386,38993922,39059457,39124994,39190530,39256066,39321602,39387137,39452674,39518210,39583746,39649282,39714817,39780354,39845889,39911426,39976962,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763394,40828930,40894466,40960002,41025538,41091074,41156610,41222146,41287682,41353218,41418754],"notinheritable":[17170433],"newly":[4915201,6356994,17170433,34537474,34734082,39059457,40566786],"normal":[16252929],"newer":[6553601,12713985,23658497,31522817,32047105],"naturally":[27459585,38076417],"number":[327681,720901,851969,1114114,1179649,1376259,1441794,1638401,1703939,1769474,1900548,1966082,2228225,2293761,2424833,2490370,2621441,3014658,3080193,3145730,3211268,3473409,3538945,3670020,3801091,4063233,4128769,4259841,4325377,4521986,4718593,4784131,4915223,5177348,5636101,5701633,5767172,5963780,6029313,6094849,6160386,6225921,6356993,6553605,6619137,7012353,7405569,7536644,7667716,7929857,8126466,8192004,8257540,8388610,8454146,8650756,8716294,8781825,8847361,8978434,9043969,9109505,9240580,9306115,9371651,9437186,9764868,9830404,10289153,10485763,10616833,10878979,10944514,11141121,11272193,11403266,11796481,11927556,11993092,12058627,12124161,12255236,12386308,12451841,12517379,12713991,12779521,12910593,13238273,13303810,13369347,13434881,13500420,13631493,13762561,13828097,14221313,14286849,14352385,14680070,14942210,15073284,15138817,15532033,15794177,16056322,16121857,16252930,16318465,16515073,16646145,16842754,16908289,17039361,17170460,17235970,17432582,18087940,18350082,18546692,18677761,18808838,19136514,19529731,20054017,20250627,20578308,20643841,20709380,20840455,20905987,21037057,21364737,21626881,21889025,21954561,22020100,22085636,22282242,22347778,22413313,22544385,22609923,22675457,22740995,22937603,23003138,23068673,23134210,23265282,23592961,23658502,23920641,23986179,24051713,24248324,24576002,24641539,24838146,24969217,25165828,25821186,25952257,26345473,26738693,26869761,27394049,27459586,27721729,27787266,27918337,28114948,28180482,28377092,28442629,28573700,28704770,28770305,29097986,29687809,29884418,30015489,30081028,30539778,30605313,30670849,30801924,30998529,31064065,31195138,31391746,31522820,31588357,31653889,31719428,32047110,32243713,32374786,32505857,33161217,33357830,33488897,33816577,33882113,34013185,34144257,34209793,34406401,34537473,34668546,34734081,34865153,34930692,35061762,35520514,35651585,35717121,35913732,36044801,36175875,36241412,36765698,36962306,37027841,37224449,37289985,37486593,37552130,37683203,37814277,37879812,37945345,38010881,38273025,38207490,38338561,38404098,38731781,39059461,39256068,39321604,39452676,39649282,39976961,40239105,40566785,40632326,40828931,40894465,41156609,41418753],"numeric":[4915204,8323073,17170436,19595265,25100289,40960001],"numb":[34930691],"normally":[2490369,13238273,17235969,23003137,24576001,31195137,34340865,38338561,39911425],"numbe":[16187393,18219009,20840449,27197441,29818881,30277633],"new_alloc":[4915201,17170433,34013190],"notice":[8388609,16842753],"normalization":[38207489],"nents":[4915201,8454150,17170433],"null":[589827,1310721,1769473,2293762,2424833,2555905,2686977,3211265,3342337,3407873,3670017,3866625,4063233,4915217,5439489,5767169,6225921,6946817,7471105,7602177,7667713,7733249,8126474,8192001,8257537,8323073,8388612,8585222,8716289,8912898,9043969,9175041,9437185,9764865,9830401,10092545,10354689,10747905,11272193,11468801,11730946,11927553,11993089,12517377,12845057,13828097,13893633,14221314,14352385,14614530,14680065,14876673,15269889,15335425,15400961,15728641,16449537,16515073,16711681,16842756,16908289,17170449,17891329,18808833,19070977,19267585,19791874,19988481,20512770,20774913,21299202,21561345,21823489,22020097,22085633,22151169,22478849,23658497,24248321,24313857,24444930,24576001,24772609,25231361,25362436,25559041,25690113,26279937,26804225,27000833,27656193,27721730,27983873,28639233,28770305,28835841,29294593,29556737,29949953,30015489,30081025,30605314,31719429,32112641,32505858,32702465,32964611,33357825,33619969,33816577,33882113,34275332,34603010,34734083,34930692,35520513,35651585,35913729,36241409,36700161,36765697,36896769,37879809,38010881,38338563,38469635,38600705,38797314,39124993,39321601,39583745,39976961,40042497,40108036,40566787,40632321,41025537,41287681],"negativeinfinity":[458753,30212097],"narrowing":[786433,1507329,2031617,3932161,4456449,5832705,5898241,6815745,7208961,7798785,8060929,9699329,10420225,11010049,11665409,11862017,14024705,15466497,15925249,16777217,17301505,17367041,18022401,18153473,18284545,18415617,18481153,21233665,22872065,23199745,23461889,25886721,26083329,27066369,27131905,29163521,29622273,30408705,30474241,31916033,35586049,36438017,36569089,37617665,37748737,40173569,40370177,40697857,40763393,41091073],"new_size":[1769481,4915201,8126468,17170433,25821191,39059457],"notes":[20578305],"noted":[23986177,24576001],"nails":[23986183,34930694],"negated_operand":[4915201,17170433,29753350],"nbcnt":[16318471],"nbits":[4915201,15073286,17170433]} \ No newline at end of file +{"num2":[589834,10878986,19333122,21168130],"necessary":[1441793,2490369,3997697,5898241,11403265,14745602,17104897,17235969,19333125,19529730,21168133,23592962,26738689,33161217,35586049,38141953,40697857],"new_free":[9240580],"need":[14745601,25231363],"new":[196609,327682,524300,589826,720904,786436,917505,1048580,1114113,1179650,1245185,1310724,1376257,1441795,1507332,1703946,1769473,1835012,2031618,2097156,2162691,2228230,2424835,2490372,2555908,2752528,2818064,2883586,3014660,3080194,3145732,3211272,3276804,3407873,3473420,3604488,3670018,3735560,3932161,3997700,4128772,4194305,4390928,4521985,4587524,4653062,4849665,4980742,5046276,5177354,5308420,5373954,5505036,5636104,5701633,5767170,5832707,5898246,5963792,6029318,6094854,6160386,6225921,6291470,6422530,6488067,6619137,6750212,6881281,6946818,7012360,7077890,7143425,7208961,7340038,7405584,7471110,7536641,7602180,7733250,7798785,7864324,7929868,7995396,8060944,8126470,8192004,8323074,8388616,8454152,8585218,8650757,8716296,8781828,8847368,8912897,8978438,9043969,9109506,9175042,9240581,9371656,9502728,9568260,9633796,9764874,9830404,9961476,10027012,10223618,10289160,10354689,10420225,10485761,10551298,10682373,10813443,10878978,10944513,11075585,11141126,11272194,11337736,11403268,11534341,11665416,11730950,11796484,12058625,12124166,12255233,12320776,12386305,12517380,12582920,12713996,12779522,12845062,12910598,12976136,13041666,13107204,13172741,13303811,13369348,13434884,13500422,13631490,13697028,13828098,13893634,13959174,14024708,14090242,14155777,14221318,14286849,14352396,14417928,14483460,14548993,14614546,14745604,14811140,14876673,14942209,15007745,15073286,15138822,15204356,15269890,15335430,15400961,15532048,15597572,15663106,15794178,15925256,15990788,16056324,16121860,16187394,16252934,16384004,16449542,16515073,16646145,16711681,16777217,16842753,16908292,17039362,17104898,17235972,17301505,17432577,17498113,17563660,17694721,17760258,17825796,18022402,18153474,18284546,18350081,18481156,18546692,18612225,18677772,18743302,18808844,18874372,18939930,19005456,19070988,19136513,19202049,19267585,19398657,19529732,19660804,19726354,19791878,19857412,19922946,19988484,20054028,20250640,20316161,20447236,20709378,20840452,20905992,20971524,21037058,21233668,21299201,21364737,21495809,21561350,21626882,21692420,21757956,21823492,21889026,22216708,22282241,22347780,22413313,22478858,22544390,22609921,22675458,22872065,22937608,23003137,23134210,23199752,23396356,23461890,23527428,23592962,23658500,23724038,23789571,23855112,23920641,23986180,24051720,24117249,24248328,24313857,24444929,24576002,24641544,24707076,24772620,24838150,24903684,25034753,25100300,25165828,25231361,25296900,25362444,25493516,25559048,25690114,25755654,25821185,25886721,25952264,26148872,26214401,26279948,26345496,26411028,26476546,26542084,26607620,26673154,26738690,26869764,26935302,27066370,27262982,27459586,27525128,27656202,27721729,27787268,27852816,27983876,28114952,28180482,28246020,28377104,28442625,28508164,28573697,28639236,28770306,28901388,29032451,29163532,29229057,29294600,29360134,29425668,29491204,29556737,29687812,29753348,29818881,29949953,30015494,30081028,30212097,30277638,30343176,30408706,30539782,30736388,30801921,30867458,30933008,30998530,31064066,31260674,31391745,31522828,31588354,31653892,31719426,31784964,31850498,31981572,32047112,32112641,32178180,32309256,32374787,32440332,32505862,32571399,32636932,32702466,32768008,32833540,32899084,33030150,33095682,33161222,33226755,33292304,33423366,33488897,33554436,33619969,33685505,33816578,33882128,33947652,34013192,34078723,34144264,34406408,34537476,34603012,34799618,34865155,34930690,34996228,35192838,35258374,35323910,35389441,35454984,35520516,35586054,35651590,35717122,35848193,35913732,35979268,36044816,36175873,36241412,36438020,36569094,36634626,36831233,37027848,37093380,37158913,37224450,37290000,37355528,37421057,37486594,37552130,37617670,37683202,37748748,37879820,38010882,38141956,38273028,38338564,38535172,38600716,38731778,38928390,39059468,39190529,39321602,39387152,39452673,39518212,39583745,39649281,39780364,39845896,39911430,40042502,40173569,40239108,40304643,40370184,40566785,40632321,40697858,40763393,40960001,41025556,41091082,41156624,41222145,41287684,41418754],"needed":[1441793,3538945,5898241,14745602,19660801,21037057,25231361,33161217],"new_allocate":[9240580],"numerator":[589825,1507329,2359297,3014657,3801089,6946817,7340033,8192001,9568257,9699330,10878977,11141121,11665409,11730945,13828097,14221321,14811137,14942209,15335425,16515073,17760257,17825793,18546689,18743305,19333126,19791873,19857409,20905985,20971521,21168134,23527425,24576001,24838145,26345473,27066372,27262977,27787265,28508161,31653889,32505857,33423362,33947649,34013185,35192833,35258369,35520513,39518209,40042497,40304642,41418753],"num":[7077894,12845058,14221330,18743306,27066374,33423364,34996226,38731778],"negative":[327681,589825,1114113,2555906,3866628,4521985,6160386,8323073,9633793,9830402,9961473,10551297,10878977,10944514,11599874,12582913,12779521,12910593,13369345,14417921,14614530,15597569,15859714,18939906,19857409,22544386,24051713,25624578,25755649,25821186,27262977,29753345,30408705,30998530,31588354,31850497,31981569,34406401,34537473,34603009,37552129,40108033,41091073],"nan":[327681,13369345,30408705],"numbers":[786435,2490372,6160386,9830401,14745601,15073282,17104899,19333122,21168130,22478849,22544385,22675457,25231361,26738691,30081027,30277633,30998530,31588355,36569091,37355526,38141958],"nail":[33161217],"native":[65537,131074,196614,262146,327686,393221,458757,524296,589830,655362,720903,786438,851970,917509,983045,1048582,1114118,1179654,1245189,1310726,1376261,1441800,1507335,1572866,1638406,1703946,1769478,1835015,1900546,1966085,2031622,2097158,2162693,2228232,2293762,2359298,2424837,2490375,2555910,2621442,2686978,2752523,2818057,2883590,2949125,3014663,3080198,3145734,3211271,3276808,3342341,3407877,3473418,3538951,3604487,3670018,3735559,3801094,3866629,3932166,3997703,4063234,4128774,4194312,4259847,4325381,4390921,4456453,4521989,4587526,4653061,4718594,4784134,4849670,4915202,4980743,5046278,5111813,5177352,5242885,5308423,5373958,5439495,5505033,5570562,5636104,5701637,5767175,5832709,5898247,5963785,6029317,6094856,6160391,6225925,6291466,6356998,6422534,6488069,6553602,6619142,6684679,6750213,6815746,6881286,6946822,7012359,7077894,7143429,7208965,7274502,7340040,7405578,7471112,7536645,7602183,7667714,7733255,7798790,7864327,7929864,7995399,8060937,8126472,8192007,8257541,8323078,8388614,8454151,8519687,8585222,8650754,8716295,8781831,8847367,8912902,8978440,9043975,9109510,9175046,9240584,9306119,9371655,9437189,9502727,9568263,9633799,9699333,9764874,9830407,9895941,9961479,10027014,10092549,10158088,10223622,10289159,10354694,10420229,10485766,10551303,10616837,10682375,10747906,10813445,10878982,10944523,11010056,11075590,11141128,11206661,11272199,11337735,11403271,11468805,11534342,11599874,11665417,11730952,11796486,11862018,11927559,11993090,12058629,12124167,12189701,12255237,12320774,12386310,12451842,12517383,12582919,12648450,12713992,12779527,12845063,12910600,12976135,13041670,13107207,13172742,13238279,13303813,13369350,13434885,13500424,13565957,13631495,13697031,13762565,13828103,13893639,13959174,14024710,14090246,14155781,14221319,14286857,14352393,14417928,14483464,14548997,14614536,14680066,14745607,14811143,14876678,14942213,15007750,15073288,15138824,15204357,15269895,15335432,15400965,15466504,15532041,15597574,15663110,15728642,15794182,15859714,15925259,15990791,16056327,16121863,16187398,16252936,16318469,16384007,16449543,16515080,16580613,16646150,16711686,16777221,16842757,16908296,16973829,17039366,17104902,17170437,17235974,17301510,17367045,17432581,17498117,17563656,17629191,17694726,17760262,17825799,17891330,17956869,18022407,18087941,18153478,18219010,18284550,18350085,18415618,18481159,18546696,18612230,18677769,18743303,18808840,18874375,18939916,19005450,19070984,19136518,19202054,19267589,19333122,19398661,19464198,19529734,19595269,19660807,19726347,19791880,19857415,19922950,19988486,20054024,20119557,20185094,20250634,20316165,20381701,20447239,20512770,20578310,20643845,20709382,20774914,20840454,20905993,20971527,21037063,21102594,21168135,21233670,21299206,21364743,21430277,21495813,21561349,21626887,21692422,21757958,21823495,21889031,21954565,22020098,22085634,22151170,22216711,22282246,22347783,22413317,22478856,22544391,22609925,22675462,22740999,22806535,22872069,22937607,23003142,23068677,23134214,23199751,23265282,23330818,23396357,23461894,23527432,23592966,23658503,23724038,23789573,23855113,23920645,23986182,24051721,24117256,24182786,24248326,24313861,24379399,24444933,24510470,24576006,24641543,24707079,24772616,24838152,24903687,24969221,25034757,25100296,25165831,25231366,25296904,25362441,25427970,25493513,25559047,25624581,25690118,25755656,25821194,25886726,25952263,26017800,26083330,26148871,26214406,26279946,26345484,26411021,26476550,26542087,26607628,26673158,26738694,26804226,26869766,26935304,27000838,27066374,27131911,27197447,27262984,27328517,27394053,27459590,27525127,27590662,27656199,27721734,27787272,27852809,27918338,27983879,28049415,28114950,28180486,28246022,28311558,28377098,28442630,28508167,28573702,28639239,28704775,28770310,28835846,28901384,28966919,29032453,29097989,29163529,29229064,29294600,29360136,29425670,29491207,29556741,29622274,29687815,29753351,29818886,29884421,29949958,30015497,30081030,30146565,30212101,30277640,30343174,30408710,30474242,30539784,30605314,30670850,30736390,30801926,30867462,30933001,30998536,31064070,31129607,31195141,31260678,31326213,31391749,31457286,31522824,31588359,31653896,31719430,31784965,31850502,31916037,31981575,32047111,32112646,32178183,32243719,32309255,32374789,32440329,32505864,32571399,32636934,32702470,32768007,32833543,32899081,32964615,33030152,33095686,33161228,33226757,33292298,33357830,33423367,33488901,33554437,33619973,33685509,33751047,33816582,33882121,33947655,34013193,34078726,34144263,34209797,34275331,34340866,34406407,34471944,34537478,34603015,34668549,34734087,34799622,34865157,34930694,34996231,35061766,35127301,35192840,35258376,35323912,35389446,35454983,35520520,35586055,35651592,35717126,35782658,35848198,35913734,35979270,36044809,36110341,36175878,36241414,36306950,36372487,36438022,36503554,36569095,36634632,36700162,36765698,36831240,36896770,36962306,37027846,37093382,37158917,37224454,37289993,37355526,37421061,37486598,37552134,37617672,37683207,37748745,37814279,37879816,37945351,38010886,38076421,38141959,38207494,38273031,38338567,38404098,38469634,38535175,38600712,38666245,38731783,38797318,38862850,38928389,38993926,39059464,39124997,39190534,39256070,39321606,39387145,39452677,39518216,39583749,39649286,39714824,39780362,39845895,39911432,39976967,40042504,40108037,40173573,40239111,40304647,40370183,40435717,40501254,40566790,40632326,40697862,40763397,40828933,40894469,40960005,41025545,41091082,41156617,41222150,41287687,41353221,41418758],"nonnegative":[10551297,12779521],"new_reallocate":[9240580],"needs":[30081025,35127297,36569089,41025537],"net":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245186,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194306,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242883,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240578,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944514,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286850,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219010,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988482,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231371,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685506,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452674,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753],"nunbers":[2490370],"negation":[19333121,21168129,25100289],"n_digits":[30015497,36634631],"names":[13172737],"namespace":[131073,196610,262145,327682,393218,458754,524290,589826,655361,720898,786434,851969,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572865,1638402,1703938,1769474,1835010,1900545,1966082,2031618,2097154,2162690,2228226,2293761,2359297,2424834,2490370,2555906,2621441,2686977,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670017,3735554,3801090,3866626,3932162,3997698,4063233,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718593,4784130,4849666,4915201,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570561,5636098,5701634,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291458,6356994,6422530,6488066,6553601,6619138,6684674,6750210,6815745,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7536642,7602178,7667713,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650753,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747905,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599873,11665410,11730946,11796482,11862017,11927554,11993089,12058626,12124162,12189698,12255234,12320770,12386306,12451841,12517378,12582914,12648449,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680065,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728641,15794178,15859713,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891329,17956866,18022402,18087938,18153474,18219009,18284546,18350082,18415617,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333121,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512769,20578306,20643842,20709378,20774913,20840450,20905986,20971522,21037058,21102593,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020097,22085633,22151169,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265281,23330817,23396354,23461890,23527426,23592962,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182785,24248322,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25296898,25362434,25427969,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083329,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804225,26869762,26935298,27000834,27066370,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918337,27983874,28049410,28114946,28180482,28246018,28311554,28377090,28442626,28508162,28573698,28639234,28704770,28770306,28835842,28901378,28966914,29032450,29097986,29163522,29229058,29294594,29360130,29425666,29491202,29556738,29622273,29687810,29753346,29818882,29884418,29949954,30015490,30081026,30146562,30212098,30277634,30343170,30408706,30474241,30539778,30605313,30670849,30736386,30801922,30867458,30932994,30998530,31064066,31129602,31195138,31260674,31326210,31391746,31457282,31522818,31588354,31653890,31719426,31784962,31850498,31916034,31981570,32047106,32112642,32178178,32243714,32309250,32374786,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32899074,32964610,33030146,33095682,33161218,33226754,33292290,33357826,33423362,33488898,33554434,33619970,33685506,33751042,33816578,33882114,33947650,34013186,34078722,34144258,34209794,34275329,34340865,34406402,34471938,34537474,34603010,34668546,34734082,34799618,34865154,34930690,34996226,35061762,35127298,35192834,35258370,35323906,35389442,35454978,35520514,35586050,35651586,35717122,35782657,35848194,35913730,35979266,36044802,36110338,36175874,36241410,36306946,36372482,36438018,36503553,36569090,36634626,36700161,36765697,36831234,36896769,36962305,37027842,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37617666,37683202,37748738,37814274,37879810,37945346,38010882,38076418,38141954,38207490,38273026,38338562,38404097,38469633,38535170,38600706,38666242,38731778,38797314,38862849,38928386,38993922,39059458,39124994,39190530,39256066,39321602,39387138,39452674,39518210,39583746,39649282,39714818,39780354,39845890,39911426,39976962,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763394,40828930,40894466,40960002,41025538,41091074,41156610,41222146,41287682,41353218,41418754],"notinheritable":[21168129],"newly":[6356994,19333121,21168129,32702466,33357826,34275329,35717122],"normal":[14745601],"newer":[6160385,15073281,22478849,30277633,31588353],"naturally":[23068673,40108033],"number":[524289,720900,1048581,1179649,1310722,1441794,1638403,1703938,1835012,2031617,2097154,2162689,2228225,2490369,2752514,2818049,3080193,3145730,3211268,3342337,3473409,3538945,3604484,3866626,3997699,4194305,4259844,4390913,4521985,4587522,4653057,4784131,4980739,5177348,5505025,5636100,5767169,5832706,5898241,5963777,6029313,6094853,6160389,6291460,6356993,6684673,7405569,7602177,7667713,7733250,7929862,7995393,8060929,8192004,8388609,8454148,8716292,8781826,8847364,8978433,9043969,9240578,9371652,9437185,9502724,9764866,9830403,10027010,10223617,10551299,10682370,10944516,11206657,11272196,11337732,11403267,11534337,11599873,11796482,11862017,12124163,12189697,12320769,12517379,12582916,12713990,12779523,12910593,12976132,13041669,13369346,13631489,13697025,13762561,14090241,14286849,14352385,14417921,14614529,14745602,15073287,15269890,15532033,15597570,15663105,15859714,15925249,16121857,16252932,16449537,16515073,16908289,16973825,17104900,17235970,17563654,18481156,18677761,18939908,19005442,19070977,19333143,19660801,19726338,19922946,19988487,20054017,20250626,20447235,20578307,21037057,21168156,21233666,21364742,21430273,21561345,21626881,21823491,21889025,22151169,22216705,22478854,22544387,22675457,22937604,23068674,23134209,23199748,23724034,23986180,24117249,24772611,25100289,25165827,25231361,25296897,25493505,25559041,25624577,25690115,25821186,26017797,26279937,26345474,26411011,26607619,26738692,26804228,26869762,27459585,27525124,27656194,27852801,28180481,28246018,28377090,28639234,28704772,28901378,29163521,29229058,29294594,29491201,29753345,30015492,30081029,30277638,30474241,30932993,30998532,31326210,31522817,31588356,31719425,32047108,32178177,32309250,32571393,32636930,32702465,32768002,32899073,33030145,33095681,33161220,33292289,33357825,33882113,34078721,34144260,34209793,34275333,34406404,34537474,34734084,34996227,35323905,35454980,35586050,35651585,35717121,35979266,36241410,36569093,36634627,36831234,37093380,37289985,37486597,37617665,37683201,37748737,37879809,38010881,38076417,38141953,38273028,38600710,38928385,39059462,39387137,39452673,39976961,40304642,40370180,40501251,40566786,40828929,41025538,41091073,41156609,41287685],"numeric":[7012353,19333124,20709377,21168132,23461889,37224449],"numb":[33161219],"normally":[2097153,14286849,17235969,19922945,28639233,35913729,36831233,40697857,41091073],"numbe":[16384001,18808833,19988481,26542081,32440321,36044801],"new_alloc":[19333121,21168129,32571398],"notice":[7733249,15269889],"normalization":[35586049],"nents":[9764870,19333121,21168129],"null":[720897,786435,1245185,1441793,1507329,2228225,2490370,2621441,3014657,3211265,3276801,3604481,3735553,4653057,5308417,5636097,6029313,7012353,7340033,7471105,7733252,7864321,7929857,7995393,8126465,8454145,8716289,8781825,8847361,8978433,9240586,9371649,9502721,9568257,9633793,9895937,9961473,10158086,10289153,11141122,11337729,11665410,11730945,12517377,12713985,12910593,13107201,13500417,13697025,13893634,14090242,14483457,14811137,15138817,15269892,15335425,15990785,16056321,16121857,16449537,17563649,17825793,18546689,18874369,19333137,19791874,19857409,19922945,20119553,20905986,20971521,21168145,21626882,22216705,22347777,22478849,22937601,23134210,23199745,23527425,23658497,23855105,24051713,24248322,24641537,24838145,25755649,25952257,26935298,27262977,27525121,27787265,27983873,28114948,28508161,29360129,29491201,29687809,29753345,30015493,30343171,30539777,31653889,32047105,32505858,32702467,33030145,33161220,33947649,34013186,34144257,34406401,34603009,35192833,35258369,35323905,35454977,35520513,35651585,35717123,36110337,36765697,37027844,37355523,37617665,38141954,38338561,38535169,38600705,38731780,39059457,39518209,39911425,40042497,40304641,40370177,41025537,41091075],"negativeinfinity":[327681,30408705],"narrowing":[917505,1376257,1769473,3932161,4849665,5701633,6225921,6881281,7143425,7536641,7798785,8912897,10420225,10485761,11075585,12386305,14155777,14876673,16646145,16711681,16777217,16842753,17432577,17498113,17694721,18612225,19136513,19202049,19267585,22282241,22609921,23003137,25886721,26214401,28442625,28573697,29556737,29818881,29949953,30801921,33488897,35389441,35848193,36175873,37421057,39190529,40173569,40632321,40763393,41222145],"new_size":[1441801,9240580,19333121,21168129,29229063,34275329],"notes":[18939905],"noted":[19922945,26607617],"nails":[26607623,33161222],"negated_operand":[19333121,21168129,31129606],"nbcnt":[15925255],"nbits":[16252934,19333121,21168129]} \ No newline at end of file diff --git a/docs/fti/FTI_111.json b/docs/fti/FTI_111.json index 317c79e..4fd2c34 100644 --- a/docs/fti/FTI_111.json +++ b/docs/fti/FTI_111.json @@ -1 +1 @@ -{"overload":[196609,262145,393217,655361,786433,917505,1507329,2031617,2097153,2949121,3932161,3997697,4128769,4194305,4456449,4980737,5832705,5898241,6291457,6422529,6684673,6815745,7077889,7208961,7340033,7798785,7995393,8060929,8519681,9502721,9699329,10420225,10813441,11010049,11665409,11862017,12648449,12976129,13959169,14024705,14155777,14483457,15007745,15204353,15466497,15597569,15663105,15925249,16777217,17301505,17367041,17760257,17825793,18022401,18153473,18284545,18415617,18481153,18612225,19005441,19202049,19660801,19726337,20119553,21168129,21233665,21495809,22216705,22806529,22872065,23199745,23330817,23396353,23461889,23527425,23855105,24182785,24510465,25034753,25755649,25886721,26083329,26411009,26935297,27066369,27131905,27852801,28508161,28901377,29163521,29425665,29622273,30146561,30408705,30474241,30867457,31260673,31326209,31784961,31916033,32571393,32768001,32833537,33030145,33226753,34078721,35127297,35323905,35586049,35979265,36372481,36438017,36569089,37027841,37093377,37158913,37355521,37421057,37617665,37748737,39387137,39845889,40173569,40304641,40370177,40501249,40697857,40763393,41091073],"overlap":[5963777,8388609,14221313,16842753,18350081,20643841,22937601,26345473,28180481,28704769,30605313,30998529,31064065,37486593,41156609],"operands":[327682,1114115,1966082,2621442,3080194,4325378,4718594,4915202,5177346,5963779,6094850,7012354,7929858,8454146,12517379,13434882,13828097,15138818,16318465,17039361,17170434,18219010,18350082,18677762,19136514,20578308,20643842,21364738,21889026,22282242,22937602,23724034,24641539,24969218,25952258,26345474,27197442,27394050,28180482,28704770,30277634,30539778,30670850,30998530,31064066,31653890,34144259,36044802,36765698,37224450,37486595,37552131,37945346,38731778,40894466,41156610,41222146],"occurrences":[4915201,17170433,35651586],"obsolete":[6553601,31522817],"old":[21037057,23068673],"occurred":[1376257,9306113,10878977,15794177,16121857,19529729,20054017,22740993,34865153,37683201,40828929],"optional":[35520513],"older":[6553601,8388609,12713985,16842753,23658497,31522817,32047105],"obj":[393223,7995399,9502727,15663111,19726343,20119559,30867463,37158919],"operators":[196609,262145,655361,786433,1179649,1310721,1507329,2031617,2949121,3932161,3997697,4259841,4456449,4587521,4980737,5308417,5570561,5832705,5898241,6422529,6815745,7208961,7340033,7798785,8060929,8650753,9568257,9699329,10420225,10813441,11010049,11665409,11862017,12976129,13238273,13565954,14024705,14155777,14417922,14483457,15204353,15466497,15597569,15925249,16646145,16777217,17301505,17367041,17498113,17760257,17825793,18022401,18153473,18284545,18415617,18481153,18612225,19005441,19202049,19660801,20447234,21233665,21495809,22216705,22806529,22872065,23134209,23199745,23330817,23396353,23461889,23855105,24182785,24510465,25034753,25886721,26083329,26411009,27066369,27131905,27328514,27590658,28508161,29163521,29622273,30343170,30408705,30474241,31195137,31326209,31916033,32178177,32571393,32768001,33226753,33423362,33947650,35127297,35586049,35717121,35979265,36372481,36438017,36569089,37617665,37748737,38141953,38600705,39387137,40173569,40370177,40501249,40697857,40763393,41091073],"obtained":[4915202,17170434,20578305,34734081,40566785],"operations":[5701633,8650753,11337729,12124161,14090241,16646145,17104897,20643841,21626881,23134209,26345473,26673153,28311553,28966913,30998529,31129601,35389441,37224449,39649281,39714817],"octal":[9240577,9306113,16908289,17498113,20250625,22740993,32178177,35520513],"override":[393219,1048579,2162691,2752515,3145731,3538945,4390915,4849667,7995395,9502723,13697027,15663107,17956867,19726339,19922947,20119555,20971523,22675459,23789571,25624579,26476547,29360131,30867459,32440323,33292289,33751043,35782659,37158915,39518211,40435713],"op2":[458761,1245193,2424852,3866631,4915255,5767174,7274505,7667718,7733254,8192006,8716294,9437190,10092569,11272212,11468823,11927558,12517397,13303817,13500425,13828116,13893638,14680070,14942217,15269894,15728646,16449542,17170487,18743302,18808838,20774935,22020102,22085638,25690118,26542086,26673159,27000838,27721735,30212105,31129607,31457305,32374793,32702470,33357830,33554441,33619974,33816598,33882135,35913734,36241417,36700183,37879814,38338562,38862854,39124998,39976980,40632327,41287686,41418760],"overflow":[17235969,20316161,39911425],"open":[1376258,16121858,19529730,34865154,37683202,40828929],"occurs":[13369345,34209794],"output":[1376259,4915205,8388613,10878977,14221315,14286849,15794182,16121859,16842757,17170437,19529729,20054022,20578305,30605315,34734083,34865155,37683202,40566787],"outside":[4784129],"one":[4915201,5177345,12517377,12713985,13828097,15073281,16252929,16515073,17170433,20185089,20905986,22937602,23658497,24576002,32047105,33292289,34930689,38338561],"optimal":[1114113,7929857,20185089,30998529],"overrides":[131074,393217,917505,1048577,1310723,1572867,1835011,2097153,2162689,2752513,3145729,4259843,4390913,4587522,4653059,4849665,5701633,6291457,6684673,7995393,8650754,9502721,11141121,11337729,12648449,13238275,13697025,15007745,15663105,16056321,16646145,17104897,17956865,18874371,19726337,19922945,20119553,20971521,22675457,23134210,23789569,25624577,26476545,28246019,29360129,30736387,30867457,31195139,31784961,32440321,33095682,33751041,35717123,35782657,37158913,38141955,38600706,39518209,39845889],"operanf":[12517378],"object":[131076,393225,917507,1310724,1572868,1835012,2097155,4063240,4259844,4587524,4653060,5111809,5701642,6225928,6291459,6684675,7995401,8388614,8650763,9109512,9502729,11337738,12124172,12648451,13238276,13762568,14090252,14221318,15007747,15663113,15794184,16121862,16646155,16842760,17104906,17170433,18874372,19726345,20054022,20119561,21626892,23134219,23920648,28246020,28311563,28966923,30605322,30736388,30867465,31195140,31784963,33095684,34406408,34734087,34865160,35389451,35717124,37158921,38141956,38600708,39649292,39714827,39845891,40566793],"optimization":[20185089],"overlapping":[1114113,1966082,4718593,19136514,23724033,24641537,34144257,41222145],"op1":[458775,983065,1245200,2424852,3866630,4915258,5767174,7274519,7667718,7733254,8192006,8716294,9437190,10092569,11272212,11468823,11599897,11927558,12517397,13303817,13500425,13828116,13893638,14680070,14942217,15269894,15728646,16449542,17170490,18743302,18808838,20774935,22020102,22085638,25690118,26542086,26673159,27000838,27721749,30212119,31129607,31457305,32374793,32702470,33357830,33554455,33619974,33816598,33882136,35913734,36241417,36700183,37879814,38338562,38862854,39124998,39976980,40632328,41287686,41418760],"original":[29097986],"operator":[262147,786435,1179651,1507331,2031619,3932163,3997699,4456451,5832707,5898243,6422531,6815747,7143428,7208963,7340035,7798787,8060931,9699331,10223620,10420227,10551300,10813443,11010051,11665411,11862019,12320772,12976131,14024707,14155779,14483459,15204355,15466499,15597571,15925251,16777219,17367043,17301507,17498115,17760259,17825795,18022403,18153475,18284547,18415619,18481155,19005443,19202051,19464196,19660803,21233667,21495811,21692420,22216707,22872067,23199747,23330819,23461891,23855107,24117252,24182787,24707076,25034755,25886723,26083331,26411011,26607620,27066371,27131907,27262980,28508163,29163523,29622275,30408707,30474243,31326211,31850500,31916035,32178179,32768003,33226755,34471940,34996228,35127299,35586051,35848196,35979267,36372483,36438019,36569091,36634628,37617667,37748739,38666244,40173571,40370179,40501251,40697859,40763395,41091075],"ones":[1900545,4915203,12713985,17170435,18087937,31522817,39256065],"opinion":[20250625],"operation":[327682,1114114,1966082,2621442,3080194,3866625,4325378,4718594,5963778,6094850,7012354,7929858,8454146,9371650,13369345,15138818,16252929,16318465,17039362,18219010,18350082,18677762,19136514,20643842,21364738,21889026,22282242,23724034,24051714,24641538,24969218,25952258,26345474,27197442,27394050,27525122,28180482,28704770,29032450,30277634,30539778,30670850,30998530,31064066,31653890,34144258,36044802,37224450,37486594,37945346,40894466,41156610,41222146],"order":[1376257,8847361,14614529,19529729,23986183,31719425,34930694,40828929],"old_size":[1769482,4915201,8126468,17170433,25821191,39059457],"overview":[20185089],"occupied":[720898,1966081,4915207,5636098,6553602,8978433,12255234,12713986,14745601,15073282,17170439,19136513,20709378,20840450,23658498,24903681,25362433,28114946,28442626,29491201,31522818,31588354,32047106,32964609,38469633,39256066,39452674],"offset":[38076417],"overwritten":[1966081,19136513],"overridable":[3538945,33292289],"operand":[327681,458754,589825,851970,983043,1114116,1245186,1376257,1441793,1638402,1703937,1900546,1966084,2293761,2424834,2490369,2621442,2883585,3014657,3080196,3211265,3276801,3473409,3604481,3670017,3735553,3801089,3866626,4325378,4521985,4718594,4784129,4915202,5046273,5177345,5373953,5439489,5767170,5963778,6094850,6488065,6881281,7012354,7274498,7405573,7471106,7602178,7536642,7667714,7733250,7929858,8192002,8257537,8454145,8716290,8781825,8978433,9043970,9371651,9437186,9764865,9830401,9961473,10027010,10092546,10485761,10616834,10878977,11272194,11403265,11468802,11534338,11599875,11927554,11993089,12058625,12386305,12517377,12713985,13107201,13303810,13369345,13434882,13500418,13631489,13828099,13893634,14286849,14352386,14548993,14680066,14811138,14876673,14942210,15138818,15269890,15400961,15728642,15859713,16187395,16318468,16449538,16515073,16973825,17039364,17170434,17235969,17432577,17563649,17629185,18087938,18219009,18350082,18546689,18677762,18743298,18808834,18939905,19136517,19529730,20381697,20578308,20643842,20774914,20905985,21037057,21299201,21364737,21430273,21889025,21954561,22020098,22085634,22282242,22347777,22413316,22478849,22544386,22609921,22740993,22937601,23003137,23068673,23265281,23658497,23986177,24051714,24248321,24444930,24576001,24641542,24838145,24969218,25165825,25493505,25690114,25952260,26017793,26214401,26345474,26542082,26673154,26738691,26804225,27000834,27197442,27394049,27525123,27721731,27787265,28049409,28180481,28573698,28704771,28770306,29032451,29229057,29491201,29687810,29753351,29818883,30015489,30212098,30277634,30539778,30670850,30801922,30998530,31064065,31129602,31391745,31457282,31653890,32047105,32309249,32374786,32505857,32636929,32702466,32964609,33357826,33488897,33554434,33619970,33816578,33882114,34144260,34340865,34668545,34799617,34930689,35061761,35258369,35651586,35913730,36044802,36175873,36241410,36306945,36503554,36700162,36765697,36831233,36962305,37224450,37289986,37486594,37552130,37683201,37814273,37879810,37945345,38010882,38207489,38338562,38404097,38469633,38731777,38862850,38993922,39124994,39321601,39583745,39780353,39911425,39976962,40108033,40632322,40828929,40894466,41156609,41287682,41353217,41418754],"occur":[17235969,20316161,39911425],"ought":[8388609,16842753],"odd":[851971,1638403,4915206,9043969,14352387,16318465,16973828,17170438,22544387,24641537,27983873,28770305,34799619,36306945,37289987]} \ No newline at end of file +{"optimized":[25231361],"overload":[196609,262145,458753,655361,851969,917505,1376257,1769473,1900545,2686977,3407873,3538945,3670017,3932161,4849665,4915201,5701633,6225921,6553601,6619137,6815745,6881281,7143425,7208961,7274497,7536641,7798785,8257537,8650753,8912897,10354689,10420225,10485761,11075585,12058625,12255233,12386305,12648449,13303809,14155777,14548993,14876673,15007745,15400961,15728641,16318465,16646145,16711681,16777217,16842753,17301505,17432577,17498113,17694721,17891329,17956865,18350081,18612225,19136513,19202049,19267585,19398657,19464193,20316161,20381697,21299201,21495809,21954561,22020097,22282241,22413313,22609921,22872065,23003137,23265281,23789569,23920641,24313857,24444929,25034753,25886721,26083329,26214401,27000833,27394049,27590657,27721729,27918337,28311553,28442625,28573697,29032449,29556737,29622273,29818881,29949953,30670849,30801921,31391745,31457281,32112641,32374785,33226753,33488897,33619969,34078721,34865153,35061761,35389441,35848193,36175873,36306945,36503553,37158913,37421057,38207489,38469633,38797313,38993921,39124993,39190529,39256065,39583745,39649281,40173569,40632321,40763393,40960001,41222145],"overlap":[6291457,7733249,14090241,15269889,18677761,19005441,23134209,24772609,25493505,26345473,28901377,31522817,32899073,37879809,41156609],"operands":[524290,1703938,2752515,2818050,3473410,4390914,5177346,5505026,5963778,6291459,7405570,8060930,9764866,12517379,12910593,14352386,14417922,15532034,15925249,16908289,18677762,18808834,18939908,19005442,19070978,19333122,19726338,20054018,20250626,21168130,24772610,25100290,25362434,25493506,26279938,26345474,26411011,27852802,28377090,28901378,29163522,29294595,30932994,31522818,32440322,32899074,33292290,33882114,36044802,37289986,37748739,37879810,39387138,39780354,41025538,41156611,41287682],"occurrences":[19333121,21168129,33030146],"obsolete":[6160385,31588353],"openend":[25231361],"old":[19660801,21037057],"occurred":[3997697,9830401,11403265,15663105,16973825,20447233,21430273,25165825,34996225,36634625,38010881],"optional":[40304641],"older":[6160385,7733249,15073281,15269889,22478849,30277633,31588353],"obj":[458759,8257543,16318471,17956871,20381703,21954567,27394055,39124999],"operators":[196609,262145,655361,917505,1245185,1376257,1769473,2686977,3407873,3932161,4063233,4194305,4325377,4521985,4849665,4915201,5570561,5701633,6225921,6619137,6881281,7143425,7208961,7536641,7798785,8912897,10354689,10420225,10485761,10944513,11075585,11993090,12058625,12255233,12386305,14155777,14286849,14548993,14680066,14876673,14942209,15007745,15400961,16515073,16646145,16711681,16777217,16842753,17301505,17432577,17498113,17694721,17891329,18350081,18612225,19136513,19202049,19267585,19398657,20316161,20774914,21102594,21299201,21495809,22085633,22282241,22413313,22609921,22872065,23003137,23265281,23920641,24313857,24444929,25034753,25427970,25821185,25886721,26083329,26214401,27721729,27918337,28442625,28573697,29556737,29818881,29949953,30212097,30605314,30670849,30801921,31391745,32112641,33488897,33619969,33685505,35389441,35782658,35848193,36110337,36175873,36503553,36831233,37158913,37421057,38862850,39190529,39452673,39583745,39649281,40173569,40632321,40763393,40960001,41222145],"obtained":[18939905,19333122,21168130,32702465,35717121],"operations":[7667713,10747905,10944513,11534337,13172737,16515073,18415617,18677761,21757953,24117249,24182785,25493505,25821185,29425665,32899073,36700161,36896769,37289985,38404097,40566785],"octal":[8192001,9830401,14942209,16449537,22544385,25165825,30212097,40304641],"override":[458755,983043,1966083,2949123,3342337,3866627,4456451,5242883,8257539,13565955,16318467,16580611,17956867,18087939,19595267,20381699,20643843,21954563,24969219,25624579,27394051,29884419,30146563,31195139,31916035,35127297,38666243,39124995,40435715,40894465],"op2":[327689,1114121,2228244,3276807,5636102,7929862,8126470,8323081,8454150,8716294,8781830,8978452,9633817,9961495,11337734,12517397,12582921,12713990,12910612,13107206,13369353,13500422,15138822,15597577,15990790,17563654,18022406,18874391,19333175,21168183,21626887,21757959,22347782,22806534,23199750,27525126,29360134,29425671,29687814,30408713,30539782,31981593,34144262,34406409,34537481,34603031,35323924,35454982,35651606,37552137,37617687,37814278,38338566,38535174,38600710,39059463,39976968,41091074],"overflow":[17235969,23592961,40697857],"open":[3997698,15663106,20447234,34996226,36634625,38010882],"occurs":[12124161,32178178],"output":[3997699,7733253,11403265,14090243,14614529,15269893,15663107,16973830,18939905,19333125,20447233,21168133,21430278,23134211,25231361,32702467,34996226,35717123,38010883],"outside":[4980737],"one":[5177345,12517377,12910593,14745601,15073281,16121857,16252929,19333121,19922946,21168129,22478849,24772610,25231363,25690114,30277633,33161217,35127297,41091073],"optimal":[2752513,8060929,25231361,32899073],"overrides":[131074,458753,851969,983041,1245187,1572867,1900545,1966081,2293763,2949121,3866625,4194307,4325378,4456449,4718595,5242881,6553601,6815745,7667713,8257537,10747905,10944514,11599873,12648449,13565953,14286851,15728641,15859713,16318465,16515073,16580609,17956865,18087937,18219011,18415617,19595265,20381697,20643841,21954561,23330819,24969217,25624577,25821186,27394049,29622273,29884417,30146561,31195137,31916033,33685507,34340867,36110338,36831235,36962306,38469633,38666241,39124993,39452675,40435713],"operanf":[12517378],"object":[131076,458761,851971,1245188,1572868,1900547,2293764,4194308,4325380,4653064,4718596,5111809,6029320,6553603,6815747,7667722,7733254,8257545,8388616,10747914,10944523,11534348,12320776,12648451,13172748,14090246,14286852,15269896,15663110,15728643,16318473,16515083,16973832,17956873,18219012,18415626,20381705,21168129,21430278,21561352,21954569,23134218,23330820,24117260,24182795,25821195,27394057,29622275,32702471,33685508,34340868,35717129,36110340,36700171,36831236,36896779,36962308,38010888,38404107,38469635,38928392,39125001,39452676,40566796],"optimization":[25231361],"overlapping":[1703938,2752513,5505025,19726338,25362433,26411009,37748737,39780353],"op1":[327703,589849,1114128,2228244,3276806,5636102,7929862,8126470,8323095,8454150,8716294,8781830,8978452,9633817,9961495,10879001,11337734,12517397,12582921,12713990,12910612,13107206,13369353,13500422,15138822,15597577,15990790,17563654,18022406,18874391,19333178,21168186,21626901,21757959,22347782,22806534,23199750,27525126,29360134,29425671,29687814,30408727,30539782,31981593,34144262,34406409,34537481,34603031,35323924,35454982,35651606,37552151,37617688,37814278,38338566,38535174,38600710,39059464,39976968,41091074],"original":[27656194],"operator":[196611,917507,1376259,1769475,3407875,3932163,4521987,4849667,5701635,6225923,6619139,6881283,7143427,7208963,7536643,7798787,8519684,8912899,9306116,10354691,10420227,10485763,11075587,11927556,12058627,12255235,12386307,13238276,14155779,14548995,14876675,14942211,15007747,15400963,16646147,16711683,16777219,16842755,17301507,17432579,17498115,17629188,17694723,18350083,18612227,19136515,19202051,19267587,19398659,20316163,21299203,21495811,22282243,22413315,22609923,22740996,22872067,23003139,23920643,24313859,24379396,24444931,25034755,25886723,26214403,27131908,27197444,27721731,28049412,28442627,28573699,28966916,29556739,29818883,29949955,30212099,30801923,31391747,32112643,32243716,32964612,33488899,33619971,33751044,35389443,35848195,36175875,36372484,37158915,37421059,37945348,39190531,39583747,39649283,40173571,40632323,40763395,40960003,41222147],"ones":[1835009,15073281,18481153,19333123,21168131,30998529,31588353],"opinion":[22544385],"options":[25231361],"operation":[524290,1703938,2752514,2818050,3276801,3473410,4390914,5505026,5963778,6291458,7405570,8060930,9764866,12124161,14352386,14745601,15532034,15925249,16908290,18677762,18808834,19005442,19070978,19726338,20054018,20250626,21823490,24903682,25100290,25362434,25493506,25559042,26279938,26345474,26411010,27852802,28377090,28901378,29163522,30932994,31522818,32440322,32833538,32899074,33292290,33882114,36044802,37289986,37748738,37879810,39387138,39780354,41156610],"order":[3997697,5898241,13893633,20447233,25231362,26607623,30015489,33161222,36634625],"old_size":[1441802,9240580,19333121,21168129,29229063,34275329],"overview":[25231361],"occupied":[1048578,1703937,6094850,6160386,10027009,12976130,14024705,15073282,16252930,19333127,19726337,19988482,20185089,21168135,22478850,23986178,28114945,30081026,30277634,30343169,30736385,30998530,31588354,36569090,37093378,37355521,38273026],"offset":[40108033],"overwritten":[1703937,19726337],"overridable":[3342337,35127297],"operand":[327682,524289,589827,720897,786433,1114114,1179650,1310721,1638401,1703940,1835010,2031618,2097153,2228226,2490369,2555905,2752516,2818050,2883585,3080193,3145729,3211265,3276802,3473412,3604481,3801089,3997697,4128769,4259842,4390914,4587521,4784129,4980737,5177345,5308417,5373953,5439489,5505026,5636098,5963778,6291458,6422529,7077889,7405570,7471106,7602181,7864322,7929858,7995394,8060930,8126466,8323074,8454146,8716290,8781826,8847361,8978434,9043969,9109505,9175042,9371649,9502721,9633794,9764865,9961474,10027009,10223618,10551297,10878979,11010050,11272193,11337730,11403265,11796481,12124161,12517377,12582914,12713986,12779521,12845057,12910595,13041665,13107202,13369346,13500418,13697026,14221313,14352386,14417922,14483457,14614529,15073281,15138818,15466498,15532034,15597570,15794177,15925252,15990786,16056321,16121857,16384003,16908292,17039361,17104897,17235969,17563650,18022402,18153473,18284545,18481154,18677762,18743297,18808833,18874370,18939908,19005442,19070977,19333122,19660801,19726341,19922945,20054017,20250626,20447234,20578305,21037057,21233665,21168130,21364737,21626883,21757954,21823491,22216705,22347778,22478849,22675457,22806530,22937601,23199746,23724033,24248321,24641537,24772609,24903683,25100289,25165825,25296900,25493506,25559042,25690113,26017795,26148865,26279940,26345475,26411014,26476545,26542083,26607617,26673153,26738689,26869761,26935298,27066369,27459586,27525122,27852802,27983873,28180482,28246017,28377090,28639233,28704770,28770305,28835841,28901377,29163521,29294594,29360130,29425666,29491202,29687810,29753346,30277633,30343169,30408706,30539778,30736385,30867457,30932994,31064065,31129607,31260673,31522817,31719425,31850497,31981570,32309249,32440322,32636929,32768001,32833539,32899074,33030146,33095682,33161217,33292290,33423361,33816577,33882114,34144258,34406402,34471938,34537474,34603010,34734082,34930689,34996225,35323906,35454978,35586049,35651586,35913729,35979265,36044802,36241409,36634625,37289986,37355521,37486593,37552130,37617666,37748740,37814274,37879809,38141953,38338562,38535170,38600706,38731777,39059458,39321601,39387138,39714818,39845889,39911425,39976962,40370177,40501249,40697857,41025537,41091074,41156610,41287681],"occur":[17235969,23592961,40697857],"ought":[7733249,15269889],"odd":[1179651,2031619,7995393,13697027,15925249,18284548,19333126,21168134,23855105,26411009,27459587,29491201,31850497,33095683,39321603],"option":[25231362]} \ No newline at end of file diff --git a/docs/fti/FTI_112.json b/docs/fti/FTI_112.json index 520dcb2..d9d461a 100644 --- a/docs/fti/FTI_112.json +++ b/docs/fti/FTI_112.json @@ -1 +1 @@ -{"parameters":[262145,327681,393217,458753,589825,720897,786433,851969,983041,1114113,1179649,1245185,1376257,1441793,1507329,1638401,1703937,1769473,1900545,1966081,2031617,2293761,2424833,2490369,2555905,2621441,2686977,2883585,3014657,3080193,3211265,3276801,3342337,3473409,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4325377,4456449,4521985,4718593,4784129,5046273,5177345,5242881,5373953,5439489,5505025,5636097,5767169,5832705,5898241,5963777,6029313,6094849,6225921,6356993,6422529,6488065,6553601,6619137,6750209,6815745,6881281,6946817,7012353,7143425,7208961,7274497,7340033,7405569,7471105,7602177,7536641,7667713,7733249,7798785,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9764865,9830401,9961473,10027009,10092545,10223617,10420225,10485761,10551297,10616833,10747905,10813441,10878977,10944513,11010049,11272193,11403265,11468801,11534337,11599873,11665409,11730945,11862017,11927553,11993089,12058625,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12713985,12845057,12976129,13041665,13107201,13303809,13369345,13434881,13500417,13631489,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16711681,16777217,16842753,16908289,16973825,17039361,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18677761,18743297,18808833,18939905,19005441,19070977,19136513,19202049,19267585,19398657,19464193,19529729,19595265,19660801,19726337,19791873,20054017,20119553,20250625,20316161,20381697,20512769,20578305,20643841,20709377,20774913,20840449,20905985,21037057,21102593,21233665,21299201,21364737,21430273,21495809,21561345,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22740993,22872065,22937601,23003137,23068673,23199745,23265281,23330817,23461889,23527425,23658497,23724033,23855105,23920641,23986178,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26542081,26607617,26673153,26738689,26804225,26869761,27000833,27066369,27131905,27197441,27262977,27394049,27525121,27656193,27721729,27787265,27852801,27983873,28049409,28114945,28180481,28442625,28508161,28573697,28704769,28770305,28835841,28901377,29032449,29097985,29163521,29229057,29294593,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29949953,30015489,30081025,30146561,30212097,30277633,30408705,30474241,30539777,30605313,30670849,30801921,30867457,30932993,30998529,31064065,31129601,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31850497,31916033,32047105,32112641,32178177,32309249,32374785,32505857,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33161217,33226753,33357825,33488897,33554433,33619969,33685505,33816577,33882113,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930690,34996225,35061761,35127297,35192833,35258369,35323905,35454977,35520513,35586049,35651585,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38273025,38207489,38338561,38404097,38535169,38469633,38666241,38731777,38797313,38862849,38993921,39124993,39256065,39321601,39452673,39583745,39780353,39911425,39976961,40042497,40108033,40173569,40304641,40370177,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753],"population":[4915201,17170433,20905986],"params":[589825,4063233,6225921,8388609,9109505,13762561,14221313,15794177,16121857,16842753,20054017,21299201,23527425,23920641,25362433,30605313,32964609,34275329,34406401,34734081,34865153,38469633,40566785],"positiveinfinity":[458753,30212097],"protection":[14221313,30605313],"preceded":[4915201,17170433,22740993],"preserved":[8847361,34013185],"ptr":[1376268,1769481,4063242,4128774,4194308,4915206,5963777,6225930,6619142,8126472,9109522,9240585,9306121,10878989,11075586,13172739,13762578,14090249,15794177,16121865,16842753,17039361,17170438,17235970,19529739,20578312,21168134,22741003,23920650,25821191,26214402,26935300,28966915,30146566,30605314,31719433,32833542,33030150,34406410,34734096,34865161,36962306,37683209,38207497,39059459,40304646,40566794,40828936],"paramarray":[589825,4063233,6225921,8388609,9109505,13762561,14221313,15794177,16121857,16842753,20054017,21299201,23527425,23920641,25362433,30605313,32964609,34275329,34406401,34734081,34865153,38469633,40566785],"probably":[13631490,32899073,37814273],"pathname":[1376264,9109510,9240584,9306120,10878984,13762566,16121864,19529736,22741000,34865160,37683208,40828932],"pointed":[4128769,4915205,6619137,11075585,13172737,14090241,17170437,20578305,23527425,26935301,32833537,33030145,39059457,40304641],"power":[4915202,5177345,7471105,13041665,14876673,16187396,17170434,19070977,24576001,24772609,26279937,29949953,30998529,32112641,36306948,38731777,41025537],"preferred":[7929857,22282241,34013185],"performed":[26673153,31129601],"parameter":[1114113,1769473,1966081,3080193,4128769,5636099,6553601,12713985,16318465,19136513,21889026,23658497,24641537,25952257,31522817,32047105,34144257,37945346],"produces":[4915202,7012354,17170434,36044802],"passes":[37814275],"providing":[9306113,20185089,20250625,40828929],"property":[3145732,3538948,10158083,12779524,15532036,19333124,22675460,24379395,27459588,33292292,38076420,39190531],"passed":[1114113,1769473,1966081,3080193,4128769,14286849,16318465,19136513,24641537,25952257,26673153,31129601,34144257],"printable":[5177345],"particular":[5701633,6553601,8650753,11337729,12124161,14090241,16646145,17104897,20185089,21626881,23134209,28311553,28966913,29097985,33292289,35389441,39649281,39714817],"primality":[4915201,13631490,17170433,37814273],"possibly":[4915201,17170433,22740993],"ptrs":[4915201,17170433,23527430,26935297],"previously":[1769478,4128770,4915201,6619138,17170433,23527425,25821189,26148865,32833537,33030145,39059457,40304641],"partially":[4718593,23724033,41222145],"produce":[19333121,34930689],"preparation":[16252929],"precisely":[20578305],"primes":[30015489],"piece":[21889026,37945346],"projects":[20185089],"prec":[4915204,10944518,17170436,23003142,26148870,29097994],"patterns":[7012353,27983873,36044801],"proven":[12713985,31522817,39256065],"precision":[327682,524290,589826,851969,1114114,1638401,1900546,1966082,2228225,2490372,2621442,2818049,3014658,3080194,3211266,3670020,4259841,4325378,4718594,4915207,5111812,5177346,5701633,5767170,5963778,6094850,7012354,7405570,7667714,7864321,7929858,8192002,8257538,8454146,8650756,8716290,8978434,9371650,9437185,9764866,10944519,11141121,11337729,11403266,11927554,11993090,12386306,13238273,13303810,13369348,13434882,13500418,14352385,14680066,14942210,15073283,15138818,16187394,16318465,16646147,17039362,17104897,17170439,17235970,18087938,18219010,18350082,18677762,18808834,19136514,19333121,20185089,20578306,20643842,21364738,21889026,22020098,22085634,22282242,22413314,22544385,22937602,23003142,23134211,23265284,23724034,24051714,24248322,24641538,24838148,24969218,25952258,26148869,26345474,27197442,27394050,27525122,27787270,28180482,28704770,29032450,29097999,29818882,29884418,30277634,30539778,30670850,30998530,31064066,31195138,31653890,31719426,31981570,32374786,33292289,33357826,34144258,34668548,35913730,36044802,36241410,36765698,36962306,37224450,37289985,37486594,37552130,37879810,37945346,38207490,38731778,39059460,39321602,40632322,40894466,41156610,41222146],"position":[4915202,10485761,12058625,17170434,27525122,27983873,29032450],"provides":[21626881,28442625,31588353,39059457,39452673],"preliminary":[4915201,16318465,17170433],"performance":[1114113,16318465,20185090],"pointer":[524290,1310722,1376257,1769474,4128769,4194306,4587521,4915205,5701633,6356994,6619137,8650754,8781826,9109506,9240577,9306113,9895938,10878977,11141121,11206658,11337729,12124161,12582916,13762562,14090244,14286849,14614529,16056321,16121858,16384003,16646145,17104897,17170437,18874369,19529729,19857409,20578305,21037060,21168129,21626881,22740993,23068676,23134210,25821185,29884418,30146561,31719426,31981570,32243713,32833537,33030145,33095682,33161218,33292291,34537474,34734084,34865154,37683201,38207489,38600707,38928385,39059461,40108033,40304641,40566789,40828929],"parsed":[4063233,6225921,9109505,13762561,23920641,34406401,35520513],"past":[10485762,12058626,20578305],"powers":[36306946],"purpose":[5111809,20774913],"produced":[4915201,5177346,5963777,8388609,16842753,17170433,31719425,34734081,34930692,36765697,40566785],"problems":[34930689],"primorial":[4915201,17170433,21954561],"perfect":[4915205,6488069,16187396,17170437,29818884,36306950,36765697,39583745],"public":[262146,327683,393219,458755,524291,589827,720899,786434,851971,983043,1048579,1114115,1179650,1245187,1310723,1376259,1441795,1507330,1638403,1703939,1769475,1900547,1966083,2031618,2162691,2228227,2293763,2424835,2490371,2555907,2621443,2686979,2752515,2818051,2883587,3014659,3080195,3145731,3211267,3276803,3342339,3473411,3538947,3604483,3670019,3735555,3801091,3866627,3932162,3997698,4063235,4128771,4259843,4325379,4390915,4456450,4521987,4587523,4718595,4784131,4849667,5046275,5111811,5177347,5242883,5373955,5439491,5505027,5636099,5767171,5832706,5898242,5963779,6029315,6094851,6160387,6225923,6356995,6422530,6488067,6553603,6619139,6750211,6815746,6881283,6946819,7012355,7143427,7208962,7274499,7340034,7405571,7471107,7602179,7536643,7667715,7733251,7798786,7864323,7929859,7995395,8060930,8126467,8192003,8257539,8323075,8388611,8454147,8519683,8585219,8650756,8716291,8781827,8847363,8912899,8978435,9043971,9109507,9175043,9240579,9306115,9371651,9437187,9502723,9633795,9699330,9764867,9830403,9895939,9961475,10027011,10092547,10158083,10223619,10289155,10354691,10420226,10485763,10551299,10616835,10682371,10747907,10813442,10878979,10944515,11010050,11075587,11206659,11272195,11403267,11468803,11534339,11599875,11665410,11730947,11796483,11862018,11927555,11993091,12058627,12124163,12189699,12255235,12320771,12386307,12451843,12517379,12582915,12713987,12779523,12845059,12976130,13041667,13107203,13238275,13303811,13369347,13434883,13500419,13631491,13697027,13762563,13828099,13893635,13959171,14024706,14090243,14155778,14221315,14286851,14352387,14483458,14548995,14614531,14680067,14745603,14811139,14876675,14942211,15073283,15138819,15204354,15269891,15335427,15400963,15466498,15532035,15597570,15663107,15728643,15794179,15859715,15925250,15990787,16121859,16187395,16252931,16318467,16384003,16449539,16515075,16580611,16646147,16711683,16777218,16842755,16908291,16973827,17039363,17170435,17235971,17367042,17301506,17432579,17498114,17563651,17629187,17694723,17760258,17825794,17891331,17956867,18022402,18087939,18153474,18219011,18284546,18350083,18415618,18481154,18546691,18677763,18743299,18808835,18939907,19005442,19070979,19136515,19202050,19267587,19333123,19398659,19464195,19529731,19595267,19660802,19726339,19791875,19922947,19988483,20054019,20119555,20250627,20316163,20381699,20512771,20578307,20643843,20709379,20774915,20840451,20905987,20971523,21037059,21102595,21168131,21233666,21299203,21364739,21430275,21495810,21561347,21626883,21692419,21757955,21823491,21889027,21954563,22020099,22085635,22151171,22216706,22282243,22347779,22413315,22478851,22544387,22609923,22675459,22740995,22872066,22937603,23003139,23068675,23134212,23199746,23265283,23330818,23461890,23527427,23658499,23724035,23789571,23855106,23920643,23986179,24051715,24117251,24182786,24248323,24313859,24379395,24444931,24576003,24641539,24707075,24772611,24838147,24903683,24969219,25034754,25100291,25165827,25231363,25296899,25362435,25427971,25493507,25559043,25624579,25690115,25755651,25821187,25886722,25952259,26017795,26083330,26148867,26214403,26279939,26345475,26411010,26476547,26542083,26607619,26673155,26738691,26804227,26869763,27000835,27066370,27131906,27197443,27262979,27394051,27459587,27525123,27656195,27721731,27787267,27852803,27918339,27983875,28049411,28114947,28180483,28442627,28508162,28573699,28704771,28770307,28835843,28901379,29032451,29097987,29163522,29229059,29294595,29360131,29425667,29491203,29556739,29622274,29687811,29753347,29818883,29884419,29949955,30015491,30081027,30146563,30212099,30277635,30408706,30474242,30539779,30605315,30670851,30801923,30867459,30932995,30998531,31064067,31129603,31195139,31260675,31326210,31391747,31457283,31522819,31588355,31653891,31719427,31850499,31916034,31981571,32047107,32112643,32178178,32309251,32374787,32440323,32505859,32636931,32702467,32768002,32833539,32899075,32964611,33030147,33161219,33226754,33292291,33357827,33488899,33554435,33619971,33685507,33751043,33816579,33882115,34013187,34078723,34144259,34209795,34275331,34340867,34406403,34471939,34537475,34603011,34668547,34734083,34799619,34865155,34930691,34996227,35061763,35127298,35192835,35258371,35323907,35454979,35520515,35586050,35651587,35717123,35782659,35848195,35913731,35979266,36044803,36110339,36175875,36241411,36306947,36372482,36438018,36503555,36569090,36634627,36700163,36765699,36831235,36896771,36962307,37027843,37093379,37158915,37224451,37289987,37355523,37421059,37486595,37552131,37617666,37683203,37748738,37814275,37879811,37945347,38010883,38076419,38141955,38207491,38273027,38338563,38404099,38535171,38469635,38600707,38666243,38731779,38797315,38862851,38928387,38993923,39124995,39190531,39256067,39321603,39452675,39518211,39583747,39649283,39780355,39911427,39976963,40042499,40108035,40173570,40239107,40304643,40370178,40435715,40501250,40566787,40632323,40697858,40763394,40828931,40894467,40960003,41025539,41091074,41156611,41222147,41287683,41353219,41418755],"path":[1376258,9109506,9240578,9306114,10878978,13762562,16121858,19529730,22740994,34865154,37683202,40828929],"pass":[14090241],"perform":[2621441,4325377,4915210,5701633,6094849,8650753,11337729,12124161,13631489,14090241,16252929,16646145,17104897,17170442,18219009,18677761,21626881,23134209,24969217,27394049,28311553,28966913,30670849,31653889,35389441,39649281,39714817,40894465],"permitted":[5963777,8388609,9240577,14221313,16842753,18350081,22937601,28704769,30605313,37486593,41156609],"passing":[7667713,9437185,14680065,23986177,27394049,30015489],"purposes":[27983873,29097985,30015489],"positions":[4915201,12517377,17170433,37552129],"portability":[34930689],"probability":[13631489,37814273],"practical":[30015489],"padded":[1966081,13959169,19136513,35323905,37093377],"period":[5636097],"platform":[20185089],"product":[4915205,7733250,14811142,15728642,17170437,18350081,20643842,21954561,26345474,30998530,37486593,41287682],"probabilistic":[4915201,13631490,17170433,30015489,37814275],"portable":[1376257],"placed":[27983873],"print":[4915205,8388611,14221315,15794179,16121859,16842755,17170437,20054019,30605315,34734082,34865155,40566786,40828929],"places":[20250625],"part":[4915206,5439489,7471105,17170438,24444929,26214401,31195138,32899073,36962305,38010881,39059457,39583745],"pointers":[4915201,8585217,17170433,23527425],"provided":[20643841,26345473,28180481,30998529,31064065],"positive":[458753,983041,1245185,3604481,4915202,7274497,10092545,11468801,11599873,13303809,13434881,13500417,13828097,14942209,17170434,21954561,23986177,28770305,30212097,31457281,32374785,33554433,33816577,36241409,36700161,37814273,38076417,38338561,41418753],"performs":[13631489],"prepare":[14286850],"prime":[4915203,13631495,17170435,21954561,28770305,30015490,37814274],"printed":[40828931],"point":[589827,1179649,1441794,2228225,2490370,3014658,3211268,3670020,4521986,5701633,5767172,7667716,8192004,8257540,8650757,8716294,8978434,9306113,9437186,9764868,9830404,10944514,11141121,11403266,11927556,11993092,12386306,13303810,13369346,13500420,14286849,14614529,14680070,14942210,17235970,18808838,20250627,22020100,22085636,23003138,23265282,24248324,24838146,27787266,29097986,29884418,30081028,31391746,31719428,32374786,32964614,33357830,34668546,35061762,35717122,35913732,36241412,36962306,37879812,38076420,38207490,38404098,39059458,39256066,39321604,40108033,40632326,40828929],"possible":[5177345,10485761,12058625,12517377,14614529,16252929,20905985,22937601,28442625,31588353,31719425,33882113,40108034],"plus":[5177345,20578305,20643841,22937601,26345473],"prefixed":[40828929],"previous":[21889025,28442625,31588353,37945345],"precisions":[29097986,30081025],"properties":[2359298,8650753,11141122,12124161,12910594,16056322,16646145,17170433,21626881,23134209,23592962,28114945,32243714]} \ No newline at end of file +{"parameters":[196609,327681,458753,524289,589825,720897,786433,917505,1048577,1114113,1179649,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,2031617,2097153,2228225,2490369,2555905,2752513,2818049,2883585,3014657,3080193,3145729,3211265,3276801,3407873,3473409,3538945,3604481,3735553,3801089,3932161,3997697,4128769,4259841,4390913,4521985,4587521,4653057,4784129,4849665,4980737,5046273,5177345,5308417,5373953,5439489,5505025,5636097,5701633,5767169,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6619137,6684673,6750209,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9502721,9568257,9633793,9764865,9830401,9961473,10027009,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10682369,10878977,11010049,11075585,11141121,11272193,11337729,11403265,11665409,11730945,11796481,11927553,12058625,12124161,12255233,12320769,12386305,12517377,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13631489,13697025,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14352385,14417921,14483457,14548993,14614529,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15794177,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,18022401,18153473,18284545,18350081,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19398657,19464193,19529729,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20185089,20250625,20316161,20381697,20447233,20578305,20709377,20840449,20905985,20971521,21037057,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23134209,23199745,23396353,23461889,23527425,23592961,23658497,23724033,23855105,23920641,23986177,24051713,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,25034753,25100289,25165825,25296897,25362433,25493505,25559041,25690113,25755649,25886721,25952257,26017793,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607618,26673153,26738689,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29687809,29753345,29818881,29949953,30015489,30081025,30212097,30277633,30343169,30408705,30539777,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31260673,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161218,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34406401,34471937,34537473,34603009,34734081,34799617,34865153,34930689,34996225,35061761,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35848193,35913729,35979265,36044801,36175873,36241409,36306945,36372481,36438017,36569089,36634625,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38535169,38600705,38731777,38797313,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40173569,40239105,40304641,40370177,40501249,40632321,40697857,40763393,40960001,41025537,41091073,41156609,41222145,41287681,41418753],"project":[25231365],"population":[19333121,21168129,25690114],"params":[786433,4653057,6029313,7733249,8388609,12320769,14090241,15269889,15663105,16973825,19464193,21430273,21561345,23134209,24248321,28114945,30343169,32702465,35717121,37027841,37355521,38010881,38928385],"positiveinfinity":[327681,30408705],"protection":[14090241,23134209],"preceded":[19333121,21168129,25165825],"preserved":[5898241,32571393],"ptr":[1441801,3538950,3670020,3997708,4653066,6029322,6291457,6684678,8192009,8388626,9240584,9830409,11403277,11468802,12320786,12451843,13172745,15269889,15663113,16908289,16973825,17235970,18939912,19333126,20447243,21168134,21561354,22020100,23134210,23789574,25165835,28835842,29229063,30015497,31457286,32374790,32636930,32702480,34275331,34996233,35586057,35717130,36634632,36896771,38010889,38207494,38797318,38928394],"paramarray":[786433,4653057,6029313,7733249,8388609,12320769,14090241,15269889,15663105,16973825,19464193,21430273,21561345,23134209,24248321,28114945,30343169,32702465,35717121,37027841,37355521,38010881,38928385],"probably":[13041666,34799617,37486593],"pathname":[3997704,8192008,8388614,9830408,11403272,12320774,15663112,20447240,25165832,34996232,36634628,38010888],"pointed":[3538945,6684673,11468801,12451841,13172737,18939905,19333125,19464193,21168133,22020101,31457281,34275329,38207489,38797313],"power":[5177345,7864321,13828097,14483457,16384004,18546689,19333122,19922945,21168130,23527425,27787265,31653889,31850500,32899073,35520513,39518209,41287681],"preferred":[8060929,20250625,32571393],"performed":[21757953,29425665],"parameter":[1441793,1703937,2752513,3473409,3538945,6094851,6160385,15073281,15925249,19726337,20054018,22478849,26279937,26411009,29163522,30277633,31588353,37748737],"produces":[7405570,19333122,21168130,33292290],"passes":[37486595],"providing":[9830401,22544385,25231361,36634625],"property":[3342340,3866628,9699331,11206660,13762564,17170436,23068676,25231361,25624580,27328515,34668547,35127300,40108036],"passed":[1441793,1703937,2752513,3473409,3538945,14614529,15925249,19726337,21757953,25231361,26279937,26411009,29425665,37748737],"pacman":[25231363],"printable":[5177345],"particular":[6160385,7667713,10747905,10944513,11534337,13172737,16515073,18415617,24117249,24182785,25231361,25821185,27656193,35127297,36700161,36896769,38404097,40566785],"primality":[13041666,19333121,21168129,37486593],"possibly":[19333121,21168129,25165825],"ptrs":[19333121,19464198,21168129,22020097],"previously":[1441798,3538946,6684674,19333121,19464193,21168129,24510465,29229061,31457281,34275329,38207489,38797313],"partially":[5505025,25362433,39780353],"produce":[17170433,33161217],"preparation":[14745601],"precisely":[18939905],"primes":[22216705],"piece":[20054018,29163522],"projects":[25231363],"prec":[10682374,19333124,21168132,24510470,27656202,28639238],"patterns":[7405569,23855105,33292289],"proven":[15073281,30998529,31588353],"precision":[393218,524290,720898,786434,1179649,1703938,1835010,2031617,2097156,2162689,2424833,2752514,2818050,3145730,3211266,3473410,3604484,4194305,4390914,5111812,5177346,5505026,5636098,5963778,6291458,6488065,7405570,7602178,7667713,7929858,8060930,8454146,8716290,8781825,8847362,9502722,9764866,10027010,10682375,10747905,10944516,11272194,11337730,11599873,11796482,12124164,12582914,12713986,13369346,13697025,14286849,14352386,14417922,15532034,15597570,15925249,16252931,16384002,16515075,16908290,17170433,17235970,17563650,18415617,18481154,18677762,18808834,18939906,19005442,19070978,19333127,19726338,20054018,20250626,21168135,21233668,21823490,22937602,23199746,24510469,24772610,24903682,25100290,25231361,25296898,25362434,25493506,25559042,25821187,26279938,26345474,26411010,26542082,26869766,27459585,27525122,27656207,27852802,28246020,28377090,28639238,28901378,29097986,29163522,29294594,30015490,30932994,31326210,31522818,32440322,32636930,32833538,32899074,33095681,33292290,33882114,34144258,34275332,34406402,34537474,35127297,35454978,35586050,36044802,36241412,36831234,37289986,37748738,37879810,38600706,39059458,39387138,39780354,40370178,41025538,41156610,41287682],"position":[10551297,12779521,19333122,21168130,23855105,24903682,32833538],"provides":[24117249,30081025,34275329,36569089,38273025],"preliminary":[15925249,19333121,21168129],"performance":[2752513,15925249,25231362],"pointer":[393218,1245186,1441794,3538945,3670018,3997697,4325377,6356994,6684673,7667713,8192001,8388610,9043970,9830401,10092546,10616834,10747905,10944514,11403265,11534337,11599873,12320770,13172740,13893633,13959172,14614529,15663106,15859713,16515073,17367043,18219009,18415617,18939905,19333125,19660804,20447233,20512769,21037060,21168133,23789569,24117249,25165825,25821186,29097986,29229057,30015490,30474241,31326210,31457281,32374785,32702468,33357826,34275333,34996225,35127299,35586049,35717125,36110339,36634625,36962306,38010882,38076418,38207489,38731777,38797313,41353217],"parsed":[4653057,6029313,8388609,12320769,21561345,38928385,40304641],"past":[10551298,12779522,18939905],"powers":[31850498],"purpose":[5111809,18874369],"produced":[5177346,6291457,7733249,15269889,19333121,21168129,30015489,32702465,33161220,35717121,41025537],"problems":[33161217],"primorial":[19333121,21168129,22675457],"perfect":[6422533,16384004,19333125,21168133,26542084,31850502,39911425,41025537],"public":[196610,327683,393219,458755,524291,589827,720899,786435,917506,983043,1048579,1114115,1179651,1245187,1310723,1376258,1441795,1507331,1638403,1703939,1769474,1835011,1966083,2031619,2097155,2162691,2228227,2424835,2490371,2555907,2752515,2818051,2883587,2949123,3014659,3080195,3145731,3211267,3276803,3342339,3407874,3473411,3538947,3604483,3735555,3801091,3866627,3932162,3997699,4128771,4194307,4259843,4325379,4390915,4456451,4521986,4587523,4653059,4784131,4849666,4980739,5046275,5111811,5177347,5242883,5308419,5373955,5439491,5505027,5636099,5701634,5767171,5832707,5898243,5963779,6029315,6094851,6160387,6225922,6291459,6356995,6422531,6488067,6619138,6684675,6750211,6881282,6946819,7012355,7077891,7143426,7208962,7274499,7340035,7405571,7471107,7536642,7602179,7733251,7798786,7864323,7929859,7995395,8060931,8126467,8192003,8257539,8323075,8388611,8454147,8519683,8585219,8716291,8781827,8847363,8912898,8978435,9043971,9109507,9175043,9240579,9306115,9371651,9437187,9502723,9568259,9633795,9699331,9764867,9830403,9895939,9961475,10027011,10092547,10158083,10223619,10289155,10354690,10420226,10485762,10551299,10616835,10682371,10813443,10878979,10944516,11010051,11075586,11141123,11206659,11272195,11337731,11403267,11468803,11534339,11665411,11730947,11796483,11927555,12058626,12124163,12189699,12255234,12320771,12386306,12517379,12582915,12713987,12779523,12845059,12910595,12976131,13041667,13107203,13172739,13238275,13303811,13369347,13434883,13500419,13565955,13631491,13697027,13762563,13828099,13893635,13959171,14024707,14090243,14155778,14221315,14286851,14352387,14417923,14483459,14548994,14614531,14745603,14811139,14876674,14942210,15007746,15073283,15138819,15204355,15269891,15335427,15400962,15466499,15532035,15597571,15663107,15794179,15925251,15990787,16056323,16121859,16187395,16252931,16318467,16384003,16449539,16515075,16580611,16646146,16711682,16777218,16842754,16908291,16973827,17039363,17104899,17170435,17235971,17301506,17367043,17432578,17498114,17563651,17629187,17694722,17760259,17825795,17956867,18022403,18087939,18153475,18284547,18350082,18481155,18546691,18612226,18677763,18743299,18808835,18874371,18939907,19005443,19070979,19136514,19202050,19267586,19398658,19464195,19529731,19595267,19660803,19726339,19791875,19857411,19922947,19988483,20054019,20119555,20185091,20250627,20316162,20381699,20447235,20578307,20643843,20709379,20840451,20905987,20971523,21037059,21168131,21233667,21299202,21364739,21430275,21495810,21561347,21626883,21692419,21757955,21823491,21889027,21954563,22216707,22282242,22347779,22413314,22478851,22544387,22609922,22675459,22740995,22806531,22872066,22937603,23003138,23068675,23134211,23199747,23396355,23461891,23527427,23592963,23658499,23724035,23789571,23855107,23920642,23986179,24051715,24117251,24248323,24313858,24379395,24444930,24510467,24576003,24641539,24707075,24772611,24838147,24903683,24969219,25034754,25100291,25165827,25296899,25362435,25493507,25559043,25624579,25690115,25755651,25821188,25886722,25952259,26017795,26148867,26214402,26279939,26345475,26411011,26476547,26542083,26607619,26673155,26738691,26869763,26935299,27000835,27066371,27131907,27197443,27262979,27328515,27394051,27459587,27525123,27590659,27656195,27721730,27787267,27852803,27983875,28049411,28114947,28180483,28246019,28311555,28377091,28442626,28508163,28573698,28639235,28704771,28770307,28835843,28901379,28966915,29032451,29097987,29163523,29229059,29294595,29360131,29425667,29491203,29556738,29687811,29753347,29818882,29884419,29949954,30015491,30081027,30146563,30212098,30277635,30343171,30408707,30539779,30736387,30801922,30867459,30932995,30998531,31064067,31129603,31195139,31260675,31326211,31391746,31457283,31522819,31588355,31653891,31719427,31784963,31850499,31916035,31981571,32047107,32112642,32178179,32243715,32309251,32374787,32440323,32505859,32571395,32636931,32702467,32768003,32833539,32899075,32964611,33030147,33095683,33161219,33226755,33292291,33357827,33423363,33488898,33554435,33619970,33685507,33751043,33816579,33882115,33947651,34013187,34078723,34144259,34209795,34406403,34471939,34537475,34603011,34668547,34734083,34799619,34865155,34930691,34996227,35061763,35127299,35192835,35258371,35323907,35389442,35454979,35520515,35586051,35651587,35717123,35848194,35913731,35979267,36044803,36110339,36175874,36241411,36306947,36372483,36438019,36569091,36634627,36831235,37027843,37093379,37158914,37224451,37289987,37355523,37421058,37486595,37552131,37617667,37683203,37748739,37814275,37879811,37945347,38010883,38076419,38141955,38207491,38273027,38338563,38535171,38600707,38666243,38731779,38797315,38928387,38993923,39059459,39124995,39190530,39256067,39321603,39387139,39452675,39518211,39583746,39649282,39714819,39780355,39845891,39911427,39976963,40042499,40108035,40173570,40239107,40304643,40370179,40435715,40501251,40566787,40632322,40697859,40763394,40828931,40894467,40960002,41025539,41091075,41156611,41222146,41287683,41353219,41418755],"path":[3997698,8192002,8388610,9830402,11403266,12320770,15663106,20447234,25165826,34996226,36634625,38010882],"pass":[13172737],"perform":[2818049,4390913,5963777,7667713,10747905,10944513,11534337,13041665,13172737,14745601,15532033,16515073,18415617,18808833,19333130,21168138,24117249,24182785,25100289,25821185,27852801,30932993,33882113,36700161,36896769,38404097,39387137,40566785],"permitted":[6291457,7733249,8192001,14090241,15269889,19005441,23134209,24772609,26345473,37879809,41156609],"passing":[8454145,8781825,12713985,22216705,25100289,26607617],"purposes":[22216705,23855105,27656193],"positions":[12517377,19333121,21168129,29294593],"portability":[33161217],"probability":[13041665,37486593],"practical":[22216705],"padded":[1703937,13303809,19726337,29032449,33226753],"period":[6094849],"platform":[25231362],"product":[8126466,15466502,15990786,18677762,19005441,19333125,21168133,22675457,25493506,32899074,38338562,41156609],"puts":[25231361],"probabilistic":[13041666,19333121,21168129,22216705,37486595],"portable":[3997697],"placed":[23855105],"print":[7733251,14090243,15269891,15663107,16973827,19333125,21168133,21430275,23134211,32702466,35717122,36634625,38010883],"prefix":[25231362],"places":[22544385],"part":[5308417,7864321,19333126,21168134,26935297,28835841,29753345,32636929,34275329,34799617,36831234,39911425],"pointers":[10158081,19333121,19464193,21168129],"provided":[18677761,25493505,28901377,31522817,32899073],"positive":[327681,589825,1114113,3801089,8323073,9633793,9961473,10878977,12582913,12910593,13369345,14417921,15597569,19333122,21168130,22675457,26607617,29491201,30408705,31981569,34406401,34537473,34603009,35651585,37486593,37552129,39976961,40108033,41091073],"packages":[25231362],"performs":[13041665],"page":[25231361],"prepare":[14614530],"prime":[13041671,19333123,21168131,22216706,22675457,29491201,37486594],"printed":[36634627],"point":[720900,786435,1310722,2097154,2162689,3145730,3211268,3604484,4521985,4587522,5636100,7667713,7929862,8454148,8716292,8781826,8847364,9371652,9502724,9830401,10027010,10682370,10944517,11272194,11337732,11599873,11796482,12124162,12582916,12713990,13369346,13893633,14614529,15597570,17235970,17563654,21233666,22544387,22937604,23199748,26869762,27525124,27656194,28246018,28639234,30015492,30998530,31326210,32047108,32309250,32636930,32768002,34144260,34275330,34406404,34537474,35454980,35586050,35979266,36241410,36634625,37355526,38600710,38731777,39059462,39452674,40108036,40370180],"possible":[5177345,10551297,12517377,12779521,13893633,14745601,24772609,25690113,30015489,30081025,36569089,37617665,38731778],"plus":[5177345,18677761,18939905,24772609,25493505],"prefixed":[36634625],"previous":[20054017,25231361,29163521,30081025,36569089],"precisions":[27656194,32047105],"properties":[2359298,10944513,11534337,11599874,11862018,15859714,16515073,21168129,22151170,24117249,25821185,30474242,37093377]} \ No newline at end of file diff --git a/docs/fti/FTI_113.json b/docs/fti/FTI_113.json index ff5f39d..40b9605 100644 --- a/docs/fti/FTI_113.json +++ b/docs/fti/FTI_113.json @@ -1 +1 @@ -{"qxn":[23724033,28704774,41222155],"qualified":[131073,4587521,33095681,38600705],"quotient":[2555906,2686978,4915220,6946817,8912898,10747905,11534342,11730946,12845058,16711682,17170452,19070978,19136514,19791874,20512770,21889025,22151170,23724034,26279938,28704777,29556738,34603010,37945345,38797314,41025538,41222146],"quality":[28442625,31588353],"quite":[28442625,31588353]} \ No newline at end of file +{"qxn":[25362433,26345478,39780363],"qualified":[131073,4325377,36110337,36962305],"quotient":[1507330,3014658,7340033,9568257,11010054,11141122,11665410,11730946,17825794,18546690,19333140,19726338,19791874,20054017,20905986,21168148,24838146,25362434,26345481,27787266,29163521,32505858,34013186,35258370,39518210,39780354],"quality":[30081025,36569089],"quite":[30081025,36569089]} \ No newline at end of file diff --git a/docs/fti/FTI_114.json b/docs/fti/FTI_114.json index aa2cdc0..4fca997 100644 --- a/docs/fti/FTI_114.json +++ b/docs/fti/FTI_114.json @@ -1 +1 @@ -{"raised":[25559041,27656193],"rem":[4915201,17170433,24444952,39583762],"root":[4915210,5439490,6488066,7471106,9764865,11403265,17170442,24444957,36765697,39583766],"room":[20578307,21037057,23068673],"reps":[13631497,37814279],"remove":[3604481,4915202,17170434,35651585],"ring":[33882113],"readallbytes":[1376258],"returned":[4915201,6750210,6881281,8781825,9633793,10485762,12058626,14614529,17170433,17235970,20316161,21102593,22347777,24576001,25427970,25493505,27721730,28180481,31064065,31719428,32899073,34930690,36110338,38207489,39911426,40108033,40566785],"really":[20250626,21889025,37945345],"releases":[20578306],"repeated":[8847361,28442625,31588353],"rabin":[13631490],"r2p":[4915201,17170433,36765716],"redirected":[1],"rationals":[983041,2883585,3342337,3604481,9240577,10092546,11599873,20774913,21299207,21430273,26673153,26804225,29491201,31129601,31457282,34340865,35520513,37683201,38469639],"retval":[4915202,5963777,8388609,16842753,17170434,36765697],"retain":[29097985],"remaining":[4915201,17170433,19136513],"resilience":[27983873],"required":[1114113,1703938,1966081,3801090,4915208,5963777,7536642,16318465,17170440,19136513,20578306,22609922,24576001,24641537,26738690,27525121,27983873,28442625,28573698,29032449,30801922,31588353,31719425,34144257,34930689,36175874,38731778],"resources":[5701633,8650753,11337729,12124161,14090241,16646145,17104897,20185089,21626881,23134209,28311553,28966913,35389441,39649281,39714817],"remains":[8781825],"reallocations":[8847361,16252929,33292289],"resized":[1769473],"routines":[1900545,18087937,21889025,37945345],"recommended":[13107201,14221313,14548993,17563649,20709377,28049409,30605313],"reflects":[29097985],"reclaimed":[5701633,8650753,11337729,12124161,14090241,16646145,17104897,21626881,23134209,28311553,28966913,35389441,39649281,39714817],"released":[5505025,6160385],"regular":[4915202,7012354,17170434,36044802],"radix":[8650753,11141121,31719425,38076420],"returns":[131076,393217,917506,1048577,1310723,1572867,1835011,2097154,2752513,3080193,4259843,4390913,4587524,4653059,4784129,4915202,6291458,6684674,7012354,7995393,8519681,9502721,12124162,12648450,13238275,13369346,13697025,14090241,14286849,15007746,15663105,16908290,17170434,18874371,19726337,20119553,20250626,20971521,21626881,23068673,25624577,25755649,25952257,27852801,28246019,28311553,28901377,28966913,29360129,29425665,30736387,30867457,31195139,31260673,31784962,32440321,33095684,34078721,34209794,34930689,35389441,35717123,36044802,37158913,37355521,37814274,38141955,38600708,39649281,39714818,39845890,40435713],"results":[458753,5636097,13303809,29097985,30212097],"removed":[35651585],"rof":[16187393,18219009,20840449,27197441,29818881,30277633],"rational":[983041,2359298,2883587,3342342,3604481,3735556,4915205,5046275,6881281,7864321,9240582,10092546,10158082,11534340,11599873,13107209,14548999,14811140,16646150,17104898,17170437,17432579,17563655,20774914,21299201,21430275,25493505,26542084,26673157,26804230,28049417,29097986,29491203,29753347,31129605,31391746,31457282,31981570,34340867,35520515,35782658,36503556,37683201,38469633,38535170,38862852,38993924,39059457,39190530,39911426,40108034,41353220],"routine":[4915201,10878977,17170433,17432577,27459585,33161217],"readable":[14286849],"replace":[4915201,8126465,8847362,14286850,16908290,17170433,21037058,23068674,34013186,34209794,35520513],"readalltext":[16121858,19529730,34865154,37683202,40828929],"random":[720904,1900547,4915211,5636103,6160386,6553609,12255237,12713997,15073287,17170443,18087939,20709381,20840456,23658507,24903681,28114949,28442632,31522825,31588360,32047115,39059457,39256070,39452677,39649282],"rand":[720898,20840450],"reverse":[2293761,18546689,25165825,32505857],"readonly":[3145729,3538945,10158081,10289154,10354690,11796482,14286849,15532033,19333121,19988482,22675457,27459585,27918338,33292289,38076417,39190529,40239106],"reasonable":[13631489,37814273],"ref":[8126470,8585222,8650753,12124161,14090241,16646145,17170433,21102594,21626881,23134209,34930690,39649281],"representable":[40828929],"rounded":[4915203,11993089,17170435,24248321,28704769,39321601],"rounding":[3735553,4915207,17170439,17235969,20316162,21102594,38207489,39911425,41353217],"reallocation":[8126465,8585217,8847361,16252930],"resolution":[28442625,31588353],"result":[327691,1114123,1441793,1900545,1966085,2293762,2424833,2555905,2621452,2686977,3080205,3211265,3473409,3670017,3735553,3866625,4325388,4521985,4718604,4915238,5046273,5177345,5439489,5767169,5963790,6094860,6553601,6946817,7012367,7471105,7667713,7733249,7929868,8192001,8257537,8454157,8716289,8912898,9240577,9306113,9371650,9437185,9764865,9830401,10616834,10747905,10878978,10944513,11272193,11403265,11534337,11730946,11927553,11993089,12451841,12713985,12845057,13107201,13369345,13434882,13828098,13893633,14548993,14614531,14680065,14811137,15073281,15138828,15269889,15400961,15728641,15990785,16318470,16449537,16515073,16711681,17039362,17170470,17235969,17432577,17563649,17891329,18087937,18219020,18350093,18546689,18677772,18743297,18808833,19070977,19136518,19267585,19333121,19529732,19791874,20250625,20316161,20512770,20578316,20643852,21364747,21430273,21561346,21823489,21889039,21954561,22020097,22085633,22151169,22282252,22478849,22740993,22937606,23265281,23658497,23724042,23986177,24051723,24248321,24313858,24444930,24576002,24641547,24772609,24838145,24969228,25165825,25559041,25690113,25952269,26214401,26279937,26345484,26542081,26673153,26804225,26869761,27000833,27197452,27394060,27525122,27656193,27721734,27983873,28049409,28180492,28704774,28835841,29032450,29097985,29294593,29556737,29687809,29753345,29949953,30015489,30081026,30277644,30539788,30670860,30998539,31064076,31129601,31391745,31522817,31653900,31719426,32047105,32112641,32505858,32702465,32899073,33357825,33488897,33619969,33816577,33882114,34144267,34603010,34668545,34930720,35061761,35520513,35651586,35913729,36044815,36503553,36765709,36896769,36962305,37224452,37486604,37683204,37879809,37945359,38010882,38273025,38338562,38404097,38731780,38797314,38862849,38993921,39124993,39256065,39321601,39583746,39911425,39976961,40042497,40108036,40632322,40828930,40894476,41025537,41156621,41222154,41287681,41353217,41418753],"retrieve":[8126468,8585218,9633794,14614530,32899074,40108034],"represent":[16908290,20250626,22740994],"recent":[29097985],"return":[262145,393217,458754,524289,720897,786433,851969,983042,1048577,1179649,1245186,1376259,1507329,1638401,1703938,1769474,2031617,2162689,2555909,2686981,2752513,2883587,3014659,3080193,3276803,3801090,3932161,3997697,4063235,4390913,4456449,4784130,4849665,4915276,5111810,5177346,5373955,5701633,5832705,5898241,5963778,6029315,6225923,6356994,6422529,6488066,6750210,6815745,6881283,7012355,7143425,7208961,7274498,7340033,7405571,7471106,7536642,7602178,7798785,7929858,7995393,8060929,8126468,8388611,8519681,8650754,9043969,9109507,9240578,9306115,9371649,9502721,9633794,9699329,9895937,9961477,10027010,10092546,10158081,10223617,10420225,10485763,10551297,10813441,10878979,11010049,11206657,11337729,11468802,11599874,11665409,11730949,11862017,12058627,12320769,12386306,12517380,12582914,12976129,13041666,13303810,13369345,13434882,13500418,13631492,13697025,13762563,14024705,14155777,14221314,14286849,14352385,14483457,14614529,14876674,14942210,15138818,15204353,15335426,15466497,15597569,15663105,15794178,15859715,15925249,16121858,16187394,16318469,16384001,16646145,16711685,16777217,16842755,16908289,16973826,17039362,17104897,17170508,17235969,17301505,17367041,17498113,17629189,17694722,17760257,17825793,17956866,18022401,18153473,18284545,18350082,18415617,18481153,18939907,19005441,19136514,19202049,19267590,19464193,19529731,19660801,19726337,19922946,20054018,20119553,20250625,20316161,20381699,20512773,20578306,20643842,20774915,20840449,20905988,20971521,21037059,21102595,21233665,21495809,21561348,21692417,21889030,22216705,22282242,22347778,22413314,22544385,22609922,22740995,22872065,22937602,23068674,23134209,23199745,23330817,23461889,23724034,23789569,23855105,23920643,24117249,24182785,24379393,24576003,24707073,25034753,25427970,25493507,25624577,25755649,25821185,25886721,25952257,26017795,26083329,26214402,26345474,26411009,26476545,26607617,26738690,27066369,27131905,27197442,27262977,27394050,27525122,27721731,27787266,27852801,28180483,28508161,28573698,28770305,28835845,28901377,29032450,29163521,29229061,29294597,29360129,29425665,29622273,29818882,29884417,30212098,30277634,30408705,30474241,30539778,30605314,30801922,30867457,30998530,31064067,31260673,31326209,31457282,31719425,31850497,31916033,31981569,32178177,32309251,32374786,32440321,32636931,32768001,32899076,33226753,33554434,33751041,33882117,34078721,34209793,34406403,34471937,34537474,34603013,34734083,34799618,34865154,34930690,34996225,35127297,35258373,35520514,35586049,35651588,35717121,35782658,35848193,35979265,36044803,36110338,36175874,36241410,36306946,36372481,36438017,36569089,36634625,36700162,36765700,36831237,36962306,37158913,37289985,37355521,37552129,37617665,37683203,37748737,37814273,37945350,38207491,38666241,38731778,39059457,39190529,39452675,39518209,39780357,39911425,40108033,40173569,40370177,40435713,40501249,40566787,40697857,40763393,40828931,41091073,41222146],"runtime":[20185089],"reallocate":[1769478,4128769,4915201,6356993,8126470,8585224,17170433,33292289],"r1n":[1900550,4915202,17170434,18087942],"reading":[9240577],"restrictions":[23986177,33292289,34930689],"read":[1376258,4063234,4915210,6225922,6553601,9109510,9240584,9306119,10878982,12582913,12713985,13762566,17170442,22740998,23658497,23920646,23986178,31522817,32047105,34406406],"represents":[1310721,4259841,4587521,8650753,12124162,13238273,14090242,16646145,21626881,23134209,28311553,28966913,31195137,35389441,35717121,38141953,38600705,39059470,39649282,39714817],"ranges":[9306113,20250625],"returning":[4915201,17170433,21102593,21561345],"rely":[6553601,12713985,23658497,31522817,32047105],"rop":[1441798,2424856,3211270,3473432,3670023,3735558,3866630,4521990,4915313,5046278,5242886,5439512,5767174,6029326,6553617,7471129,7667718,7733254,8192006,8257542,8323078,8716294,9175046,9240582,9306118,9437190,9764870,9830406,10616856,10878982,10944519,11272216,11403270,11927558,11993094,12255246,12451863,12714001,13369352,13828120,13893638,14680070,15073300,15269895,15400966,15728646,15990808,16449543,16515096,16908294,17170545,18743302,18808838,19398662,19595270,20250630,21430278,21757958,21823512,21954584,22020102,22085638,22478854,22740998,23265287,23658513,23986201,24248326,24838151,25100294,25296902,25559064,25690118,26542086,26673160,26804230,26869784,27000838,27656216,27721734,27983896,29097995,29687832,30015512,31129608,31391750,31522833,32047121,32702471,33357830,33488920,33619974,33816602,33882140,34209799,34668551,34930703,35061766,35520518,35651608,35913734,37879814,38010904,38273048,38404102,38535174,38862854,39124999,39256081,39321606,39976984,40632326,40960006,41287686,41353222,41418760],"release":[327682,458754,589825,851970,983042,1114114,1245185,1376258,1441794,1638402,1900546,1966082,2293762,2424834,2490370,2555906,2621442,2686978,2883586,3014658,3080194,3211266,3276802,3342338,3473410,3670018,3735554,3866626,4063234,4325378,4521986,4718594,4784130,5177346,5242882,5373954,5439490,5767170,5963778,6029314,6094850,6225922,6488066,6750210,6881282,6946818,7012354,7274498,7405570,7471106,7602178,7667714,7733250,7929858,8192002,8257538,8323074,8388610,8454146,8716290,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437185,9633794,9764866,9830402,9961474,10027010,10092546,10289153,10485762,10616834,10747906,10878978,10944514,11272194,11403266,11468802,11599874,11730946,11927554,11993090,12058626,12386306,12451842,12517378,12582914,12845058,13041666,13107202,13303810,13369346,13434882,13500418,13631490,13762562,13828098,13893634,13959169,14221314,14286850,14352386,14548994,14614530,14680066,14745602,14876674,14942210,15138818,15269890,15335426,15400962,15728642,15794178,15859714,15990786,16121858,16187394,16252930,16318465,16449538,16515074,16711682,16842754,16908290,16973826,17039362,17170433,17235970,17563650,17629186,17694722,17891330,18087938,18219010,18350082,18546690,18677762,18743298,18808834,18939906,19070978,19136514,19267586,19398658,19529730,19595266,19791874,20054018,20250626,20316162,20381698,20512770,20578306,20643842,20774914,20905986,21037058,21102594,21299202,21364738,21430274,21561346,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22282242,22347778,22413314,22478850,22544386,22740994,22937602,23003138,23068674,23265282,23724034,23920642,23986178,24051714,24248322,24313858,24444930,24576002,24641538,24772610,24838146,24969218,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25690114,25952258,26017794,26279938,26345474,26673154,26804226,26869762,27000834,27197442,27394050,27525122,27656194,27721730,27787266,27983874,28049410,28180482,28377089,28704770,28770306,28835842,29032450,29097986,29229058,29294594,29491202,29556738,29687810,29818882,29949954,30015490,30081026,30212098,30277634,30539778,30605314,30670850,30998530,31064066,31129602,31391746,31457282,31653890,31719426,32112642,32309250,32374786,32505858,32636930,32702466,32899074,32964610,33357826,33488898,33554434,33619970,33816578,33882114,34013186,34144258,34209794,34275330,34340866,34406402,34603010,34668546,34734082,34799618,34865154,34930690,35061762,35192834,35258370,35323905,35520513,35651586,35913730,36044802,36110338,36241410,36306946,36700162,36765698,36831234,36896770,36962306,37027841,37093377,37224450,37289986,37421057,37486594,37552130,37683202,37814274,37879810,37945346,38010882,38273026,38207490,38338562,38404098,38535170,38469634,38731778,38797314,39124994,39321602,39583746,39780354,39911426,39976962,40042498,40108034,40566786,40632322,40828929,40894466,40960002,41025538,41156610,41222146,41287682,41353218],"rop2":[3342342,4915204,17170436,25231366,30081030,39583750],"reallocates":[8781825,27459585],"regions":[28180481,31064065],"relies":[20185089],"reallocate_function":[8126476,8585224,25821189,39059457],"raw":[1376257,4915202,5177345,17170434],"randomness":[6553601,20709377,28114945,28442626,31588354],"requires":[1114113,1966081,3080193,10944513,16318465,18350081,19136513,21037057,23068673,24641537,25952257,30539777,34144257,38731777],"representation":[1572865,1835009,1900545,2162690,4259841,4653057,4915203,5177346,5701633,8650753,11337729,12713985,13238273,16646145,17104897,17170435,17956866,18087937,19922946,20905985,22937602,23134209,23789570,26476546,28246017,30736385,31195137,31522817,33751042,35717121,35782658,38141953,39256065,39518210],"relations":[38338561],"represented":[3145729,4259841,5177345,13238273,22675457,31719425],"respectively":[2293764,32505860,38338562],"relative":[4915201,17170433,40632321],"reduce":[13631489],"right":[4915201,17170433,24576001,31064066],"resize":[1769473,4915201,8847364,17170433,21037058,23068674,25821185,34013189,39059457],"reason":[5636097],"r1p":[1900557,4915205,17170437,18087949,23724050,36765715,41222163],"requirements":[1114113,3080193,6553601,20709377,24641537,25952257,34144257],"rule":[7602177,10027009,15335425,17694721],"remainder":[2555906,2686978,4915226,6750210,7602177,8912898,10027009,11730946,14876673,16711682,17170458,17891330,19136519,19267586,19791874,20512770,21561347,21889029,22413314,23724037,24313857,24444930,24772610,25427970,28704776,28835842,29294594,29949954,32112642,34603010,36110338,36765703,36896770,37945349,38797314,39583746,40042498,41222149],"realloc_func_ptr":[8126469,8585221],"representing":[3145730,4915201,8650753,8781825,11141121,12582914,16056321,17170433,22675458,23134209],"rop1":[3342342,4915206,17170438,25231366,30081030,39583752],"regiom":[8388609,16842753],"roots":[5439489,6488065,7471105,24444929,36306945,39583745],"realloc":[10944513],"reads":[8454145],"restore":[8126466,29097987],"related":[2293761,18546689,25165825,32505857],"refer":[20185089],"range":[720900,4784129,4915204,5177345,12713987,14614529,15073282,17170436,19529729,20840451,21102593,22937601,23658499,28180481,31064065,31719425,32047107,38207489,39256065,40828929],"reference":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1835009,1769473,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4980737,4915203,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,6029313,5963777,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881286,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170435,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493510,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38273025,38207490,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753],"recurrence":[5636097],"rest":[28180481,31064065],"r2n":[36765700],"reallocated":[21037057,23068673],"remarks":[458753,589825,851969,983041,1114113,1179649,1310721,1376257,1638401,1769473,1900545,1966081,2293761,2424833,2490369,3080193,3145729,3538945,3670017,3866625,4128769,4259841,4587521,4718593,4784129,5111809,5177345,5505025,5636097,5963777,6029313,6160385,6356993,6488065,6553601,6881281,7012353,7602177,7667713,7929857,8126465,8388609,8454145,8650753,8781825,8847361,8978433,9043969,9240577,9306113,9437185,9633793,10027009,10092545,10485761,10878977,10944513,11272193,11599873,12058625,12124161,12451841,12517377,12582913,12713985,13041665,13107201,13238273,13303809,13369345,13631489,13828097,13959169,14090241,14221313,14286849,14352385,14548993,14614529,14680065,14745601,14876673,15073281,15335425,15532033,16252929,16318465,16515073,16646145,16842753,16908289,17039361,17170433,17235969,17432577,17498113,17563649,17694721,18087937,18350081,18546689,19136513,19333121,19529729,20250625,20316161,20578305,20643841,20709377,20774913,20840449,20905985,21037057,21102593,21561345,21757953,21889025,22282241,22347777,22413313,22544385,22675457,22740993,22937601,23003137,23068673,23134209,23265281,23527425,23658497,23724033,23986177,24313857,24576001,24641537,24838145,25165825,25296897,25493505,25559041,25952257,26148865,26214401,26345473,26673153,26869761,27394049,27459585,27525121,27656193,27721729,27983873,28049409,28114945,28180481,28442625,28704769,28770305,29032449,29097985,29491201,29818881,30015489,30081025,30212097,30539777,30605313,30998529,31064065,31129601,31195137,31457281,31522817,31588353,31719425,32047105,32178177,32505857,32833537,32899073,33030145,33292289,33816577,33882113,34013185,34144257,34209793,34340865,34668545,34734081,34930689,35323905,35520513,35717121,36044801,36306945,36765697,36962305,37027841,37093377,37224449,37289985,37421057,37486593,37683201,37814273,37945345,38010881,38076417,38141953,38273025,38207489,38338561,38535169,38600705,38731777,39256065,39452673,39649281,39911425,39976961,40108033,40304641,40566785,40828929,40960001,41156609,41222145,41418753]} \ No newline at end of file +{"raised":[24051713,25755649],"rem":[19333121,21168129,26935320,39911442],"root":[720897,5308418,6422530,7864322,11796481,19333130,21168138,25231361,26935325,39911446,41025537],"reopen":[25231361],"room":[18939907,19660801,21037057],"reps":[13041673,37486599],"remove":[3801089,19333122,21168130,33030145],"ring":[37617665],"readallbytes":[3997698],"returned":[6946818,7077889,8585217,9043969,10551298,12779522,13893633,17235970,19333121,19529729,19922945,21168129,21626882,23592961,23724033,24576002,27066369,28901377,30015492,31522817,33161218,34799617,35586049,35717121,38731777,40697858,41418754],"really":[20054017,22544386,29163521],"releases":[18939906],"repeated":[5898241,30081025,36569089],"runs":[25231361],"rabin":[13041666],"r2p":[19333121,21168129,41025556],"redirected":[1],"rationals":[589825,2555905,3735553,3801089,8192001,9633794,10878977,18874369,21757953,24248327,24641537,26148865,29425665,30343175,30736385,31981570,34996225,35913729,40304641],"retval":[6291457,7733249,15269889,19333122,21168130,41025537],"retain":[27656193],"remaining":[19333121,19726337,21168129],"resilience":[23855105],"required":[1638402,1703937,2752513,4259842,4784130,6291457,15925249,18939906,19333128,19726337,19922945,20578306,21168136,23855105,24903681,26017794,26411009,28704770,30015489,30081025,32833537,33161217,34734082,36569089,37748737,40501250,41287682],"resources":[7667713,10747905,10944513,11534337,13172737,16515073,18415617,24117249,24182785,25231361,25821185,36700161,36896769,38404097,40566785],"remains":[9043969],"reallocations":[5898241,14745601,35127297],"resized":[1441793],"routines":[1835009,18481153,20054017,29163521],"recommended":[12845057,14090241,14221313,18743297,23134209,23986177,33423361],"reflects":[27656193],"reclaimed":[7667713,10747905,10944513,11534337,13172737,16515073,18415617,24117249,24182785,25821185,36700161,36896769,38404097,40566785],"released":[5832705,6750209],"regular":[7405570,19333122,21168130,33292290],"radix":[10944513,11599873,30015489,40108036],"returns":[131076,458753,851970,983041,1245187,1572867,1900546,2293763,2949121,3473409,4194307,4325380,4456449,4718595,4980737,6553602,6815746,7274497,7405570,8257537,11534338,12124162,12648450,13172737,13565953,14286851,14614529,15728642,16318465,16449538,17956865,18219011,19333122,20381697,20643841,21037057,21168130,21954561,22544386,23330819,24117249,24182785,24969217,26279937,27000833,27394049,27590657,28311553,29622274,30146561,31916033,32178178,33161217,33292290,33685507,34340867,35061761,36110340,36306945,36700161,36831235,36896769,36962308,37486594,38404098,38469634,38993921,39124993,39256065,39452675,40566785,40894465],"results":[327681,6094849,13369345,27656193,30408705],"removed":[33030145],"rof":[16384001,18808833,19988481,26542081,32440321,36044801],"rational":[589825,2359298,2555907,3735558,3801089,4128772,5439491,6488065,7077889,8192006,9633794,9699330,10878977,11010052,12845063,14221321,15466500,16515078,18415618,18743303,18874370,19333125,21168133,21364739,21757957,22806532,24248321,24641542,26148867,27066369,27656194,29097986,29425669,30343169,30736387,31129603,31981570,32309250,33423369,34275329,34471940,34668546,34996225,35913731,37814276,38731778,39714820,39845892,40239106,40304643,40435714,40697858],"routine":[11403265,19333121,21168129,21364737,23068673,38076417],"readable":[14614529],"replace":[5898242,9240577,14614530,16449538,19333121,19660802,21037058,21168129,32178178,32571394,40304641],"readalltext":[15663106,20447234,34996226,36634625,38010882],"random":[1048584,1835011,5832706,6094855,6160393,12976133,15073293,16252935,18481155,19333131,19988488,20185089,21168139,22478859,23986181,30081032,30277643,30998534,31588361,34275329,36569096,37093381,38273029,40566786],"rand":[1048578,19988482],"reenter":[25231361],"reverse":[2490369,17104897,26738689,38141953],"readonly":[3342337,3866625,9437186,9699329,9895938,12189698,13762561,14614529,17170433,20119554,23068673,25624577,34209794,34668545,35127297,40108033,40828930],"reasonable":[13041665,37486593],"ref":[9240582,10158086,10944513,11534337,13172737,16515073,19529730,21168129,24117249,25821185,33161218,40566785],"representable":[36634625],"rounded":[8847361,19333123,21168131,22937601,26345473,40370177],"rename":[25231362],"rounding":[4128769,17235969,19333127,19529730,21168135,23592962,35586049,39845889,40697857],"reallocation":[5898241,9240577,10158081,14745602],"resolution":[30081025,36569089],"result":[524299,720897,1310721,1507329,1703941,1835009,2228225,2490370,2752523,2818060,3014657,3080193,3211265,3276801,3473421,3604481,4128769,4390924,4587521,5177345,5308417,5439489,5505036,5636097,5963788,6160385,6291470,7340033,7405583,7864321,7929857,8060940,8126465,8192001,8454145,8716289,8781825,8847361,8978433,9371649,9502721,9568257,9764877,9830401,10223618,10682369,11010049,11141122,11337729,11403266,11665410,11730945,11796481,12124161,12713985,12845057,12910594,13107201,13500417,13631489,13893635,14221313,14352396,14417922,15073281,15138817,15335425,15466497,15532044,15925254,15990785,16056321,16121857,16187393,16252929,16908290,17104897,17170433,17235969,17563649,17825793,18022401,18481153,18546689,18677772,18743297,18808844,18939916,19005453,19070987,19333158,19726342,19791874,19857410,19922946,20054031,20250636,20447236,20905986,20971521,21168166,21233665,21364737,21626886,21757953,21823490,21889025,22216705,22347777,22478849,22544385,22675457,22806529,22937601,23199745,23527425,23592961,23658497,23855105,24051713,24641537,24772614,24838145,24903682,25100300,25165825,25362442,25493516,25559051,25755649,26148865,26279949,26345478,26411019,26607617,26738689,26935298,27262978,27525121,27656193,27787265,27852812,27983873,28180481,28246017,28377100,28508161,28835841,28901388,29163535,29360129,29425665,29687809,29753346,30015490,30277633,30539777,30933004,30998529,31129601,31522828,31588353,31653889,31719425,32047106,32309249,32440332,32505858,32636929,32768001,32833538,32899083,33030146,33161248,33292303,33423361,33882124,33947649,34013186,34144257,34471937,34799617,34996228,35192833,35258369,35323905,35454977,35520513,35651585,35979265,36044812,36241409,36634626,37289988,37617666,37683201,37748747,37814273,37879821,38141954,38338561,38535169,38600705,38731780,39059458,39387148,39518209,39714817,39780362,39845889,39911426,39976961,40042497,40304641,40370177,40697857,41025549,41091074,41156620,41287684],"retrieve":[8585218,9240580,10158082,13893634,34799618,38731778],"represent":[16449538,22544386,25165826],"recent":[25231361,27656193],"return":[196609,327682,393217,458753,589826,917505,983041,1048577,1114114,1179649,1376257,1441794,1507333,1638402,1769473,1966081,2031617,2555907,2883587,2949121,3014661,3145731,3407873,3473409,3932161,3997699,4259842,4456449,4521985,4653059,4784130,4849665,4980738,5111810,5177346,5242881,5373955,5701633,5767171,6029315,6225921,6291458,6356994,6422530,6619137,6881281,6946818,7077891,7143425,7208961,7274497,7405571,7471106,7536641,7602179,7667713,7733251,7798785,7864322,7995393,8060930,8192002,8257537,8323074,8388611,8519681,8585218,8912897,9109509,9175042,9240580,9306113,9633794,9699329,9830403,9961474,10092545,10354689,10420225,10485761,10551299,10616833,10747905,10878978,10944514,11075585,11141125,11272194,11403267,11927553,12058625,12124161,12255233,12320771,12386305,12517380,12582914,12779523,13041668,13238273,13369346,13565953,13697025,13828098,13893633,13959170,14090242,14155777,14352386,14417922,14483458,14548993,14614529,14811138,14876673,14942209,15007745,15269891,15400961,15597570,15663106,15794179,15925253,16318465,16384002,16449537,16515073,16580610,16646145,16711681,16777217,16842753,16908290,16973826,17039365,17235969,17301505,17367041,17432577,17498113,17629185,17694721,17760258,17825797,17956865,18087938,18153475,18284546,18350081,18415617,18612225,18677762,18874371,18939906,19005442,19136513,19202049,19267585,19333196,19398657,19529731,19595265,19660803,19726338,19791877,19857412,19922947,19988481,20054022,20250626,20316161,20381697,20447235,20578306,20643841,20971526,21037058,21168204,21299201,21430274,21495809,21561347,21626883,21823489,21954561,22282241,22413313,22544385,22609921,22740993,22872065,23003137,23134210,23592961,23724034,23920641,24313857,24379393,24444929,24576002,24772610,24903682,24969217,25034753,25100290,25165827,25296898,25362434,25493506,25690116,25821185,25886721,26017794,26214401,26279937,26476547,26542082,26673157,26869762,27000833,27066371,27131905,27197441,27328513,27394049,27459585,27590657,27721729,28049409,28311553,28377090,28442625,28508165,28573697,28704770,28770309,28835842,28901379,28966913,29097985,29163526,29229057,29294593,29491201,29556737,29818881,29884417,29949953,30015489,30146561,30212097,30408706,30801921,30867459,31064067,31195137,31260675,31326209,31391745,31522819,31850498,31916033,31981570,32112641,32178177,32243713,32440322,32505861,32636930,32702467,32833538,32899074,32964609,33030148,33095681,33161218,33292291,33357826,33488897,33619969,33751041,33816581,33947653,34275329,34406402,34537474,34603010,34668545,34734082,34799620,34930693,34996227,35061761,35389441,35586051,35717123,35848193,36044802,36175873,36306945,36372481,36634627,37158913,37421057,37486593,37552130,37617669,37945345,38010882,38273027,38666241,38731777,38928387,38993921,39124993,39190529,39256065,39321602,39452673,39583745,39649281,39780354,40173569,40304642,40435714,40501250,40632321,40697857,40763393,40894465,40960001,41025540,41222145,41287682,41418754],"runtime":[25231362],"reallocate":[1441798,3538945,6356993,9240582,10158088,19333121,21168129,35127297],"r1n":[1835014,18481158,19333122,21168130],"reading":[8192001],"restrictions":[26607617,33161217,35127297],"read":[3997698,4653058,6029314,6160385,8192008,8388614,9830407,11403270,12320774,13959169,15073281,19333130,21168138,21561350,22478849,25165830,26607618,30277633,31588353,38928390],"represents":[1245185,4194305,4325377,10944513,11534338,13172738,14286849,16515073,24117249,24182785,25821185,33685505,34275342,36110337,36700161,36831233,36896769,38404097,39452673,40566786],"ranges":[9830401,22544385],"returning":[19333121,19529729,19857409,21168129],"rely":[6160385,15073281,22478849,30277633,31588353],"rop":[720902,1310726,2228248,3080216,3211270,3276806,3604487,4128774,4587526,5046278,5308440,5439494,5636102,5767182,6160401,7012358,7864345,7929862,8126470,8192006,8454150,8716294,8781830,8847366,8978456,9371654,9502726,9830406,10223640,10289158,10682375,11337734,11403270,11796486,12124168,12713990,12910616,12976142,13107207,13500422,13631511,15073297,15138823,15990790,16056326,16121880,16187416,16252948,16449542,17563654,18022406,19333233,20709382,20840454,21168241,21233671,21626886,21692422,21757960,21889048,22216728,22347782,22478865,22544390,22675480,22806534,22937606,23199750,23461894,23658520,23855128,24051736,24641542,24707078,25165830,25755672,26148870,26607641,27525126,27656203,27983878,28180504,28246023,29360135,29425672,29687815,29753368,30277649,30539782,30998545,31588369,31719448,32178183,32309254,32768006,33030168,33161231,34144262,35323928,35454982,35651610,35979270,36241415,37224454,37617692,37683224,37814278,38338566,38535174,38600710,39059462,39845894,39976968,40239110,40304646,40370182],"release":[327682,524290,589826,720898,786433,1114113,1179650,1310722,1507330,1703938,1835010,2031618,2097154,2228226,2490370,2555906,2752514,2818050,2883586,3014658,3080194,3145730,3211266,3276802,3473410,3604482,3735554,3997698,4128770,4390914,4587522,4653058,4980738,5046274,5177346,5308418,5373954,5505026,5636098,5767170,5898242,5963778,6029314,6291458,6422530,6946818,7012354,7077890,7340034,7405570,7471106,7602178,7733250,7864322,7929858,7995394,8060930,8126466,8192002,8323074,8388610,8454146,8585218,8716290,8781825,8847362,8978434,9109506,9175042,9371650,9437185,9502722,9568258,9633794,9764866,9830402,9961474,10027010,10223618,10289154,10551298,10682370,10878978,11141122,11272194,11337730,11403266,11665410,11730946,11796482,12124162,12320770,12517378,12582914,12713986,12779522,12845058,12910594,13041666,13107202,13303809,13369346,13500418,13631490,13697026,13828098,13893634,13959170,14024706,14090242,14221314,14352386,14417922,14483458,14614530,14745602,14811138,15138818,15269890,15335426,15532034,15597570,15663106,15794178,15925249,15990786,16056322,16121858,16187394,16384002,16449538,16908290,16973826,17039362,17104898,17235970,17563650,17760258,17825794,18022402,18153474,18284546,18481154,18546690,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19529730,19660802,19726338,19791874,19857410,19922946,20054018,20250626,20447234,20709378,20840450,20905986,20971522,21037058,21233666,21168129,21430274,21561346,21626882,21692418,21757954,21823490,21889026,22216706,22347778,22544386,22675458,22937602,23134210,23199746,23461890,23527426,23592962,23658498,23724034,23855106,24051714,24248322,24576002,24641538,24707074,24772610,24838146,24903682,25100290,25165826,25231361,25296898,25362434,25493506,25559042,25690114,25755650,25952258,26148866,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804225,26869762,26935298,27066370,27262978,27459586,27525122,27656194,27787266,27852802,27983874,28114946,28180482,28246018,28377090,28508162,28639234,28770306,28901378,29032449,29163522,29294594,29360130,29425666,29491202,29687810,29753346,30015490,30343170,30408706,30539778,30736386,30867458,30932994,31064066,31260674,31522818,31653890,31719426,31850498,31981570,32047106,32178178,32309250,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32899074,33030146,33095682,33161218,33226753,33292290,33423362,33816578,33882114,33947650,34013186,34078721,34144258,34406402,34537474,34603010,34799618,34865153,34930690,34996226,35192834,35258370,35323906,35454978,35520514,35586050,35651586,35717122,35913730,35979266,36044802,36241410,36438018,36634625,37027842,37224450,37289986,37355522,37486594,37552130,37617666,37683202,37748738,37879810,38010882,38141954,38338562,38535170,38600706,38731778,38928386,39059458,39321602,39387138,39518210,39780354,39845890,39911426,40042498,40239106,40304641,40370178,40697858,41025538,41091074,41156610,41287682,41418754],"rop2":[3735558,19333124,21168132,25952262,32047110,39911430],"reallocates":[9043969,23068673],"regions":[28901377,31522817],"relies":[25231361],"reallocate_function":[9240588,10158088,29229061,34275329],"raw":[3997697,5177345,19333122,21168130],"randomness":[6160385,23986177,30081026,36569090,37093377],"requires":[1703937,2752513,3473409,10682369,15925249,19005441,19660801,19726337,21037057,26279937,26411009,28377089,37748737,41287681],"representation":[1572865,1835009,1966082,2293761,4194305,4718593,5177346,7667713,10747905,10944513,14286849,15073281,16515073,16580610,18087938,18415617,18481153,19333123,19595266,21168131,23330817,24772610,25690113,25821185,29884418,30998529,31195138,31588353,33685505,34340865,36831233,38666242,39452673,40435714],"relations":[41091073],"represented":[3866625,4194305,5177345,14286849,25624577,30015489],"respectively":[2490372,38141956,41091074],"relative":[19333121,21168129,39059457],"reduce":[13041665],"right":[19333121,19922945,21168129,31522818],"resize":[1441793,5898244,19333121,19660802,21037058,21168129,29229057,32571397,34275329],"reason":[6094849],"r1p":[1835021,18481165,19333125,21168133,25362450,39780371,41025555],"requirements":[2752513,3473409,6160385,23986177,26279937,26411009,37748737],"rule":[7471105,9175041,14811137,17760257],"remainder":[1507330,3014658,6946818,7471105,9175041,11141122,11665410,14483457,15335426,17825794,19333146,19726343,19791874,19857411,20054021,20905986,20971522,21168154,23527426,24576002,25296898,25362437,26345480,26935298,27262977,28508162,29163525,31653890,32505858,33947650,34013186,35192834,35520514,39780357,39911426,40042498,41025543,41418754],"realloc_func_ptr":[9240581,10158085],"representing":[3866626,9043969,10944513,11599873,13959170,15859713,19333121,21168129,25624578,25821185],"rop1":[3735558,19333126,21168134,25952262,32047110,39911432],"regiom":[7733249,15269889],"roots":[5308417,6422529,7864321,26935297,31850497,39911425],"realloc":[10682369],"reads":[9764865],"restore":[9240578,27656195],"related":[2490369,17104897,26738689,38141953],"refer":[25231361],"range":[1048580,4980737,5177345,13893633,15073283,16252930,19333124,19529729,19988483,20447233,21168132,22478851,24772609,28901377,30015489,30277635,30998529,31522817,35586049,36634625],"reference":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,4063233,3997697,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077894,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8257537,8192001,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333123,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21233665,21168131,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22282241,22216705,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066374,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586050,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753],"recurrence":[6094849],"rest":[28901377,31522817],"r2n":[41025540],"reallocated":[19660801,21037057],"remarks":[327681,589825,786433,1179649,1245185,1441793,1703937,1835009,2031617,2097153,2228225,2490369,2752513,3276801,3342337,3473409,3538945,3604481,3866625,3997697,4194305,4325377,4521985,4980737,5111809,5177345,5505025,5767169,5832705,5898241,6094849,6160385,6291457,6356993,6422529,6750209,7077889,7405569,7471105,7733249,7995393,8060929,8192001,8454145,8585217,8781825,8978433,9043969,9175041,9240577,9633793,9764865,9830401,10027009,10551297,10682369,10878977,10944513,11403265,11534337,12124161,12517377,12713985,12779521,12845057,12910593,13041665,13172737,13303809,13369345,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14221313,14286849,14483457,14614529,14745601,14811137,14942209,15073281,15269889,15925249,16121857,16252929,16449537,16515073,16908289,17104897,17170433,17235969,17760257,18481153,18677761,18743297,18874369,18939905,19005441,19464193,19529729,19660801,19726337,19857409,19922945,19988481,20054017,20250625,20447233,21037057,21233665,21168129,21364737,21626881,21692417,21757953,21889025,22216705,22478849,22544385,23068673,23134209,23592961,23724033,23855105,23986177,24051713,24510465,24707073,24772609,24903681,25100289,25165825,25296897,25362433,25493505,25624577,25690113,25755649,25821185,26279937,26345473,26411009,26542081,26607617,26738689,27066369,27262977,27459585,27656193,28246017,28377089,28639233,28835841,28901377,29032449,29163521,29425665,29491201,29753345,30015489,30081025,30212097,30277633,30408705,30736385,30998529,31457281,31522817,31588353,31850497,31981569,32047105,32178177,32571393,32636929,32702465,32833537,32899073,33095681,33161217,33226753,33292289,33423361,33685505,34078721,34799617,34865153,34996225,35127297,35323905,35586049,35651585,35717121,35913729,36110337,36241409,36569089,36634625,36831233,37093377,37224449,37289985,37486593,37617665,37683201,37748737,37879809,38141953,38207489,38273025,38731777,38797313,39452673,39780353,39976961,40108033,40239105,40304641,40566785,40697857,41025537,41091073,41156609,41287681]} \ No newline at end of file diff --git a/docs/fti/FTI_115.json b/docs/fti/FTI_115.json index bf6dcae..454f417 100644 --- a/docs/fti/FTI_115.json +++ b/docs/fti/FTI_115.json @@ -1 +1 @@ -{"selects":[20185089],"serves":[5701633,8650753,11337729,12124161,14090241,16646145,17104897,21626881,23134209,28311553,28966913,35389441,39649281,39714817],"stored":[4063233,6225921,9109505,13762561,16252929,21102594,23920641,23986177,33292290,34406401,34734081,38207490,40566785],"signed":[1048577,2752513,4390913,4915204,7340033,7798785,8060929,9699329,10420225,13697025,15925249,17170436,17760257,20971521,21233665,25624577,26083329,29229058,29360129,32440321,32899076,35258370,36831234,38207489,39780353,40697857],"start":[2293761,10485761,12058625,24576001,32505857],"skipped":[23986177],"sqrt":[5439490,9764866,11403266,22020098,36765698,39583746],"starting":[10485763,12058627,27525121,29032449],"swap":[3342339,4915203,17170435,25231363,30081027],"strictly":[20578305],"str":[1310721,4915206,5177362,5505030,8388616,13369350,14221320,14614537,16842760,16908294,17170438,20250630,22937621,30605320,31719434,34209797,34734088,35520518,40108041,40566792],"smaller":[1769474,4915201,15073281,16318465,17170433],"search":[65537],"sequence":[2293761,28442625,31588353,32505857],"sbyte":[655362,2949121,4259843,4980740,7340036,7798790,8060934,9699334,10420230,13238275,15925254,17760260,21233670,22806531,24510466,26083332,27328516,27590659,30343171,31195140,32571393,33423363,33947652,35717123,38141956,39387140,40697862],"s3limb":[4915202,17170434,23724038,41222150],"swaps":[4915201,17170433,37224449],"size":[327682,1114128,1376258,1966092,2621442,3080203,4128774,4325378,4718594,4915205,5177346,5963788,6094850,6619141,7012355,7077889,7405570,7929858,8126468,8388618,8454148,8781825,9371650,11796482,12124162,12386306,12582913,13434882,14286850,15138818,15532037,16187394,16252931,16318470,16842762,17039362,17170437,18219010,18350084,18677762,19136526,20185090,20578320,20643842,21364738,21889027,22282244,22347778,22413314,22937602,23068674,23592961,23724034,23986182,24051714,24576004,24641550,24969218,25952267,26345474,27197442,27394050,27918338,27983873,28180482,28442625,28704780,29818882,30277634,30539780,30670850,30998530,31064066,31588353,31653890,34013185,34144267,34734081,34930698,36044803,36765702,37027846,37224450,37421057,37486594,37552130,37945347,38731780,39452680,40239106,40566785,40894466,41156610,41222146],"sort":[65537],"stdin":[4915202,17170434,23920641,34406401],"stdio":[1376257,4915205,10878977,17170437,19529729,22740993,37683201],"seed":[720898,4915202,12713986,15073282,17170434,20840450,23658498,28442652,31588370,32047106],"s2p":[2621453,4325389,4915218,6094861,7012364,7929870,13434895,17170450,18350095,18677773,22282255,23724049,24969229,30277645,30539791,30670861,31653901,36044812,37486605,37552142,40894477,41222161],"storage":[14614529,40108033],"shifted":[28180481,31064065],"significant":[1900545,2424833,4784129,4915211,5177345,5636097,5963777,6029313,7929857,9633793,10485762,11272193,12058626,12451841,12517377,13959169,15073282,15138817,16515073,17170443,18087937,18350082,19136514,19333121,20578305,20643842,20905985,22282241,22937603,23986187,24576001,26345474,26869761,27197441,28180481,28704769,29818881,30277633,30539777,30998530,31064065,31719425,32899073,33292294,34930699,35323905,36765697,37093377,37486593,38076417,38273025,39976961,41156609],"selected":[4915201,8454145,17170433,39452673],"signs":[33816577,41418753],"swapped":[3342338,25231362,30081025],"style":[8388610,16842754],"stops":[9240577],"sealedattribute":[1310721,4259841,4587521,13238273,17170433,31195137,35717121,38141953,38600705],"sequences":[2293761,18546689,25165825,28442626,31588354,32505857],"system":[393217,458753,720897,786433,851969,983042,1179649,1245185,1376262,1441793,1507329,1638401,2293761,2555905,2686977,3473409,3735553,3997697,4063235,4521985,5177345,5242881,5505025,5636097,5832705,5898241,6225923,6750209,6815745,7274497,7340033,7471105,7667713,7798785,7995393,8192001,8388610,8650753,9109510,9240583,9306119,9437185,9502721,10027010,10616834,10747905,10878980,11403265,11599874,11665409,11730945,11927553,12124161,12189697,12976129,13303809,13369345,13631489,13762566,13959169,14024705,14090241,14155777,14221314,14614529,14942209,15204353,15269889,15597569,15663105,15728641,15794178,15925249,15990786,16121862,16384001,16580609,16646145,16711681,16842754,16908289,17170433,17235969,17301505,17498113,17694721,17760257,18022401,18153473,18546689,18743297,19005441,19202049,19267585,19398657,19529735,19595265,19660801,19726337,20054018,20119553,20250625,20316161,20512769,20840449,21102593,21495809,21561345,21626881,21823489,21954561,22020097,22085633,22216705,22544385,22740999,22937601,23134209,23265281,23461889,23855105,23920642,23986178,24182785,24379393,24444929,24576001,24838145,25034753,25100289,25165825,25296897,25427969,25690113,25886721,26083329,26411009,26542081,26673154,27656193,27721729,28180481,28442627,28508161,28835841,29294593,29687810,30212097,30605314,30867457,30932993,31064065,31129602,31588356,31719425,32178177,32374785,32505857,33161218,33226753,33488897,33554433,33619969,33685505,34209793,34406402,34603009,34668545,34734082,34865158,34930690,35127297,35323905,35454977,35520513,35586049,35913729,35979265,36110337,36438017,37093377,37158913,37289985,37421057,37683207,37814273,37879809,38010881,38404097,38731777,38862849,39124993,39649281,39911425,40108033,40370177,40501249,40566786,40828932,40960001,41091073,41287681,41418753],"strings":[1900545,4063234,4915203,6225922,8388610,9109506,12713985,13762562,14090241,14221314,15794178,16121858,16842754,17170435,18087937,20054018,23920642,30605314,31522817,34406402,34734082,34865154,39256065,40566786],"symbols":[851969,1638401,14352385,22544385,37289985],"sought":[10485761,12058625],"select":[4915201,8454146,17170433,40828929],"safe":[16318465],"seeding":[28442625,31588353],"subtract":[4915204,17170436,22282241,26345473,27197441,30277633],"sum":[4915201,17170433,27000834,36503558],"straightforward":[2293761,18546689,25165825,32505857],"stream":[1376271,4587521,4915217,9109516,9240591,9306127,10878998,13762572,16121868,17170449,19529744,22741008,23920642,34406402,34865164,37683216,39059457,40828939],"spite":[10878977],"subsequent":[16252929,22937601,26148865],"sizes":[1114113,24641537],"small":[17235970,27721729,30015489,39911426],"strsize":[4915201,17170433,22937609],"setting":[21561345],"structure":[131073,196609,262145,393217,655361,786433,917505,1048577,1310722,1507329,1572865,1835009,2031617,2097153,2162689,2752513,2949121,3407873,3932161,3997697,4259842,4390913,4456449,4587522,4653057,4849665,4980737,5505025,5832705,5898241,6291457,6422529,6684673,6815745,7143425,7208961,7340033,7798785,7995393,8060929,8519681,9502721,9699329,9895937,10223617,10354689,10420225,10551297,10813441,11010049,11206657,11665409,11862017,12189697,12320769,12648449,12976129,13238274,13565953,13697025,14024705,14090241,14155777,14417921,14483457,15007745,15204353,15466497,15597569,15663105,15925249,16384001,16580609,16777217,17301505,17367041,17760257,17825793,18022401,18153473,18284545,18415617,18481153,18612225,18874369,19005441,19202049,19464193,19660801,19726337,19857409,19988481,20119553,20447233,20971521,21233665,21495809,21692417,22216705,22806529,22872065,23199745,23330817,23396353,23461889,23789569,23855105,24117249,24182785,24510465,24707073,25034753,25624577,25755649,25886721,26083329,26411009,26476545,26607617,27066369,27131905,27262977,27328513,27590657,27852801,28246017,28508161,28639233,28901377,29163521,29360129,29425665,29622273,30343169,30408705,30474241,30736385,30867457,30932993,31195138,31260673,31326209,31784961,31850497,31916033,32440321,32571393,32768001,33095681,33226753,33423361,33685505,33751041,33947649,34078721,34471937,34996225,35127297,35454977,35586049,35717122,35848193,35979265,36372481,36438017,36569089,36634625,37158913,37355521,37617665,37748737,38141954,38600706,38666241,38928385,39059457,39387137,39518209,39845889,40173569,40370177,40501249,40697857,40763393,41091073],"significance":[1376257,14614529,19529729,31719425,40828929],"set":[327682,458754,589825,851970,983042,1114115,1245185,1376258,1441795,1638402,1966083,2293764,2424841,2490370,2555911,2621442,2686983,2883586,3014660,3080195,3145729,3211271,3276802,3342340,3473413,3670024,3735555,3866631,4194305,4325378,4521987,4718594,4915361,5046273,5111810,5242883,5373954,5439495,5767175,5963779,6029314,6094850,6488066,6553602,6750210,6881282,6946825,7012354,7274498,7471111,7602182,7667719,7733257,7929858,8126466,8192007,8257543,8323077,8454146,8716297,8847363,8912906,8978434,9043972,9175045,9240578,9371650,9437188,9633794,9764871,9830405,9961474,10027010,10092548,10485762,10616836,10747911,10878978,10944515,11272201,11403269,11468804,11534337,11599874,11730952,11927559,11993095,12058626,12386308,12451842,12517380,12582914,12713986,12779524,12845065,13041666,13107205,13303812,13369350,13500420,13631490,13828105,13893641,14090241,14352388,14548999,14614530,14680073,14811137,14876676,14942212,15073282,15138818,15269895,15335428,15400967,15728647,15859714,15990789,16252929,16318466,16449545,16515079,16711687,16908291,16973826,17170593,17235972,17432577,17563655,17629186,17694722,17891337,18219010,18350082,18546692,18677762,18743299,18808841,18939906,19070983,19136515,19267592,19398659,19595267,19529730,19791882,20250627,20316162,20381698,20512776,20578306,20643842,20774916,20905986,21037058,21102594,21299201,21364738,21430276,21561351,21757955,21823495,21889026,21954565,22020103,22085639,22151177,22282242,22478855,22544386,22675457,23003137,23068676,23265286,23658500,23724034,23986179,24051714,24248327,24313865,24379397,24444936,24576002,24641539,24772615,24838150,24969218,25100291,25165828,25231364,25296899,25427970,25493506,25559051,25690119,25952259,26017794,26148867,26279943,26345474,26542081,26673155,26804228,26869762,27000841,27197442,27394050,27656199,27721730,27983883,28049413,28180482,28442625,28704770,28770308,28835847,29032451,29097994,29229058,29294599,29556745,29687813,29753345,29949959,30015495,30081028,30146561,30212098,30277634,30539778,30670850,30998530,31064066,31129603,31391749,31457284,31522818,31588353,31653890,31719428,32047106,32112647,32309250,32374788,32505860,32636930,32702473,32899074,33357833,33488901,33554434,33619975,33816585,33882120,34013187,34144259,34209795,34275329,34340865,34603016,34668550,34799618,34930691,35061765,35192833,35258370,35520514,35651592,35913735,36044802,36110338,36241412,36306946,36503553,36700164,36765698,36831234,36896777,36962308,37289986,37486594,37683202,37814274,37879815,37945346,38010886,38273030,38207492,38338572,38404099,38535171,38797322,38862849,38993921,39124999,39256066,39321607,39583752,39780354,39911426,39976969,40042505,40108034,40632328,40828929,40894466,40960003,41025543,41156610,41222146,41287687,41353221,41418753],"strlen":[14614529,31719425,40108033],"shallow":[5701633,8650753,11337729,12124161,14090241,16646145,17104897,21626881,23134209,28311553,28966913,35389441,39649281,39714817],"slash":[40108033],"satisfying":[4915201,7602177,10027009,13041665,14876673,15335425,17170433,17694721,38338561],"size_t":[1376261,1769484,1835014,3997705,4128777,4915201,4980760,5177352,5898249,6291460,6357000,6619141,8126472,8388614,9240581,9306118,9502723,10420233,10551310,10813449,10878981,11010057,11862025,12189703,12386309,15925257,16842758,17170433,17235969,19005449,19529733,20185090,20971522,22740997,22937605,23199753,23396364,23527425,23986194,24576005,24707086,25821194,25886729,26214401,26935297,28901386,29163529,30605313,31719429,31916041,32833537,33030145,33751044,33947683,34537477,34930708,35127305,35979273,36962305,37683205,38141995,38207489,38731782,39059457,40173577,40304641,40370185,40566785,40828938],"streama":[1376257],"split":[37421057],"square":[4915210,5439490,6488070,9764865,11403265,17170442,29818884,36765698,39583747,41156609],"sub":[327681,589825,1114113,1441793,1900545,1966081,2228225,2293761,2424833,2490369,2621441,2818049,3211265,3342337,3473409,3604481,3670017,3735553,3866625,4128769,4325377,4521985,4718593,5046273,5242881,5439489,5505025,5636097,5767169,6094849,6160385,6553601,6619137,6946817,7667713,7733249,7864321,8126465,8192001,8257537,8323073,8454145,8585217,8716289,8781825,8847361,8912897,8978433,9175041,9437185,9764865,9830401,10616833,10682369,10747905,10944513,11272193,11403265,11534337,11927553,11993089,12189697,12255233,12451841,12713985,12845057,13107201,13828097,13893633,13959169,14548993,14680065,14745601,14811137,15073281,15269889,15400961,15728641,15990785,16252929,16449537,16515073,16580609,17432577,17563649,17891329,18087937,18219009,18546689,18677761,18743297,18808833,19070977,19398657,19595265,19791873,20709377,21168129,21299201,21364737,21430273,21757953,21823489,21954561,22020097,22085633,22151169,22478849,23003137,23265281,23527425,23658497,23986177,24051713,24248321,24313857,24444929,24641537,24772609,24838145,24903681,24969217,25100289,25165825,25231361,25296897,25362433,25559041,25690113,26148865,26279937,26542081,26673153,26804225,26869761,27000833,27656193,27983873,28049409,28114945,28442625,28704769,29097985,29491201,29556737,29687809,29753345,29949953,30015489,30081025,30146561,30670849,30932993,31129601,31391745,31522817,31588353,31653889,32047105,32112641,32505857,32702465,32833537,32964609,33030145,33161217,33357825,33488897,33619969,33685505,33816577,34013185,34144257,34275329,34340865,34668545,35061761,35192833,35323905,35454977,35913729,36503553,36896769,37027841,37093377,37224449,37421057,37486593,37879809,38010881,38273025,38338561,38404097,38535169,38469633,38797313,38862849,38993921,39124993,39256065,39321601,39583745,39976961,40042497,40304641,40632321,40894465,40960001,41025537,41156609,41287681,41353217,41418753],"seeds":[28442625,31588353],"sure":[8978433,16252929,29491201],"sgn":[38338563],"special":[4784129,4915201,8781825,12582913,14286850,17170433,20709377,21037057,22347777,23068673,28442625,31588353,34013185],"source":[5242881,5963777,8323073,9175041,12255233,16908289,18350081,19398657,19595265,20578305,21757953,21889025,23724033,25100289,25296897,28442625,31588353,34209793,35520513,37486593,37945345,38535169,40960001,41156609,41222145],"satisfy":[6553601,21889025,33882113,37945345],"sizeof":[23986180],"space":[1114116,1179649,1703938,1966084,3080196,3801090,4128769,4915228,5177345,6356994,6619137,7536642,8323073,8847362,8978433,9240579,14221314,14745601,16252930,16318466,16908289,17170460,18350081,19136516,19595265,20250627,20578305,22609922,22740993,22937601,23527425,24576001,24641540,25100289,25362433,25952260,26738690,26935301,27459585,28573698,29491201,30605314,30801922,31719425,32833537,32964609,33030145,34013185,34144260,34537474,34930691,35520513,36175874,36765697,37486593,38469633,39059458,40304641,40960001,41156609],"standard":[4915204,15794179,17170436,20054019,20185089,21102593,23920643,34406403,38207489],"successful":[39452673],"string":[1179656,1310725,1376258,1572865,1835009,2162696,4063249,4259841,4653057,4849674,4915221,5177349,5308418,5505032,5570562,5701633,6225937,8388623,8650755,8847362,9109518,9240581,9306117,9568258,10289159,10878978,11206658,11337729,12124161,13238273,13369347,13762574,14090241,14221326,14614536,15794185,16121865,16646147,16842769,16908293,17104897,17170453,17498119,17956872,18874371,19529733,19922952,20054023,20250631,21102594,21626881,22740995,22937601,23134211,23789576,23920650,24576001,26476552,28246017,28311553,28966913,30605330,30736385,31195137,31719431,32178183,33751048,34013186,34209795,34340866,34406410,34734094,34865163,35192834,35389441,35520518,35717121,35782664,37683205,38141953,39059457,39518216,39649281,39714817,40108042,40566801,40828931],"separated":[40828929],"storing":[4915201,5111809,8585217,17170433],"shift":[3866625,4915202,17170434,28180482,31064065],"skip":[23986177,34930689],"symbol":[851974,1638406,4915207,9043972,14352390,17170439,22544390,28770309,37289990],"safely":[14286849],"sets":[2293761,4259841,4915204,12124161,12189697,12779521,12910593,13238273,16580609,17170437,18546689,23592961,24379393,25165825,30932993,31195137,32505857,33685505,35454977,35717121,38141953],"squares":[6488065],"struc":[20185089],"second":[458753,851969,983042,1114113,1245185,1638401,1966081,2424833,2621441,3080193,3342337,3866625,4325377,4718593,5636097,5767169,5963777,6094849,7012353,7274497,7471105,7536641,7667713,7733249,7929857,8192001,8716289,9043969,9437185,10092545,10616833,11272193,11468801,11534337,11599874,11927553,12517377,13303809,13434881,13500417,13828097,13893633,14352385,14680065,14811137,14942209,15138817,15269889,15728641,16318465,16449537,17039361,18677761,18743297,18808833,19136513,20578307,20643841,20774913,22020097,22085633,22282241,22413313,22544385,24444929,24641537,24969217,25231361,25690113,25952257,26345473,26542081,26673153,26738689,27000833,27197441,27721729,28573697,28770305,29687809,30081025,30212097,30277633,30539777,30670849,30801921,30998529,31129601,31457281,31653889,32374785,32702465,33357825,33554433,33619969,33816577,33882113,35913729,36044801,36241409,36503553,36700161,36765697,37224449,37289985,37486593,37552129,37879809,38010881,38338562,38862849,38993921,39124993,39976961,40632321,40894465,41287681,41418753],"simply":[16908289,20250625,21889025,23724033,23986177,35520513,37945345,41222145],"support":[262145,786433,1179649,1507329,2031617,3932161,3997697,4456449,5832705,5898241,6422529,6815745,7208961,7340033,7798785,8060929,9699329,10420225,10813441,11010049,11665409,11862017,12976129,14024705,14155777,14483457,15204353,15466497,15597569,15925249,16777217,17301505,17367041,17498113,17760257,17825793,18022401,18153473,18284545,18415617,18481153,19005441,19202049,19660801,21233665,21495809,22216705,22872065,23199745,23330817,23461889,23855105,24182785,25034753,25886721,26083329,26411009,27066369,27131905,28508161,29163521,29622273,30408705,30474241,31326209,31916033,32178177,32768001,33226753,35127297,35586049,35979265,36372481,36438017,36569089,37617665,37748737,40173569,40370177,40501249,40697857,40763393,41091073],"sealed":[17170433,40435713],"s1n":[4915208,5177353,17170440,18350089,22282247,22413319,30539784],"sequenceequal":[327682,1114114,2621442,3080194,4325378,4718594,5177346,5963778,6094850,7012354,7929858,8454146,15138818,18219010,18350082,18677762,20578308,20643842,21364738,21889026,22282242,22937602,23724034,24051714,24641538,24969218,25952258,26345474,27197442,27394050,28180482,28704772,30277634,30539778,30670850,30998530,31064066,31653890,34144258,36044802,36765700,37224452,37486594,37945346,40894466,41156610,41222146],"specified":[131074,393217,917506,1310722,1572866,1835010,2097154,4259842,4587522,4653058,5701633,6291458,6684674,7995393,8519681,8650753,9306114,9502721,11337729,12124161,12648450,13238274,14090241,15007746,15663105,16646145,17104897,18874370,19726337,20119553,20250626,21626881,23134209,25755649,27852801,28246018,28311553,28901377,28966913,29425665,30736386,30867457,31195138,31260673,31784962,33095682,34078721,35389441,35717122,37158913,37355521,38141954,38600706,39649281,39714817,39845890],"short":[2031619,3276802,3932161,3997697,6815747,7208963,11010051,13959169,14155777,15204353,15466499,19202049,20185089,21495811,22872065,23199745,23986177,25034755,25886723,27131905,28508161,30474241,35258370,36438019,37617667],"snprintf":[8388609,16842753],"supported":[327682,458754,589826,720898,851970,983042,1114114,1245186,1376258,1441794,1638402,1900546,1966082,2293762,2424834,2490370,2555906,2621442,2686978,2883586,3014658,3080194,3211266,3276802,3342338,3473410,3604482,3670018,3735554,3866626,4063234,4325378,4521986,4718594,4784130,5046274,5111810,5177346,5242882,5373954,5439490,5636098,5767170,6029314,5963778,6094850,6225922,6488066,6553602,6750210,6881282,6946818,7012354,7274498,7405570,7471106,7602178,7667714,7733250,7929858,8126466,8192002,8257538,8323074,8388610,8454146,8585218,8716290,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9633794,9764866,9830402,9961474,10027010,10092546,10289154,10485762,10616834,10747906,10878978,10944514,11272194,11403266,11468802,11534338,11599874,11730946,11796482,11927554,11993090,12058626,12255234,12386306,12451842,12517378,12582914,12713986,12845058,13041666,13107202,13303810,13369346,13434882,13500418,13631490,13762562,13828098,13893634,14221314,14286850,14352386,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15073282,15138818,15269890,15335426,15400962,15728642,15794178,15859714,15990786,16121858,16187394,16252930,16318466,16449538,16515074,16711682,16842754,16908290,16973826,17039362,17235970,17432578,17563650,17629186,17694722,17891330,18087938,18219010,18350082,18546690,18677762,18743298,18808834,18939906,19070978,19136514,19267586,19398658,19529730,19595266,19791874,20054018,20250626,20316162,20381698,20512770,20578306,20643842,20709378,20774914,20840450,20905986,21037058,21102594,21299202,21364738,21430274,21561346,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22282242,22347778,22413314,22478850,22544386,22740994,22937602,23003138,23068674,23265282,23658498,23724034,23920642,23986178,24051714,24248322,24313858,24444930,24576002,24641538,24772610,24838146,24969218,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559043,25690114,25952258,26017794,26148866,26214402,26279938,26345474,26542082,26673154,26804226,26869762,27000834,27197442,27394050,27525122,27656195,27721730,27787266,27918338,27983874,28049410,28114946,28180482,28442626,28704770,28770306,28835842,29032450,29097986,29229058,29294594,29491202,29556738,29687810,29753346,29818882,29949954,30015490,30081026,30212098,30277634,30539778,30605314,30670850,30998530,31064066,31129602,31391746,31457282,31522818,31588354,31653890,31719426,32047106,32112642,32309250,32374786,32505858,32636930,32702466,32899074,32964610,33357826,33488898,33554434,33619970,33816578,33882114,34013186,34144258,34209794,34275330,34340866,34406402,34603010,34668546,34734082,34799618,34865154,34930690,35061762,35192834,35258370,35520514,35651586,35913730,36044802,36110338,36241410,36306946,36503554,36700162,36765698,36831234,36896770,36962306,37224450,37289986,37486594,37552130,37683202,37814274,37879810,37945346,38010883,38273026,38207490,38338562,38404098,38469634,38535170,38731778,38797314,38862850,38993922,39124994,39256066,39321602,39452674,39583746,39780354,39911426,39976962,40042498,40108034,40239106,40566786,40632322,40828930,40894466,40960002,41025538,41156610,41222146,41287682,41353218,41418754],"systems":[4259841,8650753,9306113,13238274,20250625,23986177,28442625,31588353,35717121,40828929],"speed":[7929857,20709377,30998529],"seminumerical":[4915201,17170433,37814273],"starting_bit":[10485768,12058632],"static":[262146,327683,458755,589827,720899,786434,851971,983043,1114115,1179650,1245187,1376259,1441795,1507330,1638403,1703939,1769475,1900547,1966083,2031618,2293763,2424835,2490371,2555907,2621443,2686979,2883587,3014659,3080195,3211267,3276803,3342339,3473411,3604483,3670019,3735555,3801091,3866627,3932162,3997698,4063235,4128771,4325379,4456450,4521987,4718595,4784131,5046275,5111811,5177347,5242883,5373955,5439491,5636099,5767171,5832706,5898242,5963779,6029315,6094851,6225923,6356995,6422530,6488067,6553603,6750211,6815746,6881283,6946819,7012355,7143427,7208962,7274499,7340034,7405571,7471107,7602179,7536643,7667715,7733251,7798786,7929859,8060930,8126467,8192003,8257539,8323075,8388611,8454147,8585219,8716291,8781827,8847363,8912899,8978435,9043971,9109507,9175043,9240579,9306115,9371651,9437187,9633795,9699330,9764867,9830403,9961475,10027011,10092547,10223619,10289155,10354691,10420226,10485763,10551299,10616835,10747907,10813442,10878979,10944515,11010050,11272195,11403267,11468803,11534339,11599875,11665410,11730947,11796483,11862018,11927555,11993091,12058627,12255235,12320771,12386307,12451843,12517379,12582915,12713987,12779523,12845059,12976130,13041667,13107203,13303811,13369347,13434883,13500419,13631491,13762563,13828099,13893635,14024706,14155778,14221315,14286852,14352387,14483458,14548995,14614531,14680067,14745603,14811139,14876675,14942211,15073283,15138819,15204354,15269891,15335427,15400963,15466498,15597570,15728643,15794179,15859715,15925250,15990787,16121859,16187395,16252931,16318467,16449539,16515075,16711683,16777218,16842755,16908291,16973827,17039363,17170433,17235971,17301506,17367042,17432579,17498114,17563651,17629187,17694723,17760258,17825794,17891331,18022402,18087939,18153474,18219011,18284546,18350083,18415618,18481154,18546691,18677763,18743299,18808835,18939907,19005442,19070979,19136515,19202050,19267587,19398659,19464195,19529731,19595267,19660802,19791875,19988483,20054019,20185089,20250627,20316163,20381699,20512771,20578307,20643843,20709379,20774915,20840451,20905987,21037059,21102595,21233666,21299203,21364739,21430275,21495810,21561347,21692419,21757955,21823491,21889027,21954563,22020099,22085635,22151171,22216706,22282243,22347779,22413315,22478851,22544387,22609923,22740995,22872066,22937603,23003139,23068675,23199746,23265283,23330818,23461890,23527427,23658499,23724035,23855106,23920643,23986179,24051715,24117251,24182786,24248323,24313859,24444931,24576003,24641539,24707075,24772611,24838147,24903683,24969219,25034754,25100291,25165827,25231363,25296899,25362435,25427971,25493507,25559043,25690115,25886722,25952259,26017795,26083330,26148867,26214403,26279939,26345475,26411010,26542083,26607619,26673155,26738691,26804227,26869763,27000835,27066370,27131906,27197443,27262979,27394051,27525123,27656195,27721731,27787267,27918339,27983875,28049411,28114947,28180483,28442627,28508162,28573699,28704771,28770307,28835843,29032451,29097987,29163522,29229059,29294595,29491203,29556739,29622274,29687811,29753347,29818883,29949955,30015491,30081027,30212099,30277635,30408706,30474242,30539779,30605315,30670851,30801923,30998531,31064067,31129603,31326210,31391747,31457283,31522819,31588355,31653891,31719427,31850499,31916034,32047107,32112643,32178178,32309251,32374787,32505859,32636931,32702467,32768002,32833539,32899075,32964611,33030147,33161219,33226754,33357827,33488899,33554435,33619971,33816579,33882115,34013187,34144259,34209795,34275331,34340867,34406403,34471939,34603011,34668547,34734083,34799619,34865155,34930691,34996227,35061763,35127298,35192835,35258371,35520515,35586050,35651587,35848195,35913731,35979266,36044803,36110339,36175875,36241411,36306947,36372482,36438018,36503555,36569090,36634627,36700163,36765699,36831235,36896771,36962307,37224451,37289987,37486595,37552131,37617666,37683203,37748738,37814275,37879811,37945347,38010883,38207491,38273027,38338563,38404099,38535171,38469635,38666243,38731779,38797315,38862851,38993923,39124995,39256067,39321603,39452675,39583747,39780355,39911427,39976963,40042499,40108035,40173570,40239107,40304643,40370178,40501250,40566787,40632323,40697858,40763394,40828931,40894467,40960003,41025539,41091074,41156611,41222147,41287683,41353219,41418755],"section":[38010881],"subtraction":[22282242,26345473],"structures":[39059457],"single":[3080193,4915202,17170434,25952257,31195137,41353217],"scan":[4915204,10485762,12058626,17170436,27525121,29032449],"sign":[2424833,4784129,6029313,8781827,9633793,10485761,11272193,12058625,12451841,12517377,14286851,14614529,16515073,20250625,20381698,20905985,21561345,23986178,24313857,24576002,26869761,31719425,32636930,32899073,34930690,38273025,39976961,40108033],"specify":[1179649,9306113,20250625,23986177,34930689],"separately":[4915202,9240577,17170434,17498113,21102593,35520513,38207489],"summary":[17170433,39059457],"state":[720915,4915208,5636116,6160386,6553604,12255244,12714006,15073300,17170440,20709396,20840467,23658518,24903688,27983873,28114964,28442646,31522818,31588374,32047126,39059457,39452692,39649282],"subtrahend":[4915201,17170433,27394049,38993926],"s1p":[327687,2621455,4325391,4915232,5177365,6094863,7012366,7929870,9371664,13434897,15138831,16187402,17170464,18350095,18677775,20643857,21364743,22282255,22413329,22937602,24969231,26345489,27197455,27525133,29032461,29818899,30277645,30539791,30670863,30998545,31653903,36044814,37486607,37552144,40894479,41156623],"somewhat":[33882113],"shared":[262145,327681,458753,589825,720897,786433,851969,983041,1114113,1179649,1245185,1376257,1441793,1507329,1638401,1703937,1769473,1900545,1966081,2031617,2293761,2424833,2490369,2555905,2621441,2686977,2883585,3014657,3080193,3211265,3276801,3342337,3473409,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4325377,4456449,4521985,4718593,4784129,5046273,5111809,5177345,5242881,5373953,5439489,5636097,5767169,5832705,5898241,5963777,6029313,6094849,6225921,6356993,6422529,6488065,6553601,6750209,6815745,6881281,6946817,7012353,7143425,7208961,7274497,7340033,7405569,7471105,7602177,7536641,7667713,7733249,7798785,7929857,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9633793,9699329,9764865,9830401,9961473,10027009,10092545,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10747905,10813441,10878977,10944513,11010049,11272193,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12255233,12320769,12386305,12451841,12517377,12582913,12713985,12779521,12845057,12976129,13041665,13107201,13303809,13369345,13434881,13500417,13631489,13762561,13828097,13893633,14024705,14155777,14221313,14286849,14352385,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15597569,15728641,15794177,15859713,15925249,15990785,16121857,16187393,16252929,16318465,16449537,16515073,16711681,16777217,16842753,16908289,16973825,17039361,17235969,17367041,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18677761,18743297,18808833,18939905,19005441,19070977,19136513,19202049,19267585,19398657,19464193,19529729,19595265,19660801,19791873,19988481,20054017,20250625,20316161,20381697,20512769,20578305,20643841,20709377,20774913,20840449,20905985,21037057,21102593,21233665,21299201,21364737,21430273,21495809,21561345,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22740993,22872065,22937601,23003137,23068673,23199745,23265281,23330817,23461889,23527425,23658497,23724033,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24444929,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25690113,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26542081,26607617,26673153,26738689,26804225,26869761,27000833,27066369,27131905,27197441,27262977,27394049,27525121,27656193,27721729,27787265,27918337,27983873,28049409,28114945,28180481,28442625,28508161,28573697,28704769,28770305,28835841,29032449,29097985,29163521,29229057,29294593,29491201,29556737,29622273,29687809,29753345,29818881,29949953,30015489,30081025,30212097,30277633,30408705,30474241,30539777,30605313,30670849,30801921,30998529,31064065,31129601,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31850497,31916033,32047105,32112641,32178177,32309249,32374785,32505857,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33161217,33226753,33357825,33488897,33554433,33619969,33816577,33882113,34013185,34144257,34209793,34275329,34340865,34406401,34471937,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35520513,35586049,35651585,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37224449,37289985,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38273025,38207489,38338561,38404097,38535169,38469633,38666241,38731777,38797313,38862849,38993921,39124993,39256065,39321601,39452673,39583745,39780353,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753],"slow":[21889025,37945345],"s2limb":[4915206,15138822,17170438,20643846,22413318,26345478,27197446,30998536],"similar":[2293761,21102593,32505857,38207489],"stdout":[4915202,15794177,17170434,20054017],"successfully":[4063233,6225921,9109505,13762561,23920641,34406401],"struct":[1310722,4259842,4587522,13238274,14090242,31195138,35717122,38141954,38600706],"scratch":[1114117,1703938,1966084,3080197,3801090,4915208,7536642,16318467,17170440,19136516,22609922,24641541,25952261,26738690,28573698,30801922,34144261,36175874],"store":[1900545,4915208,8454145,10616833,17170440,18087937,20578306,27721729,35651585,38010881,40632321],"suited":[28442625,31588353],"separate":[4718593,23724033,28442625,31588353,36765698,41222145],"studio":[20185089],"sense":[20250625],"shows":[20185090,38076417],"suppressed":[4063233,6225921,9109505,13762561,23920641,34406401],"s2n":[4915206,17170438,18350089,22282246,23724040,30539783,41222152],"syntax":[262145,327681,393217,458753,524289,589825,720897,786433,851969,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1900545,1966081,2031617,2162689,2228225,2293761,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,3014657,3080193,3145729,3211265,3276801,3342337,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4259841,4325377,4390913,4456449,4521985,4587521,4718593,4784129,4849665,5046273,5111809,5177345,5242881,5373953,5439489,5505025,5636097,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6356993,6422529,6488065,6553601,6619137,6750209,6815745,6881281,6946817,7012353,7143425,7208961,7274497,7340033,7405569,7471105,7602177,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12713985,12779521,12845057,12976129,13041665,13107201,13238273,13303809,13369345,13434881,13500417,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18677761,18743297,18808833,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19922945,19988481,20054017,20119553,20250625,20316161,20381697,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23461889,23527425,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,27000833,27066369,27131905,27197441,27262977,27394049,27459585,27525121,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28442625,28508161,28573697,28704769,28770305,28835841,28901377,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30408705,30474241,30539777,30605313,30670849,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31850497,31916033,31981569,32047105,32112641,32178177,32309249,32374785,32440321,32505857,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33161217,33226753,33292289,33357825,33488897,33554433,33619969,33685505,33751041,33816577,33882113,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38535169,38469633,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39124993,39190529,39256065,39321601,39452673,39518209,39583745,39649281,39780353,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753]} \ No newline at end of file +{"selects":[25231361],"serves":[7667713,10747905,10944513,11534337,13172737,16515073,18415617,24117249,24182785,25821185,36700161,36896769,38404097,40566785],"stored":[4653057,6029313,8388609,12320769,14745601,19529730,21561345,26607617,32702465,35127298,35586050,35717121,38928385],"signed":[983041,2949121,4456449,6881281,7208961,7536641,8912897,11075585,13565953,16842753,19333124,20643841,21168132,21495809,23003137,24969217,26673154,28770306,29556737,30146561,31916033,33816578,34799620,34930689,35586049,35848193],"start":[2490369,10551297,12779521,19922945,25231364,38141953],"sample":[25231361],"skipped":[26607617],"sqrt":[720898,5308418,11796482,27525122,39911426,41025538],"starting":[10551299,12779523,24903681,32833537],"swap":[3735555,19333123,21168131,25952259,32047107],"strictly":[18939905],"str":[1245185,5177362,6750214,7733256,12124166,13893641,14090248,15269896,16449542,19333126,21168134,22544390,23134216,24772629,30015498,32178181,32702472,35717128,38731785,40304646],"smaller":[1441794,15925249,16252929,19333121,21168129],"search":[65537],"sequence":[2490369,30081025,36569089,38141953],"sbyte":[655362,2686977,4194307,4915204,6881286,7208964,7536646,8912902,11075590,14286851,16842758,20774916,21102595,21495812,23003142,23265282,27918339,29556740,30605315,30670849,33685508,35782659,35848198,36503556,36831236,38862852,39452675],"s3limb":[19333122,21168130,25362438,39780358],"swaps":[19333121,21168129,37289985],"size":[524290,1703948,2752528,2818050,3473419,3538950,3997698,4390914,5177346,5505026,5963778,6291468,6684677,7405571,7602178,7733258,8060930,8650753,9043969,9240580,9764868,11272194,11534338,12189698,13762565,13959169,14352386,14417922,14614530,14745603,15269898,15532034,15925254,16384002,16908290,18677762,18808834,18939920,19005444,19070978,19333125,19726350,19922948,20054019,20250628,21037058,21168133,21823490,22151169,23724034,23855105,24772610,25100290,25231362,25296898,25362434,25493506,25559042,26279947,26345484,26411022,26542082,26607622,27852802,28377092,28901378,29163523,29294594,30081025,30932994,31522818,32440322,32571393,32702465,32899074,33161226,33292291,33882114,34078726,34209794,34865153,35717121,36044802,36569089,37289986,37748747,37879810,38273032,39387138,39780354,40828930,41025542,41156610,41287684],"sort":[65537],"stdin":[19333122,21168130,21561345,38928385],"stdio":[3997697,11403265,19333125,20447233,21168133,25165825,34996225],"seed":[1048578,15073282,16252930,19333122,19988482,21168130,22478850,30081042,30277634,36569116],"s2p":[2818061,4390925,5963789,7405580,8060942,14417935,15532045,19005455,19333138,20250639,21168146,25362449,27852813,28377103,29294606,30933005,33292300,33882125,36044813,39387149,39780369,41156621],"shell":[25231361],"storage":[13893633,38731777],"shifted":[28901377,31522817],"significant":[1835009,2228225,4980737,5177345,5767169,6094849,6291457,8060929,8585217,8978433,10551298,12517377,12779522,13303809,13631489,14352385,16121857,16252930,17170433,18481153,18677762,18939905,19005442,19333131,19726338,19922945,20250625,21168139,21889025,24772611,25493506,25690113,26345473,26542081,26607627,28377089,28901377,29032449,30015489,31522817,32440321,32899074,33161227,33226753,34799617,35127302,35323905,36044801,37683201,37879809,40108033,41025537,41156609],"selected":[9764865,19333121,21168129,38273025],"signs":[35651585,39976961],"swapped":[3735554,25952258,32047105],"style":[7733250,15269890],"stops":[8192001],"sealedattribute":[1245185,4194305,4325377,14286849,21168129,33685505,36110337,36831233,39452673],"sequences":[2490369,17104897,26738689,30081026,36569090,38141953],"system":[327681,458753,589826,917505,1048577,1114113,1179649,1310721,1376257,1507329,2031617,2490369,3014657,3080193,3407873,3997702,4128769,4521985,4587521,4653059,5046273,5177345,5701633,6029315,6094849,6225921,6750209,6946817,7143425,7208961,7536641,7733250,7864321,8192007,8257537,8323073,8388614,8454145,8716289,8781825,9175042,9568257,9830407,10223618,10420225,10878978,10944513,11141121,11337729,11403268,11534337,11796481,12058625,12124161,12255233,12320774,13041665,13107201,13172737,13303809,13369345,13434881,13893633,14090242,14155777,14548993,14942209,15204353,15269890,15400961,15597569,15663110,15990785,16187394,16318465,16449537,16515073,16777217,16842753,16973826,17104897,17235969,17367041,17432577,17498113,17760257,17825793,17956865,18022401,18350081,19267585,19398657,19529729,19791873,19857409,19922945,19988481,20316161,20381697,20447239,20709377,20840449,20971521,21168129,21233665,21430274,21495809,21561346,21626881,21692417,21757954,21954561,22347777,22413313,22544385,22609921,22675457,22806529,22872065,23134210,23199745,23396353,23461889,23592961,23658497,23920641,24117249,24313857,24444929,24576001,24772609,25034753,25165831,25755649,25821185,26607618,26738689,26935297,27328513,27394049,27459585,27525121,28180482,28246017,28508161,28901377,29032449,29425666,29556737,29687809,29753345,30015489,30081028,30212097,30408705,31391745,31522817,31719425,31784961,32178177,32505857,32702466,33095681,33161218,33226753,33488897,33554433,33619969,33947649,34144257,34537473,34865153,34996231,35454977,35717122,35979265,36241409,36569091,36634628,37158913,37224449,37421057,37486593,37552129,37814273,38010886,38076418,38141953,38338561,38535169,38731777,38928386,39124993,39583745,39976961,40173569,40304641,40566785,40697857,40763393,40960001,41287681,41418753],"strings":[1835009,4653058,6029314,7733250,8388610,12320770,13172737,14090242,15073281,15269890,15663106,16973826,18481153,19333123,21168131,21430274,21561346,23134210,30998529,31588353,32702466,35717122,38010882,38928386],"symbols":[1179649,2031617,13697025,27459585,33095681],"sought":[10551297,12779521],"select":[9764866,19333121,21168129,36634625],"safe":[15925249],"seeding":[30081025,36569089],"subtract":[19333124,20250625,21168132,25493505,32440321,36044801],"sum":[19333121,21168129,30539778,34471942],"straightforward":[2490369,17104897,26738689,38141953],"samller":[25231361],"step":[25231361],"stream":[3997711,4325377,8192015,8388620,9830415,11403286,12320780,15663116,19333137,20447248,21168145,21561346,25165840,34275329,34996240,36634635,38010892,38928386],"spite":[11403265],"subsequent":[14745601,24510465,24772609],"sizes":[2752513,26411009],"small":[17235970,21626881,22216705,40697858],"strsize":[19333121,21168129,24772617],"setting":[19857409],"structure":[131073,196609,262145,458753,655361,851969,917505,983041,1245186,1376257,1572865,1769473,1900545,1966081,2293761,2621441,2686977,2949121,3407873,3932161,4194306,4325378,4456449,4718593,4849665,4915201,5242881,5701633,6225921,6553601,6619137,6750209,6815745,6881281,7143425,7208961,7274497,7536641,7798785,8257537,8519681,8912897,9306113,9895937,10092545,10354689,10420225,10485761,10616833,11075585,11927553,11993089,12058625,12255233,12386305,12648449,13172737,13238273,13434881,13565953,14155777,14286850,14548993,14680065,14876673,15007745,15204353,15400961,15728641,16318465,16646145,16711681,16777217,16842753,17301505,17367041,17432577,17498113,17629185,17694721,17891329,17956865,18219009,18350081,18612225,19136513,19202049,19267585,19398657,19595265,20119553,20316161,20381697,20512769,20643841,20774913,21102593,21299201,21495809,21954561,22282241,22413313,22609921,22740993,22872065,23003137,23265281,23330817,23396353,23920641,24313857,24379393,24444929,24969217,25034753,25427969,25886721,26083329,26214401,27000833,27131905,27197441,27394049,27590657,27721729,27918337,28049409,28311553,28442625,28573697,28966913,29556737,29622273,29818881,29884417,29949953,30146561,30605313,30670849,30801921,31195137,31391745,31784961,31916033,32112641,32243713,32964609,33488897,33554433,33619969,33685506,33751041,34275329,34340865,35061761,35389441,35782657,35848193,36110338,36175873,36306945,36372481,36503553,36765697,36831234,36962305,37158913,37421057,37945345,38469633,38666241,38862849,38993921,39124993,39190529,39256065,39452674,39583745,39649281,40173569,40632321,40763393,40960001,41222145,41353217],"significance":[3997697,13893633,20447233,30015489,36634625],"set":[327682,524290,589826,720903,786433,1114113,1179650,1310723,1507335,1703939,2031618,2097154,2228233,2490372,2555906,2752515,2818050,2883586,3014663,3080197,3145732,3211271,3276807,3473411,3604488,3670017,3735556,3866625,3997698,4128771,4390914,4587523,5046275,5111810,5308423,5373954,5439489,5505026,5636103,5767170,5898243,5963778,6160386,6291459,6422530,6946818,7012357,7077890,7340041,7405570,7471110,7864327,7929865,7995396,8060930,8126473,8192002,8323074,8454151,8585218,8716295,8781828,8847367,8978441,9109506,9175042,9240578,9371653,9502727,9568263,9633796,9764866,9961476,10027010,10223620,10289157,10551298,10682371,10878978,11010049,11141128,11206660,11272196,11337735,11403266,11665418,11730953,11796485,12124166,12517380,12582916,12713993,12779522,12845063,12910601,13041666,13107207,13172737,13369348,13500425,13631490,13697028,13828098,13893634,13959170,14221317,14352386,14483460,14745601,14811140,15073282,15138825,15335433,15466497,15532034,15597572,15794178,15925250,15990791,16056327,16121863,16187397,16252930,16449539,17039362,17104900,17235972,17563657,17760258,17825799,18022403,18153474,18284546,18546695,18677762,18743303,18808834,18874372,18939906,19005442,19070978,19333281,19529730,19726339,19660802,19791880,19857415,19922946,20054018,20250626,20447234,20709379,20840451,20905994,20971528,21037060,21168289,21233670,21364737,21626882,21692419,21757955,21823490,21889026,22216711,22347783,22478852,22544387,22675461,22806529,22937607,23199751,23461891,23527431,23592962,23658503,23855115,24051723,24248321,24510467,24576002,24707075,24641540,24838153,24903683,25100290,25231361,25362434,25493506,25559042,25624577,25690114,25755655,25952260,26148868,26279939,26345474,26411011,26476546,26607619,26673154,26738692,26935304,27066370,27262985,27328517,27459586,27525127,27656202,27787271,27852802,27983879,28180485,28246022,28377090,28508167,28639233,28770306,28901378,29163522,29360137,29425667,29491204,29687815,29753350,30015492,30081025,30277634,30408706,30539785,30867458,30932994,30998530,31064066,31129601,31260674,31522818,31588354,31653895,31719429,31850498,31981572,32047108,32178179,32309253,32374785,32440322,32505864,32571395,32636932,32768005,32899074,33030152,33095682,33161219,33292290,33423365,33816578,33882114,33947655,34013194,34144263,34406404,34471937,34537476,34603012,34799618,34930690,34996226,35192841,35258377,35323913,35454983,35520519,35586052,35651593,35913729,35979267,36044802,36241414,36438017,36569089,36634625,37027841,37224451,37486594,37552130,37617672,37683206,37748739,37814273,37879810,38141956,38338567,38535175,38600713,38731778,39059464,39321602,39387138,39518215,39714817,39780354,39845893,39911432,39976961,40042505,40239107,40304642,40370183,40697858,41025538,41091084,41156610,41418754],"strlen":[13893633,30015489,38731777],"shallow":[7667713,10747905,10944513,11534337,13172737,16515073,18415617,24117249,24182785,25821185,36700161,36896769,38404097,40566785],"slash":[38731777],"satisfying":[7471105,9175041,13828097,14483457,14811137,17760257,19333121,21168129,41091073],"size_t":[1441804,2293766,3407881,3538953,3997701,4915224,5177352,5701641,6357000,6553604,6684677,7733254,8192005,9240584,9830406,10354697,10485769,11075593,11272197,11403269,11927566,12386313,13434887,15269894,16842761,17235969,18350089,19202057,19333121,19464193,19922949,20447237,20643842,21168129,21954563,22020097,22609929,23134209,24772613,25165829,25231362,26083340,26607634,27131918,28835841,29229066,29818889,29949961,30015493,31457281,32636929,33161236,33357829,33619977,33685547,34275329,34996229,35061770,35389449,35586049,35717121,36634634,38207489,38666244,38797313,38862883,39583753,40173577,41287686],"streama":[3997697],"split":[34865153],"square":[720897,5308418,6422534,11796481,19333130,21168138,26542084,37879809,39911427,41025538],"sub":[524289,720897,786433,1310721,1703937,1835009,2097153,2162689,2228225,2424833,2490369,2752513,2818049,3080193,3211265,3276801,3538945,3604481,3735553,3801089,4128769,4390913,4587521,5046273,5308417,5439489,5505025,5636097,5832705,5898241,5963777,6094849,6160385,6488065,6684673,6750209,7012353,7340033,7929857,8126465,8454145,8716289,8781825,8847361,8978433,9043969,9240577,9371649,9502721,9568257,9764865,10027009,10158081,10223617,10289153,10682369,10813441,11010049,11337729,11665409,11730945,11796481,12713985,12845057,12910593,12976129,13107201,13303809,13434881,13500417,13631489,14024705,14221313,14745601,15073281,15138817,15204353,15335425,15466497,15532033,15990785,16056321,16121857,16187393,16252929,17104897,17563649,18022401,18481153,18546689,18743297,18808833,19070977,19464193,20185089,20709377,20840449,20905985,21233665,21364737,21692417,21757953,21889025,22216705,22347777,22478849,22675457,22806529,22937601,23199745,23396353,23461889,23527425,23658497,23789569,23855105,23986177,24051713,24248321,24510465,24641537,24707073,24838145,25559041,25755649,25952257,26148865,26345473,26411009,26607617,26738689,26935297,27262977,27525121,27656193,27787265,27852801,27983873,28114945,28180481,28246017,28639233,29032449,29360129,29425665,29687809,29753345,30081025,30277633,30343169,30539777,30736385,30932993,30998529,31129601,31457281,31588353,31653889,31719425,31784961,32047105,32309249,32374785,32571393,32768001,33226753,33423361,33554433,33882113,34013185,34078721,34144257,34471937,34865153,35192833,35258369,35323905,35454977,35520513,35651585,35913729,35979265,36241409,36438017,36569089,37027841,37093377,37224449,37289985,37355521,37683201,37748737,37814273,37879809,38076417,38141953,38207489,38338561,38535169,38600705,38797313,39059457,39387137,39518209,39714817,39845889,39911425,39976961,40042497,40239105,40370177,41091073,41156609],"seeds":[30081025,36569089],"sure":[10027009,14745601,30736385],"sgn":[41091075],"special":[4980737,9043969,13959169,14614530,19333121,19660801,21037057,21168129,23724033,23986177,30081025,32571393,36569089],"source":[5046273,6291457,7012353,10289153,12976129,16449537,18939905,19005441,20054017,20709377,20840449,21692417,23461889,24707073,25231362,25362433,29163521,30081025,32178177,36569089,37224449,37879809,39780353,40239105,40304641,41156609],"satisfy":[6160385,20054017,29163521,37617665],"sizeof":[26607620],"space":[1638402,1703940,2752516,3473412,3538945,4259842,4521985,4784130,5177345,5898242,6356994,6684673,7012353,8192003,10027009,14024705,14090242,14745602,15925250,16449537,18939905,19005441,19333148,19464193,19726340,19922945,20578306,20709377,21168156,22020101,22544387,23068673,23134210,23461889,24772609,25165825,26017794,26279940,26411012,28114945,28704770,30015489,30343169,30736385,31457281,32571393,33161219,33357826,34275330,34734082,37224449,37355521,37748740,37879809,38207489,38797313,40304641,40501250,41025537,41156609],"standard":[16973827,19333124,19529729,21168132,21430275,21561347,35586049,38928387],"successful":[38273025],"string":[1245189,1572865,1966088,2293761,3997698,4063234,4194305,4521992,4653073,4718593,5177349,5242890,5570562,5898242,6029329,6750216,7667713,7733263,8192005,8388622,9437191,9830405,10616834,10747905,10944515,11403266,11534337,12124163,12320782,13172737,13893640,14090254,14286849,14942215,15269905,15663113,16449541,16515075,16580616,16973833,18087944,18219011,18415617,19333141,19529730,19595272,19922945,20447237,21168149,21430279,21561354,22085634,22544391,23134226,23330817,24117249,24182785,24772609,25165827,25821187,29884424,30015495,30212103,31195144,32178179,32571394,32702478,33685505,34275329,34340865,34996229,35717137,35913730,36438018,36634627,36700161,36831233,36896769,38010891,38404097,38666248,38731786,38928394,39452673,40304646,40435720,40566785],"separated":[36634625],"storing":[5111809,10158081,19333121,21168129],"shift":[3276801,19333122,21168130,28901378,31522817],"skip":[26607617,33161217],"symbol":[1179654,2031622,7995396,13697030,19333127,21168135,27459590,29491205,33095686],"safely":[14614529],"sets":[2490369,4194305,11206657,11534337,11862017,13434881,14286849,15204353,17104897,19333124,21168133,22151169,23396353,26738689,27328513,31784961,33554433,33685505,36831233,38141953,39452673],"squares":[6422529],"struc":[25231361],"second":[327681,589826,1114113,1179649,1703937,2031617,2228225,2752513,2818049,3276801,3473409,3735553,4259841,4390913,5505025,5636097,5963777,6094849,6291457,7405569,7864321,7929857,7995393,8060929,8126465,8323073,8454145,8716289,8781825,8978433,9633793,9961473,10223617,10878978,11010049,11337729,12517377,12582913,12713985,12910593,13107201,13369345,13500417,13697025,14352385,14417921,15138817,15466497,15532033,15597569,15925249,15990785,16908289,17563649,18022401,18677761,18874369,18939907,19726337,20250625,21626881,21757953,22347777,22806529,23199745,25296897,25493505,25952257,26017793,26279937,26411009,26935297,27459585,27525121,27852801,28180481,28377089,28704769,29294593,29360129,29425665,29491201,29687809,29753345,30408705,30539777,30932993,31981569,32047105,32440321,32899073,33095681,33292289,33882113,34144257,34406401,34471937,34537473,34603009,34734081,35323905,35454977,35651585,36044801,37289985,37552129,37617665,37814273,38338561,38535169,38600705,39059457,39387137,39714817,39976961,41025537,41091074,41156609],"simply":[16449537,20054017,22544385,25362433,26607617,29163521,39780353,40304641],"support":[196609,917505,1376257,1769473,3407873,3932161,4521985,4849665,5701633,6225921,6619137,6881281,7143425,7208961,7536641,7798785,8912897,10354689,10420225,10485761,11075585,12058625,12255233,12386305,14155777,14548993,14876673,14942209,15007745,15400961,16646145,16711681,16777217,16842753,17301505,17432577,17498113,17694721,18350081,18612225,19136513,19202049,19267585,19398657,20316161,21299201,21495809,22282241,22413313,22609921,22872065,23003137,23920641,24313857,24444929,25034753,25886721,26214401,27721729,28442625,28573697,29556737,29818881,29949953,30212097,30801921,31391745,32112641,33488897,33619969,35389441,35848193,36175873,37158913,37421057,39190529,39583745,39649281,40173569,40632321,40763393,40960001,41222145],"similarly":[25231361],"sealed":[21168129,40894465],"s1n":[5177353,19005449,19333128,20250631,21168136,25296903,28377096],"specifies":[25231361],"sequenceequal":[524290,2752514,2818050,3473410,4390914,5177346,5505026,5963778,6291458,7405570,8060930,9764866,14352386,15532034,18677762,18808834,18939908,19005442,19070978,20054018,20250626,24772610,25100290,25362434,25493506,25559042,26279938,26345476,26411010,27852802,28377090,28901378,29163522,30932994,31522818,32440322,32899074,33292290,33882114,36044802,37289988,37748738,37879810,39387138,39780354,41025540,41156610],"specified":[131074,458753,851970,1245186,1572866,1900546,2293762,4194306,4325378,4718594,6553602,6815746,7274497,7667713,8257537,9830402,10747905,10944513,11534337,12648450,13172737,14286850,15728642,16318465,16515073,17956865,18219010,18415617,20381697,21954561,22544386,23330818,24117249,24182785,25231361,25821185,27000833,27394049,27590657,28311553,29622274,33685506,34340866,35061761,36110338,36306945,36700161,36831234,36896769,36962306,38404097,38469634,38993921,39124993,39256065,39452674,40566785],"short":[1769475,2883586,3407873,3932161,7143427,7798787,10485763,12255233,13303809,14548993,14876675,19202049,20316161,22282241,22609923,23920643,24313859,24444929,25231361,25886721,26607617,28442627,33488899,33816578,36175873],"snprintf":[7733249,15269889],"supported":[327682,524290,589826,720898,786434,1048578,1114114,1179650,1310722,1507330,1703938,1835010,2031618,2097154,2228226,2490370,2555906,2752514,2818050,2883586,3014658,3080194,3145730,3211266,3276802,3473410,3604482,3735554,3801090,3997698,4128770,4390914,4587522,4653058,4980738,5046274,5111810,5177346,5308418,5373954,5439490,5505026,5636098,5767170,5898242,5963778,6029314,6094850,6160386,6291458,6422530,6946818,7012354,7077890,7340034,7405570,7471106,7602178,7733250,7864322,7929858,7995394,8060930,8126466,8192002,8323074,8388610,8454146,8585218,8716290,8781826,8847362,8978434,9109506,9175042,9240578,9371650,9437186,9502722,9568258,9633794,9764866,9830402,9961474,10027010,10158082,10223618,10289154,10551298,10682370,10878978,11010050,11141122,11272194,11337730,11403266,11665410,11730946,11796482,12124162,12189698,12320770,12517378,12582914,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13369346,13500418,13631490,13697026,13828098,13893634,13959170,14024706,14090242,14221314,14352386,14417922,14483458,14614530,14745602,14811138,15073282,15138818,15269890,15335426,15466498,15532034,15597570,15663106,15794178,15925250,15990786,16056322,16121858,16187394,16252930,16384002,16449538,16908290,16973826,17039362,17104898,17235970,17563650,17760258,17825794,18022402,18153474,18284546,18481154,18546690,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19529730,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20250626,20447234,20709378,20840450,20905986,20971522,21037058,21233666,21364738,21430274,21561346,21626882,21692418,21757954,21823490,21889026,22216706,22347778,22478850,22544386,22675458,22806530,22937602,23134210,23199746,23461890,23527426,23592962,23658498,23724034,23855106,23986178,24051715,24248322,24510466,24576002,24641538,24707074,24772610,24838146,24903682,25100290,25165826,25231361,25296898,25362434,25493506,25559042,25690114,25755651,25952258,26148866,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26869762,26935298,27066370,27262978,27459586,27525122,27656194,27787266,27852802,27983874,28114946,28180482,28246018,28377090,28508162,28639234,28770306,28835842,28901378,29163522,29294594,29360130,29425666,29491202,29687810,29753347,30015490,30081026,30277634,30343170,30408706,30539778,30736386,30867458,30932994,30998530,31064066,31129602,31260674,31522818,31588354,31653890,31719426,31850498,31981570,32047106,32178178,32309250,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32899074,33030146,33095682,33161218,33292290,33423362,33816578,33882114,33947650,34013186,34144258,34209794,34406402,34471938,34537474,34603010,34799618,34930690,34996226,35192834,35258370,35323906,35454978,35520514,35586050,35651586,35717122,35913730,35979266,36044802,36241410,36438018,36569090,36634626,37027842,37093378,37224450,37289986,37355522,37486594,37552130,37617666,37683202,37748738,37814274,37879810,38010882,38141954,38273026,38338562,38535170,38600706,38731778,38928386,39059458,39321602,39387138,39518210,39714818,39780354,39845890,39911426,39976962,40042498,40239106,40304642,40370178,40697858,40828930,41025538,41091074,41156610,41287682,41418754],"systems":[4194305,9830401,10944513,14286850,22544385,26607617,30081025,36569089,36634625,39452673],"speed":[8060929,23986177,32899073],"seminumerical":[19333121,21168129,37486593],"starting_bit":[10551304,12779528],"static":[196610,327683,524291,589827,720899,786435,917506,1048579,1114115,1179651,1310723,1376258,1441795,1507331,1638403,1703939,1769474,1835011,2031619,2097155,2228227,2490371,2555907,2752515,2818051,2883587,3014659,3080195,3145731,3211267,3276803,3407874,3473411,3538947,3604483,3735555,3801091,3932162,3997699,4128771,4259843,4390915,4521986,4587523,4653059,4784131,4849666,4980739,5046275,5111811,5177347,5308419,5373955,5439491,5505027,5636099,5701634,5767171,5898243,5963779,6029315,6094851,6160387,6225922,6291459,6356995,6422531,6619138,6881282,6946819,7012355,7077891,7143426,7208962,7340035,7405571,7471107,7536642,7602179,7733251,7798786,7864323,7929859,7995395,8060931,8126467,8192003,8323075,8388611,8454147,8519683,8585219,8716291,8781827,8847363,8912898,8978435,9043971,9109507,9175043,9240579,9306115,9371651,9437187,9502723,9568259,9633795,9764867,9830403,9895939,9961475,10027011,10158083,10223619,10289155,10354690,10420226,10485762,10551299,10682371,10878979,11010051,11075586,11141123,11206659,11272195,11337731,11403267,11665411,11730947,11796483,11927555,12058626,12124163,12189699,12255234,12320771,12386306,12517379,12582915,12713987,12779523,12845059,12910595,12976131,13041667,13107203,13238275,13369347,13500419,13631491,13697027,13828099,13893635,13959171,14024707,14090243,14155778,14221315,14352387,14417923,14483459,14548994,14614532,14745603,14811139,14876674,14942210,15007746,15073283,15138819,15269891,15335427,15400962,15466499,15532035,15597571,15663107,15794179,15925251,15990787,16056323,16121859,16187395,16252931,16384003,16449539,16646146,16711682,16777218,16842754,16908291,16973827,17039363,17104899,17235971,17301506,17432578,17498114,17563651,17629187,17694722,17760259,17825795,18022403,18153475,18284547,18350082,18481155,18546691,18612226,18677763,18743299,18808835,18874371,18939907,19005443,19070979,19136514,19202050,19267586,19398658,19464195,19529731,19660803,19726339,19791875,19857411,19922947,19988483,20054019,20119555,20185091,20250627,20316162,20447235,20578307,20709379,20840451,20905987,20971523,21037059,21168129,21233667,21299202,21364739,21430275,21495810,21561347,21626883,21692419,21757955,21823491,21889027,22216707,22282242,22347779,22413314,22478851,22544387,22609922,22675459,22740995,22806531,22872066,22937603,23003138,23134211,23199747,23461891,23527427,23592963,23658499,23724035,23855107,23920642,23986179,24051715,24248323,24313858,24379395,24444930,24510467,24576003,24641539,24707075,24772611,24838147,24903683,25034754,25100291,25165827,25231362,25296899,25362435,25493507,25559043,25690115,25755651,25886722,25952259,26017795,26148867,26214402,26279939,26345475,26411011,26476547,26542083,26607619,26673155,26738691,26869763,26935299,27066371,27131907,27197443,27262979,27459587,27525123,27656195,27721730,27787267,27852803,27983875,28049411,28114947,28180483,28246019,28377091,28442626,28508163,28573698,28639235,28704771,28770307,28835843,28901379,28966915,29163523,29294595,29360131,29425667,29491203,29556738,29687811,29753347,29818882,29949954,30015491,30081027,30212098,30277635,30343171,30408707,30539779,30736387,30801922,30867459,30932995,30998531,31064067,31129603,31260675,31391746,31457283,31522819,31588355,31653891,31719427,31850499,31981571,32047107,32112642,32178179,32243715,32309251,32440323,32505859,32571395,32636931,32702467,32768003,32833539,32899075,32964611,33030147,33095683,33161219,33292291,33423363,33488898,33619970,33751043,33816579,33882115,33947651,34013187,34144259,34209795,34406403,34471939,34537475,34603011,34734083,34799619,34930691,34996227,35192835,35258371,35323907,35389442,35454979,35520515,35586051,35651587,35717123,35848194,35913731,35979267,36044803,36175874,36241411,36372483,36438019,36569091,36634627,37027843,37093379,37158914,37224451,37289987,37355523,37421058,37486595,37552131,37617667,37683203,37748739,37814275,37879811,37945347,38010883,38076419,38141955,38207491,38273027,38338563,38535171,38600707,38731779,38797315,38928387,39059459,39190530,39321603,39387139,39518211,39583746,39649282,39714819,39780355,39845891,39911427,39976963,40042499,40173570,40239107,40304643,40370179,40501251,40632322,40697859,40763394,40828931,40960002,41025539,41091075,41156611,41222146,41287683,41418755],"section":[29753345],"subtraction":[20250626,25493505],"subversion":[25231361],"structures":[34275329],"single":[3473409,19333122,21168130,26279937,36831233,39845889],"scan":[10551298,12779522,19333124,21168132,24903681,32833537],"sign":[2228225,4980737,5767169,8585217,8978433,9043971,10551297,12517377,12779521,13631489,13893633,14614531,16121857,19857409,19922946,21889025,22544385,25690113,26476546,26607618,27262977,30015489,31260674,33161218,34799617,35323905,37683201,38731777],"specify":[4521985,9830401,22544385,26607617,33161217],"separately":[8192001,14942209,19333122,19529729,21168130,35586049,40304641],"summary":[21168129,34275329],"state":[1048595,5832706,6094868,6160388,12976140,15073302,16252948,19333128,19988499,20185096,21168136,22478870,23855105,23986196,30081046,30277654,31588354,34275329,36569110,37093396,38273044,40566786],"subtrahend":[19333121,21168129,25100289,39714822],"s1p":[524295,2818063,4390927,5177365,5963791,7405582,8060942,14352399,14417937,15532047,16384010,18677777,19005455,19070983,19333152,20250639,21168160,21823504,24772610,24903693,25296913,25493521,26542099,27852815,28377103,29294608,30933007,32440335,32833549,32899089,33292302,33882127,36044813,37879823,39387151,41156623],"subroutines":[25231361],"somewhat":[37617665],"shared":[196609,327681,524289,589825,720897,786433,917505,1048577,1114113,1179649,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,2031617,2097153,2228225,2490369,2555905,2752513,2818049,2883585,3014657,3080193,3145729,3211265,3276801,3407873,3473409,3538945,3604481,3735553,3801089,3932161,3997697,4128769,4259841,4390913,4521985,4587521,4653057,4784129,4849665,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5505025,5636097,5701633,5767169,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6619137,6881281,6946817,7012353,7077889,7143425,7208961,7340033,7405569,7471105,7536641,7602177,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9764865,9830401,9895937,9961473,10027009,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10682369,10878977,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11665409,11730945,11796481,11927553,12058625,12124161,12189697,12255233,12320769,12386305,12517377,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13238273,13369345,13500417,13631489,13697025,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14352385,14417921,14483457,14548993,14614529,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15794177,15925249,15990785,16056321,16121857,16187393,16252929,16384001,16449537,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17825793,18022401,18153473,18284545,18350081,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19398657,19464193,19529729,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20447233,20578305,20709377,20840449,20905985,20971521,21037057,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23134209,23199745,23461889,23527425,23592961,23658497,23724033,23855105,23920641,23986177,24051713,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,25034753,25100289,25165825,25231361,25296897,25362433,25493505,25559041,25690113,25755649,25886721,25952257,26017793,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26869761,26935297,27066369,27131905,27197441,27262977,27459585,27525121,27656193,27721729,27787265,27852801,27983873,28049409,28114945,28180481,28246017,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29163521,29294593,29360129,29425665,29491201,29556737,29687809,29753345,29818881,29949953,30015489,30081025,30212097,30277633,30343169,30408705,30539777,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31260673,31391745,31457281,31522817,31588353,31653889,31719425,31850497,31981569,32047105,32112641,32178177,32243713,32309249,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33292289,33423361,33488897,33619969,33751041,33816577,33882113,33947649,34013185,34144257,34209793,34406401,34471937,34537473,34603009,34734081,34799617,34930689,34996225,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35848193,35913729,35979265,36044801,36175873,36241409,36372481,36438017,36569089,36634625,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38535169,38600705,38731777,38797313,38928385,39059457,39190529,39321601,39387137,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40173569,40239105,40304641,40370177,40501249,40632321,40697857,40763393,40828929,40960001,41025537,41091073,41156609,41222145,41287681,41418753],"slow":[20054017,29163521],"software":[25231363],"syuu":[25231362],"s2limb":[14352390,18677766,19333126,21168134,25296902,25493510,32440326,32899080],"similar":[2490369,19529729,35586049,38141953],"stdout":[16973825,19333122,21168130,21430273],"successfully":[4653057,6029313,8388609,12320769,21561345,25231361,38928385],"struct":[1245186,4194306,4325378,13172738,14286850,33685506,36110338,36831234,39452674],"scratch":[1638402,1703940,2752517,3473413,4259842,4784130,15925251,19333128,19726340,20578306,21168136,26017794,26279941,26411013,28704770,34734082,37748741,40501250],"store":[1835009,9764865,10223617,18481153,18939906,19333128,21168136,21626881,29753345,33030145,39059457],"subfolder":[25231361],"suited":[30081025,36569089],"specific":[25231362],"separate":[5505025,25362433,30081025,36569089,39780353,41025538],"studio":[25231367],"sense":[22544385],"shows":[25231362,40108033],"suppressed":[4653057,6029313,8388609,12320769,21561345,38928385],"s2n":[19005449,19333126,20250630,21168134,25362440,28377095,39780360],"syntax":[196609,327681,393217,458753,524289,589825,720897,786433,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,1966081,2031617,2097153,2162689,2228225,2424833,2490369,2555905,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3735553,3801089,3866625,3932161,3997697,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4784129,4849665,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6684673,6750209,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11665409,11730945,11796481,11927553,12058625,12124161,12189697,12255233,12320769,12386305,12517377,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15794177,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20578305,20643841,20709377,20840449,20905985,20971521,21037057,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25296897,25362433,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30539777,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36569089,36634625,36831233,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38535169,38600705,38666241,38731777,38797313,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753]} \ No newline at end of file diff --git a/docs/fti/FTI_116.json b/docs/fti/FTI_116.json index 79c3d35..76bba2e 100644 --- a/docs/fti/FTI_116.json +++ b/docs/fti/FTI_116.json @@ -1 +1 @@ -{"twice":[18743298],"typename":[14090241],"timing":[7012354,36044802],"tests":[13631490],"two":[1310722,4259842,4587522,4915202,6553601,7143426,10092545,10223618,10551298,12320770,12517379,12713985,13041665,13238274,13565954,14417922,14614529,14876673,17170434,19070977,19464194,20447234,21692418,23658497,24117250,24576001,24707074,24772609,26279937,26607618,27262978,27328514,27590658,27983873,29949953,30081025,30343170,31195138,31457281,31522817,31850498,32047105,32112641,33423362,33947650,34471938,34996226,35717122,35848194,36634626,37486593,37552129,38141954,38600706,38666242,41025537],"times":[8126466],"twister":[4915201,12255234,17170433,28114947,28442626,31588354],"types":[14090242,20185094],"trap":[20316161],"tointptr":[524293,1310721,5177346,5701633,8650753,9895941,11206661,11337729,16646145,17104897,18874369,22937602,23134209,23986178,29884421,31981573,33095681,34930690,38600705],"twos":[2424833,6029313,10485761,11272193,12058625,12451841,12517377,16515073,20905985,26869761,38273025,39976961],"treated":[14286849,38076417],"tostring":[131073,1310722,1572866,1835010,2162694,4063238,4259842,4587521,4653058,4849670,5701634,6225926,8388610,8650754,8847362,9109510,11337730,12124161,13238274,13369346,13762566,14090241,14221314,14286850,14614530,16646146,16842754,16908292,17104898,17956870,18874370,19922950,20250626,21037058,21626881,23068674,23134210,23789574,23920646,23986178,26476550,28246018,28311553,28966913,29097988,30605314,30736386,31195138,31391746,31719426,33095681,33751046,34013186,34209796,34340866,34406406,34734082,35061762,35192834,35389441,35520514,35717122,35782662,38141954,38600705,39518214,39649281,39714817,40108034,40566786],"three":[40108033],"true":[393217,7012353,7143425,7995393,8519681,9502721,10223617,10551297,12320769,15663105,19464193,19726337,20119553,20250625,21692417,23986178,24117249,24707073,25755649,26607617,27262977,27852801,28901377,29425665,30867457,31260673,31850497,34078721,34471937,34996225,35848193,36044801,36634625,37158913,37224449,37355521,38666241],"taken":[3670017,8781825,9306113,13369345,20250625,23265281,23986177,24838145,28442625,31588353,34668545],"takes":[3080193,21889025,25952257,34013185,37945345],"traps":[17235969,39911425],"typede":[20185089],"truncation":[21757954,25296898,38535170,40960002],"truncated":[3276802,4915211,5373954,5439489,7471105,8388609,10944513,15859714,16842753,17170443,18939906,19136513,21102593,24444929,26017794,32309250,38207489,39583745],"trunc":[4915209,5439490,7471106,8912899,11993090,12845061,16711683,17170441,19070981,24444930,29294595,32112643,34603011,36110340,36765698,36896771,39583746],"tell":[20250625],"terminated":[589825,4063233,4915216,6225921,8388609,14221313,16842753,16908289,17170448,21299201,25362434,30605313,32964609,34275330,34734081,35520513,38469633,40566785],"total":[8388609,16842753],"truncate":[21757953,25296897,38535169,40960001],"terminator":[8388609,14614530,16842753,24576001,31719426,34734082,40108034,40566786],"trial":[13631489],"traditionally":[28442625,31588353],"title":[65537],"time":[3080193,25952257,27983873,28442626,31588354],"temporary":[1376268,9240582,9306118,10878982,19529740,22740998,37683212,40828934],"theoretic":[851969,1638401,2293761,3473409,9043969,10616833,13631489,13828097,14352385,18546689,21954561,22544385,25165825,27721729,28770305,29687809,30015489,32505857,33488897,33816577,33882113,35651585,37289985,37814273,38010881,38338561,41418753],"try":[5701633,8650753,11337729,12124161,14090241,16646145,17104897,21626881,23134209,28311553,28966913,35389441,39649281,39714817],"top":[131073,196609,655361,917505,1310724,1572865,1835009,2097153,2359297,2949121,3407873,4194305,4259843,4587523,4653057,4980737,4915201,5308417,5570561,5701633,6291457,6684673,7077889,8650756,9568257,11141121,11337729,12124163,12648449,12910593,13172737,13238275,13565953,14090243,14417921,15007745,16056321,16646148,17104897,17170435,18612225,18874369,19857409,20447233,21626883,22806529,23134212,23396353,23592961,24510465,26935297,27328513,27590657,28246017,28311553,28377089,28639233,28966913,30343169,30736385,31195139,31784961,32243713,32571393,33095681,33423361,33947649,35389441,35717123,38141955,38600707,39387137,39649282,39714817,39845889],"trailing":[31719425],"testing":[1900545,12713985,18087937,31522817,39256065],"table":[4915201,8454149,17170433,20185089,39452674],"tab":[4915201,8454160,17170433],"tight":[10944513],"third":[8454146,16318465,24641537,26738689],"trigger":[12713985,31522817,39256065],"terminating":[8388609,14221313,16842753,30605313],"topic":[1],"type":[131075,262146,327683,393218,458755,524289,589825,720899,786434,851971,983044,1048577,1114118,1179650,1245187,1310723,1376259,1441794,1507330,1572866,1638403,1703938,1769476,1835010,1900546,1966085,2031618,2162689,2293763,2359297,2424835,2490369,2555908,2621444,2686980,2752513,2883586,3014658,3080198,3145729,3211266,3276802,3342338,3407873,3473410,3538945,3604481,3670018,3735554,3801090,3866627,3932162,3997698,4063236,4128770,4259844,4325380,4390913,4456450,4521986,4587524,4653058,4718596,4784131,4849665,4915201,5046274,5111809,5177349,5242882,5308418,5373954,5439490,5505025,5570562,5636100,5701635,5767171,5832706,5898242,5963782,6029315,6094852,6225924,6356994,6422530,6488066,6553602,6619139,6750211,6815746,6881282,6946819,7012358,7143427,7208962,7274499,7340034,7405571,7471108,7602180,7536643,7667715,7733251,7798786,7929861,7995394,8060930,8126467,8192003,8257538,8323074,8388613,8454149,8519682,8585219,8650757,8716291,8781826,8847362,8912900,8978433,9043971,9109508,9175042,9240580,9306116,9371651,9437187,9502722,9568258,9633794,9699330,9764866,9830402,9895937,9961474,10027012,10092547,10158081,10223619,10289153,10354689,10420226,10485763,10551299,10616835,10747907,10813442,10878979,10944514,11010050,11075585,11141121,11206657,11272195,11337731,11403266,11468803,11534339,11599876,11665410,11730949,11796481,11862018,11927555,11993090,12058627,12124164,12189697,12255234,12320771,12386306,12451842,12517379,12582914,12713987,12779521,12845059,12910593,12976130,13041667,13107202,13172737,13238276,13303811,13369348,13434884,13500419,13565953,13631491,13697025,13762564,13828099,13893635,13959169,14024706,14090248,14155778,14221316,14286853,14352387,14417921,14483458,14548994,14614532,14680067,14745601,14811139,14876676,14942211,15073283,15138821,15204354,15269891,15335427,15400962,15466498,15532033,15597570,15663106,15728643,15794179,15859714,15925250,15990787,16056321,16121860,16187395,16252930,16318471,16384002,16449539,16515074,16580609,16646148,16711684,16777218,16842757,16908292,16973826,17039364,17104899,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694723,17760258,17825794,17891331,17956865,18022402,18087938,18153474,18219011,18284546,18350086,18415618,18481154,18546690,18677764,18743299,18808835,18874370,18939906,19005442,19070979,19136519,19202050,19267588,19333121,19398658,19464195,19529732,19595266,19660802,19726338,19791876,19857409,19922945,19988481,20054019,20119554,20185091,20250628,20316162,20381698,20447233,20512773,20578312,20643845,20709377,20774915,20840451,20905986,20971521,21037059,21102595,21233666,21299201,21364739,21430274,21495810,21561348,21626884,21692419,21757954,21823491,21889028,21954562,22020099,22085635,22151171,22216706,22282246,22347778,22413316,22478850,22544387,22609922,22675457,22740996,22872066,22937605,23003138,23068675,23134212,23199746,23265282,23330818,23461890,23527425,23592961,23658499,23724037,23789569,23855106,23920643,23986184,24051714,24117251,24182786,24248322,24313859,24379394,24444932,24576003,24641544,24707075,24772611,24838146,24903681,24969220,25034754,25100290,25165826,25231362,25296898,25362433,25427971,25493506,25559044,25624577,25690115,25755650,25821189,25886722,25952262,26017794,26083330,26148865,26214403,26279939,26345477,26411010,26476545,26542083,26607619,26673155,26738692,26804226,26869762,27000835,27066370,27131906,27197445,27262979,27328514,27394052,27459585,27525123,27590658,27656196,27721732,27787266,27852802,27918337,27983876,28049410,28114945,28180485,28246018,28311555,28377089,28442626,28508162,28573699,28639233,28704775,28770307,28835844,28901378,28966915,29032451,29097986,29163522,29229058,29294596,29360129,29425666,29491201,29556739,29622274,29687811,29753346,29818883,29884417,29949955,30015490,30081026,30146561,30212099,30277637,30343170,30408706,30474242,30539782,30605316,30670852,30736386,30801923,30867458,30932993,30998533,31064069,31129603,31195139,31260674,31326210,31391746,31457283,31522818,31588354,31653892,31719430,31850499,31916034,31981569,32047107,32112643,32178178,32243713,32309250,32374787,32440321,32505859,32636930,32702467,32768002,32833537,32899074,32964609,33030145,33095683,33161218,33226754,33292289,33357827,33423362,33488898,33554435,33619971,33685505,33751041,33816579,33882116,33947650,34013186,34078722,34144260,34209796,34275329,34340865,34406403,34471939,34537475,34603013,34668546,34734084,34799618,34865156,34930696,34996227,35061762,35127298,35192833,35258370,35323905,35389443,35454977,35520516,35586050,35651588,35717124,35782657,35848195,35913731,35979266,36044806,36110339,36175874,36241411,36306946,36372482,36438018,36503555,36569090,36634627,36700163,36765701,36831234,36896771,36962307,37027841,37093377,37158914,37224452,37289987,37355522,37421057,37486596,37552132,37617666,37683204,37748738,37814275,37879811,37945349,38010883,38076417,38141955,38273026,38207491,38338565,38404098,38535170,38469633,38600708,38666243,38731780,38797316,38862851,38928385,38993923,39059457,39124995,39190529,39256067,39321602,39452675,39518209,39583747,39649284,39714819,39780354,39911426,39976963,40042499,40108036,40173570,40239105,40304641,40370178,40435713,40501250,40566788,40632323,40697858,40763394,40828933,40894468,40960002,41025539,41091074,41156611,41222150,41287683,41353218,41418755],"tmp":[14286850],"test":[4915203,6029314,7405569,17170435,37814273],"truncating":[4915207,17170439,17235969,20316162,21102594,26214401,36962305,38207489,39911425]} \ No newline at end of file +{"twice":[18022402],"typename":[13172737],"timing":[7405570,33292290],"tests":[13041666,25231361],"two":[1245186,4194306,4325378,6160385,8519682,9306114,9633793,11927554,11993090,12517379,13238274,13828097,13893633,14286850,14483457,14680066,15073281,17629186,18546689,19333122,19922945,20774914,21102594,21168130,22478849,22740994,23527425,23855105,24379394,25231361,25427970,27131906,27197442,27787265,28049410,28966914,29294593,30277633,30605314,31588353,31653889,31981569,32047105,32243714,32964610,33685506,33751042,35520513,35782658,36110338,36372482,36831234,37945346,38862850,39452674,39518209,41156609],"times":[9240578],"twister":[12976130,19333121,21168129,30081026,36569090,37093379],"types":[13172738,25231367],"trap":[23592961],"tointptr":[393221,1245185,5177346,7667713,10092549,10616837,10747905,10944513,16515073,18219009,18415617,24772610,25821185,26607618,29097989,31326213,33161218,36110337,36962305],"twos":[2228225,5767169,8978433,10551297,12517377,12779521,13631489,16121857,21889025,25690113,35323905,37683201],"treated":[14614529,40108033],"tostring":[131073,1245186,1572866,1966086,2293762,4194306,4325377,4653062,4718594,5242886,5898242,6029318,7667714,7733250,8388614,10747906,10944514,11534337,12124162,12320774,13172737,13893634,14090242,14286850,14614530,15269890,16449540,16515074,16580614,18087942,18219010,18415618,19595270,19660802,21037058,21561350,22544386,23134210,23330818,24117249,24182785,25821186,26607618,27656196,29884422,30015490,31195142,32178180,32309250,32571394,32702466,32768002,33685506,34340866,35717122,35913730,36110337,36438018,36700161,36831234,36896769,36962305,38404097,38666246,38731778,38928390,39452674,40304642,40435718,40566785],"three":[38731777],"true":[458753,7274497,7405569,8257537,8519681,9306113,11927553,13238273,16318465,17629185,17956865,20381697,21954561,22544385,22740993,24379393,26607618,27000833,27131905,27197441,27394049,27590657,28049409,28311553,28966913,32243713,32964609,33292289,33751041,35061761,36306945,36372481,37289985,37945345,38993921,39124993,39256065],"taken":[3604481,9043969,9830401,12124161,21233665,22544385,26607617,28246017,30081025,36241409,36569089],"takes":[3473409,20054017,26279937,29163521,32571393],"traps":[17235969,40697857],"typede":[25231361],"truncation":[21692418,24707074,37224450,40239106],"truncated":[2883586,5308417,5373954,7733249,7864321,10682369,15269889,15794178,18153474,19333131,19529729,19726337,21168139,26935297,30867458,31064066,35586049,39911425],"trunc":[5308418,7864322,8847362,11665411,11730949,17825795,18546693,19333129,21168137,26935298,28508163,31653891,32505859,35192835,39911426,41025538,41418756],"tell":[22544385],"terminated":[786433,4653057,6029313,7733249,14090241,15269889,16449537,19333136,21168144,23134209,24248321,28114946,30343169,32702465,35717121,37027842,37355521,40304641],"total":[7733249,15269889],"truncate":[21692417,24707073,37224449,40239105],"terminator":[7733249,13893634,15269889,19922945,30015490,32702466,35717122,38731778],"trial":[13041665],"traditionally":[30081025,36569089],"temp":[25231368],"title":[65537],"time":[3473409,23855105,26279937,30081026,36569090],"temporary":[3997708,8192006,9830406,11403270,20447244,25165830,34996236,36634630],"theoretic":[1179649,2031617,2490369,3080193,7995393,10223617,12910593,13041665,13697025,17104897,21626881,22216705,22675457,26738689,27459585,28180481,29491201,29753345,31719425,33030145,33095681,35651585,37486593,37617665,38141953,39976961,41091073],"try":[7667713,10747905,10944513,11534337,13172737,16515073,18415617,24117249,24182785,25821185,36700161,36896769,38404097,40566785],"top":[131073,262145,655361,851969,1245188,1572865,1900545,2293761,2359297,2621441,2686977,3670017,4063233,4194307,4325379,4718593,4915201,5570561,6553601,6815745,7667713,8650753,10747905,10944516,11534339,11599873,11862017,11993089,12451841,12648449,13172739,14286851,14680065,15728641,15859713,16515076,17891329,18219009,18415617,19333121,20512769,20774913,21102593,21168131,22020097,22085633,22151169,23265281,23330817,24117251,24182785,25427969,25821188,26083329,26804225,27918337,29622273,30474241,30605313,30670849,33685507,34340865,35782657,36110339,36503553,36700161,36765697,36831235,36896769,36962305,38404097,38469633,38862849,39452675,40566786],"trailing":[30015489],"testing":[1835009,15073281,18481153,30998529,31588353],"table":[9764869,19333121,21168129,25231361,38273026],"tab":[9764880,19333121,21168129],"tight":[10682369],"tar":[25231361],"third":[9764866,15925249,26017793,26411009],"trigger":[15073281,30998529,31588353],"toolchain":[25231362],"terminating":[7733249,14090241,15269889,23134209],"topic":[1],"type":[131075,196610,327683,393217,458754,524291,589828,720898,786433,917506,983041,1048579,1114115,1179651,1245187,1310722,1376258,1441796,1507332,1572866,1638402,1703941,1769474,1835010,1966081,2031619,2097153,2228227,2293762,2359297,2490371,2555906,2621441,2752518,2818052,2883586,2949121,3014660,3080194,3145730,3211266,3276803,3342337,3407874,3473414,3538946,3604482,3735554,3801089,3866625,3932162,3997699,4063234,4128770,4194308,4259843,4325380,4390916,4456449,4521986,4587522,4653060,4718594,4784130,4849666,4980739,5046274,5111809,5177349,5242881,5308418,5373954,5439490,5505028,5570562,5636099,5701634,5767171,5898242,5963780,6029316,6094852,6160386,6225922,6291462,6356994,6422530,6619138,6684675,6750209,6881282,6946819,7012354,7077890,7143426,7208962,7274498,7340035,7405574,7471108,7536642,7602179,7667715,7733253,7798786,7864324,7929859,7995395,8060933,8126467,8192004,8257538,8323075,8388612,8454147,8519683,8585218,8716291,8781827,8847362,8912898,8978435,9043970,9109506,9175044,9240579,9306115,9371650,9437185,9502722,9568259,9633795,9699329,9764869,9830404,9895937,9961475,10027009,10092545,10158083,10223619,10289154,10354690,10420226,10485762,10551299,10616833,10682370,10747907,10878980,10944517,11010051,11075586,11141125,11206657,11272194,11337731,11403267,11468801,11534340,11599873,11665412,11730947,11796482,11862017,11927555,11993089,12058626,12124164,12189697,12255234,12320772,12386306,12451841,12517379,12582915,12713987,12779523,12845058,12910595,12976130,13041667,13107203,13172744,13238275,13303809,13369347,13434881,13500419,13565953,13631490,13697027,13762561,13828099,13893636,13959170,14024705,14090244,14155778,14221314,14286852,14352389,14417924,14483460,14548994,14614533,14680065,14745602,14811139,14876674,14942210,15007746,15073283,15138819,15204353,15269893,15335427,15400962,15466499,15532036,15597571,15663108,15794178,15859713,15925255,15990787,16056322,16121858,16187395,16252931,16318466,16384003,16449540,16515076,16580609,16646146,16711682,16777218,16842754,16908292,16973827,17039362,17104898,17170433,17235970,17301506,17367042,17432578,17498114,17563651,17629187,17694722,17760259,17825796,17956866,18022403,18087937,18153474,18219010,18284546,18350082,18415619,18481154,18546691,18612226,18677765,18743298,18808835,18874371,18939912,19005446,19070979,19136514,19202050,19267586,19333121,19398658,19464193,19529731,19595265,19660803,19726343,19791877,19857412,19922947,19988483,20054020,20119553,20185089,20250630,20316162,20381698,20447236,20512769,20578306,20643841,20709378,20774914,20840450,20905988,20971524,21037059,21102594,21168130,21233666,21299202,21364738,21430275,21495810,21561347,21626884,21692418,21757955,21823491,21889026,21954562,22085634,22151169,22216706,22282242,22347779,22413314,22478851,22544388,22609922,22675458,22740995,22806531,22872066,22937602,23003138,23068673,23134212,23199747,23330818,23396353,23461890,23527427,23592962,23658499,23724034,23855108,23920642,23986177,24051716,24117252,24182787,24248321,24313858,24379395,24444930,24510465,24576003,24641538,24707074,24772613,24838147,24903683,24969217,25034754,25100292,25165828,25231366,25296900,25362437,25427969,25493509,25559042,25624577,25690114,25755652,25821188,25886722,25952258,26017796,26148866,26214402,26279942,26345479,26411016,26476546,26542083,26607624,26673154,26738690,26804225,26869762,26935300,27000834,27066370,27131907,27197443,27262979,27328514,27394050,27459587,27525123,27590658,27656194,27721730,27787267,27852804,27983874,28049411,28114945,28180483,28246018,28311554,28377094,28442626,28508164,28573698,28639234,28704771,28770306,28835843,28901381,28966915,29032449,29097985,29163525,29229061,29294596,29360131,29425667,29491203,29556738,29687811,29753347,29818882,29884417,29949954,30015494,30081026,30146561,30212098,30277635,30343169,30408707,30474241,30539779,30605314,30736385,30801922,30867458,30932996,30998531,31064066,31129602,31195137,31260674,31326209,31391746,31457281,31522821,31588354,31653891,31719426,31784961,31850498,31916033,31981571,32047106,32112642,32178180,32243715,32309250,32374785,32440325,32505861,32571394,32636931,32702468,32768002,32833539,32899077,32964611,33030148,33095683,33161224,33226753,33292294,33357827,33423362,33488898,33554433,33619970,33685507,33751043,33816578,33882116,33947652,34013188,34078721,34144259,34209793,34275329,34340866,34406403,34471939,34537475,34603011,34668545,34734083,34799618,34865153,34930690,34996228,35061762,35127297,35192835,35258371,35323907,35389442,35454979,35520515,35586051,35651587,35717124,35782658,35848194,35913729,35979266,36044805,36110340,36175874,36241410,36306946,36372483,36438017,36569090,36634629,36700163,36765697,36831235,36896771,36962307,37027841,37093377,37158914,37224450,37289988,37355521,37421058,37486595,37552131,37617668,37683202,37748740,37814275,37879811,37945347,38010884,38076418,38141955,38207489,38273027,38338563,38404099,38535171,38600707,38666241,38731780,38797313,38862850,38928387,38993922,39059459,39124994,39190530,39256066,39321602,39387140,39452676,39518211,39583746,39649282,39714819,39780358,39845890,39911427,39976963,40042499,40108033,40173570,40239106,40304644,40370178,40435713,40501250,40566788,40632322,40697858,40763394,40828929,40894465,40960002,41025541,41091077,41156612,41222146,41287684,41353217,41418755],"tmp":[14614530],"test":[5767170,7602177,19333123,21168131,37486593],"truncating":[17235969,19333127,19529730,21168135,23592962,28835841,32636929,35586049,40697857]} \ No newline at end of file diff --git a/docs/fti/FTI_117.json b/docs/fti/FTI_117.json index 4f68559..6f8c2e4 100644 --- a/docs/fti/FTI_117.json +++ b/docs/fti/FTI_117.json @@ -1 +1 @@ -{"unique":[9109506,13762562,16121858,34865154],"usual":[16908289,20250625,22740993],"unit":[327681,524289,589825,1048578,1114113,1441793,1900545,1966081,2162690,2228225,2293761,2424833,2490369,2621441,2752514,2818049,3211265,3342337,3473409,3604481,3670017,3735553,3866625,4128769,4325377,4390914,4521985,4718593,4849666,5046273,5111809,5242881,5439489,5636097,5767169,6094849,6160385,6553601,6619137,6946817,7667713,7733249,7864321,8126465,8192001,8257537,8323073,8454145,8585217,8716289,8781825,8847361,8912897,8978433,9175041,9437185,9764865,9830401,9895937,10616833,10682369,10747905,10944513,11206657,11272193,11403265,11534337,11927553,11993089,12255233,12451841,12713985,12845057,13107201,13697026,13828097,13893633,14548993,14680065,14745601,14811137,15073281,15269889,15400961,15728641,15990785,16252929,16449537,16515073,17432577,17563649,17891329,17956866,18087937,18219009,18546689,18677761,18743297,18808833,19070977,19398657,19595265,19791873,19922946,20709377,20971522,21168129,21299201,21364737,21430273,21757953,21823489,21954561,22020097,22085633,22151169,22478849,23003137,23265281,23527425,23658497,23789570,23986177,24051713,24248321,24313857,24444929,24641537,24772609,24838145,24903681,24969217,25100289,25165825,25231361,25296897,25362433,25559041,25624578,25690113,26148865,26279937,26476546,26542081,26673153,26804225,26869761,27000833,27656193,27983873,28049409,28114945,28442625,28704769,29097985,29360130,29491201,29556737,29687809,29753345,29884417,29949953,30015489,30081025,30670849,31129601,31391745,31522817,31588353,31653889,31981569,32047105,32112641,32440322,32505857,32702465,32833537,32964609,33030145,33161217,33357825,33488897,33619969,33751042,33816577,34013185,34144257,34275329,34340865,34668545,35061761,35192833,35782658,35913729,36503553,36896769,37224449,37486593,37879809,38010881,38273025,38338561,38404097,38535169,38469633,38797313,38862849,38993921,39124993,39256065,39321601,39518210,39583745,39976961,40042497,40304641,40435714,40632321,40894465,40960001,41025537,41156609,41287681,41353217,41418753],"uint16":[196610,655362,2949122,3932164,3997700,4259844,4980738,7077889,12124161,13238276,13959171,14155780,15204356,18612226,19202052,22806530,22872068,23199748,23396354,24510466,27131908,27328516,27590660,28508164,30343172,30474244,31195140,32571394,33423364,33947652,35717124,38141956,39387138],"updates":[4915201,8781825,17170433],"unconditionally":[33292289],"unmanaged":[327682,458754,524290,589825,851970,983042,1114114,1245185,1310724,1376258,1441794,1638402,1900546,1966082,2293762,2424834,2490370,2555906,2621442,2686978,2883586,3014658,3080194,3211266,3276802,3342338,3473410,3670018,3735554,3866626,4063234,4325378,4521986,4587521,4718594,4784130,4849666,5177346,5242882,5373954,5439490,5505026,5701633,5767170,5963778,6029314,6094850,6160385,6225922,6488066,6750210,6881282,6946818,7012354,7077893,7274498,7405570,7471106,7602178,7667714,7733250,7929858,8192002,8257538,8323074,8388612,8454146,8650753,8716290,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437185,9633794,9764866,9830402,9895938,9961474,10027010,10092546,10485762,10616834,10747906,10878978,10944514,11206658,11272194,11337729,11403266,11468802,11599874,11730946,11927554,11993090,12058626,12124166,12386306,12451842,12517378,12582914,12845058,13041666,13107202,13303810,13369346,13434882,13500418,13631490,13762562,13828098,13893634,13959170,14221316,14286850,14352386,14548994,14614530,14680066,14745602,14876674,14942210,15138818,15269890,15335426,15400962,15728642,15794178,15859714,15990786,16121858,16187394,16252930,16318465,16384003,16449538,16515074,16646145,16711682,16842756,16908290,16973826,17039362,17104897,17235970,17563650,17629186,17694722,17891330,18087938,18219010,18350082,18546690,18677762,18743298,18808834,18874370,18939906,19070978,19136514,19267586,19398658,19529730,19595266,19791874,19857409,20054018,20250626,20316162,20381698,20512770,20578306,20643842,20774914,20905986,21037058,21102594,21299202,21364738,21430274,21561346,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22282242,22347778,22413314,22478850,22544386,22740994,22937602,23003138,23068674,23134209,23265282,23724034,23920642,23986178,24051714,24248322,24313858,24444930,24576002,24641538,24772610,24838146,24969218,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25690114,25952258,26017794,26279938,26345474,26673154,26804226,26869762,27000834,27197442,27394050,27525122,27656194,27721730,27787266,27983874,28049410,28180482,28704770,28770306,28835842,29032450,29097986,29229058,29294594,29491202,29556738,29687810,29818882,29884418,29949954,30015490,30081026,30212098,30277634,30539778,30605316,30670850,30998530,31064066,31129602,31391746,31457282,31653890,31719426,31981570,32112642,32309250,32374786,32505858,32636930,32702466,32899074,32964610,33095682,33357826,33488898,33554434,33619970,33816578,33882114,34013186,34144258,34209794,34275330,34340866,34406402,34603010,34668546,34734086,34799618,34865154,34930690,35061762,35192834,35258370,35323906,35520513,35651586,35913730,36044802,36110338,36241410,36306946,36700162,36765698,36831234,36896770,36962306,37027842,37093378,37224450,37289986,37421058,37486594,37552130,37683202,37814274,37879810,37945346,38010882,38273026,38207490,38338562,38404098,38535170,38469634,38600707,38731778,38797314,38928385,39059459,39124994,39321602,39583746,39780354,39911426,39976962,40042498,40108034,40566790,40632322,40828929,40894466,40960002,41025538,41156610,41222146,41287682,41353218],"unpredictable":[29097985],"uniquely":[38338561],"unaffected":[26148865],"underflow":[17235969,39911425],"unsigned":[720898,983042,1245185,1441793,1638401,2293761,2555905,2686978,3473409,3932161,3997697,4259843,4456449,4915209,5177345,5373954,5636097,5832705,6750210,7471105,7667713,8192001,9437185,9633796,9961474,10027010,10616834,10747905,10813441,11403265,11599873,11665409,11730946,11927553,12189697,13959169,14155777,14942209,15204353,15269889,15597569,15728641,15990786,16580609,16711682,17170442,17367041,17629186,17694721,17825793,18022401,18284545,18415617,18546689,18743297,19005441,19202049,19267585,19398657,19595265,19660801,20512770,20840452,21561346,21823489,21954561,22020097,22085633,22216705,22872065,23199745,23330817,23461889,23855105,23986179,24444929,24838145,25165825,25427969,25690113,26017794,26214402,26411009,26542081,26673154,27066369,27131905,27656193,27721731,27918337,28180481,28377089,28508161,28835842,29163521,29294594,29622273,29687810,30408705,30474241,30932993,31064065,31129601,31588353,31916033,32309250,32505857,32768001,33226753,33488897,33554433,33619969,34603010,35127297,35323905,35586049,35913729,35979265,36110338,37093377,37289985,37421057,37748737,37879809,38010881,38141953,38862849,39124993,39780353,40501249,40763393,41418753],"upward":[23724033,41222145],"uint":[327683,720899,983042,1114115,1245185,1441793,1638401,1900545,1966082,2293761,2555905,2621444,2686978,3080194,3276801,3473409,4325380,4718595,5177345,5373955,5636097,5963779,6094852,6750209,7012356,7405569,7471105,7667713,7929860,8192001,8454146,9371649,9437185,9633793,9961475,10027010,10616834,10747905,11403265,11599873,11730946,11927553,13434882,14286849,14942209,15138819,15269889,15597569,15728641,15859713,15990786,16187393,16318468,16580609,16711681,17039361,17367041,17629185,17694721,18087937,18219011,18350084,18546689,18677764,18743297,18939905,19136516,19267585,19398657,19595265,20512770,20578310,20643843,20840451,21364739,21561346,21823489,21889027,21954561,22020097,22085633,22282244,22413313,22937602,23003137,23461889,23724035,24051714,24444929,24641540,24838145,24969220,25165825,25427969,25690113,25952258,26017793,26214401,26345475,26411009,26542081,26673154,27197443,27394051,27525121,27656193,27721730,28180484,28704774,28835842,29032449,29229057,29294593,29687810,29818881,30277636,30539780,30670852,30998531,31064068,31129601,31588353,31653892,31916033,32309249,32505857,32768001,33488897,33554433,33619969,34144258,34603010,35258369,35586049,35913729,35979265,36044804,36110338,36765701,36831233,37093377,37224452,37289985,37486596,37552130,37748737,37879809,37945347,38010881,38731777,38862849,39124993,39780353,40763393,40894468,41156611,41222147,41418753],"uniform":[4915201,17170433,23658497],"usually":[8650753,23986177,35717121],"unless":[589825,1179649,2490369,20185089],"useful":[10289153,12713985,21889025,31522817,32899073,37945345,39256065,40239105],"unchanged":[5177345,29097985],"unmodified":[4915201,17170433,37224449],"used":[851969,1179649,1638401,2424833,4784130,4915201,5111811,5636098,6029313,6881281,8126465,8781825,8847361,9306113,9633793,10485761,10944513,11272193,12058625,12451841,12517377,14352385,14614531,16515073,16908289,17170433,17498113,19529731,20250625,20774913,20905985,22544385,22740993,23986177,24576003,25493505,26869761,28442627,29097985,31588355,31719427,32178177,34930689,35520513,37289985,38273025,39452673,39976961,40828931],"ushort":[3932162,3997698,13959170,14155778,15204354,17629186,19202050,22872066,23199746,26017794,27131906,28508162,30474242],"uinteger":[327683,720899,983042,1114115,1245185,1441793,1638401,1900545,1966082,2293761,2555905,2621444,2686978,3080194,3276801,3473409,4325380,4718595,5177345,5373953,5636097,5963779,6094852,6750209,7012356,7405569,7471105,7667713,7929860,8192001,8454146,9371649,9437185,9633793,9961473,10027010,10616834,10747905,11403265,11599873,11730946,11927553,13434882,14286849,14942209,15138819,15269889,15597569,15728641,15859713,15990786,16187393,16580609,16711681,17039361,17367041,17629185,17694721,18087937,18219011,18350084,18546689,18677764,18743297,18939905,19136516,19267585,19398657,19595265,20512770,20578310,20643843,20840451,21364739,21561346,21823489,21889027,21954561,22020097,22085633,22282244,22413313,22937602,23003137,23461889,23724035,24051714,24444929,24641540,24838145,24969220,25165825,25427969,25690113,25952258,26017793,26214401,26411009,26345475,26542081,26673154,27197443,27394051,27525121,27656193,27721730,28180484,28704774,28835842,29032449,29229057,29294593,29687810,29818881,30277636,30539780,30670852,30998531,31064068,31129601,31588353,31653892,31916033,32309249,32505857,32768001,33488897,33554433,33619969,34144258,34603010,35258369,35586049,35913729,35979265,36044804,36110338,36765701,36831233,37093377,37224452,37289985,37486596,37552130,37748737,37879809,37945347,38010881,38731777,38862849,39124993,39780353,40763393,40894468,41156611,41222147,41418753],"uint32":[196610,458754,655364,720901,851971,983045,1245187,1441794,1638404,2293766,2555909,2686983,2883587,3211265,3342339,3473413,3604483,3670017,3866625,4259844,4521985,4915201,4980738,5046274,5242881,5439490,5636098,5767170,6488066,6750213,6946817,7077889,7274498,7471107,7602178,7667717,7733249,7929857,8192005,8257537,8323073,8716290,8912900,9175041,9371650,9437189,9633794,9764866,9830401,10027012,10092547,10616837,10747906,11403267,11468802,11534338,11599876,11730951,11927555,12124161,12255233,12845060,13041665,13238276,13303809,13369345,13500417,13828097,13893634,14352387,14680068,14811138,14876674,14942210,15269890,15335425,15597572,15728642,15990790,16449537,16580610,16711685,16908289,17170433,17367044,17432578,17694722,17891332,18546693,18612228,18743298,18808835,19070980,19267589,19398658,19595266,19791876,20185091,20250625,20381698,20512775,20709377,20774915,20840453,21299203,21430275,21561351,21757953,21823493,21954562,22020098,22085635,22151172,22544387,23265281,23396354,23461892,24313857,24444931,24510468,24772612,24838146,24903681,25100289,25165829,25231361,25296897,25427973,25559044,25690115,26214402,26279940,26411012,26542083,26673157,26804227,27000833,27328516,27525122,27590660,27656197,27721732,27983876,28114945,28180483,28442625,28835847,29032450,29294597,29491203,29556740,29687814,29753346,29949956,30081025,30212098,30343172,30998529,31064067,31129604,31195140,31391745,31457283,31588354,31916036,32112644,32374785,32505862,32636929,32702465,32768004,33292289,33357826,33423364,33488901,33554434,33619971,33816577,33947652,34209793,34340867,34603015,34668545,35061761,35520515,35586052,35717124,35913732,35979268,36110343,36241409,36306946,36503554,36700162,36896772,37093379,37289988,37552130,37748740,37879812,38010885,38141956,38338561,38404097,38535169,38469635,38797316,38862851,38993922,39124994,39387138,39452674,39583746,40042500,40632321,40763396,40960001,41025540,41287681,41418754],"ultimately":[16252929],"uses":[30015489],"unspecified":[21037057],"using":[1769473,2490369,4128769,4915201,14286849,14614529,17170433,23003137,31719425,34340865,34930689,37224449,38010881,40108033],"usages":[41222145],"upper":[720897,14614530,16908290,19529730,20250626,22740994,31719426,40828930],"uniformly":[720897,1900545,4915204,15073281,17170436,18087937,20840449,32047105],"unpredictability":[28442625,31588353],"unused":[3145729,22675457,34930689],"user":[7667713,9437185,14680065],"uint64":[196612,655364,4259844,5832708,6750210,7077889,10813444,11665412,12124161,12189698,13238276,16711682,17825796,18022404,18612226,20185090,22806530,23330820,23396356,23855108,24510468,27066372,27328516,27590660,29294594,30343172,30408708,30932994,31195140,33423364,33947652,35127300,35717124,37421059,38141956],"uintsperlimb":[27918340],"undefined":[458753,589825,2490369,4718593,7667713,9437185,13303809,14680065,16318466,22675457,26214401,30212097,33882114,36962305],"unlike":[3080193,7602177,9306113,10027009,15335425,17694721,20250625,24576001,25952257,34734081,40566785],"ulong":[5832706,6750210,10813442,11665410,12189698,14286850,16711682,17825794,18022402,19136514,23330818,23855106,27066370,29294594,30408706,30932994,35127298,37421058,39780354]} \ No newline at end of file +{"unique":[8388610,12320770,15663106,38010882],"usual":[16449537,22544385,25165825],"unit":[393217,524289,720897,786433,983042,1310721,1703937,1835009,1966082,2097153,2162689,2228225,2424833,2490369,2752513,2818049,2949122,3080193,3211265,3276801,3538945,3604481,3735553,3801089,4128769,4390913,4456450,4587521,5046273,5111809,5242882,5308417,5439489,5505025,5636097,5832705,5898241,5963777,6094849,6160385,6488065,6684673,7012353,7340033,7929857,8126465,8454145,8716289,8781825,8847361,8978433,9043969,9240577,9371649,9502721,9568257,9764865,10027009,10092545,10158081,10223617,10289153,10616833,10682369,10813441,11010049,11337729,11665409,11730945,11796481,12713985,12845057,12910593,12976129,13107201,13500417,13565954,13631489,14024705,14221313,14745601,15073281,15138817,15335425,15466497,15532033,15990785,16056321,16121857,16187393,16252929,16580610,17104897,17563649,18022401,18087938,18481153,18546689,18743297,18808833,19070977,19464193,19595266,20185089,20643842,20709377,20840449,20905985,21233665,21364737,21692417,21757953,21889025,22216705,22347777,22478849,22675457,22806529,22937601,23199745,23461889,23527425,23658497,23789569,23855105,23986177,24051713,24248321,24510465,24641537,24707073,24838145,24969218,25559041,25755649,25952257,26148865,26345473,26411009,26607617,26738689,26935297,27262977,27525121,27656193,27787265,27852801,27983873,28114945,28180481,28246017,28639233,29097985,29360129,29425665,29687809,29753345,29884418,30081025,30146562,30277633,30343169,30539777,30736385,30932993,30998529,31129601,31195138,31326209,31457281,31588353,31653889,31719425,31916034,32047105,32309249,32571393,32768001,33423361,33882113,34013185,34144257,34471937,35192833,35258369,35323905,35454977,35520513,35651585,35913729,35979265,36241409,36438017,36569089,37027841,37093377,37224449,37289985,37355521,37683201,37748737,37814273,37879809,38076417,38141953,38207489,38338561,38535169,38600705,38666242,38797313,39059457,39387137,39518209,39714817,39845889,39911425,39976961,40042497,40239105,40370177,40435714,40894466,41091073,41156609],"uint16":[262146,655362,2686978,3407876,3932164,4194308,4915202,8650753,11534337,12255236,13303811,14286852,14548996,17891330,19202052,20316164,20774916,21102596,22282244,23265282,24444932,25886724,26083330,27918338,30605316,30670850,33685508,35782660,36175876,36503554,36831236,38862852,39452676],"updates":[9043969,19333121,21168129,25231361],"uncompressed":[25231361],"unconditionally":[35127297],"unmanaged":[327682,393218,524290,589826,720898,786433,1114113,1179650,1245188,1310722,1507330,1703938,1835010,2031618,2097154,2228226,2490370,2555906,2752514,2818050,2883586,3014658,3080194,3145730,3211266,3276802,3473410,3604482,3735554,3997698,4128770,4325377,4390914,4587522,4653058,4980738,5046274,5177346,5242882,5308418,5373954,5505026,5636098,5767170,5832705,5898242,5963778,6029314,6291458,6422530,6750210,6946818,7012354,7077890,7340034,7405570,7471106,7602178,7667713,7733252,7864322,7929858,7995394,8060930,8126466,8192002,8323074,8388610,8454146,8585218,8650757,8716290,8781825,8847362,8978434,9109506,9175042,9371650,9502722,9568258,9633794,9764866,9830402,9961474,10027010,10092546,10223618,10289154,10551298,10616834,10682370,10747905,10878978,10944513,11141122,11272194,11337730,11403266,11534342,11665410,11730946,11796482,12124162,12320770,12517378,12582914,12713986,12779522,12845058,12910594,13041666,13107202,13303810,13369346,13500418,13631490,13697026,13828098,13893634,13959170,14024706,14090244,14221314,14352386,14417922,14483458,14614530,14745602,14811138,15138818,15269892,15335426,15532034,15597570,15663106,15794178,15925249,15990786,16056322,16121858,16187394,16384002,16449538,16515073,16908290,16973826,17039362,17104898,17235970,17367043,17563650,17760258,17825794,18022402,18153474,18219010,18284546,18415617,18481154,18546690,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19529730,19660802,19726338,19791874,19857410,19922946,20054018,20250626,20447234,20512769,20709378,20840450,20905986,20971522,21037058,21233666,21430274,21561346,21626882,21692418,21757954,21823490,21889026,22216706,22347778,22544386,22675458,22937602,23134212,23199746,23461890,23527426,23592962,23658498,23724034,23855106,24051714,24248322,24576002,24641538,24707074,24772610,24838146,24903682,25100290,25165826,25296898,25362434,25493506,25559042,25690114,25755650,25821185,25952258,26148866,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26869762,26935298,27066370,27262978,27459586,27525122,27656194,27787266,27852802,27983874,28114946,28180482,28246018,28377090,28508162,28639234,28770306,28901378,29032450,29097986,29163522,29294594,29360130,29425666,29491202,29687810,29753346,30015490,30343170,30408706,30539778,30736386,30867458,30932994,31064066,31260674,31326210,31522818,31653890,31719426,31850498,31981570,32047106,32178178,32309250,32440322,32505858,32571394,32636930,32702470,32768002,32833538,32899074,33030146,33095682,33161218,33226754,33292290,33423362,33816578,33882114,33947650,34013186,34078722,34144258,34275331,34406402,34537474,34603010,34799618,34865154,34930690,34996226,35192834,35258370,35323906,35454978,35520514,35586050,35651586,35717126,35913730,35979266,36044802,36110339,36241410,36438018,36634625,36962306,37027842,37224450,37289986,37355522,37486594,37552130,37617666,37683202,37748738,37879810,38010882,38141954,38338562,38535170,38600706,38731778,38928386,39059458,39321602,39387138,39518210,39780354,39845890,39911426,40042498,40239106,40304641,40370178,40697858,41025538,41091074,41156610,41287682,41353217,41418754],"unpredictable":[27656193],"uniquely":[41091073],"unaffected":[24510465],"underflow":[17235969,40697857],"unzip":[25231361],"unsigned":[589826,1048578,1114113,1310721,1507330,2031617,2490369,3014657,3080193,3407873,3932161,4194307,4849665,5177345,5373954,6094849,6225921,6946818,7864321,8454145,8585220,8716289,8781825,9109506,9175042,9568257,10223618,10354689,10420225,10878977,11141122,11337729,11796481,12255233,13107201,13303809,13434881,14548993,15204353,15400961,15597569,15990785,16187394,16711681,17039362,17104897,17301505,17432577,17760257,17825794,18022401,18350081,18612225,19136513,19202049,19267585,19333129,19398657,19791874,19857410,19988484,20316161,20709377,20840449,20971521,21168138,21233665,21299201,21626883,21757954,22282241,22347777,22413313,22675457,22806529,23199745,23396353,23658497,24444929,24576001,25034753,25755649,25886721,26214401,26607619,26738689,26804225,26935297,27525121,28180482,28508162,28573697,28835842,28901377,29032449,29425665,29687809,29753345,29818881,29949953,30081025,30801921,30867458,31064066,31391745,31522817,31719425,32112641,32505858,33095681,33226753,33619969,33685505,33947650,34144257,34209793,34865153,34930689,35454977,36175873,37158913,37552129,37814273,38141953,38535169,39190529,39583745,39976961,40763393,40960001,41222145,41418754],"upward":[25362433,39780353],"uint":[524291,589826,1048579,1114113,1310721,1507330,1703938,1835009,2031617,2490369,2752515,2818052,2883585,3014657,3080193,3473410,4390916,5177345,5373955,5505027,5963780,6094849,6291459,6946817,7405572,7602177,7864321,8060932,8454145,8585217,8716289,8781825,9109507,9175042,9568257,9764866,10223618,10878977,11141122,11337729,11796481,13107201,14352387,14417922,14614529,15204353,15400961,15532036,15597569,15794177,15925252,15990785,16187394,16384001,16711681,16908289,17039361,17104897,17760257,17825793,18022401,18153473,18481153,18677763,18808835,18939910,19005444,19070979,19267585,19726340,19791874,19857410,19988483,20054019,20250628,20709377,20840449,20971521,21233665,21626882,21757954,21823489,22347777,22675457,22806529,23199745,23658497,24576001,24772610,24903681,25100291,25296897,25362435,25493507,25559042,25755649,26279938,26345478,26411012,26542081,26673153,26738689,26935297,27525121,27852804,28180482,28377092,28508161,28639233,28770305,28835841,28901380,29032449,29163523,29294594,29425665,29687809,29753345,29949953,30081025,30867457,30932996,31064065,31391745,31522820,31719425,32112641,32440323,32505858,32833537,32899075,33095681,33292292,33816577,33882116,33947650,34144257,34930689,35454977,36044804,37289988,37552129,37748738,37814273,37879811,38141953,38535169,39190529,39387140,39583745,39780355,39976961,40763393,41025541,41156612,41222145,41287681,41418754],"uniform":[19333121,21168129,22478849],"usually":[10944513,26607617,39452673],"unless":[786433,2097153,4521985,25231361],"useful":[9437185,15073281,20054017,29163521,30998529,31588353,34799617,40828929],"unchanged":[5177345,27656193],"unmodified":[19333121,21168129,37289985],"used":[1179649,2031617,2228225,4521985,4980738,5111811,5767169,5898241,6094850,7077889,8585217,8978433,9043969,9240577,9830401,10551297,10682369,12517377,12779521,13631489,13697025,13893635,14942209,16121857,16449537,18874369,19333121,19922947,20447235,21168129,21889025,22544385,25165825,25231361,25690113,26607617,27066369,27459585,27656193,30015491,30081027,30212097,33095681,33161217,35323905,36569091,36634627,37683201,38273025,40304641],"ushort":[3407874,3932162,12255234,13303810,14548994,17039362,19202050,20316162,22282242,24444930,25886722,31064066,36175874],"uinteger":[524291,589826,1048579,1114113,1310721,1507330,1703938,1835009,2031617,2490369,2752515,2818052,2883585,3014657,3080193,3473410,4390916,5177345,5373953,5505027,5963780,6094849,6291459,6946817,7405572,7602177,7864321,8060932,8454145,8585217,8716289,8781825,9109505,9175042,9568257,9764866,10223618,10878977,11141122,11337729,11796481,13107201,14352387,14417922,14614529,15204353,15400961,15532036,15597569,15794177,15990785,16187394,16384001,16711681,16908289,17039361,17104897,17760257,17825793,18022401,18153473,18481153,18677763,18808835,18939910,19005444,19070979,19267585,19726340,19791874,19857410,19988483,20054019,20250628,20709377,20840449,20971521,21233665,21626882,21757954,21823489,22347777,22675457,22806529,23199745,23658497,24576001,24772610,24903681,25100291,25296897,25362435,25493507,25559042,25755649,26279938,26345478,26411012,26542081,26673153,26738689,26935297,27525121,27852804,28180482,28377092,28508161,28639233,28770305,28835841,28901380,29032449,29163523,29294594,29425665,29687809,29753345,29949953,30081025,30867457,30932996,31064065,31391745,31522820,31719425,32112641,32440323,32505858,32833537,32899075,33095681,33292292,33816577,33882116,33947650,34144257,34930689,35454977,36044804,37289988,37552129,37748738,37814273,37879811,38141953,38535169,39190529,39387140,39583745,39780355,39976961,40763393,41025541,41156612,41222145,41287681,41418754],"uint32":[262146,327682,589829,655364,720898,1048581,1114115,1179651,1310722,1507335,2031620,2490374,2555907,3014661,3080197,3211265,3276801,3604481,3735555,3801091,4194308,4587521,4915202,5046273,5308418,5439490,5636098,6094850,6422530,6946821,7012353,7340033,7471106,7864323,7929858,8060929,8126465,8323074,8454149,8585218,8650753,8716293,8781829,9175044,9371649,9502721,9568258,9633795,9961474,10223621,10289153,10878980,11010050,11141127,11337731,11534337,11665412,11730948,11796483,12124161,12582913,12713988,12910593,12976129,13107202,13369345,13500418,13697027,13828097,14286852,14483458,14811137,15138817,15204354,15335428,15400964,15466498,15597570,15990786,16187398,16449537,16711684,17104901,17563651,17760258,17825797,17891332,18022402,18546692,18874371,19267588,19333121,19791879,19857415,19988485,20185089,20709378,20774916,20840450,20905988,20971525,21102596,21168129,21233666,21364738,21626884,21692417,21757957,21823490,22347779,22544385,22675458,22806531,23199747,23265284,23461889,23527428,23658501,23855108,23986177,24051716,24248323,24576005,24641539,24707073,24838148,24903682,25231363,25755653,25952257,26083330,26148867,26476546,26738693,26935299,27262977,27459587,27525122,27787268,28180486,28246017,28508165,28835842,28901379,29032451,29294594,29360129,29425668,29687810,29753349,29949956,30081026,30343171,30408706,30539777,30605316,30736387,31129602,31260673,31391748,31522819,31653892,31719429,31850498,31981571,32047105,32112644,32178177,32309249,32505863,32768001,32833538,32899073,33095684,33685508,33947655,34013188,34144260,34406401,34471938,34537473,34603010,35127297,35192836,35258372,35454980,35520516,35651585,35782660,35913731,35979265,36241409,36503554,36569089,36831236,37093377,37224449,37552130,37814275,38141958,38273026,38338561,38535171,38600706,38862852,39059457,39190532,39452676,39518212,39583748,39714818,39911426,39976962,40042500,40239105,40304643,40763396,41091073,41222148,41418759],"ultimately":[14745601],"uses":[22216705],"unspecified":[19660801],"usr":[25231362],"using":[1441793,2097153,3538945,13893633,14614529,19333121,21168129,25231362,28639233,29753345,30015489,33161217,35913729,37289985,38731777],"usages":[39780353],"upper":[1048577,13893634,16449538,20447234,22544386,25165826,30015490,36634626],"uniformly":[1048577,1835009,16252929,18481153,19333124,19988481,21168132,30277633],"unpredictability":[30081025,36569089],"unused":[3866625,25624577,33161217],"user":[8454145,8781825,12713985],"uint64":[262148,655364,4194308,6225924,6946818,8650753,10354692,10420228,11534337,13434882,14286852,17301508,17432580,17825794,17891330,20774916,21102596,21299204,22413316,23265284,23396354,25231362,26083332,26214404,27918338,28508162,30605316,30801924,33619972,33685508,34865155,35782660,36831236,38862852,39452676],"uintsperlimb":[34209796],"undefined":[327681,786433,2097153,5505025,8454145,8781825,12713985,13369345,15925250,25624577,28835841,30408705,32636929,37617666],"unlike":[3473409,7471105,9175041,9830401,14811137,17760257,19922945,22544385,26279937,32702465,35717121],"ulong":[6225922,6946818,10354690,10420226,13434882,14614530,17301506,17432578,17825794,19726338,21299202,22413314,23396354,26214402,28508162,30801922,33619970,34865154,34930690]} \ No newline at end of file diff --git a/docs/fti/FTI_118.json b/docs/fti/FTI_118.json index 9655605..e2d8e57 100644 --- a/docs/fti/FTI_118.json +++ b/docs/fti/FTI_118.json @@ -1 +1 @@ -{"variable":[2490369,7929857,8847361,12713985,14090241,15073281,23003137,23658497,29097985,32047105,34340865],"versions":[20185089],"vsnprintf":[8388609,16842753],"vary":[5177345,14614529,16908289,19529729,22740993,22937601,24576001,31719425,35520513,37683201,38731777,40108033,40828929],"valid":[8781826,13369345,16908289,20250625,35520513],"value2":[7143429,10223621,10551301,12320773,19464197,21692421,24117253,24707077,26607621,27262981,31850501,34471941,34996229,35848197,36634629,38666245],"volume":[38010881],"vector":[23986177],"variables":[589826,4915206,8978433,14745601,17170438,21299201,25362434,26148865,29491201,30081025,32964609,34275330,38469633],"value1":[7143429,10223621,10551301,12320773,19464197,21692421,24117253,24707077,26607621,27262981,31850501,34471941,34996229,35848197,36634629,38666245],"void":[327682,589826,1114114,1441794,1900546,1966082,2293762,2424834,2490370,2621442,3211266,3342338,3473410,3604482,3670018,3735554,3866626,4128770,4325378,4521986,4718594,5046274,5242882,5439490,5636098,5767170,6094850,6553602,6619138,6946818,7667714,7733250,8126466,8192002,8257538,8323074,8454146,8585218,8716290,8781827,8847362,8912898,8978434,9175042,9437186,9764866,9830402,10616834,10747906,10944514,11272194,11403266,11534338,11927554,11993090,12255234,12451842,12713986,12779521,12845058,13107202,13828098,13893634,14286849,14548994,14680066,14745602,14811138,15073282,15269890,15400962,15728642,15990786,16252930,16449538,16515074,17432578,17563650,17891330,18087938,18219010,18546690,18677762,18743298,18808834,19070978,19398658,19595266,19791874,20185089,20709378,21299202,21364738,21430274,21757954,21823490,21954562,22020098,22085634,22151170,22478850,23003138,23265282,23527426,23658498,23986178,24051714,24248322,24313858,24379393,24444930,24641538,24772610,24838146,24903682,24969218,25100290,25165826,25231362,25296898,25362434,25559042,25690114,26148866,26279938,26542082,26673154,26804226,26869762,27000834,27656194,27983874,28049410,28114946,28442626,28704770,29097986,29491202,29556738,29687810,29753346,29949954,30015490,30081026,30670850,31129602,31391746,31522818,31588354,31653890,32047106,32112642,32505858,32702466,32833538,32964610,33030146,33161218,33357826,33488898,33619970,33816578,34013186,34144258,34275330,34340866,34668546,35061762,35192834,35913730,36503554,36896770,37224450,37486594,37879810,38010882,38273026,38338562,38404098,38535170,38469634,38797314,38862850,38993922,39124994,39256066,39321602,39583746,39976962,40042498,40304642,40632322,40894466,40960002,41025538,41156610,41287682,41353218,41418754],"values":[458753,589825,1179649,1245185,1310722,2293763,2555906,2686978,3342341,4259842,4587522,4915209,7012353,7077892,7143426,8847362,8912898,9109508,9306113,10223618,10551298,11468801,11730946,12124165,12320770,12517377,12582914,13238274,13565954,13631489,13762564,13959175,14417922,16252929,16711682,16908290,17170441,19464193,19791874,20250625,20447234,20512770,21037058,21299201,21692418,23920644,24117250,24444930,24707074,25231365,26607618,27262978,27328514,27590658,29097985,30081027,30343170,31195138,31850498,32505859,33423362,33947650,34013186,34209794,34275329,34406404,34471938,34603010,34996226,35323911,35520513,35717122,35848194,36044801,36306945,36634626,37093383,37421064,37552129,38010881,38076417,38141954,38338563,38600706,38666242,38797314,39059457,39583746],"vasprintf":[34734081],"visual":[20185089],"various":[29097985],"version":[262145,327681,393217,458753,524289,589825,720897,786433,851969,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1900545,1966081,2031617,2162689,2228225,2293761,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,3014657,3080193,3145729,3211265,3276801,3342337,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4259841,4325377,4390913,4456449,4521985,4587521,4718593,4784129,4849665,5046273,5111809,5177345,5242881,5373953,5439489,5505025,5636097,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6356993,6422529,6488065,6553601,6619137,6750209,6815745,6881281,6946817,7012353,7143425,7208961,7274497,7340033,7405569,7471105,7602177,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289158,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12713985,12779521,12845057,12976129,13041665,13107201,13238273,13303809,13369345,13434881,13500417,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17170434,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18677761,18743297,18808833,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19922945,19988481,20054017,20119553,20185091,20250625,20316161,20381697,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23461889,23527425,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,27000833,27066369,27131905,27197441,27262977,27394049,27459585,27525121,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28377089,28442625,28508161,28573697,28704769,28770305,28835841,28901377,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30408705,30474241,30539777,30605313,30670849,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31850497,31916033,31981569,32047105,32112641,32178177,32309249,32374785,32440321,32505857,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33161217,33226753,33292289,33357825,33488897,33554433,33619969,33685505,33751041,33816577,33882113,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38535169,38469633,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39124993,39190529,39256065,39321601,39452673,39518209,39583745,39649281,39780353,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753],"value":[131075,196618,262153,393219,458757,524289,589825,655378,720897,786441,851971,917507,983045,1048577,1179657,1245188,1310726,1376267,1441795,1507337,1572867,1638403,1703937,1769474,1835011,2031625,2097155,2162689,2424838,2490370,2555909,2686981,2752513,2883585,2949134,3014657,3080193,3145729,3211266,3276803,3473410,3538945,3670019,3735557,3801089,3866628,3932169,3997705,4063241,4194307,4259879,4390913,4456457,4521987,4587527,4653059,4718593,4784140,4849665,4915244,4980758,5046273,5111812,5177345,5242885,5308418,5373955,5439492,5505025,5570562,5767170,5832713,5898249,5963778,6029315,6225929,6291459,6356993,6422537,6488067,6553602,6684675,6750213,6815753,6881283,6946822,7012354,7143428,7208969,7274501,7340041,7405569,7471109,7602183,7536641,7667714,7733254,7798793,7929857,7995395,8060937,8192002,8257538,8323077,8388611,8519685,8650755,8716290,8781825,8847373,8912900,8978434,9043973,9109521,9175045,9240587,9306121,9371649,9437185,9502723,9568258,9633800,9699337,9764866,9830405,9895937,9961477,10027011,10092551,10158081,10223620,10289153,10354689,10420233,10485763,10551300,10616834,10747908,10813449,10878995,10944515,11010057,11075591,11141121,11206657,11272198,11403266,11468807,11599877,11665417,11730947,11796481,11862025,11927554,11993090,12058627,12124161,12189703,12320772,12386305,12451842,12517382,12582925,12648451,12713986,12779522,12845062,12976137,13041667,13107202,13172738,13238311,13303811,13369352,13434883,13500419,13565954,13631492,13697025,13762577,13828102,13893638,14024713,14090250,14155785,14221313,14286851,14352389,14417922,14483465,14548996,14614535,14680066,14745602,14876677,14942211,15007747,15073282,15138817,15204361,15269892,15335429,15400964,15466505,15532033,15597577,15663107,15728644,15794177,15859715,15925257,15990786,16121865,16187393,16252931,16318466,16384006,16449542,16515076,16580615,16646146,16711685,16777225,16842755,16908303,16973827,17039361,17170476,17235971,17301513,17367049,17498121,17563652,17629189,17694723,17760265,17825801,17891334,17956865,18022409,18153481,18284553,18350081,18415625,18481161,18546690,18612236,18743298,18808834,18874371,18939907,19005449,19070980,19136514,19202057,19267589,19333121,19398661,19464196,19529739,19595269,19660809,19726339,19791876,19857409,19922945,19988481,20054017,20119555,20250633,20316165,20381699,20447234,20512771,20578310,20643841,20774917,20840449,20905988,20971521,21037060,21102606,21168129,21233673,21299202,21430276,21495817,21561350,21692420,21757957,21823492,21889029,21954562,22020098,22085634,22151174,22216713,22282241,22347788,22413313,22478853,22544387,22609921,22675458,22741002,22806548,22872073,22937604,23003138,23068680,23134210,23199753,23265283,23330825,23396362,23461897,23592961,23658502,23724033,23789569,23855113,23920649,23986191,24117252,24182793,24248322,24313862,24379395,24444930,24510482,24576006,24707076,24772612,24838147,25034761,25100293,25165826,25296901,25362434,25427973,25493507,25559048,25624577,25690116,25755653,25821185,25886729,25952257,26017795,26083337,26148866,26214401,26279940,26345473,26411017,26476545,26607620,26673157,26738689,26804228,26869762,27000838,27066377,27131913,27197441,27262980,27328546,27394049,27459585,27525121,27590690,27656196,27721731,27787267,27852805,27918337,27983880,28049410,28180483,28246019,28442626,28508169,28573697,28770309,28835845,28901381,29032449,29097988,29163529,29229061,29294597,29360129,29425669,29491202,29556742,29622281,29687810,29818881,29884417,29949956,30015492,30081028,30146568,30212101,30277633,30343202,30408713,30474249,30539777,30605313,30736387,30801921,30867459,30932999,30998529,31064067,31129605,31195175,31260677,31326217,31391745,31457287,31522818,31588354,31719435,31784963,31850500,31916041,31981569,32047106,32112644,32178185,32309251,32374787,32440321,32571406,32636931,32702470,32768009,32899081,32964610,33095683,33226761,33292292,33357826,33423394,33488898,33554437,33619972,33685511,33751041,33816582,33882123,33947682,34013197,34078725,34209806,34275330,34340868,34406409,34471940,34537473,34603011,34668547,34734086,34799619,34865161,34930701,34996228,35061761,35127305,35192837,35258373,35454983,35520520,35586057,35651592,35717159,35782657,35848196,35913730,35979273,36044802,36110341,36175873,36241411,36306947,36372489,36438025,36569097,36634628,36700167,36765700,36831237,36896774,36962307,37158915,37224450,37289987,37355525,37552129,37617673,37683211,37748745,37814275,37879810,37945349,38010884,38076419,38141991,38207495,38273026,38338566,38404099,38535173,38469634,38600710,38666244,38731777,38797316,38928390,39059457,39124996,39190529,39256066,39321602,39387158,39452675,39518209,39583746,39780357,39845891,39911429,39976966,40042502,40108039,40173577,40239105,40370185,40435713,40501257,40566790,40632322,40697865,40763401,40828934,40960005,41025540,41091081,41222145,41287684,41353221],"valuetype":[131075,917505,1310723,1572867,1835011,2097153,4259843,4587523,4653059,6291457,6684673,12648449,13238275,15007745,18874371,28246019,30736387,31195139,31784961,33095683,35717123,38141955,38600707,39845889],"virtual":[393217,1048577,2162689,2752513,3145729,3538946,4390913,4849665,7995393,9502721,13697025,15663105,17956865,19726337,19922945,20119553,20971521,22675457,23789569,25624577,26476545,29360129,30867457,32440321,33292290,33751041,35782657,37158913,39518209,40435713],"val":[10289153,10354689,11075585,11796481,19988481,27918337,38928385,40239105],"void_ptr":[393219,917508,1048578,1769483,3407876,4128775,4915202,6356999,6619141,8126470,8585218,9895938,10223630,10354696,14417923,16384009,17170434,23527425,23986184,25821194,26935298,32833543,33030145,33095686,34537477,34930701,34996238,37355530,38600714,39059457,40304641]} \ No newline at end of file +{"variable":[2097153,5898241,8060929,13172737,15073281,16252929,22478849,27656193,28639233,30277633,35913729],"versions":[25231363],"vsnprintf":[7733249,15269889],"vary":[5177345,13893633,16449537,19922945,20447233,24772609,25165825,30015489,34996225,36634625,38731777,40304641,41287681],"valid":[9043970,12124161,16449537,22544385,40304641],"value2":[8519685,9306117,11927557,13238277,17629189,22740997,24379397,27131909,27197445,28049413,28966917,32243717,32964613,33751045,36372485,37945349],"volume":[29753345],"vector":[26607617],"variables":[786434,10027009,14024705,19333126,21168134,24248321,24510465,28114946,30343169,30736385,32047105,37027842,37355521],"value1":[8519685,9306117,11927557,13238277,17629189,22740997,24379397,27131909,27197445,28049413,28966917,32243717,32964613,33751045,36372485,37945349],"void":[524290,720898,786434,1310722,1703938,1835010,2097154,2228226,2490370,2752514,2818050,3080194,3211266,3276802,3538946,3604482,3735554,3801090,4128770,4390914,4587522,5046274,5308418,5439490,5505026,5636098,5898242,5963778,6094850,6160386,6684674,7012354,7340034,7929858,8126466,8454146,8716290,8781826,8847362,8978434,9043971,9240578,9371650,9502722,9568258,9764866,10027010,10158082,10223618,10289154,10682370,11010050,11206657,11337730,11665410,11730946,11796482,12713986,12845058,12910594,12976130,13107202,13500418,13631490,14024706,14221314,14614529,14745602,15073282,15138818,15335426,15466498,15532034,15990786,16056322,16121858,16187394,16252930,17104898,17563650,18022402,18481154,18546690,18743298,18808834,19070978,19464194,20185090,20709378,20840450,20905986,21233666,21364738,21692418,21757954,21889026,22216706,22347778,22478850,22675458,22806530,22937602,23199746,23461890,23527426,23658498,23855106,23986178,24051714,24248322,24510466,24641538,24707074,24838146,25231361,25559042,25755650,25952258,26148866,26345474,26411010,26607618,26738690,26935298,27262978,27328513,27525122,27656194,27787266,27852802,27983874,28114946,28180482,28246018,28639234,29360130,29425666,29687810,29753346,30081026,30277634,30343170,30539778,30736386,30932994,30998530,31129602,31457282,31588354,31653890,31719426,32047106,32309250,32571394,32768002,33423362,33882114,34013186,34144258,34471938,35192834,35258370,35323906,35454978,35520514,35651586,35913730,35979266,36241410,36438018,36569090,37027842,37093378,37224450,37289986,37355522,37683202,37748738,37814274,37879810,38076418,38141954,38207490,38338562,38535170,38600706,38797314,39059458,39387138,39518210,39714818,39845890,39911426,39976962,40042498,40239106,40370178,41091074,41156610],"values":[327681,786433,1114113,1245186,1507330,2490371,3014658,3735557,4194306,4325378,4521985,5898242,7405569,8388612,8519682,8650756,9306114,9830401,9961473,11141122,11534341,11665410,11927554,11993090,12320772,12517377,13041665,13238274,13303815,13959170,14286850,14680066,14745601,16449538,17629185,17825794,19333129,19660802,19791874,20774914,20905986,21102594,21168137,21561348,22544385,22740994,24248321,24379394,25427970,25952261,26935298,27131906,27197442,27656193,28049410,28966914,29032455,29294593,29753345,30605314,31850497,32047107,32178178,32243714,32505858,32571394,32964610,33226759,33292289,33685506,33751042,34013186,34275329,34865160,35782658,36110338,36372482,36831234,37027841,37945346,38141955,38862850,38928388,39452674,39911426,40108033,40304641,41091075],"vasprintf":[32702465],"visual":[25231367],"various":[27656193],"version":[196609,327681,393217,458753,524289,589825,720897,786433,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,1966081,2031617,2097153,2162689,2228225,2424833,2490369,2555905,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3735553,3801089,3866625,3932161,3997697,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4784129,4849665,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6684673,6750209,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437190,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11665409,11730945,11796481,11927553,12058625,12124161,12189697,12255233,12320769,12386305,12517377,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15794177,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20578305,20643841,20709377,20840449,20905985,20971521,21037057,21168130,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231363,25296897,25362433,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30539777,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36569089,36634625,36831233,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38535169,38600705,38666241,38731777,38797313,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753],"value":[131075,196617,262154,327685,393217,458755,589829,655378,720898,786433,851971,917513,983041,1048577,1114116,1179651,1245190,1310723,1376265,1441794,1507333,1572867,1638401,1769481,1900547,1966081,2031619,2097154,2228230,2293763,2555905,2686990,2883587,2949121,3014661,3080194,3145729,3211266,3276804,3342337,3407881,3473409,3604483,3670019,3866625,3932169,3997707,4063234,4128773,4194343,4259841,4325383,4456449,4521993,4587523,4653065,4718595,4784129,4849673,4915222,4980748,5046277,5111812,5177345,5242881,5308420,5373955,5439489,5505025,5570562,5636098,5701641,5767171,5898253,6029321,6160386,6225929,6291458,6356993,6422531,6553603,6619145,6750209,6815747,6881289,6946821,7012357,7077891,7143433,7208969,7274501,7340038,7405570,7471111,7536649,7602177,7733251,7798793,7864325,7929858,7995397,8060929,8126470,8257539,8192011,8323077,8388625,8454146,8519684,8585224,8716290,8781825,8847362,8912905,8978438,9043969,9109509,9175043,9306116,9371653,9437185,9502722,9568260,9633799,9699329,9830409,9895937,9961479,10027010,10092545,10223618,10289157,10354697,10420233,10485769,10551299,10616833,10682371,10878981,10944515,11075593,11141123,11206658,11272193,11337730,11403283,11468807,11534337,11599873,11665412,11730950,11796482,11927556,11993090,12058633,12124168,12189697,12255241,12320785,12386313,12451842,12517382,12582915,12648451,12713986,12779523,12845060,12910598,13041668,13107204,13172746,13238276,13369347,13434887,13500422,13565953,13631490,13697029,13762561,13828099,13893639,13959181,14024706,14090241,14155785,14221314,14286887,14352385,14417923,14483461,14549001,14614531,14680066,14745603,14811141,14876681,14942217,15007753,15073282,15138822,15204359,15269891,15335430,15400969,15597571,15663113,15728643,15794179,15925250,15990788,16056324,16121860,16187394,16252930,16318467,16384001,16449551,16515074,16580609,16646153,16711689,16777225,16842761,16908289,16973825,17039365,17104898,17170433,17235971,17301513,17367046,17432585,17498121,17563650,17629188,17694729,17760259,17825797,17891340,17956867,18022402,18087937,18153475,18219011,18284547,18350089,18546692,18612233,18677761,18743300,18874373,18939910,19005441,19136521,19202057,19267593,19333164,19398665,19529742,19595265,19660804,19726338,19791875,19857414,19922950,19988481,20054021,20119553,20250625,20316169,20381699,20447243,20512769,20578305,20643841,20709381,20774946,20840453,20905988,20971525,21037064,21102626,21168172,21233667,21299209,21430273,21495817,21561353,21626883,21692421,21757957,21823489,21889026,21954563,22085634,22151169,22282249,22216708,22347780,22413321,22478854,22544393,22609929,22675458,22740996,22872073,22937602,23003145,23068673,23134209,23199746,23265298,23330819,23396359,23461893,23527428,23592965,23658500,23724044,23789569,23855112,23920649,24051720,24248322,24313865,24379396,24444937,24510466,24576005,24707077,24641540,24772612,24838150,24903681,24969217,25034761,25100289,25165834,25296897,25362433,25427970,25493505,25624578,25690116,25755652,25821186,25886729,26017793,26083338,26148868,26214409,26279937,26476547,26542081,26607631,26673157,26738690,26869763,26935298,27000837,27066371,27131908,27197444,27262982,27328515,27394051,27459587,27525122,27590661,27656196,27721737,27787268,27918356,27983877,28049412,28114946,28180482,28246019,28311557,28377089,28442633,28508165,28573705,28639234,28704769,28770309,28835841,28901379,28966916,29097985,29163525,29229057,29294593,29360134,29425669,29491205,29556745,29622275,29687812,29753348,29818889,29884417,29949961,30015499,30081026,30146561,30212105,30277634,30408709,30343170,30539782,30605346,30670862,30736386,30801929,30867459,30998530,31064067,31195137,31260675,31326209,31391753,31522819,31588354,31653892,31719426,31784967,31850499,31916033,31981575,32047108,32112649,32178190,32243716,32309249,32374792,32440321,32505859,32571405,32636931,32702470,32768001,32833537,32899073,32964612,33030152,33095683,33161229,33292290,33357825,33423362,33488905,33554439,33619977,33685543,33751044,33816581,33947653,34013188,34144258,34209793,34275329,34340867,34406403,34537475,34603015,34668545,34734081,34799625,34930693,34996235,35061765,35127300,35192838,35258374,35323910,35389449,35454978,35520516,35586055,35651590,35717126,35782690,35848201,35913732,35979267,36044801,36110342,36175881,36241411,36306949,36372484,36438021,36503574,36569090,36634630,36831271,36962307,37027842,37158921,37224453,37289986,37355522,37421065,37486595,37552133,37617675,37683202,37945348,38010889,38273027,38338564,38469635,38535172,38600706,38666241,38731783,38862882,38928393,38993925,39059458,39124995,39190537,39256069,39321603,39452711,39518212,39583753,39649289,39780353,39845893,39911426,40042502,40108035,40173577,40239109,40304648,40370178,40435713,40501249,40632329,40697861,40763401,40828929,40894465,40960009,41025540,41091078,41222153,41287681,41353222,41418757],"valuetype":[131075,851969,1245187,1572867,1900545,2293763,4194307,4325379,4718595,6553601,6815745,12648449,14286851,15728641,18219011,23330819,29622273,33685507,34340867,36110339,36831235,36962307,38469633,39452675],"virtual":[458753,983041,1966081,2949121,3342338,3866625,4456449,5242881,8257537,13565953,16318465,16580609,17956865,18087937,19595265,20381697,20643841,21954561,24969217,25624577,27394049,29884417,30146561,31195137,31916033,35127298,38666241,39124993,40435713,40894465],"val":[9437185,9895937,11468801,12189697,20119553,34209793,40828929,41353217],"void_ptr":[458755,851972,983042,1441803,2621444,3538951,6356999,6684677,9240582,9306126,9895944,10092546,10158082,14680067,17367049,19333122,19464193,21168130,22020098,26607624,29229066,31457281,32964622,33161229,33357829,34275329,36110346,36962310,38207495,38797313,39256074]} \ No newline at end of file diff --git a/docs/fti/FTI_119.json b/docs/fti/FTI_119.json index a1000ab..d9a3e96 100644 --- a/docs/fti/FTI_119.json +++ b/docs/fti/FTI_119.json @@ -1 +1 @@ -{"way":[16252929,29097985,34013185,38076418],"write":[1376258,2621441,4325377,4915228,6094849,7929857,8388609,9109506,9240578,9306114,10878978,13762562,15138817,16842753,17170460,18219009,18350081,18677761,19529730,20643841,21037058,22282241,22740994,23068674,23724033,24969217,26345473,27197441,27394049,28180481,30277633,30539777,30670849,30998529,31064065,31653889,37486593,37683202,40828930,40894465,41156609,41222145],"word":[4915202,17170434,20185091,23986186,31195138,34930700],"widening":[262145,1179649,3997697,6422529,7340033,10813441,12976129,14155777,14483457,15204353,15597569,17498113,17760257,17825793,19005441,19202049,19660801,21495809,22216705,23330817,23855105,24182785,25034753,26411009,28508161,31326209,32178177,32768001,33226753,35127297,35979265,36372481,40501249],"want":[20250625],"windows":[20185090],"won":[21889025,31719425,37945345],"writing":[1376258,4718593,4915203,8781825,17170435,19529730,21889025,37683202,37945345,40828929],"welcome":[20185089],"white":[4915201,9240579,16908289,17170433,20250627,22740993,35520513],"wanted":[2293761,21561345,32505857,33292289,36765697],"written":[1376261,4718593,4915201,7929857,8388609,10878977,14221313,15794177,16121857,16842753,17170433,19529731,20054017,20643841,22282241,23724033,26345473,28180481,29097985,30605313,30998529,31064065,31719425,34865153,34930691,37683203,40828930,41222146],"writealltext":[9109506,9240578,9306114,13762562,22740994],"words":[13959169,23986181,34930693,37093377]} \ No newline at end of file +{"way":[14745601,27656193,32571393,40108034],"write":[2818049,3997698,4390913,5963777,7733249,8060929,8192002,8388610,9830402,11403266,12320770,14352385,15269889,15532033,18677761,18808833,19005441,19333148,19660802,20250625,20447234,21037058,21168156,25100289,25165826,25362433,25493505,27852801,28377089,28901377,30932993,31522817,32440321,32899073,33882113,34996226,36044801,36634626,37879809,39387137,39780353,41156609],"word":[19333122,21168130,25231363,26607626,33161228,36831234],"widening":[196609,3407873,4521985,6619137,7208961,10354689,12058625,12255233,14548993,14942209,15007745,15400961,17301505,18350081,19398657,20316161,21299201,21495809,22413313,22872065,23920641,24313857,24444929,25034753,27721729,30212097,31391745,32112641,33619969,37158913,39583745,39649281,40960001],"want":[22544385],"windows":[25231368],"win32":[25231361],"won":[20054017,29163521,30015489],"warnings":[25231361],"window":[25231364],"writing":[3997698,5505025,9043969,19333123,20054017,20447234,21168131,29163521,34996226,36634625],"welcome":[25231361],"white":[8192003,16449537,19333121,21168129,22544387,25165825,40304641],"w64":[25231364],"wanted":[2490369,19857409,35127297,38141953,41025537],"written":[3997701,5505025,7733249,8060929,11403265,14090241,15269889,15663105,16973825,18677761,19333121,20250625,20447235,21168129,21430273,23134209,25362433,25493505,27656193,28901377,30015489,31522817,32899073,33161219,34996227,36634626,38010881,39780354],"writealltext":[8192002,8388610,9830402,12320770,25165826],"words":[13303809,26607621,29032449,33161221],"win64":[25231361]} \ No newline at end of file diff --git a/docs/fti/FTI_120.json b/docs/fti/FTI_120.json index 8d94c7c..1af1f3e 100644 --- a/docs/fti/FTI_120.json +++ b/docs/fti/FTI_120.json @@ -1 +1 @@ -{"xor":[2621442,6094850],"x64":[12582914,20185089,21037058,23068674],"x86":[12582914,20185089,21037058,23068674],"xxxxxxxxxxxxxxxxx":[5177346,22937602]} \ No newline at end of file +{"xor":[2818050,5963778],"x86_64":[25231363],"x64":[13959170,19660802,21037058,25231368],"x86":[13959170,19660802,21037058,25231366],"xxxxxxxxxxxxxxxxx":[5177346,24772610]} \ No newline at end of file diff --git a/docs/fti/FTI_121.json b/docs/fti/FTI_121.json index 9d51c4a..cb66bbc 100644 --- a/docs/fti/FTI_121.json +++ b/docs/fti/FTI_121.json @@ -1 +1 @@ -{"yasm":[20185089],"ylimb":[4915201,17039367,17170433],"yields":[4915202,15990785,17170434,21823489]} \ No newline at end of file +{"yasm":[25231366],"ylimb":[16908295,19333121,21168129],"yields":[16187393,19333122,21168130,23658497]} \ No newline at end of file diff --git a/docs/fti/FTI_122.json b/docs/fti/FTI_122.json index 577b955..326e069 100644 --- a/docs/fti/FTI_122.json +++ b/docs/fti/FTI_122.json @@ -1 +1 @@ -{"zero":[458753,983041,1245185,1310721,1900545,1966081,3014658,3145730,3276802,3407873,4784130,4915247,5177345,5373954,5963777,6488066,7012362,7274497,7405570,7471105,7602178,7667715,8454145,8847362,9437187,9961476,10027010,10092545,10354693,11468801,11599873,11993089,13041666,13303809,13500417,13828097,14286850,14614532,14680067,14876674,14942209,15335426,15859714,16187394,16318465,16908290,16973826,17039361,17170479,17235969,17432578,17629188,17694722,18087937,18350081,18939906,19136513,19333121,19988485,20316162,20578305,20774916,21037058,21102595,21889026,22347778,22413313,22675459,22937603,23068674,23724033,23986178,24051713,24379393,24576001,25559041,26017794,27394049,27656193,27721729,28180481,28639233,28704770,29229060,29818883,30212097,31064065,31457281,31719427,32309250,32374785,33292292,33554433,33816578,33882118,34013186,34209794,34340866,34799618,34930694,35192834,35258372,35520513,36044810,36241409,36306946,36700161,36765702,36831236,37224451,37486593,37945346,38076418,38207490,38338562,38600705,39452674,39583745,39780356,39911425,40108034,41156609,41222146,41418754],"zeros":[1900545,4915204,5177345,12713985,17170436,18087937,31522817,31719425,33161219,39256065],"zeroes":[13959169,35323905,37093377],"zeromemory":[4915202,17170434,33161222]} \ No newline at end of file +{"zero":[327681,589825,1114113,1245185,1703937,1835009,2621441,2883586,3145730,3866626,4980738,5177345,5373954,5898242,6291457,6422530,7405578,7471106,7602178,7864321,8323073,8454147,8781827,8847361,9109508,9175042,9633793,9764865,9895941,9961473,10878977,12582913,12713987,12910593,13369345,13828098,13893636,14483458,14614530,14811138,15597569,15794178,15925249,16384002,16449538,16908289,17039364,17170433,17235969,17760258,18153474,18284546,18481153,18874372,18939905,19005441,19333167,19529731,19660802,19726337,19922945,20054018,20119557,21037058,21168175,21364738,21626881,23592962,23724034,24051713,24772611,25100289,25296897,25362433,25559041,25624579,25755649,26345474,26542083,26607618,26673156,27328513,28770308,28901377,29163522,30015491,30408705,30867458,31064066,31522817,31850498,31981569,32178178,32571394,33161222,33292298,33816580,34406401,34537473,34603009,34930692,35127300,35586050,35651586,35913730,36110337,36438018,36765697,37289987,37552129,37617670,37879809,38273026,38731778,39321602,39780354,39911425,39976962,40108034,40304641,40697857,41025542,41091074,41156609],"zeros":[1835009,5177345,15073281,18481153,19333124,21168132,30015489,30998529,31588353,38076419],"zip":[25231361],"zeroes":[13303809,29032449,33226753],"zeromemory":[19333122,21168130,38076422]} \ No newline at end of file diff --git a/docs/fti/FTI_95.json b/docs/fti/FTI_95.json index 617438c..ce12862 100644 --- a/docs/fti/FTI_95.json +++ b/docs/fti/FTI_95.json @@ -1 +1 @@ -{"_mpz_realloc":[4784129,4915201,8781825,12582913,14286849,17170433,21037057,22347777,23068673,34013195],"_ptr":[14090241],"_mp_size":[3145735,3538950,8650754,11141122,16056322,21626881,22675463,23134210,27459586,32243713,33292292,38076417],"_mp_den":[2359297,16646145,39190533],"_mp_num":[2359297,10158085,16646145],"_mp_d":[3145729,8650753,11141121,16056322,21626881,22675457,23134210,27459586,32243713,33292300,38076417],"_wfopen_s":[1376258,9109506,9240578,9306114,10878980,13762562,16121858,19529730,22740994,34865154,37683202,40828929],"_mp_alloc":[16056321,23134209,27459592],"_mp_prec":[8650753,11141121,19333126,33292289],"_mp_exp":[8650753,11141121,22675458,38076421]} \ No newline at end of file +{"_mpz_realloc":[4980737,9043969,13959169,14614529,19333121,19660801,21037057,21168129,23724033,32571403],"_ptr":[13172737],"_mp_size":[3342342,3866631,10944514,11599874,15859714,23068674,24117249,25624583,25821186,30474241,35127300,40108033],"_mp_den":[2359297,16515073,34668549],"_mp_num":[2359297,9699333,16515073],"_mp_d":[3866625,10944513,11599873,15859714,23068674,24117249,25624577,25821186,30474241,35127308,40108033],"_wfopen_s":[3997698,8192002,8388610,9830402,11403268,12320770,15663106,20447234,25165826,34996226,36634625,38010882],"_mp_alloc":[15859713,23068680,25821185],"_mp_prec":[10944513,11599873,17170438,35127297],"_mp_exp":[10944513,11599873,25624578,40108037]} \ No newline at end of file diff --git a/docs/fti/FTI_97.json b/docs/fti/FTI_97.json index b8c6aef..3767a44 100644 --- a/docs/fti/FTI_97.json +++ b/docs/fti/FTI_97.json @@ -1 +1 @@ -{"allows":[5701633,8650753,11337729,12124161,14090241,16646145,17104897,21626881,23134209,28311553,28966913,35389441,39649281,39714817],"alignment":[23986177,34930689],"applications":[20709377,28442625,31588353],"avoids":[34930689],"accepted":[7602177,10027009,15335425,17694721,36306945],"anycpu":[20185089],"applicable":[31719425],"assumed":[1179649],"array":[589825,4063233,4915206,5177346,6225921,7077893,8388609,8650753,8781826,9109505,11141121,12124167,12582915,13762561,13959171,14221313,14286851,15794177,16056321,16121857,16842753,17170438,20054017,21037060,21299201,21626881,23068676,23134209,23527425,23920641,23986178,25362433,30605313,32243713,32964609,33292291,34275329,34406401,34734081,34865153,34930689,35323907,37027842,37093379,37421059,38469633,39059457,39714817,40435714,40566785],"algorithm":[2293761,4915205,5636103,12255235,17170437,18546689,20709379,25165825,28114948,28442626,30015489,31588354,32505857,37814274,39452675],"according":[36765697],"abstract":[393217,1048577,2162689,2752513,3145729,3538945,4390913,4849665,7995393,9502721,13697025,15663105,17170433,17956865,19726337,19922945,20119553,20971521,22675457,23789569,25624577,26476545,29360129,30867457,32440321,33292289,33751041,35782657,37158913,39518209,40435713],"attacks":[27983873],"automatic":[8847361],"alloc_size":[4915201,6356999,8126468,17170433,34537479,39059457],"alternatively":[9306113,20250625],"alloc_func_ptr":[8126469,8585221],"affects":[28442625,31588353],"assumes":[23986177],"access":[4915202,7012353,12582913,17170434,21037058,23068674,27983873,36044801],"ascii":[5177348,22937603],"accordingly":[4915201,6029314,17170433],"abstractclassattribute":[17170433],"accurate":[31719425,40828929],"allowing":[20185089],"areequal":[10289154,11796482,27918338,40239106],"able":[31719425],"applying":[6881281,13107201,14548993,17563649,25493505,28049409],"args":[15794181,16842757,30605317,34865157,40566789],"accurately":[31719425,40828929],"active":[3670017,13369345,23265281,24838145,34668545],"accesses":[37224449],"assign":[4915202,9175042,9830402,14286850,17170434,21430275,26804227,41353218],"architecture":[12582914,20185089,21037058,23068674],"allocation":[1769473,4128769,4915204,6356993,8126476,8585222,14614529,17170436,24576001,31719426,34013185,34734082,34930690,40108034,40566786],"andalso":[1376262,8585218],"addend1":[4915201,17170433,36503558],"arrays":[14090241],"actually":[4915201,5111810,5636097,17170433,34930689],"allowed":[983041,1114113,1966081,11599873,16908289,19136513,20250625,20643841,23986177,24641537,26345473,30998529,34144257,34930689,35520513],"actual":[2424833,5963777,6029313,7012353,8388609,10485761,11272193,12058625,12451841,12517377,16515073,16842753,20905985,26869761,36044801,38273025,39976961],"additional":[20578305],"apply":[23986177],"addition":[4915201,7012353,7929859,17170433,20643841,36044801,38338561,41222145],"advance":[4915202,6946817,10747905,16252929,17170434],"area":[4915202,5177345,7012354,17170434,20578306,22937601,27525121,29032449,36044802],"aim":[19333121],"avoid":[8454145,8847361,16252929],"allocate_function":[8126476,8585224,34537477,39059457],"accomplish":[34013185],"adequate":[30015489],"areas":[4718593,4915202,7012353,17170434,20578307,23724033,36044801,36765698,37224450,41222145],"assert":[327684,458756,589828,851972,983044,1114116,1245186,1376264,1441796,1638404,1966084,2293766,2424836,2490372,2555910,2621444,2686982,2883588,3014660,3080198,3211268,3276804,3342342,3473412,3670020,3735556,3866628,4063246,4325380,4521988,4718596,4784140,5111812,5177348,5242884,5373956,5439492,5767172,5963782,6029316,6094852,6225934,6488068,6750212,6881284,6946820,7012358,7274500,7405572,7471108,7602180,7667716,7733252,7929862,8126472,8192004,8257540,8323076,8388612,8454148,8585218,8716292,8847368,8912902,8978436,9043972,9109520,9175044,9240584,9306120,9371652,9437186,9633796,9764868,9830404,9961476,10027012,10092548,10289154,10485764,10616836,10747908,10878986,10944518,11272196,11403268,11468804,11599876,11730952,11796482,11927556,11993092,12058628,12386308,12451844,12517380,12582918,12845060,13041666,13107206,13303812,13369348,13434884,13500420,13631492,13762576,13828100,13893636,14221316,14286852,14352388,14548996,14614532,14680068,14745604,14876676,14942212,15138822,15269892,15335428,15400964,15728644,15794178,15859716,15990788,16121860,16187396,16252932,16318466,16449540,16515076,16711686,16842756,16908292,16973830,17039364,17235972,17563652,17629188,17694724,17891332,18219012,18350084,18546692,18677764,18743300,18808836,18939908,19070980,19136520,19267590,19398660,19529736,19595268,19791878,20054018,20250628,20316164,20381700,20512776,20578314,20643846,20774916,20905988,21037060,21102598,21299208,21364740,21430276,21561350,21757956,21823492,21889030,21954564,22020100,22085636,22151172,22282246,22347782,22413316,22478852,22544388,22741000,22937606,23003142,23068676,23265284,23724038,23920656,23986180,24051716,24248324,24313860,24444934,24576010,24641540,24772612,24838148,24969220,25100292,25165828,25231366,25296900,25362440,25427972,25493508,25559044,25690116,25952262,26017796,26148868,26279940,26345478,26673156,26804228,26869764,27000836,27197446,27394054,27525124,27656196,27721730,27787270,27918338,27983876,28049414,28180486,28704774,28770308,28835846,29032452,29097988,29229060,29294598,29491204,29556740,29687812,29818884,29949956,30015492,30081032,30212100,30277638,30539782,30605316,30670852,30998534,31064070,31129604,31391748,31457284,31653892,31719430,32112644,32309252,32374788,32505862,32636932,32702468,32899076,32964616,33357828,33488900,33554436,33619972,33816580,33882116,34013192,34144260,34209796,34275336,34340868,34406416,34603016,34668548,34734084,34799622,34865156,34930714,35061764,35192836,35258372,35520514,35651590,35913732,36044806,36110340,36241412,36306948,36700164,36765704,36831236,36896772,36962308,37224454,37289988,37486596,37552132,37683208,37814276,37879812,37945350,38010884,38273028,38207494,38338568,38404100,38535172,38469640,38731780,38797318,39124996,39321604,39583750,39780356,39911428,39976964,40042500,40108036,40239106,40566788,40632324,40828932,40894468,40960004,41025540,41156612,41222150,41287684,41353220],"a1p":[37224454],"addend2":[4915201,17170433,36503558],"absolute":[458753,1245185,4784129,4915206,5046273,8781825,9633793,11468801,12582914,17170438,22478849,23068673,24576001,33292289,34930689,38207490],"appended":[8388609,16842753],"argument":[1310722,4259842,4587522,7143425,8126465,9306113,10223617,10551297,12320769,13238274,13565954,14417922,14614529,19464193,19529729,20250625,20447234,21692417,24117249,24707073,26607617,27262977,27328514,27590658,27721729,30343170,31195138,31719425,31850497,33423362,33947650,34471937,34996225,35717122,35848193,36634625,38141954,38600706,38666241],"abs":[27459585,33292290],"analogous":[31195137],"allocating":[34930689],"accept":[6553601,8650753,12713985,20250625,23658497,31522817,32047105,35717121],"automatically":[1,8847361,16252930,20185090],"address":[14090242,23986177,34734081,34930689,40566785],"account":[20185089,23986177],"assigning":[1441793,4521985,5242881,9175041,9830401,16908289,19398657,20250625,21757953,25231361,25296897,30081025,31391745,35061761,35520513,38404097,38535169],"average":[3080193,25952257],"assignment":[3670017,8323073,13369346,19595265,23265281,24838145,25100289,34209793,34668545,40960001],"allocated":[458754,589825,851970,983042,1245185,1376258,1441794,1638402,1769478,2293762,2424834,2490370,2555906,2686978,2883586,3014658,3211266,3276802,3342338,3473410,3670018,3735554,3866626,4128770,4521986,4784130,4915204,5242882,5373954,5439490,5767170,6029314,6356994,6488066,6619138,6750210,6881282,6946818,7274498,7471106,7602178,7667714,7733250,8192002,8257538,8323074,8716290,8847363,8912898,8978434,9043970,9175042,9240578,9306114,9437185,9633794,9764866,9830402,9961474,10027010,10092546,10485762,10616834,10747906,10878978,10944514,11272194,11403266,11468802,11599874,11730946,11927554,11993090,12058626,12386306,12451842,12517378,12582914,12845058,13041666,13107202,13303810,13369346,13500418,13631490,13828098,13893634,14286850,14352386,14548994,14614532,14680066,14745602,14876674,14942210,15269890,15335426,15400962,15728642,15859714,15990786,16056321,16252930,16449538,16515074,16711682,16908290,16973826,17170436,17235970,17563650,17629186,17694722,17891330,18546690,18743298,18808834,18939906,19070978,19267586,19398658,19529730,19595266,19791874,20250626,20316162,20381698,20512770,20774914,20905986,21037058,21102594,21299202,21430274,21561346,21757954,21823490,21954562,22020098,22085634,22151170,22347778,22478850,22544386,22740994,23003138,23068674,23134209,23265282,23527425,23986178,24248322,24313858,24444930,24576002,24772610,24838146,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25690114,25821189,26017794,26279938,26673154,26804226,26869762,27000834,27459586,27656194,27721730,27787266,27983874,28049410,28770306,28835842,29097990,29229058,29294594,29491202,29556738,29687810,29949954,30015490,30081026,30212098,31129602,31391746,31457282,31719428,32112642,32309250,32374786,32505858,32636930,32702466,32833537,32899074,32964610,33030145,33292290,33357826,33488898,33554434,33619970,33816578,33882114,34013186,34209794,34275330,34340866,34537474,34603010,34668546,34734082,34799618,34930694,35061762,35192834,35258370,35520513,35651586,35913730,36110338,36241410,36306946,36700162,36831234,36896770,36962306,37289986,37683202,37814274,37879810,38010882,38273026,38207490,38338562,38404098,38535170,38469634,38797314,39059458,39124994,39321602,39583746,39780354,39911426,39976962,40042498,40108036,40304641,40566787,40632322,40828929,40960002,41025538,41287682,41353218],"algorithms":[4915201,12713985,17170433,31522817,37814273,39256065],"allocates":[16252929],"abcd":[4784130,22347778],"arguments":[4063233,4915202,6225921,8126465,8388609,8585217,9109505,13762561,14221313,15794177,16121857,16842753,17170434,20054017,23920641,27983874,28704769,30605313,34406401,34734081,34865153,40566785],"asprintf":[40566785],"assembly":[262145,327681,393217,458753,524289,589825,720897,786433,851969,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1900545,1966081,2031617,2162689,2228225,2293761,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,3014657,3080193,3145729,3211265,3276801,3342337,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4259841,4325377,4390913,4456449,4521985,4587521,4718593,4784129,4849665,5046273,5111809,5177345,5242881,5373953,5439489,5505025,5636097,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6356993,6422529,6488065,6553601,6619137,6750209,6815745,6881281,6946817,7012353,7143425,7208961,7274497,7340033,7405569,7471105,7602177,7536641,7667713,7733249,7798785,7864321,7929858,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12713985,12779521,12845057,12976129,13041665,13107201,13238273,13303809,13369345,13434881,13500417,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18677761,18743297,18808833,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20512769,20578305,20643842,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282242,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23461889,23527425,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345474,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,27000833,27066369,27131905,27197441,27262977,27394049,27459585,27525121,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180482,28442625,28508161,28573697,28704769,28770305,28835841,28901377,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30408705,30474241,30539777,30605313,30670849,30801921,30867457,30932993,30998530,31064066,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31850497,31916033,31981569,32047105,32112641,32178177,32309249,32374785,32440321,32505857,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33161217,33226753,33292289,33357825,33488897,33554433,33619969,33685505,33751041,33816577,33882113,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38535169,38469633,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39124993,39190529,39256065,39321601,39452673,39518209,39583745,39649281,39780353,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753],"application":[23986177,28442625,31588353,31719425,34930690],"arithmetic":[2424833,3211265,3866625,5046273,5767169,6029313,7667715,7733249,8192001,8257537,8716289,9437187,9764865,10485761,11272193,11403265,11534337,11927553,12058625,12386305,12451841,12517377,13893633,14680067,14811137,15269889,15400961,15728641,16449537,16515073,17432577,18743297,18808833,20905985,22020097,22085633,22478849,25690113,26542081,26869761,27000833,29753345,32702465,33357825,33619969,35913729,36503553,37879809,38273025,38862849,38993921,39124993,39976961,41287681],"allocate":[1769473,4128770,4915206,6356998,6619137,8126470,8388610,8585228,14221314,16842754,17170438,23527425,23986178,26935301,30605314,32833537,33030145,34537473,34930690,39059457,40304641],"add":[4915204,5177345,7929857,15138817,16252929,17170436,20643841,30539777],"assuming":[27983873],"available":[327682,458754,589826,720898,851970,983042,1114114,1245186,1376258,1441794,1638402,1900546,1966082,2293762,2424834,2490370,2555906,2621442,2686978,2883586,3014658,3080194,3211266,3276802,3342338,3473410,3604482,3670018,3735554,3866626,4063234,4325378,4521986,4718594,4784130,5046274,5111810,5177346,5242882,5373954,5439490,5636098,5767170,5963778,6029314,6094850,6225922,6488066,6553602,6750210,6881282,6946818,7012354,7274498,7405570,7471106,7602178,7667714,7733250,7929858,8126466,8192002,8257538,8323074,8388610,8454146,8585218,8716290,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9633794,9764866,9830402,9961474,10027010,10092546,10289154,10485762,10616834,10747906,10878978,10944514,11272194,11403266,11468802,11534338,11599874,11730946,11796482,11927554,11993090,12058626,12255234,12386306,12451842,12517378,12582914,12713986,12845058,13041666,13107202,13303810,13369346,13434882,13500418,13631490,13762562,13828098,13893634,14221315,14286850,14352386,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15073282,15138818,15269890,15335426,15400962,15728642,15794178,15859714,15990786,16121858,16187394,16252930,16318466,16449538,16515074,16711682,16842754,16908290,16973826,17039362,17235971,17432578,17563650,17629186,17694722,17891330,18087938,18219010,18350082,18546690,18677762,18743298,18808834,18939906,19070978,19136514,19267586,19398658,19529730,19595266,19791874,20054018,20185089,20250626,20316163,20381698,20512770,20578306,20643842,20709378,20774914,20840450,20905986,21037058,21102594,21299202,21364738,21430274,21561346,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22282242,22347778,22413314,22478850,22544386,22740994,22937602,23003138,23068674,23265282,23658498,23724034,23920642,23986178,24051714,24248322,24313858,24444930,24576002,24641538,24772610,24838146,24969218,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25690114,25952258,26017794,26148866,26214402,26279938,26345474,26542082,26673154,26804226,26869762,27000834,27197442,27394050,27525122,27656194,27721730,27787266,27918338,27983874,28049410,28114946,28180482,28442626,28704770,28770306,28835842,29032450,29097986,29229058,29294594,29491202,29556738,29687810,29753346,29818882,29949954,30015490,30081026,30212098,30277634,30539778,30605315,30670850,30998530,31064066,31129602,31391746,31457282,31522818,31588354,31653890,31719426,32047106,32112642,32309250,32374786,32505858,32636930,32702466,32899074,32964610,33357826,33488898,33554434,33619970,33816578,33882114,34013186,34144258,34209794,34275330,34340866,34406402,34603010,34668546,34734083,34799618,34865154,34930690,35061762,35192834,35258370,35520514,35651586,35913730,36044802,36110338,36241410,36306946,36503554,36700162,36765698,36831234,36896770,36962306,37224450,37289986,37486594,37552130,37683202,37814274,37879810,37945346,38010882,38273026,38207490,38338562,38404098,38469634,38535170,38731778,38797314,38862850,38993922,39124994,39256066,39321602,39452674,39583746,39780354,39911427,39976962,40042498,40108034,40239106,40566787,40632322,40828930,40894466,40960002,41025538,41156610,41222146,41287682,41353218,41418754]} \ No newline at end of file +{"allows":[7667713,10747905,10944513,11534337,13172737,16515073,18415617,24117249,24182785,25821185,36700161,36896769,38404097,40566785],"alignment":[26607617,33161217],"applications":[23986177,30081025,36569089],"avoids":[33161217],"accepted":[7471105,9175041,14811137,17760257,31850497],"applicable":[30015489],"assumed":[4521985],"array":[786433,4653057,5177346,6029313,7733249,8388609,8650757,9043970,10944513,11534343,11599873,12320769,13303811,13959171,14090241,14614531,15269889,15663105,15859713,16973825,19333126,19464193,19660804,21037060,21168134,21430273,21561345,23134209,24117249,24248321,25821185,26607618,28114945,29032451,30343169,30474241,32702465,33161217,33226755,34078722,34275329,34865155,35127299,35717121,37027841,37355521,38010881,38404097,38928385,40894466],"algorithm":[2490369,6094855,12976131,17104897,19333125,21168133,22216705,23986179,26738689,30081026,36569090,37093380,37486594,38141953,38273027],"according":[25231361,41025537],"abstract":[458753,983041,1966081,2949121,3342337,3866625,4456449,5242881,8257537,13565953,16318465,16580609,17956865,18087937,19595265,20381697,20643841,21168129,21954561,24969217,25624577,27394049,29884417,30146561,31195137,31916033,35127297,38666241,39124993,40435713,40894465],"attacks":[23855105],"automatic":[5898241],"alloc_size":[6356999,9240580,19333121,21168129,33357831,34275329],"alternatively":[9830401,22544385],"alloc_func_ptr":[9240581,10158085],"affects":[30081025,36569089],"assumes":[26607617],"access":[7405569,13959169,19333122,19660802,21037058,21168130,23855105,33292289],"ascii":[5177348,24772611],"accordingly":[5767170,19333121,21168129],"abstractclassattribute":[21168129],"accurate":[30015489,36634625],"allowing":[25231361],"areequal":[9437186,12189698,34209794,40828930],"able":[30015489],"applying":[7077889,12845057,14221313,18743297,27066369,33423361],"args":[15269893,16973829,23134213,35717125,38010885],"accurately":[30015489,36634625],"active":[3604481,12124161,21233665,28246017,36241409],"accesses":[37289985],"assign":[9371650,10289154,14614530,19333122,21168130,24641539,26148867,39845890],"architecture":[13959170,19660802,21037058,25231361],"allocation":[1441793,3538945,6356993,9240588,10158086,13893633,19333124,19922945,21168132,30015490,32571393,32702466,33161218,35717122,38731778],"andalso":[3997702,10158082],"addend1":[19333121,21168129,34471942],"arrays":[13172737],"actually":[5111810,6094849,19333121,21168129,33161217],"allowed":[589825,1703937,2752513,10878977,16449537,18677761,19726337,22544385,25493505,26411009,26607617,32899073,33161217,37748737,40304641],"actual":[2228225,5767169,6291457,7405569,7733249,8978433,10551297,12517377,12779521,13631489,15269889,16121857,21889025,25690113,33292289,35323905,37683201],"additional":[18939905,25231361],"apply":[26607617],"addition":[7405569,8060931,18677761,19333121,21168129,33292289,39780353,41091073],"advance":[7340033,9568257,14745601,19333122,21168130],"area":[5177345,7405570,18939906,19333122,21168130,24772609,24903681,32833537,33292290],"aim":[17170433],"avoid":[5898241,9764865,14745601],"allocate_function":[9240588,10158088,33357829,34275329],"accomplish":[32571393],"adequate":[22216705],"areas":[5505025,7405569,18939907,19333122,21168130,25362433,33292289,37289986,39780353,41025538],"assert":[327684,524292,589828,720900,786436,1114114,1179652,1310724,1507334,1703940,2031620,2097156,2228228,2490374,2555908,2752516,2818052,2883588,3014662,3080196,3145732,3211268,3276804,3473414,3604484,3735558,3997704,4128772,4390916,4587524,4653070,4980748,5046276,5111812,5177348,5308420,5373956,5505028,5636100,5767172,5898248,5963780,6029326,6291462,6422532,6946820,7012356,7077892,7340036,7405574,7471108,7602180,7733252,7864324,7929860,7995396,8060934,8126468,8192008,8323076,8388624,8454148,8585220,8716292,8781826,8847364,8978436,9109508,9175044,9240584,9371652,9437186,9502724,9568260,9633796,9764868,9830408,9961476,10027012,10158082,10223620,10289156,10551300,10682374,10878980,11141128,11272196,11337732,11403274,11665414,11730948,11796484,12124164,12189698,12320784,12517380,12582916,12713988,12779524,12845060,12910596,13041668,13107204,13369348,13500420,13631492,13697028,13828098,13893636,13959174,14024708,14090244,14221318,14352390,14417924,14483460,14614532,14745604,14811140,15138820,15269892,15335428,15532036,15597572,15663108,15794180,15925250,15990788,16056324,16121860,16187396,16384004,16449540,16908292,16973826,17039364,17104900,17235972,17563652,17760260,17825798,18022404,18153476,18284550,18546692,18677766,18743300,18808836,18874372,18939914,19005444,19070980,19529734,19660804,19726344,19791880,19857414,19922954,20054022,20250630,20447240,20709380,20840452,20905990,20971526,21037060,21233668,21430274,21561360,21626882,21692420,21757956,21823492,21889028,22216708,22347780,22544388,22675460,22937604,23134212,23199748,23461892,23527428,23592964,23658500,23724038,23855108,24051716,24248328,24510468,24576004,24641540,24707076,24772614,24838148,24903684,25100294,25165832,25296900,25362438,25493510,25559044,25690116,25755652,25952262,26148868,26279942,26345478,26411012,26476548,26542084,26607620,26673156,26738692,26869766,26935302,27066372,27262980,27459588,27525124,27656196,27787268,27852804,27983876,28114952,28180484,28246020,28377094,28508166,28639238,28770308,28901382,29163526,29294596,29360132,29425668,29491204,29687812,29753348,30015494,30343176,30408708,30539780,30736388,30867460,30932996,31064068,31260676,31522822,31653892,31719428,31850500,31981572,32047112,32178180,32309252,32440326,32505864,32571400,32636932,32702468,32768004,32833540,32899078,33030150,33095684,33161242,33292294,33423366,33816580,33882116,33947654,34013190,34144260,34209794,34406404,34537476,34603012,34799620,34930692,34996232,35192836,35258372,35323908,35454980,35520516,35586054,35651588,35717124,35913732,35979268,36044806,36241412,36438020,36634628,37027848,37224452,37289990,37355528,37486596,37552132,37617668,37683204,37748740,37879812,38010884,38141958,38338564,38535172,38600708,38731780,38928400,39059460,39321606,39387140,39518212,39780358,39845892,39911430,40042500,40239108,40304642,40370180,40697860,40828930,41025544,41091080,41156612,41287684,41418756],"a1p":[37289990],"addend2":[19333121,21168129,34471942],"absolute":[327681,1114113,4980737,5439489,8585217,9043969,9961473,13959170,19333126,19922945,21037057,21168134,27983873,33161217,35127297,35586050],"appended":[7733249,15269889],"argument":[1245186,4194306,4325378,8519681,9240577,9306113,9830401,11927553,11993090,13238273,13893633,14286850,14680066,17629185,20447233,20774914,21102594,21626881,22544385,22740993,24379393,25427970,27131905,27197441,28049409,28966913,30015489,30605314,32243713,32964609,33685506,33751041,35782658,36110338,36372481,36831234,37945345,38862850,39452674],"abs":[23068673,35127298],"analogous":[36831233],"allocating":[33161217],"accept":[6160385,10944513,15073281,22478849,22544385,30277633,31588353,39452673],"automatically":[1,5898241,14745602,25231362],"address":[13172738,26607617,32702465,33161217,35717121],"account":[25231361,26607617],"assigning":[1310721,4587521,5046273,9371649,10289153,16449537,20840449,21692417,22544385,24707073,25952257,32047105,32309249,32768001,35979265,40239105,40304641],"average":[3473409,26279937],"assignment":[3604481,7012353,12124162,20709377,21233665,23461889,28246017,32178177,36241409,37224449],"allocated":[327682,589826,720898,786433,1114113,1179650,1310722,1441798,1507330,2031618,2097154,2228226,2490370,2555906,2883586,3014658,3080194,3145730,3211266,3276802,3538946,3604482,3735554,3997698,4128770,4587522,4980738,5046274,5308418,5373954,5636098,5767170,5898243,6356994,6422530,6684674,6946818,7012354,7077890,7340034,7471106,7864322,7929858,7995394,8126466,8192002,8323074,8454146,8585218,8716290,8781825,8847362,8978434,9109506,9175042,9371650,9502722,9568258,9633794,9830402,9961474,10027010,10223618,10289154,10551298,10682370,10878978,11141122,11272194,11337730,11403266,11665410,11730946,11796482,12124162,12517378,12582914,12713986,12779522,12845058,12910594,13041666,13107202,13369346,13500418,13631490,13697026,13828098,13893636,13959170,14024706,14221314,14483458,14614530,14745602,14811138,15138818,15335426,15597570,15794178,15859713,15990786,16056322,16121858,16187394,16449538,17039362,17104898,17235970,17563650,17760258,17825794,18022402,18153474,18284546,18546690,18743298,18874370,19333124,19464193,19529730,19660802,19791874,19857410,19922946,20447234,20709378,20840450,20905986,20971522,21037058,21168132,21233666,21626882,21692418,21757954,21889026,22216706,22347778,22544386,22675458,22937602,23068674,23199746,23461890,23527426,23592962,23658498,23724034,23855106,24051714,24248322,24576002,24641538,24707074,24838146,25165826,25690114,25755650,25821185,25952258,26148866,26476546,26607618,26673154,26738690,26869762,26935298,27066370,27262978,27459586,27525122,27656198,27787266,27983874,28114946,28180482,28246018,28508162,28639234,28770306,29229061,29360130,29425666,29491202,29687810,29753346,30015492,30343170,30408706,30539778,30736386,30867458,31064066,31260674,31457281,31653890,31719426,31850498,31981570,32047106,32178178,32309250,32505858,32571394,32636930,32702466,32768002,33030146,33095682,33161222,33357826,33423362,33816578,33947650,34013186,34144258,34275330,34406402,34537474,34603010,34799618,34930690,34996226,35127298,35192834,35258370,35323906,35454978,35520514,35586050,35651586,35717123,35913730,35979266,36241410,36438018,36634625,37027842,37224450,37355522,37486594,37552130,37617666,37683202,38141954,38207489,38338562,38535170,38600706,38731780,38797313,39059458,39321602,39518210,39845890,39911426,40042498,40239106,40304641,40370178,40697858,41091074,41418754],"algorithms":[15073281,19333121,21168129,30998529,31588353,37486593],"allocates":[14745601],"abcd":[4980738,23724034],"arguments":[4653057,6029313,7733249,8388609,9240577,10158081,12320769,14090241,15269889,15663105,16973825,19333122,21168130,21430273,21561345,23134209,23855106,26345473,32702465,35717121,38010881,38928385],"asprintf":[35717121],"assembly":[196609,327681,393217,458753,524289,589825,720897,786433,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,1966081,2031617,2097153,2162689,2228225,2424833,2490369,2555905,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3735553,3801089,3866625,3932161,3997697,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4784129,4849665,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6684673,6750209,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7733249,7798785,7864321,7929857,7995393,8060930,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11665409,11730945,11796481,11927553,12058625,12124161,12189697,12255233,12320769,12386305,12517377,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15794177,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18546689,18612225,18677762,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250626,20316161,20381697,20447233,20578305,20643841,20709377,20840449,20905985,20971521,21037057,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25493506,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901378,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30539777,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522818,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899074,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36569089,36634625,36831233,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38535169,38600705,38666241,38731777,38797313,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753],"application":[25231362,26607617,30015489,30081025,33161218,36569089],"arithmetic":[720897,2228225,3211265,3276801,5439489,5636097,5767169,7929857,8126465,8454147,8716289,8781827,8978433,9502721,10551297,11010049,11272193,11337729,11796481,12517377,12713987,12779521,13107201,13500417,13631489,15138817,15466497,15990785,16056321,16121857,17563649,18022401,21364737,21889025,22347777,22806529,23199745,25690113,27525121,27983873,29360129,29687809,30539777,31129601,34144257,34471937,35323905,35454977,37683201,37814273,38338561,38535169,38600705,39714817],"allocate":[1441793,3538946,6356998,6684673,7733250,9240582,10158092,14090242,15269890,19333126,19464193,21168134,22020101,23134210,26607618,31457281,33161218,33357825,34275329,38207489,38797313],"add":[5177345,8060929,14352385,14745601,18677761,19333124,21168132,25231361,28377089],"assuming":[23855105],"available":[327682,524290,589826,720898,786434,1048578,1114114,1179650,1310722,1507330,1703938,1835010,2031618,2097154,2228226,2490370,2555906,2752514,2818050,2883586,3014658,3080194,3145730,3211266,3276802,3473410,3604482,3735554,3801090,3997698,4128770,4390914,4587522,4653058,4980738,5046274,5111810,5177346,5308418,5373954,5439490,5505026,5636098,5767170,5898242,5963778,6029314,6094850,6160386,6291458,6422530,6946818,7012354,7077890,7340034,7405570,7471106,7602178,7733250,7864322,7929858,7995394,8060930,8126466,8192002,8323074,8388610,8454146,8585218,8716290,8781826,8847362,8978434,9109506,9175042,9240578,9371650,9437186,9502722,9568258,9633794,9764866,9830402,9961474,10027010,10158082,10223618,10289154,10551298,10682370,10878978,11010050,11141122,11272194,11337730,11403266,11665410,11730946,11796482,12124162,12189698,12320770,12517378,12582914,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13369346,13500418,13631490,13697026,13828098,13893634,13959170,14024706,14090243,14221314,14352386,14417922,14483458,14614530,14745602,14811138,15073282,15138818,15269890,15335426,15466498,15532034,15597570,15663106,15794178,15925250,15990786,16056322,16121858,16187394,16252930,16384002,16449538,16908290,16973826,17039362,17104898,17235971,17563650,17760258,17825794,18022402,18153474,18284546,18481154,18546690,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19529730,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20250626,20447234,20709378,20840450,20905986,20971522,21037058,21233666,21364738,21430274,21561346,21626882,21692418,21757954,21823490,21889026,22216706,22347778,22478850,22544386,22675458,22806530,22937602,23134211,23199746,23461890,23527426,23592963,23658498,23724034,23855106,23986178,24051714,24248322,24510466,24576002,24641538,24707074,24772610,24838146,24903682,25100290,25165826,25231361,25296898,25362434,25493506,25559042,25690114,25755650,25952258,26148866,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26869762,26935298,27066370,27262978,27459586,27525122,27656194,27787266,27852802,27983874,28114946,28180482,28246018,28377090,28508162,28639234,28770306,28835842,28901378,29163522,29294594,29360130,29425666,29491202,29687810,29753346,30015490,30081026,30277634,30343170,30408706,30539778,30736386,30867458,30932994,30998530,31064066,31129602,31260674,31522818,31588354,31653890,31719426,31850498,31981570,32047106,32178178,32309250,32440322,32505858,32571394,32636930,32702467,32768002,32833538,32899074,33030146,33095682,33161218,33292290,33423362,33816578,33882114,33947650,34013186,34144258,34209794,34406402,34471938,34537474,34603010,34799618,34930690,34996226,35192834,35258370,35323906,35454978,35520514,35586050,35651586,35717123,35913730,35979266,36044802,36241410,36438018,36569090,36634626,37027842,37093378,37224450,37289986,37355522,37486594,37552130,37617666,37683202,37748738,37814274,37879810,38010882,38141954,38273026,38338562,38535170,38600706,38731778,38928386,39059458,39321602,39387138,39518210,39714818,39780354,39845890,39911426,39976962,40042498,40239106,40304642,40370178,40697859,40828930,41025538,41091074,41156610,41287682,41418754]} \ No newline at end of file diff --git a/docs/fti/FTI_98.json b/docs/fti/FTI_98.json index 56871cb..76c5122 100644 --- a/docs/fti/FTI_98.json +++ b/docs/fti/FTI_98.json @@ -1 +1 @@ -{"bit":[1048577,1376258,2424834,2752513,3276802,4259841,4390913,4915229,5373954,5636098,6029318,8650753,8847362,9961474,10485776,10878978,11272194,12058640,12451846,12517380,13238273,13697025,13959169,15859714,16252929,16515074,17170462,17629186,18939906,20185096,20840449,20905986,20971521,23003138,24576002,25624577,26017794,26214401,26869766,27525133,27787266,27918337,28377089,29032461,29229058,29360129,32309250,32440321,33292289,34013186,35258370,35717121,36831234,36962305,37093377,37421058,37552130,38141953,38273030,38207489,39780354,39976962],"binary":[1376257,1900545,4915204,12713985,16908289,17170436,17498113,18087937,20905985,22740993,31522817,32178177,35520513,39256065],"behaves":[2424833,6029313,10485761,11272193,12058625,12451841,12517377,16515073,20905985,26869761,38273025,39976961],"block":[1769480,4128770,4915205,6619138,9895938,14614531,16384003,17170437,20643841,25821189,26345473,30998529,31719427,33095682,33161219,34734083,34930691,38600707,39059458,40108035,40566787],"bool":[393220,7143427,7995396,8519683,9502724,10223619,10551299,12320771,15663108,19464195,19726340,20119556,21692419,24117251,24707075,25755651,26607619,27262979,27852803,28901379,29425667,30867460,31260675,31850499,34078723,34471939,34996227,35848195,36634627,37158916,37355523,38666243],"bits":[2490370,3014658,3211266,3670018,3866625,4259842,4915211,5111812,5636098,5767170,7667714,8192002,8257538,8716290,8847366,8978434,9371650,9437185,9633793,9764866,10485761,10944518,11403266,11927554,11993090,12058625,12386306,12517377,13303810,13369346,13500418,14680066,14942210,15073284,16252932,16318465,17170444,17235970,18808834,20185089,20840452,20905987,22020098,22085634,23003140,23265282,23986179,24248322,24838146,26148870,27787268,28180488,28377089,29097988,31064071,31195137,31719426,32374786,33357826,34668546,34930690,35913730,36241410,36962306,37421057,37879810,38207490,38731778,39059457,39321602,39452673,40239105,40632322],"bytesperlimb":[11796484],"bitwise":[2424835,2621441,4325378,4915217,6094850,11272195,17170449,18219009,18677761,24576001,24969218,30670850,31653890,39976963,40894465],"byref":[8585222,21102594,34930690],"binomial":[4915202,10616835,17170434,38010883],"boolean":[393218,7143426,7995394,8519682,9502722,10223618,10551298,12320770,15663106,19464194,19726338,20119554,21692418,24117250,24707074,25755650,26607618,27262978,27852802,28901378,29425666,30867458,31260674,31850498,34078722,34471938,34996226,35848194,36634626,37158914,37355522,38666242],"bases":[16908290,20250626,22740994,24576002],"based":[4784129,8454145,12582914,20185089,21037058,23068674,24379393],"book":[4915201,17170433,37814273],"bytes":[1376261,1769479,4128769,4915205,5177346,6356995,6619137,8388610,9240578,9306115,10878979,11796481,14614530,16842754,17170438,19529731,22740995,22937601,23986182,25821190,28377089,31719426,33161218,34537475,34930692,35323905,37683203,38141953,39059460,40108034,40828930],"bitsperlimb":[40239108],"bin":[38010882],"base":[1179650,4915227,5177355,9240584,9306127,13369352,14614539,15990791,16908300,17170459,19529738,20250639,21823509,22741002,22937611,24576010,25559062,27656214,27983893,31719433,34209800,35520521,37683209,38731786,40108043,40828937],"byte":[196610,655362,1376258,2949123,4259845,4456454,4980738,5177350,7077889,7340034,12124161,13238277,17760258,18284550,18415622,18612226,19005446,19660806,22216710,22806531,22937609,23396354,23986183,24510466,26083330,27328516,27590661,29163526,29622278,30343173,31195140,32571395,33226758,33423365,33947652,34930696,35323909,35717125,38141956,39387138,40501254,40697857],"beginning":[20250625],"body":[31195137],"bound":[720897],"bugs":[12713985,31522817,39256065],"bit_index":[4915204,6029319,12451846,17170436,26869766,38273030],"borrows":[21889025,37945345],"buf":[4915204,8388615,14221320,16842759,17170436,30605320],"built":[20185089],"bigger":[1769473,39452673],"build":[20185091],"b1p":[37224454],"borrow":[22282245,25952261,26345477,27197445,27394053,30277637,36044805],"big":[1376257,9633793,17235970,20316161,24576001,26214401,32899073,36962305,38731777,39911426],"behaviour":[33882113],"building":[20185091,20643841,26345473,30998529],"better":[28442625,31588353],"best":[2293761,32505857]} \ No newline at end of file +{"bit":[983041,2228226,2883586,2949121,3997698,4194305,4456449,5373954,5767174,5898242,6094850,8978434,9109506,10551312,10944513,11403266,12517380,12779536,13303809,13565953,13631494,14286849,14745601,15794178,16121858,17039362,18153474,19333149,19922946,19988481,20643841,21168158,21889030,24903693,24969217,25231384,25690114,26673154,26804225,26869762,28639234,28770306,28835841,29032449,29294594,30146561,30867458,31064066,31916033,32571394,32636929,32833549,33685505,33816578,34209793,34865154,34930690,35127297,35323906,35586049,37683206,39452673],"binary":[1835009,3997697,14942209,15073281,16449537,18481153,19333124,21168132,25165825,25690113,30212097,30998529,31588353,40304641],"behaves":[2228225,5767169,8978433,10551297,12517377,12779521,13631489,16121857,21889025,25690113,35323905,37683201],"bz2":[25231361],"block":[1441800,3538946,6684674,10092546,13893635,17367043,18677761,19333125,21168133,25493505,29229061,30015491,32702467,32899073,33161219,34275330,35717123,36110339,36962306,38076419,38731779],"bool":[458756,7274499,8257540,8519683,9306115,11927555,13238275,16318468,17629187,17956868,20381700,21954564,22740995,24379395,27000835,27131907,27197443,27394052,27590659,28049411,28311555,28966915,32243715,32964611,33751043,35061763,36306947,36372483,37945347,38993923,39124996,39256067],"bits":[720898,2097154,3145730,3211266,3276801,3604482,4194306,5111812,5636098,5898246,6094850,7929858,8454146,8585217,8716290,8781825,8847362,9502722,10027010,10551297,10682374,11272194,11337730,11796482,12124162,12517377,12582914,12713986,12779521,13369346,14745604,15597570,15925249,16252932,17235970,17563650,19333131,19988484,21168140,21233666,21823490,22937602,23199746,24510470,25231361,25690115,26607619,26804225,26869764,27525122,27656196,28246018,28639236,28901384,30015490,31522823,32636930,33161218,34144258,34275329,34406402,34537474,34865153,35454978,35586050,36241410,36831233,38273025,38600706,39059458,40370178,40828929,41287682],"bytesperlimb":[12189700],"bitwise":[2228227,2818049,4390914,5963778,8978435,15532033,18808833,19333137,19922945,21168145,27852802,30932994,33882114,35323907,39387137],"byref":[10158086,19529730,33161218],"binomial":[10223619,19333122,21168130,29753347],"boolean":[458754,7274498,8257538,8519682,9306114,11927554,13238274,16318466,17629186,17956866,20381698,21954562,22740994,24379394,27000834,27131906,27197442,27394050,27590658,28049410,28311554,28966914,32243714,32964610,33751042,35061762,36306946,36372482,37945346,38993922,39124994,39256066],"bases":[16449538,19922946,22544386,25165826],"based":[4980737,9764865,13959170,19660802,21037058,25231361,27328513],"book":[19333121,21168129,37486593],"bytes":[1441799,3538945,3997701,5177346,6356995,6684673,7733250,8192002,9830403,11403267,12189697,13893634,15269890,19333125,20447235,21168134,24772609,25165827,26607622,26804225,29229062,30015490,33161220,33226753,33357827,33685505,34275332,34996227,36634626,38076418,38731778],"bitsperlimb":[40828932],"bin":[25231366,29753346],"base":[4521986,5177355,8192008,9830415,12124168,13893643,16187399,16449548,19333147,19922954,20447242,21168155,22544399,23658517,23855125,24051734,24772619,25165834,25231361,25755670,30015497,32178184,34996233,36634633,38731787,40304649,41287690],"byte":[262146,655362,2686979,3997698,4194309,4849670,4915202,5177350,7208962,8650753,11534337,14286853,17891330,18350086,18612230,19136518,19398662,20774916,21102597,21495810,23265282,24772617,25034758,26083330,26607623,27918339,28573702,29556738,29818886,30605317,30670851,33161224,33226757,33685508,35782661,35848193,36503554,36831236,37158918,38862852,39452677,40960006],"beginning":[22544385],"body":[36831233],"bound":[1048577],"bugs":[15073281,30998529,31588353],"bit_index":[5767175,13631494,19333124,21168132,21889030,37683206],"borrows":[20054017,29163521],"buf":[7733255,14090248,15269895,19333124,21168132,23134216],"built":[25231361],"bigger":[1441793,38273025],"build":[25231369],"b1p":[37289990],"borrow":[20250629,25100293,25493509,26279941,32440325,33292293,36044805],"big":[3997697,8585217,17235970,19922945,23592961,28835841,32636929,34799617,40697858,41287681],"behaviour":[37617665],"building":[18677761,25231364,25493505,32899073],"better":[30081025,36569089],"best":[2490369,38141953]} \ No newline at end of file diff --git a/docs/fti/FTI_99.json b/docs/fti/FTI_99.json index d420f2d..81552f5 100644 --- a/docs/fti/FTI_99.json +++ b/docs/fti/FTI_99.json @@ -1 +1 @@ -{"calculating":[2293761,32505857],"coefficient":[4915202,10616835,17170434,38010883,38338562],"copy":[262145,327683,393217,458754,524289,589826,720898,786433,851970,983042,1048577,1114114,1179649,1245186,1310721,1376258,1441794,1507329,1638402,1703937,1769473,1900546,1966082,2031617,2162689,2228225,2293762,2424834,2490370,2555906,2621442,2686978,2752513,2818049,2883586,3014658,3080194,3145729,3211266,3276802,3342338,3473410,3538945,3604482,3670018,3735554,3801089,3866626,3932161,3997697,4063234,4128769,4259841,4325378,4390913,4456449,4521986,4587521,4718594,4784130,4849665,4915203,5046274,5111810,5177350,5242882,5373954,5439490,5505025,5636098,5701633,5767170,5832705,5898241,5963778,6029314,6094850,6160385,6225922,6356993,6422529,6488066,6553602,6619137,6750210,6815745,6881282,6946818,7012354,7143425,7208961,7274498,7340033,7405570,7471106,7602178,7536641,7667714,7733250,7798785,7864321,7929858,7995393,8060929,8126466,8192002,8257538,8323074,8388610,8454146,8519681,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502721,9633794,9699329,9764866,9830402,9895937,9961474,10027010,10092546,10158081,10223617,10289154,10354689,10420225,10485762,10551297,10616834,10682369,10747906,10813441,10878978,10944514,11010049,11075585,11206657,11272194,11337729,11403266,11468802,11534338,11599874,11665409,11730946,11796482,11862017,11927554,11993090,12058626,12124162,12189697,12255235,12320769,12386306,12451842,12517378,12582914,12713986,12779521,12845058,12976129,13041666,13107202,13238273,13303810,13369346,13434882,13500418,13631490,13697025,13762562,13828098,13893634,13959169,14024705,14090242,14155777,14221314,14286851,14352386,14483457,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15073282,15138818,15204353,15269890,15335426,15400962,15466497,15532033,15597569,15663105,15728642,15794178,15859714,15925249,15990786,16121858,16187394,16252930,16318466,16384001,16449538,16515074,16580609,16646146,16711682,16777217,16842754,16908290,16973826,17039362,17104897,17170436,17235970,17301505,17367041,17432578,17498113,17563650,17629186,17694722,17760257,17825793,17891330,17956865,18022401,18087938,18153473,18219010,18284545,18350082,18415617,18481153,18546690,18677762,18743298,18808834,18939906,19005441,19070978,19136514,19202049,19267586,19333121,19398658,19464193,19529730,19595266,19660801,19726337,19791874,19922945,19988481,20054018,20119553,20250626,20316162,20381698,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971521,21037058,21102594,21168129,21233665,21299202,21364739,21430274,21495809,21561346,21626882,21692417,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216705,22282242,22347778,22413314,22478850,22544386,22609921,22675457,22740994,22872065,22937604,23003138,23068674,23134210,23199745,23265282,23330817,23461889,23527425,23658498,23724034,23789569,23855105,23920642,23986183,24051714,24117249,24182785,24248322,24313858,24379393,24444930,24576002,24641538,24707073,24772610,24838146,24903681,24969218,25034753,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624577,25690114,25755649,25821185,25886721,25952258,26017794,26083329,26148866,26214402,26279938,26345474,26411009,26476545,26542082,26607617,26673154,26738689,26804226,26869762,27000834,27066369,27131905,27197442,27262977,27394050,27459585,27525122,27656194,27721730,27787266,27852801,27918338,27983874,28049410,28114946,28180482,28311553,28442626,28508161,28573697,28704770,28770306,28835842,28901377,28966913,29032450,29097986,29163521,29229058,29294594,29360129,29425665,29491202,29556738,29622273,29687810,29753346,29818882,29884417,29949954,30015490,30081026,30146561,30212098,30277634,30408705,30474241,30539778,30605314,30670850,30801921,30867457,30932993,30998530,31064066,31129602,31195137,31260673,31326209,31391746,31457282,31522818,31588354,31653890,31719426,31850497,31916033,31981569,32047106,32112642,32178177,32309250,32374786,32440321,32505858,32636930,32702466,32768001,32833537,32899074,32964610,33030145,33161217,33226753,33292289,33357826,33488898,33554434,33619970,33685505,33751041,33816578,33882114,34013186,34078721,34144258,34209794,34275330,34340866,34406402,34471937,34537473,34603010,34668546,34734082,34799618,34865154,34930693,34996225,35061762,35127297,35192834,35258370,35323905,35389441,35454977,35520514,35586049,35651586,35717121,35782657,35848193,35913730,35979265,36044802,36110338,36175873,36241410,36306946,36372481,36438017,36503554,36569089,36634625,36700162,36765698,36831234,36896770,36962306,37027841,37093377,37158913,37224450,37289986,37355521,37421057,37486594,37552130,37617665,37683202,37748737,37814274,37879810,37945346,38010882,38076417,38141953,38207490,38273026,38338562,38404098,38535170,38469634,38600705,38666241,38731778,38797314,38862850,38928385,38993922,39124994,39190529,39256066,39321602,39452674,39518209,39583746,39649282,39714817,39780354,39911426,39976962,40042498,40108035,40173569,40239106,40304641,40370177,40435713,40501249,40566786,40632322,40697857,40763393,40828930,40894466,40960002,41025538,41091073,41156610,41222146,41287682,41353218,41418754],"compatibility":[1376257,10878977,20578305,23724033,41222145],"characters":[4915201,5177346,8388612,9240580,9306113,14221315,15794177,16121857,16842756,16908289,17170433,17498113,20054017,20250625,22740993,30605315,32178177,34734081,34865153,35520513,38141953,39059457,40566785],"compare":[393217,458753,983041,1245185,4915217,7274497,7995393,8519681,9502721,10092545,11468801,11599873,13303809,13434881,13500417,14942209,15663105,17170449,19726337,20119553,25755649,27852801,28901377,29425665,30212097,30867457,31260673,31457281,32374785,33554433,34078721,36241409,36700161,37158913,37355521],"common":[983041,3604481,4915209,5963777,11599873,13828099,17039362,17170441,20578305,21626881,26673153,27721731,31129601,33816579,38338564,39059457,41418753],"compared":[28442625,31588353],"clear":[4915202,17170434,26869764,27525123],"certain":[13631489],"compromise":[20709377],"call":[589825,2293761,2490369,8126466,8978433,10944513,13369345,14745601,18546689,21889025,25165825,29097985,29491201,30998529,32505857,37945345],"create":[327682,458754,589825,720898,851970,983042,1114116,1245185,1376258,1441794,1638402,1900546,1966084,2293762,2424838,2490370,2555908,2621442,2686980,2883586,3014658,3080196,3211268,3276802,3342340,3473410,3670020,3735554,3866628,4325378,4521986,4718594,4784130,5177346,5242882,5373954,5439492,5636098,5767172,5963778,6029314,6094850,6488066,6553602,6750210,6881282,6946822,7012354,7274498,7405570,7471108,7602182,7667716,7733254,7929858,8126466,8192004,8257540,8323076,8454146,8716294,8847362,8912902,8978434,9043972,9109506,9175044,9240578,9306114,9371650,9437186,9633794,9764868,9830404,9961474,10027010,10092548,10485762,10616834,10747908,10878978,10944514,11272198,11403266,11468804,11599874,11730948,11927556,11993092,12058626,12255236,12386306,12451842,12517380,12582914,12713988,12845062,13041666,13107204,13303810,13369346,13434882,13500420,13631490,13762562,13828102,13893638,14286850,14352388,14548996,14614530,14680070,14745602,14876676,14942210,15073284,15138818,15269892,15335428,15400964,15728644,15859714,15990786,16121858,16187394,16252930,16318466,16449542,16515076,16711684,16908290,16973826,17039362,17235970,17563652,17629186,17694722,17891334,18087938,18219010,18350082,18546690,18677762,18743298,18808838,18939906,19070980,19136516,19267588,19398658,19529730,19595266,19791878,20250626,20316162,20381698,20512772,20578306,20643842,20709378,20774916,20840450,20905986,21037058,21102594,21299202,21364738,21430276,21561348,21757954,21823492,21889026,21954562,22020100,22085636,22151174,22282242,22347778,22413314,22478852,22544386,22740994,22937602,23003138,23068674,23265282,23658502,23724034,23986178,24051714,24248324,24313862,24444932,24576002,24641540,24772612,24838146,24969218,25100290,25165826,25231364,25296898,25362434,25427970,25493506,25559048,25690116,25952260,26017794,26279940,26345474,26673154,26804228,26869762,27000838,27197442,27394050,27525122,27656196,27721730,27787266,27983880,28049412,28114946,28180482,28442626,28704770,28770308,28835844,29032450,29097988,29229058,29294596,29491202,29556742,29687810,29818882,29949956,30015492,30081028,30212098,30277634,30539778,30670850,30998530,31064066,31129602,31391748,31457284,31522818,31588354,31653890,31719426,32047108,32112644,32309250,32374786,32505858,32636930,32702470,32899074,32964610,33357830,33488898,33554434,33619972,33816582,33882118,34013186,34144260,34209794,34275330,34340866,34603012,34668546,34734082,34799618,34865154,34930690,35061764,35192834,35258370,35520513,35651590,35913732,36044802,36110338,36241412,36306946,36700164,36765698,36831234,36896774,36962306,37224450,37289986,37486594,37552130,37683202,37814274,37879812,37945346,38010884,38273026,38207490,38338566,38404098,38535170,38469634,38731778,38797318,39124996,39256066,39321604,39452674,39583748,39780354,39911426,39976966,40042502,40108034,40566786,40632326,40828929,40894466,40960002,41025540,41156610,41222146,41287684,41353220],"correct":[34209793],"comlpement":[12451841],"changing":[4915201,17170433,20250625,29097985],"close":[1376258,19529730,37683202,40828929],"corresponding":[8126465,9306113,20250625],"calling":[8847361,12713985,13107201,13959169,14548993,15073281,16252929,17563649,21889025,23658497,23724033,27394049,28049409,29097985,32047105,35323905,37027841,37093377,37421057,37945345,41222145],"char":[4063235,4456449,4915201,5177345,6225923,7340033,7798785,8060929,9109507,9699329,10420225,13762563,15925249,17170433,17760257,18284545,18415617,19005441,19660801,20185089,21233665,22216705,23920643,26083329,29163521,29622273,33226753,34406403,35323905,40501249,40697857],"clock":[28442625,31588353],"canonical":[9240577,35520513],"currently":[327682,458754,589826,720898,851970,983042,1114114,1245186,1376258,1441794,1638402,1900546,1966082,2293762,2424834,2490370,2555906,2621442,2686978,2883586,3014658,3080194,3211266,3276802,3342338,3473410,3604482,3670018,3735554,3866626,4063234,4259841,4325378,4521986,4718594,4784130,4915201,5046274,5111810,5177346,5242882,5373954,5439490,5636098,5767170,5963778,6029314,6094850,6225922,6488066,6553602,6750210,6881282,6946818,7012354,7274498,7405570,7471106,7602178,7667714,7733250,7929858,8126466,8192002,8257538,8323074,8388610,8454146,8585218,8650754,8716290,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9633794,9764866,9830402,9961474,10027010,10092546,10289154,10485762,10616834,10747906,10878978,10944514,11141121,11272194,11403266,11468802,11534338,11599874,11730946,11796482,11927554,11993090,12058626,12255234,12386308,12451842,12517378,12582914,12713986,12845058,13041666,13107202,13238273,13303810,13369346,13434882,13500418,13631490,13762562,13828098,13893634,14221314,14286850,14352386,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15073282,15138818,15269890,15335426,15400962,15728642,15794178,15859714,15990786,16056321,16121858,16187394,16252930,16318466,16449538,16515074,16711682,16842754,16908290,16973826,17039362,17170433,17235970,17432578,17563650,17629186,17694722,17891330,18087938,18219010,18350082,18546690,18677762,18743298,18808834,18939906,19070978,19136514,19267586,19398658,19529730,19595266,19791874,20054018,20250626,20316162,20381698,20512770,20578306,20643842,20709379,20774914,20840450,20905986,21037058,21102594,21299202,21364738,21430274,21561346,21757954,21823490,21889027,21954562,22020098,22085634,22151170,22282242,22347778,22413314,22478850,22544386,22675457,22740994,22937602,23003138,23068674,23134209,23265282,23658498,23724034,23920642,23986178,24051714,24248322,24313858,24444930,24576002,24641538,24772610,24838146,24969218,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25690114,25952258,26017794,26148866,26214402,26279938,26345474,26542082,26673154,26804226,26869762,27000834,27197442,27394050,27459586,27525122,27656194,27721730,27787266,27918338,27983874,28049410,28114946,28180482,28442626,28704770,28770306,28835842,29032450,29097986,29229058,29294594,29491202,29556738,29687810,29753346,29818882,29949954,30015490,30081026,30212098,30277634,30539778,30605314,30670850,30998530,31064066,31129602,31391746,31457282,31522818,31588354,31653890,31719426,32047106,32112642,32309250,32374786,32505858,32636930,32702466,32899074,32964610,33292289,33357826,33488898,33554434,33619970,33816578,33882114,34013186,34144258,34209794,34275330,34340866,34406402,34603010,34668546,34734082,34799618,34865154,34930690,35061762,35192834,35258370,35520514,35651586,35717121,35913730,36044802,36110338,36241410,36306946,36503554,36700162,36765698,36831234,36896770,36962306,37224450,37289986,37486594,37552130,37683202,37814274,37879810,37945347,38010882,38273026,38207490,38338562,38404098,38469634,38535170,38731778,38797314,38862850,38993922,39124994,39256066,39321602,39452674,39583746,39780354,39911426,39976962,40042498,40108034,40239106,40566786,40632322,40828930,40894466,40960002,41025538,41156610,41222146,41287682,41353218,41418754],"cbrt":[7471106,24444930],"created":[20185089],"conditonal":[7012353,36044801,37224449],"custom":[1769473,4128769,6356993,8126465,8585217,31719425,34930689,40108033],"classes":[39059457],"c99":[8388609,16842753],"choice":[16318465],"chosen":[22937601,38338561,39452673],"const":[14286850],"congruential":[4915202,5636099,17170434,39452675],"class":[327681,458753,524289,589825,720897,851969,983041,1114113,1179649,1245185,1310721,1376257,1441793,1638401,1703937,1769473,1900545,1966081,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2818049,2883585,3014657,3080193,3145729,3211265,3276801,3342337,3473409,3538945,3604481,3670017,3735553,3801089,3866625,4063233,4128769,4194305,4259841,4325377,4521985,4587521,4718593,4784129,4915201,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5570561,5636097,5701633,5767169,6029313,5963777,6094849,6160385,6225921,6356993,6488065,6553601,6750209,6881281,6946817,7012353,7077889,7274497,7405569,7471105,7536641,7602177,7667713,7733249,7864321,7929857,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8650757,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9568257,9633793,9764865,9830401,9961473,10027009,10092545,10158081,10289153,10485761,10616833,10682370,10747905,10878977,10944513,11075585,11141121,11272193,11337729,11403265,11468801,11534337,11599873,11730945,11796481,11927553,11993089,12058625,12124165,12255233,12386305,12451841,12517377,12582913,12713985,12779521,12845057,12910593,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13631489,13762561,13828097,13893633,13959169,14090246,14221313,14286849,14352385,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15073281,15138817,15269889,15335425,15400961,15532033,15728641,15794177,15859713,15990785,16056321,16121857,16187393,16252929,16318465,16449537,16515073,16646149,16711681,16842753,16908289,16973825,17039361,17104897,17170437,17235969,17432577,17498113,17563649,17629185,17694721,17891329,17956865,18087937,18219009,18350081,18546689,18677761,18743297,18808833,18939905,19070977,19136513,19267585,19333121,19398657,19529729,19595265,19791873,19922945,20054017,20185089,20250625,20316161,20381697,20512769,20578305,20643841,20709377,20774913,20840449,20905985,21037057,21102593,21168129,21299201,21364737,21430273,21561345,21626886,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22937601,23003137,23068673,23134213,23265281,23527425,23592961,23658497,23724033,23920641,23986177,24051713,24248321,24313857,24379393,24444929,24576001,24641537,24772609,24838145,24903681,24969217,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25690113,25952257,26017793,26148865,26214401,26279937,26345473,26542081,26673153,26738689,26804225,26869761,26935297,27000833,27197441,27394049,27459585,27525121,27656193,27721729,27787265,27918337,27983873,28049409,28114945,28180481,28311553,28377089,28442625,28573697,28704769,28770305,28835841,28966913,29032449,29097985,29229057,29294593,29491201,29556737,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30539777,30605313,30670849,30801921,30998529,31064065,31129601,31195137,31391745,31457281,31522817,31588353,31653889,31719425,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32505857,32636929,32702465,32833537,32899073,32964609,33030145,33161217,33292289,33357825,33488897,33554433,33619969,33816577,33882113,34013185,34144257,34209793,34275329,34340865,34406401,34603009,34668545,34734081,34799617,34865153,34930689,35061761,35192833,35258369,35323905,35389441,35520513,35651585,35717121,35782657,35913729,36044801,36110337,36175873,36241409,36306945,36503553,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37224449,37289985,37421057,37486593,37552129,37683201,37814273,37879809,37945345,38010881,38076417,38141953,38273025,38207489,38338561,38404097,38469633,38535169,38600705,38731777,38797313,38862849,38993921,39059457,39124993,39190529,39256065,39321601,39452673,39583745,39649285,39714817,39780353,39911425,39976961,40042497,40108033,40239105,40304641,40435713,40566785,40632321,40828929,40894465,40960001,41025537,41156609,41222145,41287681,41353217,41418753],"copies":[4915202,7012354,17170434,36044802],"current":[131073,1310721,1572865,1835009,4259841,4587521,4653057,4915205,5701635,8126465,8585217,8650755,9306113,11337731,12124164,12582914,13238273,14090244,14614529,16646147,17104899,17170437,18874369,20185090,20250625,21037058,21626884,23068674,23134211,27787266,28246017,28311556,28966916,30736385,31195137,31719425,33095681,34734082,34930689,35389444,35717121,38141953,38600705,39649284,39714820,40108033,40566786,40828929],"considering":[20250625],"correctness":[1900545,18087937],"constructs":[20185089],"comparison":[36241409],"composite":[13631491,30015489,37814274],"comparing":[983041,2883585,10092545,11599873,20774913,31457281],"congruent":[4915203,7602182,10027014,14876677,17170435],"cases":[38338562],"chances":[13631489],"course":[1769473,4128769,36306945],"changes":[1376257,10878977,34013185],"constants":[10289153,40239105],"collection":[5701633,8650753,11337729,12124161,14090241,16646145,17104897,21626881,23134209,28311553,28966913,35389441,39649281,39714817],"choosing":[28442625,31588353],"comparisons":[458753,1245185,7274497,11468801,20381697,30212097,33554433,34930689,36700161],"code":[131073,327682,458754,589826,720898,851970,983042,1048578,1114114,1245186,1310721,1376258,1441794,1572865,1638402,1835009,1900546,1966082,2293762,2424834,2490370,2555906,2621442,2686978,2752514,2883586,3014658,3080194,3211266,3276802,3342338,3473410,3604482,3670018,3735554,3866626,4063234,4259841,4325378,4390914,4521986,4587521,4653057,4718594,4784130,5046274,5111810,5177346,5242882,5373954,5439490,5636098,5767170,5963778,6029314,6094850,6225922,6488066,6553602,6750210,6881282,6946818,7012354,7274498,7405570,7471106,7602178,7667714,7733250,7929858,8126466,8192002,8257538,8323074,8388610,8454146,8585218,8716290,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9633794,9764866,9830402,9961474,10027010,10092546,10289154,10485762,10616834,10747906,10878978,10944514,11272194,11403266,11468802,11534338,11599874,11730946,11796482,11927554,11993090,12058626,12255234,12386306,12451842,12517378,12582914,12713986,12845058,13041666,13107202,13238273,13303810,13369346,13434882,13500418,13631490,13697026,13762562,13828098,13893634,14221314,14286850,14352386,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15073282,15138818,15269890,15335426,15400962,15728642,15794178,15859714,15990786,16121858,16187394,16252930,16318466,16449538,16515074,16711682,16842754,16908290,16973826,17039362,17235970,17432578,17563650,17629186,17694722,17891330,18087938,18219010,18350082,18546690,18677762,18743298,18808834,18874369,18939906,19070978,19136514,19267586,19398658,19529730,19595266,19791874,20054018,20185089,20250626,20316162,20381698,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21299202,21364738,21430274,21561346,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22282242,22347778,22413314,22478850,22544386,22740994,22937602,23003138,23068674,23265282,23658498,23724034,23920642,23986178,24051714,24248322,24313858,24444930,24576002,24641538,24772610,24838146,24969218,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25952258,26017794,26148866,26214402,26279938,26345474,26542082,26673154,26804226,26869762,27000834,27197442,27394050,27525122,27656194,27721730,27787266,27918338,27983874,28049410,28114946,28180482,28246017,28442626,28704770,28770306,28835842,29032450,29097986,29229058,29294594,29360130,29491202,29556738,29687810,29753346,29818882,29949954,30015490,30081026,30212098,30277634,30539778,30605314,30670850,30736385,30998530,31064066,31129602,31195137,31391746,31457282,31522818,31588354,31653890,31719426,32047106,32112642,32309250,32374786,32440322,32505858,32636930,32702466,32899074,32964610,33095681,33357826,33488898,33554434,33619970,33816578,33882114,34013186,34144258,34209794,34275330,34340866,34406402,34603010,34668546,34734082,34799618,34865154,34930690,35061762,35192834,35258370,35520514,35651586,35717121,35913730,36044802,36110338,36241410,36306946,36503554,36700162,36765698,36831234,36896770,36962306,37224450,37289986,37486594,37552130,37683202,37814274,37879810,37945346,38010882,38141953,38273026,38207490,38338562,38404098,38469634,38535170,38600705,38731778,38797314,38862850,38993922,39124994,39256066,39321602,39452674,39583746,39780354,39911426,39976962,40042498,40108034,40239106,40566786,40632322,40828930,40894466,40960002,41025538,41156610,41222146,41287682,41353218,41418754],"combined":[3670017,8323073,13369345,19595265,23265281,24838145,25100289,34209793,34668545,40960001],"convert":[4915213,5177348,9240577,14614529,17170445,17235969,20316161,21102593,22937603,26214401,31719425,36962305,38207489,39911425,40108033],"cleanup":[5701633,8650753,11337729,12124161,14090241,16646145,17104897,21626881,23134209,28311553,28966913,35389441,39649281,39714817],"counting":[24576001],"chose":[31195137],"cint":[5177345],"cpu":[20185099,23986178,34930690],"case":[1769473,3145729,4915202,5177345,9240577,12713985,14614532,15990785,16318465,16908293,17170434,19529732,20250629,21823489,22675457,22740997,31522817,31719429,34930690,36765697,39256065,40828932],"checks":[27459585],"contents":[4915201,17170433,21037057,37224449],"ctype":[262145,786433,1179649,1507329,2031617,3932161,3997697,4456449,5832705,5898241,6422529,6815745,7208961,7340033,7798785,8060929,9699329,10420225,10813441,11010049,11665409,11862017,12976129,14024705,14155777,14483457,15204353,15466497,15597569,15925249,16777217,17301505,17367041,17498113,17760257,17825793,18022401,18153473,18284545,18415617,18481153,19005441,19202049,19660801,21233665,21495809,22216705,22872065,23199745,23330817,23461889,23855105,24182785,25034753,25886721,26083329,26411009,27066369,27131905,28508161,29163521,29622273,30408705,30474241,31326209,31916033,32178177,32768001,33226753,35127297,35586049,35979265,36372481,36438017,36569089,37617665,37748737,40173569,40370177,40501249,40697857,40763393,41091073],"convenience":[1769473,4128769,14286849,20185089,33292289],"called":[458753,8126466,9240577,13303809,20185089,30212097,35520513],"critical":[28442625,31588353],"culng":[19136514],"cast":[14286849],"content":[1376258,19529730,37683202,40828929],"count":[4063233,4259841,4915204,5177350,6225921,7929857,8126468,9109505,9371649,13238273,13762561,17170436,20578306,20905986,22937604,23920641,23986182,28180488,30998529,31064072,34406401,34930693,38141953,39059459],"coefficients":[4915201,17170433,38338561],"character":[1179649,5177345,9240577,22937601,34734082,40566786],"corner":[12713985,31522817,39256065],"conversion":[196609,262145,655361,786433,1179649,1507329,2031617,2949121,3735553,3932161,3997697,4456449,4980737,4915202,5832705,5898241,6422529,6815745,7208961,7340033,7798785,8060929,9699329,10420225,10813441,11010049,11665409,11862017,12976129,14024705,14155777,14483457,15204353,15466497,15597569,15925249,16777217,17170434,17301505,17367041,17498113,17760257,17825793,18022401,18153473,18284545,18415617,18481153,18612225,19005441,19202049,19660801,20316161,21233665,21495809,22216705,22806529,22872065,23199745,23330817,23396353,23461889,23855105,24182785,24510465,25034753,25886721,26083329,26411009,27066369,27131905,28508161,29163521,29622273,30408705,30474241,31326209,31916033,32178177,32571393,32768001,33226753,35127297,35586049,35979265,36372481,36438017,36569089,37617665,37748737,39387137,39911425,40173569,40370177,40501249,40697857,40763393,41091073,41353217],"completed":[8781825],"certainly":[23986177],"cache":[27983873],"computation":[7471105],"clobbered":[5177345],"cryptographic":[27983873,28442625,31588353],"creates":[1310721,2228225,2818049,4194306,4259841,5505025,5701633,6160385,7077893,7864321,8650754,11337729,12124166,12189697,13238273,13959169,14090243,16580609,16646146,17104897,21168129,21626881,23134210,28311553,28966913,30146561,30932993,31195137,33685505,35323905,35389441,35454977,35717121,37027841,37093377,37421057,38141953,39649282,39714817],"completely":[4718593,23724033,36765698,41222145],"cpus":[7929857,20643841,21889025,22282241,26345473,28180481,30998529,31064065,37945345],"channel":[8454145,27983873],"conditional":[7012353,36044801],"changed":[8847364,34013188],"calculate":[851969,1638401,4915207,9043969,14352385,17170439,22544385,28770305,37289985],"concatenated":[5636097],"constructor":[2228225,2818049,4194305,5505025,6160385,7077889,7864321,10682369,12189697,13959169,16580609,21168129,30146561,30932993,33685505,35323905,35454977,37027841,37093377,37421057],"ceil":[4915202,16318466,17170434,24248322,24641537,36765698],"converting":[9633793,14614529,17235969,20316161,21102593,23986177,24576001,26214401,31719425,32899073,36962305,38207489],"converts":[196613,262145,655369,786433,1179649,1507329,2031617,2949127,3932161,3997697,4259856,4456449,4980747,5308417,5570561,5832705,5898241,6422529,6815745,7208961,7340033,7798785,8060929,8650753,9568257,9699329,10420225,10813441,11010049,11665409,11862017,12976129,13238288,14024705,14155777,14483457,15204353,15466497,15597569,15925249,16646145,16777217,17301505,17367041,17498113,17760257,17825793,18022401,18153473,18284545,18415617,18481153,18612230,19005441,19202049,19660801,21233665,21495809,22216705,22806538,22872065,23134209,23199745,23330817,23396357,23461889,23855105,24182785,24510473,25034753,25886721,26083329,26411009,27066369,27131905,27328528,27590672,28508161,29163521,29622273,30343184,30408705,30474241,31195152,31326209,31916033,32178177,32571399,32768001,33226753,33423376,33947664,35127297,35586049,35717136,35979265,36372481,36438017,36569089,37617665,37748737,38141968,39387147,40173569,40370177,40501249,40697857,40763393,41091073],"care":[28442625,31588353],"calls":[8126466,26148865],"counter":[8126478],"casting":[262145,786433,1179649,1507329,2031617,3932161,3997697,4456449,5832705,5898241,6422529,6815745,7208961,7340033,7798785,8060929,9699329,10420225,10813441,11010049,11665409,11862017,12976129,14024705,14155777,14483457,15204353,15466497,15597569,15925249,16777217,17301505,17367041,17498113,17760257,17825793,18022401,18153473,18284545,18415617,18481153,19005441,19202049,19660801,21233665,21495809,22216705,22872065,23199745,23330817,23461889,23855105,24182785,25034753,25886721,26083329,26411009,27066369,27131905,28508161,29163521,29622273,30408705,30474241,31326209,31916033,32178177,32768001,33226753,35127297,35586049,35979265,36372481,36438017,36569089,37617665,37748737,40173569,40370177,40501249,40697857,40763393,41091073],"carry":[3080197,7012357,7929861,15138821,20643845,21889028,30539781,30998532,37945354],"compute":[4915210,10616833,17170442,20578306,27721729,33882113,36765697,37552129,38010881,40632321,41156609],"cnd":[4915205,7012364,17170437,36044812,37224455],"computed":[20578305,38338561],"containing":[31195137],"construct":[14090241],"copied":[1769473],"char_ptr":[1310730,1441793,3342337,3604481,3670017,3735553,4521985,4784131,4849666,4915202,5177353,5242881,5505030,6684676,8323073,8388617,8847367,9175041,9633793,9830401,11206658,12582915,13369353,14221321,14286852,14614542,15794177,16842763,16908300,17170434,17235969,18874373,19398657,19595265,19726339,19988488,20250632,20316161,20447235,21037060,21102596,21299201,21430273,21757953,22347779,22937609,23068676,23265281,23658499,23986180,24838145,25100289,25231361,25296897,25624578,26214401,26607630,26673153,26804225,26935297,27852810,28639236,29491201,30081025,30605323,31129601,31391745,31719438,32899073,33030150,34013191,34209806,34340869,34668545,34734090,34865153,34930691,35061761,35192836,35520522,36962305,38207489,38404097,38535169,38469633,38666254,38731778,39059457,39911425,40108046,40566796,40960001,41353217],"constructors":[1310721,4259841,8650753,12124161,13238273,14090241,16646145,21626881,23134209,31195137,35717121,38141953,39649281],"considered":[6488065,7602177,10027009,15335425,17694721,36306945],"contain":[8781825],"cofactor":[4915201,17170433,20578312],"codes":[5177345],"cpnverted":[17235969],"countp":[34930699],"calculation":[19333121,21889025,29097986,33292289,34930689,37945345],"chance":[30015489],"change":[4915202,8847361,17170434,20250625,29097986,33292289,34013185],"cleared":[2490369,23003137,34340865],"converted":[14614529,22937601,26214401,36962305,39911425],"conversions":[3735553,5308417,5570561,9568257,27328513,27590657,30343169,33423361,33947649,39911425,40108033,41353217],"clearly":[21889025,37945345],"complement":[2424833,4325377,4915208,6029313,6094849,10485761,11272193,12058625,12451844,12517377,16515076,17170440,18219009,20905985,24969217,26869761,30670849,31653889,38273025,39976961],"ceiling":[2686979,4915209,6750212,17170441,19791875,20512771,22151173,24772611,26279941,28835843,40042499],"cray":[23986177],"counts":[4259841,13238273],"condition":[7012353,36044801]} \ No newline at end of file +{"calculating":[2490369,38141953],"coefficient":[10223619,19333122,21168130,29753347,41091074],"copy":[196609,327682,393217,458753,524291,589826,720898,786434,917505,983041,1048578,1114114,1179650,1245185,1310722,1376257,1441793,1507330,1638401,1703938,1769473,1835010,1966081,2031618,2097154,2162689,2228226,2424833,2490370,2555906,2752514,2818050,2883586,2949121,3014658,3080194,3145730,3211266,3276802,3342337,3407873,3473410,3538945,3604482,3735554,3801090,3866625,3932161,3997698,4128770,4194305,4259841,4325377,4390914,4456449,4521985,4587522,4653058,4784129,4849665,4980738,5046274,5111810,5177350,5242881,5308418,5373954,5439490,5505026,5636098,5701633,5767170,5832705,5898242,5963778,6029314,6094850,6160386,6225921,6291458,6356993,6422530,6488065,6619137,6684673,6750209,6881281,6946818,7012354,7077890,7143425,7208961,7274497,7340034,7405570,7471106,7536641,7602178,7667713,7733250,7798785,7864322,7929858,7995394,8060930,8126466,8192002,8257537,8323074,8388610,8454146,8519681,8585218,8716290,8781826,8847362,8912897,8978434,9043970,9109506,9175042,9240578,9306113,9371650,9437186,9502722,9568258,9633794,9699329,9764866,9830402,9895937,9961474,10027010,10092545,10158082,10223618,10289154,10354689,10420225,10485761,10551298,10616833,10682370,10747905,10813441,10878978,10944514,11010050,11075585,11141122,11206657,11272194,11337730,11403266,11468801,11534338,11665410,11730946,11796482,11927553,12058625,12124162,12189698,12255233,12320770,12386305,12517378,12582914,12713986,12779522,12845058,12910594,12976131,13041666,13107202,13172738,13238273,13303809,13369346,13434881,13500418,13565953,13631490,13697026,13762561,13828098,13893634,13959170,14024706,14090242,14155777,14221314,14286849,14352386,14417922,14483458,14548993,14614531,14745602,14811138,14876673,14942209,15007745,15073282,15138818,15204353,15269890,15335426,15400961,15466498,15532034,15597570,15663106,15794178,15925250,15990786,16056322,16121858,16187394,16252930,16318465,16384002,16449538,16515074,16580609,16646145,16711681,16777217,16842753,16908290,16973826,17039362,17104898,17170433,17235970,17301505,17367041,17432577,17498113,17563650,17629185,17694721,17760258,17825794,17956865,18022402,18087937,18153474,18284546,18350081,18415617,18481154,18546690,18612225,18677762,18743298,18808834,18874370,18939906,19005442,19070979,19136513,19202049,19267585,19333123,19398657,19464193,19529730,19595265,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119553,20185089,20250626,20316161,20381697,20447234,20578305,20643841,20709378,20840450,20905986,20971522,21037058,21168132,21233666,21299201,21364738,21430274,21495809,21561346,21626882,21692418,21757954,21823490,21889026,21954561,22216706,22282241,22347778,22413313,22478850,22544386,22609921,22675458,22740993,22806530,22872065,22937602,23003137,23068673,23134210,23199746,23396353,23461890,23527426,23592962,23658498,23724034,23789569,23855106,23920641,23986178,24051714,24117250,24182785,24248322,24313857,24379393,24444929,24510466,24576002,24641538,24707074,24772612,24838146,24903682,24969217,25034753,25100290,25165826,25231364,25296898,25362434,25493506,25559042,25624577,25690114,25755650,25821186,25886721,25952258,26017793,26148866,26214401,26279938,26345474,26411010,26476546,26542082,26607623,26673154,26738690,26869762,26935298,27000833,27066370,27131905,27197441,27262978,27328513,27394049,27459586,27525122,27590657,27656194,27721729,27787266,27852802,27983874,28049409,28114946,28180482,28246018,28311553,28377090,28442625,28508162,28573697,28639234,28704769,28770306,28835842,28901378,28966913,29032449,29097985,29163522,29229057,29294594,29360130,29425666,29491202,29556737,29687810,29753346,29818881,29884417,29949953,30015490,30081026,30146561,30212097,30277634,30343170,30408706,30539778,30736386,30801921,30867458,30932994,30998530,31064066,31129602,31195137,31260674,31326209,31391745,31457281,31522818,31588354,31653890,31719426,31784961,31850498,31916033,31981570,32047106,32112641,32178178,32243713,32309250,32374785,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32899074,32964609,33030146,33095682,33161221,33226753,33292290,33357825,33423362,33488897,33554433,33619969,33685505,33751041,33816578,33882114,33947650,34013186,34078721,34144258,34209794,34406402,34471938,34537474,34603010,34668545,34734081,34799618,34865153,34930690,34996226,35061761,35127297,35192834,35258370,35323906,35389441,35454978,35520514,35586050,35651586,35717122,35848193,35913730,35979266,36044802,36110337,36175873,36241410,36306945,36372481,36438018,36569090,36634626,36700161,36831233,36896769,37027842,37093378,37158913,37224450,37289986,37355522,37421057,37486594,37552130,37617666,37683202,37748738,37814274,37879810,37945345,38010882,38076417,38141954,38207489,38273026,38338562,38404097,38535170,38600706,38666241,38731779,38797313,38928386,38993921,39059458,39124993,39190529,39256065,39321602,39387138,39452673,39518210,39583745,39649281,39714818,39780354,39845890,39911426,39976962,40042498,40108033,40173569,40239106,40304642,40370178,40435713,40501249,40566786,40632321,40697858,40763393,40828930,40894465,40960001,41025538,41091074,41156610,41222145,41287682,41353217,41418754],"compatibility":[3997697,11403265,18939905,25362433,39780353],"characters":[5177346,7733252,8192004,9830401,14090243,14942209,15269892,15663105,16449537,16973825,19333121,21168129,21430273,22544385,23134211,25165825,30212097,32702465,33685505,34275329,35717121,38010881,40304641],"compare":[327681,458753,589825,1114113,7274497,8257537,8323073,9633793,9961473,10878977,12582913,13369345,14417921,15597569,16318465,17956865,19333137,20381697,21168145,21954561,27000833,27394049,27590657,28311553,30408705,31981569,34406401,34537473,34603009,35061761,36306945,37552129,38993921,39124993,39256065],"common":[589825,3801089,6291457,10878977,12910595,16908290,18939905,19333129,21168137,21626883,21757953,24117249,29425665,34275329,35651587,39976961,41091076],"compared":[30081025,36569089],"clear":[19333122,21168130,21889028,32833539],"certain":[13041665],"compromise":[23986177],"call":[786433,2097153,2490369,9240578,10027009,10682369,12124161,14024705,17104897,20054017,26738689,27656193,29163521,30736385,32899073,38141953],"create":[327682,524290,589826,720900,786433,1048578,1114113,1179650,1310722,1507332,1703940,1835010,2031618,2097154,2228230,2490370,2555906,2752516,2818050,2883586,3014660,3080194,3145730,3211268,3276804,3473412,3604484,3735556,3997698,4128770,4390914,4587522,4980738,5046274,5177346,5308420,5373954,5505026,5636100,5767170,5898242,5963778,6094850,6160386,6291458,6422530,6946818,7012356,7077890,7340038,7405570,7471110,7602178,7864324,7929862,7995396,8060930,8126470,8192002,8323074,8388610,8454148,8585218,8716292,8781826,8847364,8978438,9109506,9175042,9240578,9371652,9502724,9568260,9633796,9764866,9830402,9961476,10027010,10223618,10289156,10551298,10682370,10878978,11141124,11272194,11337732,11403266,11665414,11730950,11796482,12124162,12320770,12517380,12582916,12713990,12779522,12845060,12910598,12976132,13041666,13107204,13369346,13500422,13631490,13697028,13828098,13893634,13959170,14024706,14221316,14352386,14417922,14483460,14614530,14745602,14811140,15073284,15138822,15335430,15532034,15597570,15663106,15794178,15925250,15990788,16056324,16121860,16187394,16252932,16384002,16449538,16908290,17039362,17104898,17235970,17563654,17760258,17825796,18022402,18153474,18284546,18481154,18546692,18677762,18743300,18808834,18874372,18939906,19005442,19070978,19529730,19660802,19726340,19791876,19857412,19922946,19988482,20054018,20250626,20447234,20709378,20840450,20905990,20971524,21037058,21233666,21626882,21692418,21757954,21823490,21889026,22216708,22347780,22478854,22544386,22675458,22937604,23199748,23461890,23527428,23592962,23658500,23724034,23855112,23986178,24051720,24248322,24576002,24641540,24707074,24772610,24838150,24903682,25100290,25165826,25231362,25296898,25362434,25493506,25559042,25690114,25755652,25952260,26148868,26279940,26345474,26411012,26476546,26542082,26607618,26673154,26738690,26869762,26935300,27066370,27262982,27459586,27525124,27656196,27787268,27852802,27983876,28114946,28180482,28246018,28377090,28508164,28639234,28770306,28901378,29163522,29294594,29360134,29425666,29491204,29687812,29753348,30015490,30081026,30277636,30343170,30408706,30539782,30736386,30867458,30932994,30998530,31064066,31260674,31522818,31588354,31653892,31719426,31850498,31981572,32047108,32178178,32309252,32440322,32505860,32571394,32636930,32702466,32768004,32833538,32899074,33030150,33095682,33161218,33292290,33423364,33816578,33882114,33947652,34013190,34144260,34406404,34537474,34603012,34799618,34930690,34996226,35192838,35258374,35323910,35454980,35520516,35586050,35651590,35717122,35913730,35979266,36044802,36241410,36438018,36569090,36634625,37027842,37093378,37224450,37289986,37355522,37486594,37552130,37617670,37683202,37748740,37879810,38010882,38141954,38273026,38338564,38535172,38600710,38731778,39059462,39321602,39387138,39518212,39780354,39845892,39911428,40042502,40239106,40304641,40370180,40697858,41025538,41091078,41156610,41287682,41418754],"correct":[32178177],"comlpement":[13631489],"changing":[19333121,21168129,22544385,27656193],"close":[3997698,20447234,25231361,34996226,36634625],"corresponding":[9240577,9830401,22544385],"calling":[5898241,12845057,13303809,14221313,14745601,15073281,16252929,18743297,20054017,22478849,25100289,25362433,27656193,29032449,29163521,30277633,33226753,33423361,34078721,34865153,39780353],"char":[4653059,4849665,5177345,6029315,6881281,7208961,7536641,8388611,8912897,11075585,12320771,16842753,18350081,18612225,19136513,19333121,19398657,21168129,21495809,21561347,23003137,25034753,25231361,28573697,29556737,29818881,33226753,35848193,37158913,38928387,40960001],"clock":[30081025,36569089],"canonical":[8192001,40304641],"currently":[327682,524290,589826,720898,786434,1048578,1114114,1179650,1310722,1507330,1703938,1835010,2031618,2097154,2228226,2490370,2555906,2752514,2818050,2883586,3014658,3080194,3145730,3211266,3276802,3473410,3604482,3735554,3801090,3997698,4128770,4194305,4390914,4587522,4653058,4980738,5046274,5111810,5177346,5308418,5373954,5439490,5505026,5636098,5767170,5898242,5963778,6029314,6094850,6160386,6291458,6422530,6946818,7012354,7077890,7340034,7405570,7471106,7602178,7733250,7864322,7929858,7995394,8060930,8126466,8192002,8323074,8388610,8454146,8585218,8716290,8781826,8847362,8978434,9109506,9175042,9240578,9371650,9437186,9502722,9568258,9633794,9764866,9830402,9961474,10027010,10158082,10223618,10289154,10551298,10682370,10878978,10944514,11010050,11141122,11272196,11337730,11403266,11599873,11665410,11730946,11796482,12124162,12189698,12320770,12517378,12582914,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13369346,13500418,13631490,13697026,13828098,13893634,13959170,14024706,14090242,14221314,14286849,14352386,14417922,14483458,14614530,14745602,14811138,15073282,15138818,15269890,15335426,15466498,15532034,15597570,15663106,15794178,15859713,15925250,15990786,16056322,16121858,16187394,16252930,16384002,16449538,16908290,16973826,17039362,17104898,17235970,17563650,17760258,17825794,18022402,18153474,18284546,18481154,18546690,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19333121,19529730,19660802,19726338,19791874,19857410,19922946,19988482,20054019,20250626,20447234,20709378,20840450,20905986,20971522,21037058,21168129,21233666,21364738,21430274,21561346,21626882,21692418,21757954,21823490,21889026,22216706,22347778,22478850,22544386,22675458,22806530,22937602,23068674,23134210,23199746,23461890,23527426,23592962,23658498,23724034,23855106,23986179,24051714,24248322,24510466,24576002,24641538,24707074,24772610,24838146,24903682,25100290,25165826,25296898,25362434,25493506,25559042,25624577,25690114,25755650,25821185,25952258,26148866,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26869762,26935298,27066370,27262978,27459586,27525122,27656194,27787266,27852802,27983874,28114946,28180482,28246018,28377090,28508162,28639234,28770306,28835842,28901378,29163523,29294594,29360130,29425666,29491202,29687810,29753346,30015490,30081026,30277634,30343170,30408706,30539778,30736386,30867458,30932994,30998530,31064066,31129602,31260674,31522818,31588354,31653890,31719426,31850498,31981570,32047106,32178178,32309250,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32899074,33030146,33095682,33161218,33292290,33423362,33816578,33882114,33947650,34013186,34144258,34209794,34406402,34471938,34537474,34603010,34799618,34930690,34996226,35127297,35192834,35258370,35323906,35454978,35520514,35586050,35651586,35717122,35913730,35979266,36044802,36241410,36438018,36569090,36634626,37027842,37093378,37224450,37289986,37355522,37486594,37552130,37617666,37683202,37748738,37814274,37879810,38010882,38141954,38273026,38338562,38535170,38600706,38731778,38928386,39059458,39321602,39387138,39452673,39518210,39714818,39780354,39845890,39911426,39976962,40042498,40239106,40304642,40370178,40697858,40828930,41025538,41091074,41156610,41287682,41418754],"cbrt":[7864322,26935298],"created":[25231361],"conditonal":[7405569,33292289,37289985],"custom":[1441793,3538945,6356993,9240577,10158081,30015489,33161217,38731777],"classes":[34275329],"c99":[7733249,15269889],"choice":[15925249],"chosen":[24772609,25231361,38273025,41091073],"const":[14614530],"congruential":[6094851,19333122,21168130,38273027],"class":[327681,393217,524289,589825,720897,786433,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1638401,1703937,1835009,2031617,2097153,2162689,2228225,2359297,2424833,2490369,2555905,2752513,2818049,2883585,3014657,3080193,3145729,3211265,3276801,3342337,3473409,3538945,3604481,3670017,3735553,3801089,3866625,4063233,3997697,4128769,4194305,4259841,4325377,4390913,4521985,4587521,4653057,4784129,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5505025,5570561,5636097,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6291457,6356993,6422529,6488065,6946817,7012353,7077889,7340033,7405569,7471105,7602177,7667713,7733249,7864321,7929857,7995393,8060929,8126465,8192001,8323073,8388609,8454145,8585217,8650753,8716289,8781825,8847361,8978433,9043969,9109505,9175041,9240577,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9961473,10027009,10158081,10223617,10289153,10551297,10682369,10747905,10813442,10878977,10944517,11010049,11141121,11206657,11272193,11337729,11403265,11468801,11534341,11599873,11665409,11730945,11796481,11862017,12124161,12189697,12320769,12451841,12517377,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172742,13303809,13369345,13500417,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14221313,14286849,14352385,14417921,14483457,14614529,14745601,14811137,14942209,15073281,15138817,15269889,15335425,15466497,15532033,15597569,15663105,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16384001,16449537,16515077,16580609,16908289,16973825,17039361,17104897,17170433,17235969,17563649,17760257,17825793,18022401,18087937,18153473,18284545,18415617,18481153,18546689,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19333121,19464193,19529729,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20185089,20250625,20447233,20578305,20709377,20840449,20905985,20971521,21037057,21168133,21233665,21364737,21430273,21561345,21626881,21692417,21757953,21823489,21889025,22020097,22085633,22151169,22216705,22347777,22478849,22544385,22675457,22806529,22937601,23068673,23134209,23199745,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23986177,24051713,24117254,24182785,24248321,24510465,24576001,24641537,24707073,24772609,24838145,24903681,25100289,25165825,25231361,25296897,25362433,25493505,25559041,25624577,25690113,25755649,25821189,25952257,26017793,26148865,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27066369,27262977,27328513,27459585,27525121,27656193,27787265,27852801,27983873,28114945,28180481,28246017,28377089,28508161,28639233,28704769,28770305,28835841,28901377,29032449,29097985,29163521,29294593,29360129,29425665,29491201,29687809,29753345,30015489,30081025,30212097,30277633,30343169,30408705,30474241,30539777,30736385,30867457,30932993,30998529,31064065,31129601,31260673,31326209,31457281,31522817,31588353,31653889,31719425,31850497,31981569,32047105,32178177,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,33030145,33095681,33161217,33226753,33292289,33423361,33685505,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35127297,35192833,35258369,35323905,35454977,35520513,35586049,35651585,35717121,35913729,35979265,36044801,36110337,36241409,36438017,36569089,36634625,36700161,36831233,36896769,37027841,37093377,37224449,37289985,37355521,37486593,37552129,37617665,37683201,37748737,37814273,37879809,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38535169,38600705,38731777,38797313,38928385,39059457,39321601,39387137,39452673,39518209,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40239105,40304641,40370177,40435713,40501249,40566789,40697857,40828929,40894465,41025537,41091073,41156609,41287681,41418753],"copies":[7405570,19333122,21168130,33292290],"current":[131073,1245185,1572865,2293761,4194305,4325377,4718593,7667715,9240577,9830401,10158081,10747907,10944515,11534340,13172740,13893633,13959170,14286849,16515075,18219009,18415619,19333125,19660802,21037058,21168133,22544385,23330817,24117252,24182788,25231362,25821187,26869762,30015489,32702466,33161217,33685505,34340865,35717122,36110337,36634625,36700164,36831233,36896772,36962305,38404100,38731777,39452673,40566788],"considering":[22544385],"correctness":[1835009,18481153],"constructs":[25231361],"comparison":[34406401],"composite":[13041667,22216705,37486594],"comparing":[589825,2555905,9633793,10878977,18874369,31981569],"check":[25231363],"console":[25231361],"congruent":[7471110,9175046,14483461,19333123,21168131],"cases":[41091074],"chances":[13041665],"course":[1441793,3538945,31850497],"changes":[3997697,11403265,32571393],"constants":[9437185,40828929],"collection":[7667713,10747905,10944513,11534337,13172737,16515073,18415617,24117249,24182785,25821185,36700161,36896769,38404097,40566785],"cmake":[25231362],"choosing":[30081025,36569089],"comparisons":[327681,1114113,8323073,9961473,26476545,30408705,33161217,34603009,37552129],"code":[131073,327682,524290,589826,720898,786434,983042,1048578,1114114,1179650,1245185,1310722,1507330,1572865,1703938,1835010,2031618,2097154,2228226,2293761,2490370,2555906,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3473410,3604482,3735554,3801090,3997698,4128770,4194305,4325377,4390914,4456450,4587522,4653058,4718593,4980738,5046274,5111810,5177346,5308418,5373954,5439490,5505026,5636098,5767170,5898242,5963778,6029314,6094850,6160386,6291458,6422530,6946818,7012354,7077890,7340034,7405570,7471106,7602178,7733250,7864322,7929858,7995394,8060930,8126466,8192002,8323074,8388610,8454146,8585218,8716290,8781826,8847362,8978434,9109506,9175042,9240578,9371650,9437186,9502722,9568258,9633794,9764866,9830402,9961474,10027010,10158082,10223618,10289154,10551298,10682370,10878978,11010050,11141122,11272194,11337730,11403266,11665410,11730946,11796482,12124162,12189698,12320770,12517378,12582914,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13369346,13500418,13565954,13631490,13697026,13828098,13893634,13959170,14024706,14090242,14221314,14286849,14352386,14417922,14483458,14614530,14745602,14811138,15073282,15138818,15269890,15335426,15466498,15532034,15597570,15663106,15794178,15925250,15990786,16056322,16121858,16187394,16252930,16384002,16449538,16908290,16973826,17039362,17104898,17235970,17563650,17760258,17825794,18022402,18153474,18219009,18284546,18481154,18546690,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19529730,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20250626,20447234,20643842,20709378,20840450,20905986,20971522,21037058,21233666,21364738,21430274,21561346,21626882,21692418,21757954,21823490,21889026,22216706,22347778,22478850,22544386,22675458,22806530,22937602,23134210,23199746,23330817,23461890,23527426,23592962,23658498,23724034,23855106,23986178,24051714,24248322,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25100290,25165826,25231361,25296898,25362434,25493506,25559042,25690114,25755650,25952258,26148866,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26869762,26935298,27066370,27262978,27459586,27525122,27656194,27787266,27852802,27983874,28114946,28180482,28246018,28377090,28508162,28639234,28770306,28835842,28901378,29163522,29294594,29360130,29425666,29491202,29687810,29753346,30015490,30081026,30146562,30277634,30343170,30408706,30539778,30736386,30867458,30932994,30998530,31064066,31129602,31260674,31522818,31588354,31653890,31719426,31850498,31916034,31981570,32047106,32178178,32309250,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32899074,33030146,33095682,33161218,33292290,33423362,33685505,33816578,33882114,33947650,34013186,34144258,34209794,34340865,34406402,34471938,34537474,34603010,34799618,34930690,34996226,35192834,35258370,35323906,35454978,35520514,35586050,35651586,35717122,35913730,35979266,36044802,36110337,36241410,36438018,36569090,36634626,36831233,36962305,37027842,37093378,37224450,37289986,37355522,37486594,37552130,37617666,37683202,37748738,37814274,37879810,38010882,38141954,38273026,38338562,38535170,38600706,38731778,38928386,39059458,39321602,39387138,39452673,39518210,39714818,39780354,39845890,39911426,39976962,40042498,40239106,40304642,40370178,40697858,40828930,41025538,41091074,41156610,41287682,41418754],"commands":[25231364],"combined":[3604481,7012353,12124161,20709377,21233665,23461889,28246017,32178177,36241409,37224449],"convert":[5177348,8192001,13893633,17235969,19333133,19529729,21168141,23592961,24772611,28835841,30015489,32636929,35586049,38731777,40697857],"cleanup":[7667713,10747905,10944513,11534337,13172737,16515073,18415617,24117249,24182785,25821185,36700161,36896769,38404097,40566785],"counting":[19922945],"chose":[36831233],"consoleapplication12":[25231361],"cint":[5177345],"cpu":[25231377,26607618,33161218],"case":[1441793,3866625,5177345,8192001,13893636,15073281,15925249,16187393,16449541,19333122,20447236,21168130,22544389,23658497,25165829,25624577,30015493,30998529,31588353,33161218,36634628,41025537],"checks":[23068673],"contents":[19333121,19660801,21168129,37289985],"ctype":[196609,917505,1376257,1769473,3407873,3932161,4521985,4849665,5701633,6225921,6619137,6881281,7143425,7208961,7536641,7798785,8912897,10354689,10420225,10485761,11075585,12058625,12255233,12386305,14155777,14548993,14876673,14942209,15007745,15400961,16646145,16711681,16777217,16842753,17301505,17432577,17498113,17694721,18350081,18612225,19136513,19202049,19267585,19398657,20316161,21299201,21495809,22282241,22413313,22609921,22872065,23003137,23920641,24313857,24444929,25034753,25886721,26214401,27721729,28442625,28573697,29556737,29818881,29949953,30212097,30801921,31391745,32112641,33488897,33619969,35389441,35848193,36175873,37158913,37421057,39190529,39583745,39649281,40173569,40632321,40763393,40960001,41222145],"convenience":[1441793,3538945,14614529,25231361,35127297],"called":[327681,8192001,9240578,13369345,25231361,30408705,40304641],"critical":[30081025,36569089],"culng":[19726338],"cast":[14614529],"content":[3997698,20447234,34996226,36634625],"count":[4194305,4653057,5177350,6029313,8060929,8388609,9240580,12320769,14286849,18939906,19333124,21168132,21561345,21823489,24772612,25690114,26607622,28901384,31522824,32899073,33161221,33685505,34275331,38928385],"coefficients":[19333121,21168129,41091073],"character":[4521985,5177345,8192001,24772609,32702466,35717122],"corner":[15073281,30998529,31588353],"conversion":[196609,262145,655361,917505,1376257,1769473,2686977,3407873,3932161,4128769,4521985,4849665,4915201,5701633,6225921,6619137,6881281,7143425,7208961,7536641,7798785,8912897,10354689,10420225,10485761,11075585,12058625,12255233,12386305,14155777,14548993,14876673,14942209,15007745,15400961,16646145,16711681,16777217,16842753,17301505,17432577,17498113,17694721,17891329,18350081,18612225,19136513,19202049,19267585,19333122,19398657,20316161,21168130,21299201,21495809,22282241,22413313,22609921,22872065,23003137,23265281,23592961,23920641,24313857,24444929,25034753,25886721,26083329,26214401,27721729,27918337,28442625,28573697,29556737,29818881,29949953,30212097,30670849,30801921,31391745,32112641,33488897,33619969,35389441,35848193,36175873,36503553,37158913,37421057,39190529,39583745,39649281,39845889,40173569,40632321,40697857,40763393,40960001,41222145],"completed":[9043969],"certainly":[26607617],"cache":[23855105],"computation":[7864321],"clobbered":[5177345],"cryptographic":[23855105,30081025,36569089],"command":[25231369],"creates":[1245185,2162689,2424833,3670018,4194305,5832705,6488065,6750209,7667713,8650757,10747905,10944514,11534342,13172739,13303809,13434881,14286849,15204353,16515074,18415617,23396353,23789569,24117249,24182785,25231362,25821186,29032449,31784961,32374785,33226753,33554433,33685505,34078721,34865153,36700161,36831233,36896769,38404097,39452673,40566786],"completely":[5505025,25362433,39780353,41025538],"cpus":[8060929,18677761,20054017,20250625,25493505,28901377,29163521,31522817,32899073],"channel":[9764865,23855105],"conditional":[7405569,33292289],"changed":[5898244,32571396],"calculate":[1179649,2031617,7995393,13697025,19333127,21168135,27459585,29491201,33095681],"concatenated":[6094849],"constructor":[2162689,2424833,3670017,5832705,6488065,6750209,8650753,10813441,13303809,13434881,15204353,23396353,23789569,29032449,31784961,32374785,33226753,33554433,34078721,34865153],"ceil":[15925250,19333122,21168130,22937602,26411009,41025538],"converting":[8585217,13893633,17235969,19529729,19922945,23592961,26607617,28835841,30015489,32636929,34799617,35586049],"converts":[196609,262149,655369,917505,1376257,1769473,2686983,3407873,3932161,4063233,4194320,4521985,4849665,4915211,5570561,5701633,6225921,6619137,6881281,7143425,7208961,7536641,7798785,8912897,10354689,10420225,10485761,10944513,11075585,12058625,12255233,12386305,14155777,14286864,14548993,14876673,14942209,15007745,15400961,16515073,16646145,16711681,16777217,16842753,17301505,17432577,17498113,17694721,17891334,18350081,18612225,19136513,19202049,19267585,19398657,20316161,20774928,21102608,21299201,21495809,22085633,22282241,22413313,22609921,22872065,23003137,23265289,23920641,24313857,24444929,25034753,25821185,25886721,26083333,26214401,27721729,27918346,28442625,28573697,29556737,29818881,29949953,30212097,30605328,30670855,30801921,31391745,32112641,33488897,33619969,33685520,35389441,35782672,35848193,36175873,36503563,36831248,37158913,37421057,38862864,39190529,39452688,39583745,39649281,40173569,40632321,40763393,40960001,41222145],"care":[30081025,36569089],"calls":[9240578,24510465],"counter":[9240590],"casting":[196609,917505,1376257,1769473,3407873,3932161,4521985,4849665,5701633,6225921,6619137,6881281,7143425,7208961,7536641,7798785,8912897,10354689,10420225,10485761,11075585,12058625,12255233,12386305,14155777,14548993,14876673,14942209,15007745,15400961,16646145,16711681,16777217,16842753,17301505,17432577,17498113,17694721,18350081,18612225,19136513,19202049,19267585,19398657,20316161,21299201,21495809,22282241,22413313,22609921,22872065,23003137,23920641,24313857,24444929,25034753,25886721,26214401,27721729,28442625,28573697,29556737,29818881,29949953,30212097,30801921,31391745,32112641,33488897,33619969,35389441,35848193,36175873,37158913,37421057,39190529,39583745,39649281,40173569,40632321,40763393,40960001,41222145],"carry":[3473413,7405573,8060933,14352389,18677765,20054020,28377093,29163530,32899076],"compute":[10223617,18939906,19333130,21168138,21626881,29294593,29753345,37617665,37879809,39059457,41025537],"computer":[25231364],"cnd":[7405580,19333125,21168133,33292300,37289991],"computed":[18939905,41091073],"containing":[36831233],"configure":[25231362],"construct":[13172737],"copied":[1441793,25231362],"char_ptr":[1245194,1310721,3604481,3735553,3801089,4128769,4587521,4980739,5046273,5177353,5242882,5898247,6750214,6815748,7012353,7733257,8585217,9371649,10289153,10616834,12124169,13893646,13959171,14090249,14614532,15269899,16449548,16973825,17235969,17956867,18219013,19333122,19529732,19660804,20119560,20709377,20840449,21037060,21168130,21233665,21692417,21757953,22020097,22478851,22544392,23134219,23461889,23592961,23724035,24248321,24641537,24707073,24772617,24969218,25427971,25952257,26148865,26607620,28049422,28246017,28835841,29425665,30015502,30343169,30736385,31457286,32047105,32178190,32309249,32571399,32636929,32702474,32768001,33161219,34275329,34799617,35586049,35717132,35913733,35979265,36241409,36306954,36372494,36438020,36765700,37224449,38010881,38731790,39845889,40239105,40304650,40697857,41287682],"constructors":[1245185,4194305,10944513,11534337,13172737,14286849,16515073,24117249,25821185,33685505,36831233,39452673,40566785],"considered":[6422529,7471105,9175041,14811137,17760257,31850497],"contain":[9043969],"cofactor":[18939912,19333121,21168129],"compile":[25231361],"codes":[5177345],"cpnverted":[17235969],"compiled":[25231363],"countp":[33161227],"calculation":[17170433,20054017,27656194,29163521,33161217,35127297],"chance":[22216705],"change":[5898241,19333122,21168130,22544385,27656194,32571393,35127297],"cleared":[2097153,28639233,35913729],"converted":[13893633,24772609,28835841,32636929,40697857],"conversions":[4063233,4128769,5570561,20774913,21102593,22085633,30605313,35782657,38731777,38862849,39845889,40697857],"clearly":[20054017,29163521],"complement":[2228225,4390913,5767169,5963777,8978433,10551297,12517377,12779521,13631492,16121860,18808833,19333128,21168136,21889025,25690113,27852801,30932993,33882113,35323905,37683201],"ceiling":[1507331,6946820,19333129,19791875,20905987,21168137,23527427,24838149,27787269,33947651,40042499],"cray":[26607617],"counts":[4194305,14286849],"condition":[7405569,33292289]} \ No newline at end of file diff --git a/docs/fti/FTI_Files.json b/docs/fti/FTI_Files.json index 8097974..4cf8cdd 100644 --- a/docs/fti/FTI_Files.json +++ b/docs/fti/FTI_Files.json @@ -1 +1 @@ -["GMP Native Interface for .NET - Redirect\u0000index.html\u000018","GMP Native Interface for .NET - Search\u0000search.html\u000015","FILE Methods\u0000html/00586c66-53ac-3fe3-16a4-3ceb2f94620b.htm\u0000125","mp_limb_t Implicit Conversion Operators\u0000html/015a8bc4-a8de-d7c7-3aac-2524de5dfd03.htm\u000095","mp_exp_t Implicit Conversion (mp_exp_t to Int32)\u0000html/015f7dd6-55ab-71d0-316b-71a3f99799c3.htm\u0000141","gmp_lib.mpn_copyi Method\u0000html/00d8413a-b34b-5e89-193c-1bfe522710c5.htm\u0000507","void_ptr.Equals Method (Object)\u0000html/0177c7b6-b5d5-3815-b64a-4f3a7686bf6d.htm\u0000180","gmp_lib.mpz_cmpabs_d Method\u0000html/011efd01-e7f0-47d8-7d1e-77888d96f0d4.htm\u0000491","mpz_t.ToIntPtr Method\u0000html/018d9747-3053-df6d-2bb3-5273ad735860.htm\u0000113","gmp_lib.mpf_inits Method\u0000html/018278a0-148f-c898-5bd0-42aae4ae0069.htm\u0000407","mp_exp_t Explicit Conversion Operators\u0000html/021c96a1-51fa-2b2a-4c65-7ae3bb374c33.htm\u0000151","gmp_lib.gmp_urandomm_ui Method\u0000html/020d0663-b84b-54aa-8e2f-645ed532d175.htm\u0000395","mp_limb_t Explicit Conversion (Int64 to mp_limb_t)\u0000html/03a17ed9-19e1-9de3-0ea4-4ff3f63938a6.htm\u0000140","gmp_lib.mpz_kronecker_si Method\u0000html/0252e04b-b8fc-5a06-e1e2-a0cafbb44296.htm\u0000511","void_ptr.Equals Method\u0000html/0521b935-27ad-ca39-ed8a-6c4b4fc51116.htm\u000069","gmp_lib.mpq_cmp_ui Method\u0000html/03336561-2bb9-b38f-8adb-506e0fad094b.htm\u0000492","void_ptr.GetHashCode Method\u0000html/04ef14d3-d09c-cfcb-0cea-8984c92612f5.htm\u0000121","gmp_lib.mpn_sec_mul Method\u0000html/028e92d4-3699-77ff-e8da-9ff4c367f5b3.htm\u0000977","mpf_t Implicit Conversion (String to mpf_t)\u0000html/058e477a-0126-b073-ee83-77ed89a58351.htm\u0000195","gmp_lib.mpz_cmpabs_ui Method\u0000html/05f897c4-77dc-7735-81ca-65650f61d961.htm\u0000384","char_ptr Structure\u0000html/06249483-9daf-95f9-32c7-30195550bbcc.htm\u0000267","gmp_lib.mpz_out_raw Method\u0000html/053b54b6-f646-f0aa-ddaf-00c494a6d5ef.htm\u0000899","gmp_lib.mpf_set_ui Method\u0000html/060aa73e-8c00-0a6b-f569-ad198c4f0d90.htm\u0000405","mp_limb_t Explicit Conversion (Int32 to mp_limb_t)\u0000html/06428417-fb0b-82c7-4b50-99dfe28c7afb.htm\u0000139","mp_bitcnt_t Methods\u0000html/0968b601-ff25-497d-c2eb-28487c3d29cf.htm\u0000124","gmp_lib.mpz_kronecker_ui Method\u0000html/07613c31-7d00-9806-1676-55f8c5a997f8.htm\u0000512","gmp_lib.mpn_sec_sub_1_itch Method\u0000html/098c8787-2069-5d1e-a2f9-1f78bdcd60a9.htm\u0000207","gmp_lib.reallocate Method\u0000html/067f64f9-7014-8c6a-3c02-153c1460a1dd.htm\u0000354","size_t Methods\u0000html/0777a4c0-90d5-95bc-1192-f390bfbcbc43.htm\u0000124","gmp_lib.mpn_random2 Method\u0000html/06d850ef-82b2-56f1-32ae-2f1724da3d5b.htm\u0000395","gmp_lib.mpn_sec_div_r Method\u0000html/094ea390-8cc8-bac7-35c3-3616775736de.htm\u0000874","mp_exp_t Explicit Conversion (mp_exp_t to Int16)\u0000html/0c44ebce-9678-a295-598a-588046225af2.htm\u0000141","mp_size_t.Equals Method\u0000html/096397d8-2db8-7eeb-3b75-25ed0bad8379.htm\u000069","mp_bitcnt_t.ToString Method\u0000html/0dd7a5d2-ab07-87dc-79d2-d9b361bc0a34.htm\u0000124","mpf_t Constructor\u0000html/0e0a10d5-52ab-1821-6fe1-97514e009418.htm\u000090","gmp_lib.mpz_lucnum2_ui Method\u0000html/0cdaca8f-816e-8c22-f46b-fcf58e9e91d4.htm\u0000631","mpq_t Properties\u0000html/0e7e8afb-9c1f-87e4-4f01-0575c8203613.htm\u000049","gmp_lib.mpz_ior Method\u0000html/0ccb1bab-4817-1062-242d-41c181cacf77.htm\u0000658","gmp_lib.mpf_init Method\u0000html/0dd846ac-56b6-3ea8-0441-12490f67fbf7.htm\u0000422","gmp_lib.mpz_fdiv_q_ui Method\u0000html/0dcf05e1-ec39-5294-c4d0-d8e0f92642e4.htm\u0000681","gmp_lib.mpn_xor_n Method\u0000html/0f01fecd-9200-982d-c331-c213f3b960a1.htm\u0000680","gmp_lib.mpz_cdiv_q_ui Method\u0000html/05b3707d-5f48-4d76-c42a-566f3179d7f8.htm\u0000689","mp_exp_t.GetHashCode Method\u0000html/1443760d-18a5-f276-ec75-7b8ead9d8332.htm\u0000121","mpz_t Constructor\u0000html/0fcbb911-bc5a-1b11-90c5-96babff86526.htm\u000088","gmp_lib.mpq_sgn Method\u0000html/1176cc4e-ffda-2993-1a4a-2e0c7ed24adb.htm\u0000422","mp_size_t Implicit Conversion Operators\u0000html/13c05087-b2db-4751-d548-4fa64e30f663.htm\u0000123","gmp_lib.mpf_integer_p Method\u0000html/11a036ec-5052-7dc4-bdb6-10e5c92f88cc.htm\u0000412","gmp_lib.mpn_sec_add_1 Method\u0000html/1555cd52-98d2-6253-214a-d342a539bfb5.htm\u0000895","mpz_t._mp_size Property\u0000html/15e1db51-a27c-7eee-03dd-5c6457889be1.htm\u0000167","gmp_lib.mpf_abs Method\u0000html/17731ba4-bf91-6b9b-737a-a9cc306ba17d.htm\u0000539","gmp_lib.mpf_fits_sshort_p Method\u0000html/142199e1-6aef-83d5-1986-1b1248ddc6e3.htm\u0000402","gmp_lib.mpq_swap Method\u0000html/11e36fbc-ffc4-46df-50b7-2b07684c1755.htm\u0000604","void_ptr Fields\u0000html/12a4c9d6-02cf-e913-816e-ad530e77722c.htm\u000038","gmp_lib.mpz_fac_ui Method\u0000html/17280f99-d0dc-6714-12c7-be17c97c0cdb.htm\u0000376","mp_base._mp_size Property\u0000html/178d8d44-2485-2972-fe2f-eb9848059e6f.htm\u0000120","gmp_lib.mpq_canonicalize Method\u0000html/19d53697-65f1-2df5-62f3-988182af0c88.htm\u0000242","gmp_lib.mpf_init_set Method\u0000html/17b3dc26-68af-fb0c-9923-36777e8bd87e.htm\u0000508","gmp_lib.mpq_set_d Method\u0000html/1a7c5874-9132-2c43-e407-df1eead74fab.htm\u0000430","gmp_lib.mpn_sec_sqr_itch Method\u0000html/1ba86b5b-8ace-b6ee-99c5-32a8d7648519.htm\u0000199","gmp_lib.mpz_mul_2exp Method\u0000html/18cd39f5-7c88-f557-3803-8a4a321cfb97.htm\u0000582","mp_size_t Explicit Conversion (mp_size_t to UInt16)\u0000html/1babcb9f-d828-81fb-30d5-296cccd21929.htm\u0000142","size_t Implicit Conversion (UInt16 to size_t)\u0000html/18ef1696-938e-0932-1d55-eaced0d92464.htm\u0000140","gmp_lib.gmp_vsscanf Method\u0000html/1a966758-12dc-4da3-cb22-b3b3d788ba02.htm\u0000779","gmp_lib.free Method (void_ptr, size_t)\u0000html/19ccd2e3-05f1-d4f4-79b7-28b4f26e5768.htm\u0000227","ptr(T) Constructor\u0000html/1b117248-4e1d-a985-2ab6-4bd8e5b3e769.htm\u000052","mp_bitcnt_t Structure\u0000html/1b2b1d64-20c1-7a64-0278-d9ff58ee9cc3.htm\u0000528","gmp_lib.mpn_iorn_n Method\u0000html/1b76ffd8-d7f4-5309-3b10-e7e0c418706a.htm\u0000686","mp_limb_t.GetHashCode Method\u0000html/1bd10056-1935-a793-4930-68ebfaf82cd1.htm\u0000121","mp_bitcnt_t Explicit Conversion (mp_bitcnt_t to Byte)\u0000html/1d378f21-73e1-43e7-e286-5a6c0cb101ba.htm\u0000142","gmp_lib.mpf_set_d Method\u0000html/1d0c5734-9f0d-ec6b-c540-4379f832b0ca.htm\u0000418","FILE Structure\u0000html/1bcc07bd-8fee-1107-844c-a5ff10e7660c.htm\u0000234","mp_limb_t Methods\u0000html/1e30b810-66a8-52cc-8501-8bdda18bfaa7.htm\u0000124","gmp_lib.mpn_divexact_1 Method\u0000html/1d6343a5-d42c-c362-714e-e10730e6a6d5.htm\u0000798","gmp_lib.mpz_getlimbn Method\u0000html/1dfbf5da-f4c2-bbab-5708-3b31d40e4f16.htm\u0000678","char_ptr.ToString Method\u0000html/1eedfa7e-7135-6b5d-e395-9a6b90fab236.htm\u0000128","gmp_lib Methods\u0000html/0fa7cbf3-e8f4-6b14-d829-8aa663e77c74.htm\u00007248","size_t Explicit Conversion Operators\u0000html/1f76425d-66dd-c23e-2032-d6f1f2337813.htm\u0000179","gmp_lib.mpq_abs Method\u0000html/1f2250c3-a1b8-db12-19e4-9946e39eb64c.htm\u0000265","gmp_lib.mpf_get_default_prec Method\u0000html/1ca4ec7e-b5d1-3b51-8341-5a345990e62d.htm\u0000312","gmp_lib.mpn_get_str Method\u0000html/1e9cacd7-32b3-7f3b-659a-efdb3e064092.htm\u0000810","gmp_lib.mpz_set_si Method\u0000html/1ffac718-d814-0556-ea54-dbf1d676e0cc.htm\u0000409","mpz_t Type Conversions\u0000html/1cc35e31-9ab0-7239-d05b-1e2a426338bc.htm\u000046","gmp_lib.mpf_fits_uint_p Method\u0000html/201b1b12-bb0c-6a53-c6d5-e75db73f8470.htm\u0000403","gmp_lib.mpz_sqrt Method\u0000html/1e1204c7-2d33-c9d1-4f4e-c36215f5ebed.htm\u0000485","char_ptr Constructor\u0000html/255d9de2-3cf6-50f3-3276-a4332896da07.htm\u0000143","mpq_t Type Conversions\u0000html/25bb755c-4475-9382-5601-dd83fda02afe.htm\u000046","gmp_lib.gmp_randinit_lc_2exp Method\u0000html/21fdbc76-a0de-1f3a-195f-a5ae0cb3d1da.htm\u0000550","mpf_t Methods\u0000html/2583789b-09c3-0f9a-fbf9-4d362bd9129a.htm\u0000163","gmp_lib.mpf_mul_2exp Method\u0000html/2041c81e-218b-b514-5a7b-5ee315711bc9.htm\u0000585","mp_bitcnt_t Explicit Conversion (UInt64 to mp_bitcnt_t)\u0000html/22aee6e2-0a8a-0514-baa1-2f6882b60174.htm\u0000141","size_t Explicit Conversion (Int32 to size_t)\u0000html/25c0e500-2d89-f414-530f-a0a53b57766f.htm\u0000139","gmp_lib.mpn_gcd Method\u0000html/24ecd2d5-422f-e538-fd43-94b749652393.htm\u0000773","gmp_lib.mpz_tstbit Method\u0000html/20a476ea-9a38-9ef3-1e23-da2b2eba69a9.htm\u0000462","gmp_lib.mpn_xnor_n Method\u0000html/25d623c3-ee22-4b83-1161-3f98ce698012.htm\u0000688","gmp_randstate_t Constructor\u0000html/20a4edb9-f361-6367-9965-64b0f7aeddaa.htm\u0000110","gmp_lib.gmp_sscanf Method\u0000html/279d21b9-bd04-522e-0759-d1add6fe6fae.htm\u0000779","size_t.Equals Method\u0000html/255140dc-27a7-cc9d-df9a-dc4d03c9a8e4.htm\u000069","gmp_lib.allocate Method\u0000html/2c68671c-cd5c-e2ec-52a2-65b0ca31c3d1.htm\u0000174","mp_size_t Implicit Conversion (mp_size_t to Int64)\u0000html/289280eb-add9-3787-a6bf-8e9766849efd.htm\u0000142","gmp_lib.mpz_perfect_square_p Method\u0000html/260d6edf-ce02-26f7-d704-ad0d11604e61.htm\u0000402","gmp_lib.mpz_random Method\u0000html/2b0da39e-331c-878e-26c7-bd6d81c7f8e0.htm\u0000460","free_function Delegate\u0000html/2c9876e2-a0f5-14c6-5069-1a9d50b89185.htm\u0000159","char_ptr.Equals Method\u0000html/2d2c429f-5828-694d-2ad7-9d13e5c412b3.htm\u000069","gmp_lib.mpz_cdiv_ui Method\u0000html/290eb509-85df-a0cc-86f8-ac4e6f5d730a.htm\u0000551","mp_bitcnt_t Explicit Conversion (Int16 to mp_bitcnt_t)\u0000html/29b5075a-d6d3-6fe8-5125-d679317b1022.htm\u0000139","gmp_lib.mpq_denref Method\u0000html/2d93abcb-e73f-fe40-a50b-395a0bf6a4fc.htm\u0000474","gmp_lib.mpz_divexact Method\u0000html/2ddc32dc-4ee3-18e9-dd3d-7e64c3304e1e.htm\u0000620","gmp_lib.mpn_cnd_add_n Method\u0000html/27902901-3a7d-b5b3-d3fc-3900f754bff1.htm\u0000975","mp_ptr Constructor\u0000html/33563f2c-baba-b555-20fb-9def8b70074c.htm\u0000110","mp_limb_t.Equality Operator\u0000html/2e8177f2-fc95-380b-ef64-a51cf494c686.htm\u0000189","mp_size_t Explicit Conversion (mp_size_t to Int16)\u0000html/339354f8-0924-d332-2217-0b06b81f5e5a.htm\u0000141","gmp_lib.mpz_cmp_si Method\u0000html/2e55f6fd-0083-fc85-0d42-65e472376dbe.htm\u0000414","mp_exp_t Implicit Conversion (SByte to mp_exp_t)\u0000html/2f9a1c6d-82f4-6ef2-476a-8231d6b7d497.htm\u0000140","gmp_lib.mpn_zero_p Method\u0000html/2e469258-d5e3-da86-aebe-025b92d7cf73.htm\u0000387","gmp_lib.mpz_root Method\u0000html/279877e1-b8d0-f52c-16ba-b2e38e671437.htm\u0000546","gmp_lib.mpn_sec_div_r_itch Method\u0000html/1cefa5f6-adc3-30a6-b3bd-cb6a7543cb00.htm\u0000254","gmp_lib.mpz_congruent_p Method\u0000html/2ff1eb0a-f399-2ad2-f7d1-3fb51dceac10.htm\u0000688","gmp_lib.mpf_ui_div Method\u0000html/34a39f93-359c-526f-c9ad-cd7558968f1e.htm\u0000634","gmp_lib.mpz_mul Method\u0000html/3523bf0e-75ec-6286-76a0-4685198e51f6.htm\u0000635","mp_limb_t Explicit Conversion (SByte to mp_limb_t)\u0000html/3006d511-ecd7-0e95-44e1-b9effd406cbf.htm\u0000140","mpq_t Constructor\u0000html/2c2936bd-f40b-391b-de4c-e5111654993b.htm\u000088","gmp_lib.mpn_add_n Method\u0000html/339edb73-5781-7d73-97b6-9b73451a698f.htm\u0000902","mp_limb_t.Equals Method (Object)\u0000html/33b840cd-1b41-ad67-8956-b5811ddc6175.htm\u0000180","mp_exp_t Explicit Conversion (mp_exp_t to SByte)\u0000html/2c30c503-671c-e6f1-38a8-3a42f51f8019.htm\u0000142","gmp_lib.gmp_set_memory_functions Method\u0000html/3568dd4d-d565-0b12-2da2-2fed2d433257.htm\u0000852","gmp_lib.mpf_div_2exp Method\u0000html/352401d6-c6d1-29c1-a9f6-e5e0ed46bc86.htm\u0000592","gmp_lib.mpf_neg Method\u0000html/357791cb-951d-5542-ff67-c00ef5e9aadb.htm\u0000529","gmp_lib.mpz_init_set Method\u0000html/2c37941c-dee7-0d74-7889-3fa6c20bab6a.htm\u0000475","gmp_lib.gmp_vsnprintf Method\u0000html/300c388f-ba1c-0ba3-64fd-e7aafb39dcdb.htm\u0000845","gmp_lib.mpn_sec_tabselect Method\u0000html/3588cf60-567a-6182-20e8-5e2836498f49.htm\u0000750","mp_bitcnt_t.Equals Method (mp_bitcnt_t)\u0000html/306b1c06-9439-c811-b7b9-42777ca691e6.htm\u0000161","gmp_lib.gmp_get_memory_functions Method\u0000html/37510828-012a-9e6a-7916-776acfd8f1f9.htm\u0000449","mpf_t Class\u0000html/37c88d6c-8d02-2330-ad77-f20fb73d1677.htm\u0000417","gmp_lib.mpf_mul Method\u0000html/309e6a8c-1318-2d30-a058-f119193546a0.htm\u0000665","gmp_lib.mpz_limbs_finish Method\u0000html/398e3eb8-0f55-086f-a765-0a8b3c9307e0.htm\u0000388","gmp_lib.mpz_realloc2 Method\u0000html/1de9b70a-1d21-8168-e41c-1c259f64091a.htm\u0000693","gmp_lib.mpz_tdiv_qr Method\u0000html/387ec1dd-15b3-4cc9-862a-e3f0a8e2cb78.htm\u0000822","gmp_lib.mpf_clear Method\u0000html/3a2a17ed-a64c-8716-7f65-18c661a5279f.htm\u0000394","gmp_lib.mpz_jacobi Method\u0000html/38be0c24-42ac-e0ea-9e18-e75e3bda2a1e.htm\u0000472","gmp_lib.gmp_vfscanf Method\u0000html/316be139-2970-161f-ba7c-730f067b5cf3.htm\u0000960","gmp_lib.mpz_set Method\u0000html/3a4e6141-0771-f9ac-2283-5e9348f86d4a.htm\u0000521","gmp_lib.mpq_inp_str Method\u0000html/38d3a9de-bae7-3f44-18e0-38fe450d4cba.htm\u0000837","gmp_lib.mpf_inp_str Method\u0000html/3a24f5bd-0b45-8164-f27b-c2e04e35ab64.htm\u0000800","gmp_lib.mpn_popcount Method\u0000html/3bd9de08-5768-bb79-1e09-2953ae1483aa.htm\u0000402","gmp_lib.mpf_div_ui Method\u0000html/3985111a-6d13-b418-9c90-422a8e1e5b8b.htm\u0000506","size_t.Equals Method (Object)\u0000html/3c3a57f3-ab98-976d-e470-2b8da8c97b53.htm\u0000180","mpf_t Type Conversions\u0000html/3ca44c9f-677e-d5fa-5414-399843506633.htm\u000046","gmp_lib.mpz_get_ui Method\u0000html/3a92eddc-59f3-b42f-9921-4e1cc5700d60.htm\u0000394","mp_limb_t Explicit Conversion (mp_limb_t to SByte)\u0000html/3cd34dae-2d2e-5efd-cc59-e555d879812a.htm\u0000142","gmp_lib.mpf_sqrt Method\u0000html/00a7e91d-b046-f5d3-5b51-55868d87e228.htm\u0000535","gmp_lib.mpf_set Method\u0000html/3a025035-e715-0a3d-8d2d-6011430c9463.htm\u0000542","void_ptr.ToIntPtr Method\u0000html/3e1375c2-3f44-721d-6ef3-32e49a3d7d3b.htm\u0000107","gmp_lib.mpz_fits_uint_p Method\u0000html/3ce0cc26-e888-90f8-a517-aad88332eec0.htm\u0000383","gmp_lib.mpz_congruent_ui_p Method\u0000html/3eae225a-8db3-3b14-d862-03718f3a5548.htm\u0000538","gmp_lib.mpq_cmp Method\u0000html/3f29d5f4-13ae-cec8-ea75-6a76d00d10fc.htm\u0000550","mpq_t._mp_num Property\u0000html/3fad7a3a-76d1-7e19-0ab4-c93a4bf3655e.htm\u0000123","void_ptr.Equality Operator\u0000html/3d7c5927-d163-5d46-1f0b-5c35ca116b22.htm\u0000189","gmp_lib.gmp_version Field\u0000html/3f1b2832-ff9c-cc4a-3e85-e2ee16acc69b.htm\u0000196","void_ptr.Zero Field\u0000html/3fce2dbc-bac6-d24f-d6d4-84454567b8f5.htm\u000094","size_t Explicit Conversion (size_t to SByte)\u0000html/44012ded-01f3-9156-80d0-0df7ee0b048c.htm\u0000142","gmp_lib.mpz_scan0 Method\u0000html/3e36be2b-14ed-eb7b-0546-af6d49e983fa.htm\u0000569","size_t.Equality Operator\u0000html/46b18925-3e4b-f26c-ef9c-ade34e23f518.htm\u0000189","gmp_lib.mpz_bin_uiui Method\u0000html/402dc8d2-32bd-59ad-80f3-4bd2cc000b0d.htm\u0000420","mp_base Constructor\u0000html/3e385e89-d6d3-27df-ec51-6580f6bea08b.htm\u000089","gmp_lib.mpz_divexact_ui Method\u0000html/3ddee65c-a067-79a3-968d-31f3d585db3b.htm\u0000547","size_t Implicit Conversion (size_t to UInt64)\u0000html/4089ae7b-a5ca-3feb-37ce-f5f4e627dde7.htm\u0000143","gmp_lib.mpz_inp_raw Method\u0000html/44097b06-123a-4c00-b17f-ab0c70ad78bb.htm\u0000729","gmp_lib.mpf_set_prec Method\u0000html/438e6843-fc7b-4e6f-9ac0-d97a2773b032.htm\u0000485","size_t Explicit Conversion (size_t to Int16)\u0000html/4137f93d-8fb6-8ae8-3961-eeba189925e6.htm\u0000141","ptr(T).Value Field\u0000html/448dfb4b-f4d7-8db7-3d44-31f3bd032771.htm\u000094","mpf_t Properties\u0000html/44d8440b-0daa-0393-510e-a0ace6d299f7.htm\u0000104","char_ptr.ToIntPtr Method\u0000html/42a15292-978c-35c6-bfa3-9d5acf725ca7.htm\u0000107","gmp_lib.mpz_and Method\u0000html/3e5268ed-796b-2880-93a3-8d17143f99b1.htm\u0000655","mpz_t Methods\u0000html/430d894e-57e0-6020-0ad7-40b74cbd969f.htm\u0000161","gmp_lib.mpf_sqrt_ui Method\u0000html/44e6038b-2e97-b53d-0d46-ce1fff3522d0.htm\u0000458","gmp_lib.mpz_cmpabs Method\u0000html/3e06d348-8a15-691d-5889-ab3f1a4c9f73.htm\u0000532","gmp_lib.mpq_div Method\u0000html/433b0777-4514-5b20-7494-f0f2746fe8e5.htm\u0000296","gmp_lib.mpq_cmp_si Method\u0000html/43cb2c87-9fab-eb9d-2f7a-140d72af7b15.htm\u0000488","mp_size_t Explicit Conversion (UInt64 to mp_size_t)\u0000html/43436692-e9c9-739f-aa96-be2b775dae62.htm\u0000141","gmp_lib.mpz_fdiv_qr_ui Method\u0000html/452a9316-f421-a65c-a9ba-254b201dc431.htm\u0000797","gmp_lib.mp_bytes_per_limb Field\u0000html/47695d57-9a89-48db-97c3-2ed03965d913.htm\u0000174","size_t Explicit Conversion (size_t to Int32)\u0000html/47fd5e17-2217-5e2f-8d68-440cfcf85179.htm\u0000141","gmp_lib.mpf_add_ui Method\u0000html/45a76d5c-c5bf-e7f8-906a-15d290e9a50d.htm\u0000572","gmp_lib.mpf_trunc Method\u0000html/3ac2ecd4-f154-de62-9170-b2d28f362a7e.htm\u0000540","gmp_lib.mpz_scan1 Method\u0000html/480d1d15-b561-ac8f-b12a-f27ba075b3f2.htm\u0000569","mp_ptr Class\u0000html/4609ac5e-5cf9-cd20-2fa9-8040101c165c.htm\u0000389","size_t Constructor\u0000html/4a5eee32-b03c-e613-22b1-6b4f54a95362.htm\u0000125","gmp_lib.gmp_randinit_set Method\u0000html/494fa261-4044-f216-7041-a55d95a26f5b.htm\u0000406","mp_exp_t.Equality Operator\u0000html/4a543b73-f62d-cf04-fa49-22bc93e657e7.htm\u0000189","gmp_lib.mpf_size Method\u0000html/4c81a27a-206c-e5da-44e9-0ac7767b3366.htm\u0000349","gmp_lib.mpz_combit Method\u0000html/4a959468-7670-9303-a5e7-3f1de8f17a62.htm\u0000466","gmp_lib.mpz_hamdist Method\u0000html/4dfb8bd5-8a6f-6919-7aa9-8c060d42b5d7.htm\u0000621","gmp_lib.mpz_limbs_read Method\u0000html/4b08344c-f506-a717-4e1d-112cd19f5286.htm\u0000597","FILE.Equals Method\u0000html/4e0b1b66-de5f-3451-d835-df0116b8c789.htm\u000069","gmp_lib.mpz_rrandomb Method\u0000html/4be917d3-47c6-cb58-d768-6276e78f0afb.htm\u0000645","gmp_lib.gmp_errno Property\u0000html/4c3f1727-1891-2918-da3a-321930e883ed.htm\u0000132","gmp_lib.mpz_tdiv_q Method\u0000html/4c830876-cdf6-9d94-1ceb-24d30f873bc2.htm\u0000686","gmp_lib Properties\u0000html/4c8c8860-0cde-fd90-76f1-81cd6fb7a125.htm\u000041","mp_size_t Implicit Conversion (Int32 to mp_size_t)\u0000html/4d1fd187-6b51-f72c-b150-3cc4eb7ead18.htm\u0000139","gmp_lib.mpz_divisible_2exp_p Method\u0000html/4f821e78-facb-4ea2-ab21-62d1f5049e68.htm\u0000444","gmp_lib.mpq_get_num Method\u0000html/4f98333c-76a2-db46-cbba-97785a449450.htm\u0000600","ptr(T) Fields\u0000html/50e025ca-c11a-c1db-2233-d11f66776439.htm\u000045","mp_size_t Structure\u0000html/4b58a584-7a0e-b600-18fa-ebd493861eb3.htm\u0000538","gmp_lib.mpf_cmp_d Method\u0000html/4f0f115a-3956-13f7-4d6f-0157936c03bd.htm\u0000466","gmp_lib.mpf_init_set_str Method\u0000html/4e30a5e0-637b-949e-a627-387a56945f7b.htm\u0000578","gmp_lib.mpn_cmp Method\u0000html/4fcc5434-e328-6730-f46e-bd0823ec7560.htm\u0000491","gmp_lib.mpf_cmp_z Method\u0000html/5236d7a8-b79f-add8-4898-997e9d6a68bf.htm\u0000515","FILE Operators\u0000html/4fe7aa66-0d05-7853-360a-72c4b55b69bd.htm\u000059","gmp_lib.mpz_probab_prime_p Method\u0000html/52ce0428-7c09-f2b9-f517-d3d02521f365.htm\u0000465","mp_bitcnt_t.GetHashCode Method\u0000html/540dc183-f6ab-a0bb-d6ef-a08f5a464b78.htm\u0000121","gmp_lib.gmp_fscanf Method\u0000html/50306850-d92d-5038-bbcc-c452cd3c69a9.htm\u0000960","gmp_lib.mpz_gcd Method\u0000html/4e14cfc4-6f8b-14f7-74df-2f4415ce6f1c.htm\u0000619","gmp_lib.mpz_sub Method\u0000html/53702772-53e9-ec51-c3a5-7a1912b4f2b4.htm\u0000621","mp_ptr Constructor (UInt16[])\u0000html/54ac0eda-b14f-8083-16dc-6c0abe8a5e5e.htm\u0000189","mp_bitcnt_t Explicit Conversion (Int64 to mp_bitcnt_t)\u0000html/56fbe432-4b26-efff-13e9-242996bfa78d.htm\u0000140","ptr(T) Class\u0000html/542faa00-d28a-72a2-2dd8-6c6021e683ce.htm\u0000393","mp_limb_t Implicit Conversion (UInt16 to mp_limb_t)\u0000html/4e7a1224-4cf6-269a-82b6-8fdb83429949.htm\u0000140","gmp_lib.gmp_vsprintf Method\u0000html/56e1a610-d238-ab9f-87b5-001764290847.htm\u0000728","gmp_lib.mpz_roinit_n Method\u0000html/5786e0c6-2dde-406f-b86d-3df6757c80c0.htm\u0000834","gmp_lib.mpz_kronecker Method\u0000html/54ba330f-67d3-fa30-2d5f-0480b7f4659c.htm\u0000589","void_ptr Operators\u0000html/578ac23c-2986-d809-fa1b-c9a111d0c780.htm\u000059","mp_size_t Implicit Conversion (mp_size_t to Int32)\u0000html/57c5f9bf-43e8-b575-90c8-23c0e366fb2d.htm\u0000141","gmp_lib.mpq_set_den Method\u0000html/52388f4c-575a-9b13-41a6-e7ec2bd0becd.htm\u0000549","gmp_lib.mpz_get_str Method\u0000html/54c1f778-6fc8-0056-6f25-26f6754645fb.htm\u0000659","gmp_lib.mpf_div Method\u0000html/4e876639-72f5-7659-f4a9-862639e27e1c.htm\u0000719","gmp_lib.mpz_clear Method\u0000html/551f8670-3080-9a92-cd50-58d09cbf77ef.htm\u0000334","gmp_lib.mpq_mul Method\u0000html/584834ae-b1f7-d965-2586-f88d5c9b4f67.htm\u0000296","gmp_lib.mpz_congruent_2exp_p Method\u0000html/4b6a07f8-2a61-d1a3-7192-f2907292bf2a.htm\u0000598","gmp_lib.mpf_cmp_ui Method\u0000html/5a168ae0-405b-7259-0853-84999876c47a.htm\u0000441","mp_exp_t.Equals Method\u0000html/5a3c38b8-5205-bc81-58e8-60b155c0579c.htm\u000069","gmp_lib.mpf_urandomb Method\u0000html/5a698221-639e-333b-061b-0aa3f76c38e9.htm\u0000575","gmp_lib.mpn_add_1 Method\u0000html/5562b14f-48a4-be75-2eb0-6a129cd0d5ab.htm\u0000782","mp_bitcnt_t Implicit Conversion (UInt16 to mp_bitcnt_t)\u0000html/55809d71-2a62-422c-a7e5-955b2b62fe37.htm\u0000140","gmp_lib.mpz_addmul_ui Method\u0000html/4e93c4c4-d799-2828-5285-8a3f3ed02ad3.htm\u0000573","gmp_lib.mpz_divisible_p Method\u0000html/4bafc7fe-d2a8-7cf2-b9b8-c296550b4ef2.htm\u0000557","gmp_lib.mpz_neg Method\u0000html/5a61d62c-a0f0-5e86-b6dd-8ca6414b35ed.htm\u0000494","mp_bitcnt_t Explicit Conversion (mp_bitcnt_t to Int16)\u0000html/55d30a4b-ca4f-4f4b-208a-026c54586e64.htm\u0000141","mp_ptr.Size Property\u0000html/562de56d-c1a8-5f66-59dc-e2886d89bfc3.htm\u0000110","mp_bitcnt_t Implicit Conversion (UInt32 to mp_bitcnt_t)\u0000html/6280cd97-b728-ab06-89e1-7181e2ab72fe.htm\u0000140","mp_bitcnt_t.Equals Method (Object)\u0000html/5b4fc57b-2ab5-9b95-6c35-ec9b499a6d59.htm\u0000180","gmp_lib.mpz_mul_ui Method\u0000html/5fba9944-4437-9b1c-afa0-666d87eafe39.htm\u0000568","gmp_lib.gmp_printf Method\u0000html/5c2015f3-41d2-7b80-5309-e41ccec0baaf.htm\u0000475","gmp_lib.mpf_fits_sint_p Method\u0000html/5ea7691b-2a0f-5f25-290c-54c78e2cf3bd.htm\u0000402","size_t Explicit Conversion (SByte to size_t)\u0000html/5c1d434c-5d85-dea7-ac47-09126d92900d.htm\u0000140","gmp_lib.mpz_ui_pow_ui Method\u0000html/6101fda5-1230-66a9-5aff-5d8da426e364.htm\u0000441","mpz_t Properties\u0000html/5f492d5c-72f0-17b4-24a4-e5b58a061ef7.htm\u000086","gmp_lib.gmp_vfprintf Method\u0000html/62c5f2f4-2a93-e6d2-b867-23d4f2b98af4.htm\u0000681","gmp_lib.mpn_perfect_power_p Method\u0000html/61401484-d06f-ab9e-110d-b46f4d0a9eba.htm\u0000389","gmp_lib.mpz_init2 Method\u0000html/5cd3a242-93b7-49c5-b9c9-1dca02ed4662.htm\u0000493","gmp_lib.mpn_sec_invert Method\u0000html/62ffb793-b32f-e0dc-a399-f20fe708a803.htm\u0000867","void_ptr.FromIntPtr Method\u0000html/650e9cdb-0392-1173-aba8-9a1d6fc6a694.htm\u0000148","gmp_lib.mpz_addmul Method\u0000html/582a0647-1482-ecd7-cc78-bd2222610e06.htm\u0000634","gmp_lib.mpz_com Method\u0000html/635ddf01-9c52-0d37-202e-c560b895fb7d.htm\u0000550","mp_bitcnt_t Constructor\u0000html/5846cdbc-83b9-0197-aa29-fd226641eb76.htm\u0000124","mpq_t Class\u0000html/635f1879-5f85-881e-cca8-3222baf5045a.htm\u0000290","gmp_lib.mpz_tdiv_q_ui Method\u0000html/67fc54a2-05e7-bc3c-64f4-8c6de48fa6b6.htm\u0000690","mp_limb_t Explicit Conversion (mp_limb_t to Int64)\u0000html/63e2f5c3-b5bb-ebf6-3bcf-682671a0dbc3.htm\u0000142","gmp_lib.gmp_snprintf Method\u0000html/61686857-e4a0-ad60-1419-2b87a79b06c1.htm\u0000865","gmp_lib.mpz_set_str Method\u0000html/6a3819df-abc1-ceb1-a5c7-87a879977b8c.htm\u0000706","gmp_lib.mpz_odd_p Method\u0000html/6820d6c4-6ee1-53d7-7223-3f654a496ce4.htm\u0000381","gmp_lib.mpn_gcd_1 Method\u0000html/64373933-f98b-74b4-c10f-3b1a98c410bc.htm\u0000442","mpq_t Methods\u0000html/6871c168-60e1-5bd2-5a03-2d60f473d7b8.htm\u0000161","gmp_lib Class\u0000html/3af6b34c-3242-2b75-e7c7-ab79af8a4b0f.htm\u00007412","gmp_lib.mpf_get_d Method\u0000html/648fa405-45d3-506a-f6be-72642e8a7f32.htm\u0000464","mp_bitcnt_t Explicit Conversion (Int32 to mp_bitcnt_t)\u0000html/6ba37de9-82cf-e884-2537-0d8e83b8ffa0.htm\u0000139","mp_exp_t Explicit Conversion (mp_exp_t to UInt32)\u0000html/6b71bf90-ded3-6f2b-f59b-19b7e3442ef4.htm\u0000142","gmp_lib.mpq_inv Method\u0000html/3b01109c-5b01-16d2-edd0-5ac3d5514930.htm\u0000279","mpq_t Implicit Conversion (String to mpq_t)\u0000html/5d499247-7cb9-266f-eb4f-78bcf5768aa4.htm\u0000199","gmp_lib.mpq_set_num Method\u0000html/6885ad71-c185-1e0c-abc8-4320e12f377a.htm\u0000545","gmp_lib.mpz_fits_ushort_p Method\u0000html/6b85c6a3-d6c5-d1d2-829a-af000bae687e.htm\u0000384","gmp_lib.mpz_divisible_ui_p Method\u0000html/6c026976-a6c9-6f12-6b31-c113166ea236.htm\u0000480","mp_size_t Implicit Conversion (SByte to mp_size_t)\u0000html/3bab30e1-4da4-b2cd-ea9c-9f06097052e6.htm\u0000140","mp_bitcnt_t Implicit Conversion (mp_bitcnt_t to UInt64)\u0000html/6b870324-3daa-70e6-ded7-2757f5755310.htm\u0000143","gmp_lib.mpz_fdiv_r Method\u0000html/5dfc0ea9-a81f-bda9-356c-034395ba3c9c.htm\u0000699","mpz_t.ToString Method\u0000html/709eb598-ee38-4031-9dc5-74a73d8f9142.htm\u0000122","mp_exp_t Explicit Conversion (UInt64 to mp_exp_t)\u0000html/6b879622-df00-c9b2-deba-307574416ff2.htm\u0000141","gmp_lib.mpn_random Method\u0000html/6d4f993a-1fd6-9db2-c0a7-0f3926863565.htm\u0000395","mp_exp_t Explicit Conversion (Int64 to mp_exp_t)\u0000html/70eabcfd-22ae-e08e-1bc5-54f8e1ccb736.htm\u0000140","gmp_lib.mpn_com Method\u0000html/6f0c915a-514a-fce0-957b-50180f4b79a7.htm\u0000595","mp_size_t Explicit Conversion (mp_size_t to Byte)\u0000html/6eb39888-e104-5cdd-a22d-c1240ef748e4.htm\u0000142","gmp_lib.mpn_mul Method\u0000html/68d3161d-2909-1909-cda7-e87949ee27ce.htm\u0000910","mp_limb_t Explicit Conversion (mp_limb_t to Byte)\u0000html/6991a24e-345d-029c-c189-ed263640928b.htm\u0000142","mp_limb_t Explicit Conversion (mp_limb_t to Int32)\u0000html/72723d8b-579c-0c0f-d5c8-868ae849457e.htm\u0000141","gmp_lib.mpz_fib_ui Method\u0000html/71884691-07d0-7bdf-c761-df9b07723735.htm\u0000445","mp_bitcnt_t Implicit Conversion Operators\u0000html/72fbcc09-5765-7f60-3897-57fec21cc9f9.htm\u0000109","gmp_lib.mpn_and_n Method\u0000html/69ffabc9-a19c-6590-d918-fbf0710aff82.htm\u0000679","gmp_lib.mpz_add_ui Method\u0000html/7327aa92-1ab5-7553-7eee-7b5e3e61322a.htm\u0000467","gmp_lib.mpf_sub Method\u0000html/718e7623-d25b-8a09-2543-745f24cd82c1.htm\u0000665","char_ptr Methods\u0000html/73876566-4eec-b421-e4d6-3593e9641f0a.htm\u0000135","gmp_lib.mpf_fits_slong_p Method\u0000html/6c178e2d-a080-13b8-75b0-3fe232b46d75.htm\u0000402","size_t Implicit Conversion (Byte to size_t)\u0000html/6d0766fc-29bc-75e6-aa00-ed7b80fe586e.htm\u0000140","gmp_lib.mpz_tdiv_q_2exp Method\u0000html/746301ec-352c-9bae-ff92-8a2ed31be655.htm\u0000623","gmp_lib.mpn_sec_div_qr Method\u0000html/6f1dca2b-39f4-3acd-71fb-4f1e5a0d04e6.htm\u00001197","mp_size_t Implicit Conversion (UInt16 to mp_size_t)\u0000html/7c9b8744-cc4a-e2c1-659f-6da60e92bb78.htm\u0000140","gmp_lib.mpz_fdiv_r_ui Method\u0000html/772064e8-3ec1-840e-c79c-78f478321b6c.htm\u0000702","mpf_t._mp_prec Property\u0000html/772c3bd8-b9ec-225d-3d98-e17ae89d4294.htm\u0000135","gmp_lib.mpz_set_ui Method\u0000html/7daadb71-9f36-2848-86c4-ba1fba25fcfd.htm\u0000402","FILE.Inequality Operator\u0000html/77413435-917b-2cdc-cfde-d0891b6ede82.htm\u0000191","gmp_lib.mpz_out_str Method\u0000html/6f85986d-b6a0-435d-3675-c025ef70413d.htm\u0000787","gmp_lib.mpz_init_set_ui Method\u0000html/7da3b40f-ae2c-63c5-0157-9b51d54cf6cb.htm\u0000373","mp_limb_t Implicit Conversion (Byte to mp_limb_t)\u0000html/7dbd9949-90ab-2b31-978d-9fde0a2ba7ee.htm\u0000140","char_ptr.Equals Method (Object)\u0000html/77d1beb2-2aed-58e8-dc50-bba2ff56afee.htm\u0000180","gmp_lib.mpz_cdiv_qr Method\u0000html/7f89c102-d1eb-2dab-0e6e-061893309c4b.htm\u0000825","FILE Fields\u0000html/76b37dae-ecff-2bd9-2e80-002354a7dddc.htm\u000038","mpf_t.ToString Method\u0000html/77eccd6b-888f-b3a8-0800-ead4af162af0.htm\u0000122","char_ptr.Zero Field\u0000html/76481715-8a8b-e739-905c-f0d83de503ab.htm\u000094","gmp_lib.gmp_vprintf Method\u0000html/8031c594-b2b2-fa62-7088-00b6fe92f88e.htm\u0000455","mp_size_t.Equals Method (Object)\u0000html/764c23ab-f2fe-b3e4-68a4-4a27fb6dc6b0.htm\u0000180","Welcome to the GMP Native Interface for .NET Library\u0000html/846f5c8a-6cba-433e-9f18-cde2ff5695cd.htm\u0000458","gmp_lib.mpf_set_str Method\u0000html/823b356e-0731-c9ca-0b37-660b6eb9ee7c.htm\u0000825","gmp_lib.mpz_get_d Method\u0000html/89d8c501-6c12-9104-7e2d-be411f443b62.htm\u0000405","gmp_lib.mpz_sgn Method\u0000html/86b2033c-26c3-3889-9025-b2a638910a86.htm\u0000413","char_ptr Operators\u0000html/84b523e8-bc53-01e9-49af-f7996af73647.htm\u000059","gmp_lib.mpz_cdiv_qr_ui Method\u0000html/7aee9fae-9d14-72be-6d0f-0f9c4a863fe5.htm\u0000801","gmp_lib.mpn_gcdext Method\u0000html/746d102a-5f3e-6142-b02a-63f3cac385ab.htm\u00001284","gmp_lib.mpn_addmul_1 Method\u0000html/77fdf32b-986d-4df3-3c76-022e3e3fbb98.htm\u0000885","gmp_lib.gmp_randinit_default Method\u0000html/89fff39e-9dc4-4d23-9460-301ae7df92d1.htm\u0000326","gmp_lib.mpq_equal Method\u0000html/7828ce92-079b-da4d-aab2-1742209287fb.htm\u0000548","gmp_lib.gmp_urandomb_ui Method\u0000html/7b541895-53a8-b335-32de-d5b2224ff0f7.htm\u0000443","gmp_lib.mpz_popcount Method\u0000html/84bf95e4-d9d0-4ffe-f836-3650342de962.htm\u0000467","size_t.GetHashCode Method\u0000html/6feeab0d-dc91-818f-ef60-2434ff3a1146.htm\u0000121","gmp_lib.mpz_limbs_write Method\u0000html/86ddbf69-57f6-af58-bd13-3eca06123b29.htm\u0000746","gmp_lib.mpz_get_d_2exp Method\u0000html/74e22b4c-fa79-f5f9-b752-da41bd427f37.htm\u0000561","ptr(T) Constructor\u0000html/8e86c547-280b-afb8-98ea-aebfb3ec04b9.htm\u000094","mp_size_t Explicit Conversion (mp_size_t to SByte)\u0000html/8dc5a181-8213-f87c-bd52-e77624313a9c.htm\u0000142","gmp_lib.mpq_inits Method\u0000html/8ab8ea40-9723-f0c8-18f4-9558c73397b9.htm\u0000503","gmp_lib.mpn_copyd Method\u0000html/78443f19-f0c6-4a1f-1eed-a815b734e981.htm\u0000507","gmp_lib.mpq_set_z Method\u0000html/84d256a1-cd11-3bf9-3e8c-8a7e1980315d.htm\u0000563","mp_size_t Implicit Conversion (Int16 to mp_size_t)\u0000html/8f9e1df5-6eb0-4f14-3a1f-0d40ab45aac6.htm\u0000139","gmp_lib.mpz_mod_ui Method\u0000html/86fd57d1-ccfa-804e-760b-bd8e7ade2176.htm\u0000643","mp_base Class\u0000html/8f3c572b-8133-bccc-b838-9d22e3467898.htm\u0000269","mp_bitcnt_t.Inequality Operator\u0000html/8ae70a65-d9d6-0c44-b148-82f39dc474ab.htm\u0000191","gmp_lib.mpz_set_f Method\u0000html/9005bf40-4373-e879-9f0a-448b174aad67.htm\u0000464","gmp_lib.mpz_pow_ui Method\u0000html/8e3a525d-9371-fb32-1051-e8e8fe23a63d.htm\u0000529","gmp_lib.mpn_divexact_by3 Method\u0000html/75f2a84e-44f3-b7cc-e6ad-392111d5b9cc.htm\u00001041","gmp_lib.mpz_primorial_ui Method\u0000html/985a65cd-9a65-e8b3-580b-626b65662dd6.htm\u0000398","gmp_lib.mpf_pow_ui Method\u0000html/96e2fb95-0ac0-3d24-bea9-ee5631f30347.htm\u0000562","gmp_lib.mpf_mul_ui Method\u0000html/99a405b5-c051-9905-cf57-7139a0e503cf.htm\u0000580","gmp_lib.mpz_cdiv_q Method\u0000html/8b1e9c27-7278-6032-80c0-015b93258d96.htm\u0000686","mp_bitcnt_t Implicit Conversion (Byte to mp_bitcnt_t)\u0000html/906e0eef-6efb-c60b-60d8-4827d7d57bf7.htm\u0000140","gmp_lib.mpn_sub Method\u0000html/87681f32-b766-3ce2-7c08-98b2d32cb5fa.htm\u0000905","gmp_lib.mpz_size Method\u0000html/9a169dd9-42b0-ea59-abbe-4efc6b870c75.htm\u0000486","gmp_lib.mpn_mod_1 Method\u0000html/9aa24cc8-8cf5-4b8a-cd1b-5ded400efa50.htm\u0000608","gmp_lib.mpz_abs Method\u0000html/9761cc8e-6099-7a76-5ea6-d27f617fd5d1.htm\u0000494","gmp_lib.mpz_si_kronecker Method\u0000html/a248732b-c4be-7e9a-4207-0049371764ff.htm\u0000513","gmp_lib.mpn_sec_add_1_itch Method\u0000html/87bbc39f-b11a-76d9-f31d-f5dcf365a67d.htm\u0000207","mpf_t._mp_size Property\u0000html/9aa3bb30-32b3-b465-af05-9b048bb610f1.htm\u0000171","gmp_lib.mpz_inp_str Method\u0000html/8b8d6ec1-3ae5-e6f3-f030-289abe5002d0.htm\u0000751","mp_bitcnt_t Explicit Conversion Operators\u0000html/a2b35c8b-a71a-2e93-2f3b-cd5f8dcb51b4.htm\u0000165","mp_limb_t Explicit Conversion (mp_limb_t to UInt16)\u0000html/9ab62efe-605f-58cf-588c-1e52adcfb373.htm\u0000142","gmp_lib.mpn_set_str Method\u0000html/9a68645a-d8d6-f4c1-f706-0dc217f9809a.htm\u0000859","gmp_lib.mpf_init2 Method\u0000html/98083eac-9993-41b2-4943-678785fce712.htm\u0000479","gmp_lib.mpz_limbs_modify Method\u0000html/87f5432d-aacb-57b6-b4a7-e4dc803684a4.htm\u0000743","mpz_t Class\u0000html/8beda7fb-bbc4-b56f-fd1f-1459377ecb3b.htm\u0000345","size_t Explicit Conversion (size_t to UInt16)\u0000html/784c4122-3a62-f338-0e4a-88b6a69a1e9e.htm\u0000142","gmp_lib.mpf_init_set_d Method\u0000html/a2c14761-1b23-0de9-3842-c2d4e3d7aac0.htm\u0000436","mp_limb_t Implicit Conversion (mp_limb_t to UInt64)\u0000html/880536ad-8f64-bc4a-a807-0071061ac720.htm\u0000143","size_t Implicit Conversion Operators\u0000html/a35ea6b8-48fa-4e62-bdbd-fee74574cac5.htm\u000095","mp_exp_t Explicit Conversion (UInt32 to mp_exp_t)\u0000html/78fdf4c2-15a1-fdab-23fa-806cdf3dc983.htm\u0000140","gmp_lib.free Method (mp_ptr[])\u0000html/7924a2a3-75c1-0aa9-636f-4772d74a723f.htm\u0000165","mp_ptr Properties\u0000html/9b1ae76e-d9d8-e72d-9fa6-fe8e2d833d40.htm\u000050","gmp_lib.mpz_urandomm Method\u0000html/981cfca4-f958-045f-84b7-01717fcd88d1.htm\u0000694","gmp_lib.mpn_divmod_1 Method\u0000html/9074a45b-0d68-cf18-75fe-076e720a9a61.htm\u0000837","mp_limb_t.ToString Method\u0000html/7ae8e775-5b2d-4ce0-c45b-5afd1b66ac62.htm\u0000124","mp_limb_t Implicit Conversion (UInt64 to mp_limb_t)\u0000html/9b49e0e1-2b6a-8d1a-eb15-0a1a17358384.htm\u0000141","gmp_lib.gmp_scanf Method\u0000html/880c96b7-378e-3cdb-057e-b6eea1c9e529.htm\u0000753","gmp_lib.mpz_import Method\u0000html/8c8c1e55-275f-cff8-2152-883a4eaa163c.htm\u00001175","gmp_lib.mpn_zero Method\u0000html/90a57214-6596-be63-31e7-aa3186252628.htm\u0000413","mp_size_t.Equality Operator\u0000html/a6d79a12-4568-8617-30a9-e36698ef5994.htm\u0000189","mp_exp_t Implicit Conversion (Int32 to mp_exp_t)\u0000html/82a3fa70-9dcd-a931-eb3e-18095e458891.htm\u0000139","gmp_lib.mpf_ceil Method\u0000html/9b4a5f6b-3f8e-a957-ae84-303c6897aeb4.htm\u0000540","gmp_lib.mpz_mod Method\u0000html/8d141ae9-4a01-bdc9-caf3-8daba3321ac1.htm\u0000632","mp_ptr.Item Property\u0000html/a7661bd2-2bcb-01c5-9833-5ab6d6305daf.htm\u0000176","gmp_lib.mpz_rootrem Method\u0000html/a637ce7e-54d7-eba9-0c6f-c237f115b621.htm\u0000670","mp_size_t Explicit Conversion Operators\u0000html/9c49193c-e71d-9d5a-ce64-27446b2d8c1b.htm\u0000151","gmp_lib.mpz_sizeinbase Method\u0000html/7dfe367e-74d3-e782-860b-2314da9c44cf.htm\u0000654","gmp_lib.mpn_sec_powm Method\u0000html/a38b87c5-c6ac-fa68-6d58-c45793bf933e.htm\u00001074","size_t.Inequality Operator\u0000html/a68386d1-23de-611a-543f-fbd5600f674a.htm\u0000191","gmp_lib.mpz_cdiv_r_2exp Method\u0000html/8320e5d8-1df9-ca26-3054-e4b93cc0f616.htm\u0000642","gmp_lib.mpf_init_set_ui Method\u0000html/8d1b97c9-ef9d-303a-0fbe-e7ece7edf391.htm\u0000425","gmp_lib.gmp_randclear Method\u0000html/7ef82a61-e43a-78c7-a28f-8f2d0a5f59b1.htm\u0000163","gmp_lib.mpn_nand_n Method\u0000html/a7d1fd40-0415-b4af-1787-706d245ff96e.htm\u0000686","mp_exp_t Implicit Conversion (Int16 to mp_exp_t)\u0000html/835b1c14-21a0-f806-1953-af0ddf068758.htm\u0000139","gmp_lib.mpz_init_set_si Method\u0000html/9cbc8594-a202-86fd-f4e8-22635ba952b5.htm\u0000372","gmp_lib.mpz_lucnum_ui Method\u0000html/a48d50bf-0432-7feb-cc41-d6bf70f78e58.htm\u0000445","gmp_lib.mpz_swap Method\u0000html/90eada10-67d0-8376-0010-d053e5043b96.htm\u0000522","gmp_lib.mpz_set_d Method\u0000html/8d6c39e2-22d8-d0ef-219c-dc594e73b2c5.htm\u0000425","gmp_lib.mpz_clears Method\u0000html/a909faa8-4939-1ba3-5647-af8836c9a291.htm\u0000468","gmp_lib.mpz_fdiv_ui Method\u0000html/8435af1d-e5e4-3e55-1024-449ff7b56ad4.htm\u0000550","gmp_lib.mpq_numref Method\u0000html/a4c2958c-5957-d736-6883-ce7e76b3d7a4.htm\u0000470","gmp_lib.mpz_powm Method\u0000html/9de702f4-758b-2a4e-1025-ed5e46cc7db2.htm\u0000765","char_ptr.GetHashCode Method\u0000html/84492195-83e7-7738-6678-c299663dd02c.htm\u0000121","gmp_lib.mpz_ui_sub Method\u0000html/8d80c2f9-de42-f223-595e-108f165d5746.htm\u0000546","FILE.Equals Method (FILE)\u0000html/a964376d-5264-550c-0dc6-5ce21c48ac93.htm\u0000161","reallocate_function Delegate\u0000html/aa9d21b4-a929-d550-5a65-f9cbcfa7f638.htm\u0000218","size_t Explicit Conversion (Int16 to size_t)\u0000html/8da2a46e-34a6-f8be-270d-32fbf6424d98.htm\u0000139","gmp_lib.mpn_sec_sub_1 Method\u0000html/9137a632-abd2-7963-1991-85e6d753bf13.htm\u0000895","gmp_lib.mpf_fits_ushort_p Method\u0000html/ada84e5e-397e-e963-7d50-e260d4a104f7.htm\u0000405","mp_bitcnt_t Explicit Conversion (SByte to mp_bitcnt_t)\u0000html/aaf1db64-d29e-3aa5-0a72-6fe2578210de.htm\u0000140","gmp_lib.mpf_set_default_prec Method\u0000html/9e93d02e-f5c7-1a6f-68fe-a33d793a93e2.htm\u0000319","gmp_lib.mpf_get_ui Method\u0000html/aa3fd0ea-a8b6-674b-59ff-b6d4785baed1.htm\u0000256","gmp_lib.mpz_cdiv_q_2exp Method\u0000html/a4def6d8-f8a5-f76f-4ef0-3e6e7eec23fb.htm\u0000623","gmp_lib.mpn_submul_1 Method\u0000html/95e10fea-31c2-e900-c5b0-f48636e1d76e.htm\u0000885","mp_limb_t Implicit Conversion (UInt32 to mp_limb_t)\u0000html/adc5aae1-accd-ed83-fe1b-8910aa034c17.htm\u0000140","mp_size_t.ToString Method\u0000html/abd28ab6-f7d7-296e-852b-ef28b35a08d8.htm\u0000124","gmp_lib.mpq_div_2exp Method\u0000html/8dc5397d-96e4-74dd-cd31-0d05649ea927.htm\u0000295","char_ptr.Equality Operator\u0000html/a4f47fa4-8285-638d-c094-bc9e249a49a0.htm\u0000189","gmp_lib.mpq_set_ui Method\u0000html/915a7958-6821-bb64-468f-b0b48b351878.htm\u0000509","gmp_lib.mpn_sec_powm_itch Method\u0000html/96652cce-b8f1-0b9e-8434-19cf9bb3eb29.htm\u0000336","gmp_lib.mpq_set Method\u0000html/9eac8ea9-0821-09b2-8091-e6638c562c7f.htm\u0000576","gmp_lib.mpz_clrbit Method\u0000html/8812c658-675a-b564-9159-2383971747b1.htm\u0000470","gmp_lib.free Method\u0000html/92160da3-b1af-e005-cb05-e3fb4dd524d8.htm\u000094","gmp_lib.mpz_add Method\u0000html/acb6d3d4-70ad-58be-7cb8-9edb997204b3.htm\u0000613","mp_size_t Explicit Conversion (mp_size_t to UInt64)\u0000html/969bef9e-e9a3-e671-5378-0767ee7f946b.htm\u0000143","mp_exp_t Explicit Conversion (mp_exp_t to UInt16)\u0000html/92ffc71c-a4b3-4367-ba65-25b82d7e5cfd.htm\u0000142","gmp_lib.mpn_sub_1 Method\u0000html/ae3c6cf7-08a0-54dd-951f-b2fe2112b8b0.htm\u0000791","mp_exp_t.Inequality Operator\u0000html/931e55b9-30c1-aa94-c044-0400b5abea60.htm\u0000191","mp_limb_t Operators and Type Conversions\u0000html/88234d39-a3da-db4f-71ff-17d0f2e2c7fe.htm\u0000286","gmp_lib.mpn_neg Method\u0000html/9fb96802-e56e-8fd8-cef2-b44870d09a10.htm\u0000788","mpz_t._mp_alloc Property\u0000html/93206a07-9ee6-f89b-f029-f0e80982c911.htm\u0000173","gmp_lib.mpn_scan0 Method\u0000html/ae66c86a-cc34-81be-2a38-e841e8a36f43.htm\u0000422","mp_size_t Operators and Type Conversions\u0000html/884aef1a-9faa-b787-ff5e-022615bd41eb.htm\u0000286","gmp_lib.mpz_powm_ui Method\u0000html/9fd28088-e353-2b5e-03e3-9c2763226ed6.htm\u0000663","gmp_lib.mpz_gcd_ui Method\u0000html/88b8d333-9c9c-de7d-8131-6d1432c14a0c.htm\u0000485","gmp_lib.mpf_get_prec Method\u0000html/96c4a09e-3f83-00ab-30d0-78a82764b0ce.htm\u0000418","char_ptr.Equals Method (char_ptr)\u0000html/b1eefed1-412c-fcb1-29ff-34094bc8d57e.htm\u0000161","gmp_lib.mp_uint_per_limb Field\u0000html/af9533ce-5e67-245d-1cb3-9efb7772a6c8.htm\u0000188","gmp_lib.mpz_powm_sec Method\u0000html/93210ab6-2523-3130-044a-80bcf43c181d.htm\u0000800","gmp_lib.mpq_get_den Method\u0000html/ae9e468d-e9ce-db55-1964-433829dfa476.htm\u0000608","gmp_lib.gmp_randinit_mt Method\u0000html/b3ed0ded-086a-41f1-6051-d08afa338da8.htm\u0000311","gmp_lib.mpn_lshift Method\u0000html/b52f3ab3-7ad3-7dde-14a2-83c81840b829.htm\u0000700","mp_size_t Methods\u0000html/afc0fd4e-39a7-905a-93b9-8bd291904211.htm\u0000124","gmp_randstate_t Methods\u0000html/94df18f5-d7f6-b30a-5f00-f168e513840c.htm\u0000150","gmp_lib Fields\u0000html/b4507d49-5a58-a25b-6ae3-ac7e599caab1.htm\u000082","gmp_lib.gmp_randseed Method\u0000html/b31d5778-362b-b75f-40cc-4c8280ca889c.htm\u0000548","mp_exp_t Implicit Conversion (UInt16 to mp_exp_t)\u0000html/94f00d9c-cc2e-8ce7-56e5-f827238651cd.htm\u0000140","gmp_lib.mpn_sec_mul_itch Method\u0000html/b07466c5-6249-332d-e89b-aeb3675970ff.htm\u0000264","char_ptr Fields\u0000html/b32f2955-fb82-d5d4-3b3d-7dcd95a5d305.htm\u000038","gmp_lib.mpn_tdiv_qr Method\u0000html/9fe90631-f519-1cf3-5a20-701d2bae1d0d.htm\u00001086","gmp_lib.mpz_legendre Method\u0000html/b5936979-01aa-1cd8-20de-d6386368e234.htm\u0000485","gmp_lib.mpz_cdiv_r_ui Method\u0000html/af797947-8f84-320e-d1cd-ba578b26cef3.htm\u0000682","size_t.Equals Method (size_t)\u0000html/b08a01e0-6ae7-c9db-4d46-9fdeadaca5ed.htm\u0000161","ptr(T) Methods\u0000html/b390b506-1cff-5bd4-fcf5-a135127497dc.htm\u0000154","gmp_lib.mpn_scan1 Method\u0000html/95c5a467-0bfe-337e-f6ca-657cf8c19eb1.htm\u0000422","gmp_lib.mpf_set_prec_raw Method\u0000html/b456f637-83f4-9d4f-18c5-052d77fbf981.htm\u0000849","size_t Explicit Conversion (size_t to Byte)\u0000html/b60d2b4d-e77b-2a6a-bc12-9bba19450de7.htm\u0000142","gmp_lib.mpz_fits_sint_p Method\u0000html/a066df5a-c312-3b00-6092-6f914c3ee248.htm\u0000384","gmp_lib.mpz_tdiv_r_ui Method\u0000html/a58b3e42-f5e9-42d3-e71a-2a6f68dec3a9.htm\u0000679","FILE.GetHashCode Method\u0000html/b6911fef-883d-ec11-c2ad-1ff1ff565601.htm\u0000121","mp_limb_t.Equals Method (mp_limb_t)\u0000html/a1075491-112f-885c-7097-2745d8c251a2.htm\u0000161","gmp_lib.mpq_clear Method\u0000html/b69da354-160b-602a-4cc4-faf7ca423186.htm\u0000376","gmp_lib.mpz_fdiv_q Method\u0000html/b0d00a52-e539-c5f7-7d6d-ab202e72ad98.htm\u0000686","mp_exp_t Explicit Conversion (mp_exp_t to Byte)\u0000html/a5c30e13-40af-5fb4-97fa-75f4653eccee.htm\u0000142","gmp_lib.mpz_mfac_uiui Method\u0000html/b4ff3a9e-3ab5-689f-7a80-b61dad2ea125.htm\u0000424","gmp_lib.mpq_neg Method\u0000html/b6bd5187-99bb-c6b5-d871-b163fa0f7e0e.htm\u0000263","gmp_lib.mpn_perfect_square_p Method\u0000html/a5dfd9bc-f86b-8a3b-69fc-8d2d5dea30ae.htm\u0000411","mpf_t.ToIntPtr Method\u0000html/b77413f7-f862-7996-838a-f510fc3f69ed.htm\u0000117","gmp_lib.mpz_fdiv_r_2exp Method\u0000html/b0f120a7-a215-fbff-1138-bac5df8d741c.htm\u0000638","gmp_lib.mpz_nextprime Method\u0000html/88f2d84b-105b-f882-ac55-54a2b6aea39d.htm\u0000478","gmp_lib.mpf_swap Method\u0000html/b77c0292-518a-64d8-4b4e-0dd3c0cb801f.htm\u0000605","ptr(T) Constructor (T)\u0000html/b7987d45-5188-14f6-7ac7-bbe14184971b.htm\u0000128","gmp_lib.mpz_cmp_d Method\u0000html/bb37470f-5f40-4f6d-01d9-4e40446782a3.htm\u0000447","gmp_lib.mpn_sub_n Method\u0000html/b104184e-cf49-dbdb-764a-9dee5cf7b2fd.htm\u0000848","mp_bitcnt_t Operators and Type Conversions\u0000html/bee91f05-75c7-52c6-18ae-eb792710655d.htm\u0000286","mp_exp_t Explicit Conversion (mp_exp_t to UInt64)\u0000html/bb3fdf5b-8b0e-e922-a1bd-cd337a89f971.htm\u0000143","mp_bitcnt_t Explicit Conversion (mp_bitcnt_t to UInt16)\u0000html/b195041a-f22f-4f68-fba0-58479ec4158e.htm\u0000142","gmp_lib.mpn_add Method\u0000html/b9df04c4-224e-f2ad-8e90-fbb3b30bd76d.htm\u0000882","gmp_lib.gmp_sprintf Method\u0000html/8916c18b-a745-2699-2f0a-035cf62dd051.htm\u0000768","gmp_lib.mpn_andn_n Method\u0000html/b8b6d088-3330-5073-dc17-18ea23b0fc14.htm\u0000685","mp_exp_t Methods\u0000html/8968de81-b069-4c5d-e694-8aad8a2c3cdb.htm\u0000124","gmp_lib.mpn_sec_div_qr_itch Method\u0000html/b9e1a8f8-5156-ca69-337b-e67c2fd851f7.htm\u0000264","mp_exp_t.Equals Method (Object)\u0000html/b91d6398-e5f7-0ee9-e982-4ec2e009d0bc.htm\u0000180","mp_limb_t Constructor\u0000html/89d25f98-71ed-79b0-9b85-7cb9fcbab79d.htm\u0000125","gmp_lib.mpn_mul_1 Method\u0000html/b819fb3b-5d3e-ff23-1687-0e71af684bd7.htm\u0000891","gmp_lib.mpn_rshift Method\u0000html/bb46ebe4-c002-8769-19ed-136a86e87134.htm\u0000726","gmp_lib.mpq_set_si Method\u0000html/ba898f37-20d0-a5cd-eff1-0663f18220dd.htm\u0000516","mp_limb_t Structure\u0000html/bf1f694d-f9b2-6413-12e5-ebae603d5b49.htm\u0000533","mp_size_t.Equals Method (mp_size_t)\u0000html/b93a08cc-4dfe-0c34-c1ac-25344489f2d3.htm\u0000161","mp_bitcnt_t Implicit Conversion (mp_bitcnt_t to Int64)\u0000html/b9af7417-7e72-7f81-8433-2e231271f9b6.htm\u0000142","gmp_lib.mpf_set_q Method\u0000html/bd669b1e-a941-2e35-7c29-29a5b5ff5e3a.htm\u0000491","gmp_lib.mpq_cmp_z Method\u0000html/bc33b7de-0deb-669e-0bb7-6cd1090f4aea.htm\u0000537","gmp_lib.mpz_random2 Method\u0000html/cd88d27d-fb03-9e74-e353-4f0df7a38a96.htm\u0000472","gmp_lib.gmp_randseed_ui Method\u0000html/c5f4e595-de6c-a555-426d-6cb8f429a960.htm\u0000507","gmp_lib.mpn_nior_n Method\u0000html/c7d8bbe3-23cd-3460-be24-3a3ac3b28cf4.htm\u0000690","gmp_lib.mpf_get_str Method\u0000html/bad56282-fbca-6e3b-03c8-085cff07eed8.htm\u0000934","mp_bitcnt_t.Equals Method\u0000html/cfedc4a1-b264-82a8-cf48-a6416e4afce7.htm\u000069","FILE.Equality Operator\u0000html/cdb5f955-23ce-e22d-5090-d137153e866f.htm\u0000189","size_t Explicit Conversion (size_t to UInt32)\u0000html/d00d45f6-e184-7a72-2c0e-e2b0d39a40c7.htm\u0000142","mpq_t.ToIntPtr Method\u0000html/ce76ca4d-3aab-d682-1f85-aa95ce7d43a9.htm\u0000113","gmp_lib.mpz_urandomb Method\u0000html/c5fc473c-b8dc-8053-4199-e80d58a05230.htm\u0000590","gmp_lib.mpz_tdiv_r_2exp Method\u0000html/c8216c67-1e74-82d0-6ca0-f24d07045ca8.htm\u0000638","mpz_t Implicit Conversion (String to mpz_t)\u0000html/d07ddfe6-a0d0-51e7-180c-481fe678fc38.htm\u0000169","mp_base Properties\u0000html/c65a20b0-ddd8-db62-1d34-19bf1a71ce8c.htm\u000050","gmp_lib.mpf_fits_ulong_p Method\u0000html/d1b172bb-9c87-c255-a736-4b8ef1f6a5fe.htm\u0000404","gmp_lib.mpf_cmp_si Method\u0000html/d9d29633-42c7-fb1c-cdee-3b7993f45653.htm\u0000440","mp_size_t.GetHashCode Method\u0000html/c82e8cd1-5053-7e58-3b57-c20583dcc5e7.htm\u0000121","gmp_lib.mpz_fib2_ui Method\u0000html/c0f8ab02-55db-8a6b-705d-6fa700d54545.htm\u0000635","mp_exp_t Implicit Conversion Operators\u0000html/c7574415-f402-d74d-8dfc-c4ec2f893a5f.htm\u0000123","gmp_lib.mpf_sgn Method\u0000html/d229629f-3bba-817b-d9a3-6f00271e1da7.htm\u0000403","gmp_lib.mpz_submul Method\u0000html/ce7d559a-3772-41c0-912f-9ab218f4d98c.htm\u0000638","mp_bitcnt_t Implicit Conversion (mp_bitcnt_t to UInt32)\u0000html/c897167e-f92f-0785-bda4-0f40d89fe35a.htm\u0000142","gmp_lib.free Method (void_ptr)\u0000html/c10cea6f-22cd-f84c-c11a-5924ba0b0ee7.htm\u0000141","gmp_lib.mpz_get_si Method\u0000html/da585eac-be2c-38ea-8be5-90c5be95ae86.htm\u0000437","gmp_lib.mpf_clears Method\u0000html/bfb87570-3b2e-079a-1528-3746424bbdef.htm\u0000498","gmp_lib.free Method (char_ptr)\u0000html/d3ad552c-4d46-029e-9eeb-44d8abb800e2.htm\u0000141","void_ptr Methods\u0000html/e267ef2f-54a1-a3f1-441f-0655b542bf55.htm\u0000148","gmp_lib.ZeroMemory Method\u0000html/e3d53be6-a0ad-fb21-5381-ff688f5984a6.htm\u0000188","mp_size_t Implicit Conversion (Byte to mp_size_t)\u0000html/e2817889-195b-d443-500d-2568ebfefe4f.htm\u0000140","mp_base._mp_d Property\u0000html/db55f1a9-cd4c-b7e9-c831-4391c0497ef7.htm\u0000379","gmp_lib.mpf_add Method\u0000html/c19999f1-01ee-a3fe-dc4d-2a459e73492d.htm\u0000657","mp_exp_t Operators and Type Conversions\u0000html/d0d07662-13f1-e033-9619-1c9f89c37939.htm\u0000286","gmp_lib.mpz_2fac_ui Method\u0000html/d479f2da-ecf9-c9d6-5cc7-66eb8b5ba16b.htm\u0000380","gmp_lib.mpz_cmp_ui Method\u0000html/bfe022c5-95d3-45d7-0c6f-97167a9a0af2.htm\u0000409","gmp_lib.mpz_sub_ui Method\u0000html/e3e3f2ce-f3d8-5321-37a5-de65b6c2a30d.htm\u0000548","mp_exp_t Constructor\u0000html/d4cd9f0b-9f54-1f1d-6a27-a0ce3122249c.htm\u0000123","size_t.ToString Method\u0000html/e465d040-0d35-f8c8-51db-c56b3d14b4c8.htm\u0000124","gmp_lib.mpz_lcm Method\u0000html/db614763-a13e-6456-d52b-9f567be7e776.htm\u0000598","gmp_lib.mpz_invert Method\u0000html/e3072efb-05a9-947c-5532-6d806c157e4a.htm\u0000711","size_t Operators and Type Conversions\u0000html/c27b5f76-606f-b512-9424-8e74cea9f6da.htm\u0000286","gmp_lib._mpz_realloc Method\u0000html/c9cb6a67-59b8-5c03-f31d-f252441c53f6.htm\u0000710","mp_exp_t.Equals Method (mp_exp_t)\u0000html/c349463b-04b6-167b-b8f7-9f117789577d.htm\u0000161","gmp_lib.mpn_sec_sqr Method\u0000html/bfe1e9b5-6fc1-95f2-d5b6-137fe87c071a.htm\u0000813","gmp_lib.mpz_init_set_str Method\u0000html/d5af3442-ab5b-08e2-9398-0b6f04506c16.htm\u0000589","gmp_lib.mpz_inits Method\u0000html/de0b7cf7-1826-55f3-379d-41a6ef2d0991.htm\u0000472","gmp_lib.mpq_init Method\u0000html/dbf3d252-fd6d-455f-2ba7-4091845b86a7.htm\u0000436","gmp_lib.gmp_vscanf Method\u0000html/e5060da5-cafd-67e7-f18f-3a9d3c2aba7d.htm\u0000753","mp_bitcnt_t.Equality Operator\u0000html/c0825a57-1ba5-e1d1-3fa9-9c43008c1ada.htm\u0000189","allocate_function Delegate\u0000html/dfe3609d-cc50-e357-4254-e3a8e2847f07.htm\u0000149","gmp_lib.mpz_tdiv_qr_ui Method\u0000html/d5b95352-7b5e-881b-136a-b78fd8e033ff.htm\u0000797","gmp_lib.mpf_init_set_si Method\u0000html/dc1406fd-4ca4-70d3-dc83-bd40b955564a.htm\u0000430","gmp_lib.gmp_vasprintf Method\u0000html/bd7a38bd-df52-4b0f-36d4-eb539767d89f.htm\u0000701","gmp_lib.mpz_even_p Method\u0000html/e6012778-c71b-b078-2ef3-9f9db90f1769.htm\u0000381","gmp_lib.gmp_fprintf Method\u0000html/e3abec5c-9d83-babc-a020-ca4817962a21.htm\u0000697","gmp_lib.mpz_export Method\u0000html/c9d371c8-8c16-77a3-2c47-8edae05276c5.htm\u00001507","void_ptr.Inequality Operator\u0000html/bd89f9a0-7e6f-d1e7-46b3-051bfbe290f4.htm\u0000191","gmp_lib.mpf_set_z Method\u0000html/d60489f8-91f8-ea00-d29c-a52449e712da.htm\u0000479","size_t Implicit Conversion (UInt64 to size_t)\u0000html/c9d426b1-7505-f34c-5122-7ccd2571f577.htm\u0000141","gmp_lib.mpz_init Method\u0000html/dc2f13ec-ac21-1196-0a1d-c574578b1f24.htm\u0000375","gmp_lib.mpz_fits_sshort_p Method\u0000html/e07f3328-a28c-c75c-10a6-f21d05e6aec0.htm\u0000384","mp_ptr Constructor (Byte[])\u0000html/be2f5733-8c21-c6e9-c4be-ca5f0b0ebba9.htm\u0000187","mp_base Methods\u0000html/dc319ce0-0560-799e-9187-8445d98b802b.htm\u0000150","mp_size_t Constructor\u0000html/be71a625-32c1-841d-0915-f0771323d00a.htm\u0000123","gmp_lib.mpq_set_str Method\u0000html/e98ec3cf-b539-8024-c401-ecd24bd43662.htm\u0000642","mp_size_t Explicit Conversion (UInt32 to mp_size_t)\u0000html/edf58344-c7ce-6c94-dea2-e07f06eb7987.htm\u0000140","gmp_lib.mpz_remove Method\u0000html/d6721058-8a6f-9b20-2a5f-8ffd83cc2a2e.htm\u0000636","mp_exp_t Structure\u0000html/e6a17880-791f-37d4-4942-cf26ce7d4cbf.htm\u0000511","mpq_t.ToString Method\u0000html/e9fce326-9ff5-0bbc-87d7-53ace305f107.htm\u0000122","mp_limb_t.Inequality Operator\u0000html/be93bccd-2cad-322c-e211-5523de89b567.htm\u0000191","gmp_lib.mpf_sub_ui Method\u0000html/ca339303-b509-db06-c875-3aac3edec5dd.htm\u0000584","size_t Implicit Conversion (UInt32 to size_t)\u0000html/e76254b7-0a0e-d726-a1a2-ebc21dab1c96.htm\u0000140","gmp_lib.mpn_cnd_sub_n Method\u0000html/b82bad6a-f8f0-db53-a6d3-ed6002046257.htm\u0000975","gmp_lib.mpz_tdiv_ui Method\u0000html/eea23315-8275-7472-44b0-94b9a05a6657.htm\u0000550","gmp_lib.mpn_sec_invert_itch Method\u0000html/ec24a122-714e-5b6f-9872-95fd5fda54ea.htm\u0000216","gmp_lib.mpf_cmp Method\u0000html/be9e6a25-83fb-49c2-949a-b8642a8234f5.htm\u0000524","gmp_lib.mpz_perfect_power_p Method\u0000html/d7722641-e3ea-336d-63f3-dc48f786e376.htm\u0000449","mp_exp_t Implicit Conversion (mp_exp_t to Int64)\u0000html/e7a5fd85-46d5-46ed-b943-3c245fae350a.htm\u0000142","mp_limb_t Explicit Conversion (Int16 to mp_limb_t)\u0000html/b88446f7-b9cf-5692-d4fe-7b809ef197eb.htm\u0000139","gmp_lib.mpq_add Method\u0000html/ca6a2024-43ea-fb4e-245e-12e2e01e4ebd.htm\u0000296","mp_bitcnt_t Explicit Conversion (mp_bitcnt_t to Int32)\u0000html/ecccb4d7-41db-d565-2551-4c15730c6d2f.htm\u0000141","mp_size_t.Inequality Operator\u0000html/d7d60484-ecc2-8e26-1dac-de2617ab1867.htm\u0000191","gmp_lib.mpz_cmp Method\u0000html/eea958f4-5951-38f2-05ba-3870cefb3842.htm\u0000492","gmp_lib.mpn_sqrtrem Method\u0000html/ee31871c-38bd-fccc-77f5-e76909dd7a79.htm\u00001110","gmp_lib.mpz_fits_slong_p Method\u0000html/cad028df-c3f1-12b6-d8dd-56c4968730e4.htm\u0000384","gmp_lib.mpz_tdiv_r Method\u0000html/beb982a6-fa8e-6a0f-409a-bce1fddb6002.htm\u0000699","gmp_lib.mpf_get_si Method\u0000html/d948e832-ee71-628a-6a7b-766138afff62.htm\u0000435","mp_ptr Constructor (mp_size_t)\u0000html/e0c0acc3-41cd-cb7d-68e7-3bf8dc5039d4.htm\u0000148","mp_ptr Constructor (UInt32[])\u0000html/cad424b2-4a92-fda9-45dd-243ef9e5f321.htm\u0000189","FILE.Equals Method (Object)\u0000html/c35318b5-343e-5f6f-2a46-89cb3019121c.htm\u0000180","gmp_lib.mpn_cnd_swap Method\u0000html/f0985ccc-17da-8a0b-066c-53df9b1921a1.htm\u0000794","gmp_lib.mpz_ui_kronecker Method\u0000html/d9715b1a-6092-83e6-d7f3-6cfbb4adb143.htm\u0000514","void_ptr.Equals Method (void_ptr)\u0000html/c39c5883-0cbc-86ee-d3a6-be3a95f8cadc.htm\u0000161","mp_ptr Constructor (UInt64[])\u0000html/ef5be106-0301-8122-c640-70bda121b879.htm\u0000186","gmp_lib.mpn_mul_n Method\u0000html/ee321a9a-852a-993e-f602-72ff2af02ff6.htm\u0000876","gmp_lib.mpn_hamdist Method\u0000html/caf28774-7b13-0802-858c-a49970d7aa55.htm\u0000512","mp_limb_t Explicit Conversion (mp_limb_t to Int16)\u0000html/c3def8a2-dda3-3951-fca6-035e9c7ec894.htm\u0000141","gmp_lib.mpq_out_str Method\u0000html/e1c059c4-4cd9-9a2b-1178-4b1a60354129.htm\u0000745","mp_size_t Explicit Conversion (mp_size_t to UInt32)\u0000html/ee84dcdc-769f-5829-0e77-99ea66f0151b.htm\u0000142","gmp_lib.mpz_millerrabin Method\u0000html/f0bda1a7-4b40-0896-4939-4dc66b256424.htm\u0000433","gmp_lib.mpf_ui_sub Method\u0000html/efbe678f-e1f3-b203-eb36-0db03ba11795.htm\u0000586","gmp_lib.mpn_divexact_by3c Method\u0000html/c40ea3de-d1be-146b-fe7a-deff566ca817.htm\u00001075","gmp_lib.mpz_bin_ui Method\u0000html/cbbdf666-7c6c-f3f3-1790-b5bb1655af87.htm\u0000562","mpf_t._mp_exp Property\u0000html/f63ee104-afaa-e0b8-ff39-f60b9a934ea3.htm\u0000228","size_t Structure\u0000html/d9761bfb-1882-59d2-e89b-c6460141f9a6.htm\u0000478","gmp_lib.mpf_get_d_2exp Method\u0000html/e1edc21e-74a0-b44c-216b-bad204b5a48a.htm\u0000611","gmp_lib.mpz_setbit Method\u0000html/f0caf821-320b-1a8b-87ff-84fcbdfd5801.htm\u0000470","gmp_lib.mpz_gcdext Method\u0000html/fae08c47-86df-9010-1827-a9fa6e48a1af.htm\u00001103","gmp_lib.mpf_set_si Method\u0000html/f059f8e4-dfc8-79fe-6455-42e227ccbc2e.htm\u0000412","gmp_lib.mpq_clears Method\u0000html/cc2693e9-1cc5-3098-f2f7-bb05c8017f62.htm\u0000506","gmp_lib.mpz_set_q Method\u0000html/f6eeca07-edf7-6915-36e4-e8a7a62333d7.htm\u0000464","void_ptr Structure\u0000html/e200d734-044d-4cc7-acc7-2333d7cf3c9a.htm\u0000262","char_ptr.Inequality Operator\u0000html/f090e7f3-7440-c789-5594-e5512076a61a.htm\u0000191","gmp_lib.mpn_sizeinbase Method\u0000html/fb2d29b4-f7e2-e3d6-6fcb-920f2e86c0d7.htm\u0000502","gmp_lib.mpz_fdiv_qr Method\u0000html/d9ab5220-69aa-8e5d-8d15-375eb27149ad.htm\u0000826","gmp_lib.mpq_mul_2exp Method\u0000html/f148f8be-dfbc-fc41-981d-0a99834f01ff.htm\u0000295","FILE.Value Field\u0000html/fb70a49d-b7b0-b8fc-83f5-0864f381cc76.htm\u000088","gmp_lib.mpq_sub Method\u0000html/e7d65cf6-2ee4-c983-62b5-4ad66f1d8599.htm\u0000296","Math.Gmp.Native Namespace\u0000html/d9c51b9f-0c54-770b-28ea-6eebd8fef368.htm\u0000223","gmp_lib.mpz_submul_ui Method\u0000html/c5a0fa06-536c-6c6f-20c7-fb014ebc6444.htm\u0000573","mpq_t._mp_den Property\u0000html/fb8c2e17-4a22-899c-77af-6d3bef099fc2.htm\u0000123","gmp_lib.mpf_random2 Method\u0000html/cc6e8f51-f396-f6c3-c6e4-9a9aeeaf2a13.htm\u0000515","gmp_lib.mpf_floor Method\u0000html/f7584918-b77f-3524-eea2-04134a2c3ba6.htm\u0000539","mp_limb_t Explicit Conversion Operators\u0000html/e2434db6-d7f3-e7d6-2bd7-04e29ba0a7a8.htm\u0000179","gmp_lib.gmp_randinit_lc_2exp_size Method\u0000html/f209112e-311a-88cd-becf-33bc3787f91d.htm\u0000417","mp_exp_t.ToString Method\u0000html/cd071eb3-c175-836d-c47a-f9c007b8738d.htm\u0000124","gmp_lib.mpz_sqrtrem Method\u0000html/e802af92-73bf-b138-dc95-a3c57eeefb66.htm\u0000649","gmp_randstate_t Class\u0000html/f7e5846d-548d-3bf3-74ac-219fde42a041.htm\u0000234","mp_ptr Methods\u0000html/f324e472-a709-9f28-6b3c-ffdeda0376bf.htm\u0000162","gmp_lib.mpz_fits_ulong_p Method\u0000html/fb9e7caf-b049-7884-b70c-185053972604.htm\u0000379","mp_limb_t.Equals Method\u0000html/f3da8743-4110-ef69-3809-3261d9304977.htm\u000069","gmp_lib.mpq_get_d Method\u0000html/f88b40d4-3da9-e2c7-4c4c-1ad868778075.htm\u0000440","gmp_lib.mpz_xor Method\u0000html/fd4c285a-e2e1-f8ba-97b3-08d4ae6a2ebf.htm\u0000658","gmp_lib.mpz_cdiv_r Method\u0000html/e8f34851-d0b2-335e-1ea5-f9129062aabf.htm\u0000703","gmp_lib.mpq_get_str Method\u0000html/f457878b-c3f5-bfe2-aaa9-7f2179332f57.htm\u0000662","size_t Explicit Conversion (size_t to Int64)\u0000html/fd60a636-df2f-3c60-40c7-b46077830f00.htm\u0000142","gmp_lib.mp_bits_per_limb Field\u0000html/f88c76a8-118a-5cbd-0df1-e30adcacb8ae.htm\u0000183","gmp_lib.free Method (gmp_randstate_t)\u0000html/f46e4103-d4c4-69c2-1363-a4cb17d9cfda.htm\u0000143","size_t Explicit Conversion (Int64 to size_t)\u0000html/e9177dc9-2049-a649-3bf2-735ed6927aae.htm\u0000140","mp_ptr.GetEnumerator Method\u0000html/f9a60366-d1e2-5565-bbc2-63d98d779e27.htm\u0000156","mp_exp_t Implicit Conversion (Byte to mp_exp_t)\u0000html/fa401922-089c-d6e0-8ef7-e9013676e9e5.htm\u0000140","gmp_lib.gmp_asprintf Method\u0000html/fe6e46c3-8464-a080-b5fc-718589320cd5.htm\u0000728","gmp_lib.mpf_reldiff Method\u0000html/f485faa1-3758-8316-f712-42e0fc2058a8.htm\u0000657","mp_bitcnt_t Explicit Conversion (mp_bitcnt_t to SByte)\u0000html/fe73a139-80df-459c-fb02-d0d9ccdd8bb5.htm\u0000142","mp_limb_t Explicit Conversion (mp_limb_t to UInt32)\u0000html/f4b3e873-d3fc-637d-d8cb-04cd63c76b6d.htm\u0000142","gmp_lib.mpf_out_str Method\u0000html/feafa6f8-9793-d704-31a8-67c2cec0c33e.htm\u0000716","gmp_lib.mpn_ior_n Method\u0000html/f4c54e3b-1c09-d01d-eb28-b7b05cf6fa70.htm\u0000680","gmp_lib.mpz_init_set_d Method\u0000html/fec3a449-96b9-64b0-f53d-0b5a3856d02d.htm\u0000396","gmp_lib.mpz_fdiv_q_2exp Method\u0000html/f56c5489-8c01-a687-fec8-a5f443738701.htm\u0000623","mp_size_t Explicit Conversion (Int64 to mp_size_t)\u0000html/fecd3260-6eb9-5e31-0266-9bb52bf9b038.htm\u0000140","gmp_lib.mpn_sqr Method\u0000html/ff9c2930-ded2-c5b6-46dd-3ff9279cdc5e.htm\u0000760","gmp_lib.mpn_divrem_1 Method\u0000html/f5c3f25d-1ad5-b3be-fc4b-280a62869912.htm\u0000903","gmp_lib.mpz_mul_si Method\u0000html/ffd27ee1-e1e3-567f-b3cf-87dec2de2c83.htm\u0000567","gmp_lib.mpq_set_f Method\u0000html/f5dc74ec-155b-2a14-3eb5-4610a8509bae.htm\u0000535","gmp_lib.mpz_lcm_ui Method\u0000html/f60dbcbd-d4f0-edcc-8f88-2de1aa375e6b.htm\u0000276"] \ No newline at end of file +["GMP Native Interface for .NET - Redirect\u0000index.html\u000018","GMP Native Interface for .NET - Search\u0000search.html\u000015","FILE Methods\u0000html/00586c66-53ac-3fe3-16a4-3ceb2f94620b.htm\u0000125","mp_exp_t Implicit Conversion (mp_exp_t to Int32)\u0000html/015f7dd6-55ab-71d0-316b-71a3f99799c3.htm\u0000141","mp_limb_t Implicit Conversion Operators\u0000html/015a8bc4-a8de-d7c7-3aac-2524de5dfd03.htm\u000095","gmp_lib.mpz_cmpabs_d Method\u0000html/011efd01-e7f0-47d8-7d1e-77888d96f0d4.htm\u0000491","mpz_t.ToIntPtr Method\u0000html/018d9747-3053-df6d-2bb3-5273ad735860.htm\u0000113","void_ptr.Equals Method (Object)\u0000html/0177c7b6-b5d5-3815-b64a-4f3a7686bf6d.htm\u0000180","gmp_lib.mpn_copyi Method\u0000html/00d8413a-b34b-5e89-193c-1bfe522710c5.htm\u0000507","gmp_lib.mpq_cmp_ui Method\u0000html/03336561-2bb9-b38f-8adb-506e0fad094b.htm\u0000492","mp_exp_t Explicit Conversion Operators\u0000html/021c96a1-51fa-2b2a-4c65-7ae3bb374c33.htm\u0000151","gmp_lib.mpf_sqrt Method\u0000html/00a7e91d-b046-f5d3-5b51-55868d87e228.htm\u0000535","gmp_lib.mpf_inits Method\u0000html/018278a0-148f-c898-5bd0-42aae4ae0069.htm\u0000407","void_ptr.Equals Method\u0000html/0521b935-27ad-ca39-ed8a-6c4b4fc51116.htm\u000069","mp_limb_t Explicit Conversion (Int64 to mp_limb_t)\u0000html/03a17ed9-19e1-9de3-0ea4-4ff3f63938a6.htm\u0000140","void_ptr.GetHashCode Method\u0000html/04ef14d3-d09c-cfcb-0cea-8984c92612f5.htm\u0000121","gmp_lib.gmp_urandomm_ui Method\u0000html/020d0663-b84b-54aa-8e2f-645ed532d175.htm\u0000395","gmp_lib.mpz_cmpabs_ui Method\u0000html/05f897c4-77dc-7735-81ca-65650f61d961.htm\u0000384","gmp_lib.mpz_kronecker_si Method\u0000html/0252e04b-b8fc-5a06-e1e2-a0cafbb44296.htm\u0000511","char_ptr Structure\u0000html/06249483-9daf-95f9-32c7-30195550bbcc.htm\u0000267","gmp_lib.mpf_set_ui Method\u0000html/060aa73e-8c00-0a6b-f569-ad198c4f0d90.htm\u0000405","mp_limb_t Explicit Conversion (Int32 to mp_limb_t)\u0000html/06428417-fb0b-82c7-4b50-99dfe28c7afb.htm\u0000139","gmp_lib.reallocate Method\u0000html/067f64f9-7014-8c6a-3c02-153c1460a1dd.htm\u0000354","gmp_lib.mpz_cdiv_q_ui Method\u0000html/05b3707d-5f48-4d76-c42a-566f3179d7f8.htm\u0000689","mp_bitcnt_t Methods\u0000html/0968b601-ff25-497d-c2eb-28487c3d29cf.htm\u0000124","gmp_lib.mpn_sec_sub_1_itch Method\u0000html/098c8787-2069-5d1e-a2f9-1f78bdcd60a9.htm\u0000207","gmp_lib.mpn_sec_div_r Method\u0000html/094ea390-8cc8-bac7-35c3-3616775736de.htm\u0000874","mp_exp_t Explicit Conversion (mp_exp_t to Int16)\u0000html/0c44ebce-9678-a295-598a-588046225af2.htm\u0000141","gmp_lib.mpn_random2 Method\u0000html/06d850ef-82b2-56f1-32ae-2f1724da3d5b.htm\u0000395","mp_size_t.Equals Method\u0000html/096397d8-2db8-7eeb-3b75-25ed0bad8379.htm\u000069","mp_bitcnt_t.ToString Method\u0000html/0dd7a5d2-ab07-87dc-79d2-d9b361bc0a34.htm\u0000124","gmp_lib.mpz_kronecker_ui Method\u0000html/07613c31-7d00-9806-1676-55f8c5a997f8.htm\u0000512","gmp_lib.mpf_init Method\u0000html/0dd846ac-56b6-3ea8-0441-12490f67fbf7.htm\u0000422","mpf_t Constructor\u0000html/0e0a10d5-52ab-1821-6fe1-97514e009418.htm\u000090","gmp_lib.mpz_ior Method\u0000html/0ccb1bab-4817-1062-242d-41c181cacf77.htm\u0000658","size_t Methods\u0000html/0777a4c0-90d5-95bc-1192-f390bfbcbc43.htm\u0000124","mpq_t Properties\u0000html/0e7e8afb-9c1f-87e4-4f01-0575c8203613.htm\u000049","mpz_t Constructor\u0000html/0fcbb911-bc5a-1b11-90c5-96babff86526.htm\u000088","gmp_lib.mpz_lucnum2_ui Method\u0000html/0cdaca8f-816e-8c22-f46b-fcf58e9e91d4.htm\u0000631","gmp_lib.mpq_sgn Method\u0000html/1176cc4e-ffda-2993-1a4a-2e0c7ed24adb.htm\u0000422","void_ptr Fields\u0000html/12a4c9d6-02cf-e913-816e-ad530e77722c.htm\u000038","mp_size_t Implicit Conversion Operators\u0000html/13c05087-b2db-4751-d548-4fa64e30f663.htm\u0000123","gmp_lib.mpn_sec_mul Method\u0000html/028e92d4-3699-77ff-e8da-9ff4c367f5b3.htm\u0000977","gmp_lib.mpn_xor_n Method\u0000html/0f01fecd-9200-982d-c331-c213f3b960a1.htm\u0000680","gmp_lib.mpf_fits_sshort_p Method\u0000html/142199e1-6aef-83d5-1986-1b1248ddc6e3.htm\u0000402","mp_exp_t.GetHashCode Method\u0000html/1443760d-18a5-f276-ec75-7b8ead9d8332.htm\u0000121","gmp_lib.mpz_fdiv_q_ui Method\u0000html/0dcf05e1-ec39-5294-c4d0-d8e0f92642e4.htm\u0000681","gmp_lib.mpz_fac_ui Method\u0000html/17280f99-d0dc-6714-12c7-be17c97c0cdb.htm\u0000376","gmp_lib.mpf_integer_p Method\u0000html/11a036ec-5052-7dc4-bdb6-10e5c92f88cc.htm\u0000412","gmp_lib.mpf_abs Method\u0000html/17731ba4-bf91-6b9b-737a-a9cc306ba17d.htm\u0000539","gmp_lib.mpz_mul_2exp Method\u0000html/18cd39f5-7c88-f557-3803-8a4a321cfb97.htm\u0000582","mp_base._mp_size Property\u0000html/178d8d44-2485-2972-fe2f-eb9848059e6f.htm\u0000120","size_t Implicit Conversion (UInt16 to size_t)\u0000html/18ef1696-938e-0932-1d55-eaced0d92464.htm\u0000140","gmp_lib.mpn_sec_add_1 Method\u0000html/1555cd52-98d2-6253-214a-d342a539bfb5.htm\u0000895","gmp_lib.free Method (void_ptr, size_t)\u0000html/19ccd2e3-05f1-d4f4-79b7-28b4f26e5768.htm\u0000227","gmp_lib.mpf_init_set Method\u0000html/17b3dc26-68af-fb0c-9923-36777e8bd87e.htm\u0000508","ptr(T) Constructor\u0000html/1b117248-4e1d-a985-2ab6-4bd8e5b3e769.htm\u000052","gmp_lib.mpq_swap Method\u0000html/11e36fbc-ffc4-46df-50b7-2b07684c1755.htm\u0000604","gmp_lib.mpq_canonicalize Method\u0000html/19d53697-65f1-2df5-62f3-988182af0c88.htm\u0000242","mpz_t._mp_size Property\u0000html/15e1db51-a27c-7eee-03dd-5c6457889be1.htm\u0000167","mp_size_t Explicit Conversion (mp_size_t to UInt16)\u0000html/1babcb9f-d828-81fb-30d5-296cccd21929.htm\u0000142","gmp_lib.mpz_out_raw Method\u0000html/053b54b6-f646-f0aa-ddaf-00c494a6d5ef.htm\u0000899","mpz_t Type Conversions\u0000html/1cc35e31-9ab0-7239-d05b-1e2a426338bc.htm\u000046","gmp_lib.mpq_set_d Method\u0000html/1a7c5874-9132-2c43-e407-df1eead74fab.htm\u0000430","mp_bitcnt_t Structure\u0000html/1b2b1d64-20c1-7a64-0278-d9ff58ee9cc3.htm\u0000528","gmp_lib.mpn_sec_div_r_itch Method\u0000html/1cefa5f6-adc3-30a6-b3bd-cb6a7543cb00.htm\u0000254","FILE Structure\u0000html/1bcc07bd-8fee-1107-844c-a5ff10e7660c.htm\u0000234","gmp_lib.mpn_iorn_n Method\u0000html/1b76ffd8-d7f4-5309-3b10-e7e0c418706a.htm\u0000686","mp_limb_t.GetHashCode Method\u0000html/1bd10056-1935-a793-4930-68ebfaf82cd1.htm\u0000121","mpf_t Implicit Conversion (String to mpf_t)\u0000html/058e477a-0126-b073-ee83-77ed89a58351.htm\u0000195","gmp_lib.mpf_set_d Method\u0000html/1d0c5734-9f0d-ec6b-c540-4379f832b0ca.htm\u0000418","gmp_lib.gmp_vsscanf Method\u0000html/1a966758-12dc-4da3-cb22-b3b3d788ba02.htm\u0000779","mp_limb_t Methods\u0000html/1e30b810-66a8-52cc-8501-8bdda18bfaa7.htm\u0000124","gmp_lib.mpn_sec_sqr_itch Method\u0000html/1ba86b5b-8ace-b6ee-99c5-32a8d7648519.htm\u0000199","mp_bitcnt_t Explicit Conversion (mp_bitcnt_t to Byte)\u0000html/1d378f21-73e1-43e7-e286-5a6c0cb101ba.htm\u0000142","size_t Explicit Conversion Operators\u0000html/1f76425d-66dd-c23e-2032-d6f1f2337813.htm\u0000179","gmp_lib.mpz_getlimbn Method\u0000html/1dfbf5da-f4c2-bbab-5708-3b31d40e4f16.htm\u0000678","gmp_lib.mpz_set_si Method\u0000html/1ffac718-d814-0556-ea54-dbf1d676e0cc.htm\u0000409","gmp_lib.mpf_get_default_prec Method\u0000html/1ca4ec7e-b5d1-3b51-8341-5a345990e62d.htm\u0000312","gmp_lib.mpn_get_str Method\u0000html/1e9cacd7-32b3-7f3b-659a-efdb3e064092.htm\u0000810","char_ptr.ToString Method\u0000html/1eedfa7e-7135-6b5d-e395-9a6b90fab236.htm\u0000128","gmp_lib.mpz_sqrt Method\u0000html/1e1204c7-2d33-c9d1-4f4e-c36215f5ebed.htm\u0000485","gmp_lib.mpf_fits_uint_p Method\u0000html/201b1b12-bb0c-6a53-c6d5-e75db73f8470.htm\u0000403","gmp_lib.mpq_abs Method\u0000html/1f2250c3-a1b8-db12-19e4-9946e39eb64c.htm\u0000265","gmp_lib.mpn_divexact_1 Method\u0000html/1d6343a5-d42c-c362-714e-e10730e6a6d5.htm\u0000798","mpq_t Type Conversions\u0000html/25bb755c-4475-9382-5601-dd83fda02afe.htm\u000046","gmp_lib.mpf_mul_2exp Method\u0000html/2041c81e-218b-b514-5a7b-5ee315711bc9.htm\u0000585","size_t Explicit Conversion (Int32 to size_t)\u0000html/25c0e500-2d89-f414-530f-a0a53b57766f.htm\u0000139","gmp_lib.mpz_tstbit Method\u0000html/20a476ea-9a38-9ef3-1e23-da2b2eba69a9.htm\u0000462","gmp_randstate_t Constructor\u0000html/20a4edb9-f361-6367-9965-64b0f7aeddaa.htm\u0000110","gmp_lib.mpz_realloc2 Method\u0000html/1de9b70a-1d21-8168-e41c-1c259f64091a.htm\u0000693","gmp_lib.mpn_xnor_n Method\u0000html/25d623c3-ee22-4b83-1161-3f98ce698012.htm\u0000688","gmp_lib.gmp_sscanf Method\u0000html/279d21b9-bd04-522e-0759-d1add6fe6fae.htm\u0000779","gmp_lib.gmp_randinit_lc_2exp Method\u0000html/21fdbc76-a0de-1f3a-195f-a5ae0cb3d1da.htm\u0000550","gmp_lib.mpz_random Method\u0000html/2b0da39e-331c-878e-26c7-bd6d81c7f8e0.htm\u0000460","mp_bitcnt_t Explicit Conversion (UInt64 to mp_bitcnt_t)\u0000html/22aee6e2-0a8a-0514-baa1-2f6882b60174.htm\u0000141","gmp_lib.mpn_gcd Method\u0000html/24ecd2d5-422f-e538-fd43-94b749652393.htm\u0000773","gmp_lib.allocate Method\u0000html/2c68671c-cd5c-e2ec-52a2-65b0ca31c3d1.htm\u0000174","gmp_lib.mpz_perfect_square_p Method\u0000html/260d6edf-ce02-26f7-d704-ad0d11604e61.htm\u0000402","mpq_t Constructor\u0000html/2c2936bd-f40b-391b-de4c-e5111654993b.htm\u000088","size_t.Equals Method\u0000html/255140dc-27a7-cc9d-df9a-dc4d03c9a8e4.htm\u000069","mp_size_t Implicit Conversion (mp_size_t to Int64)\u0000html/289280eb-add9-3787-a6bf-8e9766849efd.htm\u0000142","free_function Delegate\u0000html/2c9876e2-a0f5-14c6-5069-1a9d50b89185.htm\u0000159","char_ptr Constructor\u0000html/255d9de2-3cf6-50f3-3276-a4332896da07.htm\u0000143","char_ptr.Equals Method\u0000html/2d2c429f-5828-694d-2ad7-9d13e5c412b3.htm\u000069","mp_exp_t Explicit Conversion (mp_exp_t to SByte)\u0000html/2c30c503-671c-e6f1-38a8-3a42f51f8019.htm\u0000142","gmp_lib.mpz_cdiv_ui Method\u0000html/290eb509-85df-a0cc-86f8-ac4e6f5d730a.htm\u0000551","gmp_lib.mpz_init_set Method\u0000html/2c37941c-dee7-0d74-7889-3fa6c20bab6a.htm\u0000475","gmp_lib.mpq_denref Method\u0000html/2d93abcb-e73f-fe40-a50b-395a0bf6a4fc.htm\u0000474","mp_bitcnt_t Explicit Conversion (Int16 to mp_bitcnt_t)\u0000html/29b5075a-d6d3-6fe8-5125-d679317b1022.htm\u0000139","mp_exp_t Implicit Conversion (SByte to mp_exp_t)\u0000html/2f9a1c6d-82f4-6ef2-476a-8231d6b7d497.htm\u0000140","mp_bitcnt_t.Equals Method (mp_bitcnt_t)\u0000html/306b1c06-9439-c811-b7b9-42777ca691e6.htm\u0000161","gmp_lib.mpz_divexact Method\u0000html/2ddc32dc-4ee3-18e9-dd3d-7e64c3304e1e.htm\u0000620","gmp_lib.mpn_cnd_add_n Method\u0000html/27902901-3a7d-b5b3-d3fc-3900f754bff1.htm\u0000975","gmp_lib.mpz_congruent_p Method\u0000html/2ff1eb0a-f399-2ad2-f7d1-3fb51dceac10.htm\u0000688","mp_limb_t Explicit Conversion (SByte to mp_limb_t)\u0000html/3006d511-ecd7-0e95-44e1-b9effd406cbf.htm\u0000140","gmp_lib.mpn_zero_p Method\u0000html/2e469258-d5e3-da86-aebe-025b92d7cf73.htm\u0000387","mpf_t Methods\u0000html/2583789b-09c3-0f9a-fbf9-4d362bd9129a.htm\u0000163","gmp_lib.gmp_vsnprintf Method\u0000html/300c388f-ba1c-0ba3-64fd-e7aafb39dcdb.htm\u0000845","mp_size_t Explicit Conversion (mp_size_t to Int16)\u0000html/339354f8-0924-d332-2217-0b06b81f5e5a.htm\u0000141","gmp_lib.mpz_root Method\u0000html/279877e1-b8d0-f52c-16ba-b2e38e671437.htm\u0000546","gmp_lib.mpf_mul Method\u0000html/309e6a8c-1318-2d30-a058-f119193546a0.htm\u0000665","gmp_lib.mpz_jacobi Method\u0000html/38be0c24-42ac-e0ea-9e18-e75e3bda2a1e.htm\u0000472","gmp_lib.mpn_add_n Method\u0000html/339edb73-5781-7d73-97b6-9b73451a698f.htm\u0000902","gmp_lib.mpz_mul Method\u0000html/3523bf0e-75ec-6286-76a0-4685198e51f6.htm\u0000635","gmp_lib.mpq_inp_str Method\u0000html/38d3a9de-bae7-3f44-18e0-38fe450d4cba.htm\u0000837","mp_limb_t.Equals Method (Object)\u0000html/33b840cd-1b41-ad67-8956-b5811ddc6175.htm\u0000180","gmp_lib.mpz_cmp_si Method\u0000html/2e55f6fd-0083-fc85-0d42-65e472376dbe.htm\u0000414","gmp_lib.gmp_vfscanf Method\u0000html/316be139-2970-161f-ba7c-730f067b5cf3.htm\u0000960","gmp_lib.mpf_ui_div Method\u0000html/34a39f93-359c-526f-c9ad-cd7558968f1e.htm\u0000634","mp_limb_t.Equality Operator\u0000html/2e8177f2-fc95-380b-ef64-a51cf494c686.htm\u0000189","gmp_lib.mpz_get_ui Method\u0000html/3a92eddc-59f3-b42f-9921-4e1cc5700d60.htm\u0000394","mp_ptr Constructor\u0000html/33563f2c-baba-b555-20fb-9def8b70074c.htm\u0000110","gmp_lib.mpf_div_2exp Method\u0000html/352401d6-c6d1-29c1-a9f6-e5e0ed46bc86.htm\u0000592","gmp_lib.mpf_div_ui Method\u0000html/3985111a-6d13-b418-9c90-422a8e1e5b8b.htm\u0000506","gmp_lib.mpf_trunc Method\u0000html/3ac2ecd4-f154-de62-9170-b2d28f362a7e.htm\u0000540","mp_limb_t Explicit Conversion (mp_limb_t to SByte)\u0000html/3cd34dae-2d2e-5efd-cc59-e555d879812a.htm\u0000142","gmp_lib.mpz_and Method\u0000html/3e5268ed-796b-2880-93a3-8d17143f99b1.htm\u0000655","gmp_lib.mpz_limbs_finish Method\u0000html/398e3eb8-0f55-086f-a765-0a8b3c9307e0.htm\u0000388","gmp_lib.mpz_fits_uint_p Method\u0000html/3ce0cc26-e888-90f8-a517-aad88332eec0.htm\u0000383","gmp_lib.mpz_congruent_ui_p Method\u0000html/3eae225a-8db3-3b14-d862-03718f3a5548.htm\u0000538","gmp_lib.gmp_set_memory_functions Method\u0000html/3568dd4d-d565-0b12-2da2-2fed2d433257.htm\u0000852","void_ptr.Equality Operator\u0000html/3d7c5927-d163-5d46-1f0b-5c35ca116b22.htm\u0000189","gmp_lib.mpf_set Method\u0000html/3a025035-e715-0a3d-8d2d-6011430c9463.htm\u0000542","gmp_lib.gmp_version Field\u0000html/3f1b2832-ff9c-cc4a-3e85-e2ee16acc69b.htm\u0000196","gmp_lib.mpf_neg Method\u0000html/357791cb-951d-5542-ff67-c00ef5e9aadb.htm\u0000529","gmp_lib.mpz_divexact_ui Method\u0000html/3ddee65c-a067-79a3-968d-31f3d585db3b.htm\u0000547","gmp_lib.mpq_cmp Method\u0000html/3f29d5f4-13ae-cec8-ea75-6a76d00d10fc.htm\u0000550","mpq_t._mp_num Property\u0000html/3fad7a3a-76d1-7e19-0ab4-c93a4bf3655e.htm\u0000123","gmp_lib.mpn_sec_tabselect Method\u0000html/3588cf60-567a-6182-20e8-5e2836498f49.htm\u0000750","gmp_lib.mpf_inp_str Method\u0000html/3a24f5bd-0b45-8164-f27b-c2e04e35ab64.htm\u0000800","void_ptr.Zero Field\u0000html/3fce2dbc-bac6-d24f-d6d4-84454567b8f5.htm\u000094","gmp_lib.mpz_cmpabs Method\u0000html/3e06d348-8a15-691d-5889-ab3f1a4c9f73.htm\u0000532","gmp_lib.mpf_clear Method\u0000html/3a2a17ed-a64c-8716-7f65-18c661a5279f.htm\u0000394","void_ptr.ToIntPtr Method\u0000html/3e1375c2-3f44-721d-6ef3-32e49a3d7d3b.htm\u0000107","gmp_lib.gmp_get_memory_functions Method\u0000html/37510828-012a-9e6a-7916-776acfd8f1f9.htm\u0000449","gmp_lib.mpz_bin_uiui Method\u0000html/402dc8d2-32bd-59ad-80f3-4bd2cc000b0d.htm\u0000420","gmp_lib.mpz_set Method\u0000html/3a4e6141-0771-f9ac-2283-5e9348f86d4a.htm\u0000521","size_t Implicit Conversion (size_t to UInt64)\u0000html/4089ae7b-a5ca-3feb-37ce-f5f4e627dde7.htm\u0000143","mp_size_t Explicit Conversion (UInt64 to mp_size_t)\u0000html/43436692-e9c9-739f-aa96-be2b775dae62.htm\u0000141","size_t Explicit Conversion (size_t to Int16)\u0000html/4137f93d-8fb6-8ae8-3961-eeba189925e6.htm\u0000141","gmp_lib.mpz_scan0 Method\u0000html/3e36be2b-14ed-eb7b-0546-af6d49e983fa.htm\u0000569","char_ptr.ToIntPtr Method\u0000html/42a15292-978c-35c6-bfa3-9d5acf725ca7.htm\u0000107","gmp_lib.mpf_set_prec Method\u0000html/438e6843-fc7b-4e6f-9ac0-d97a2773b032.htm\u0000485","mpz_t Methods\u0000html/430d894e-57e0-6020-0ad7-40b74cbd969f.htm\u0000161","mp_base Constructor\u0000html/3e385e89-d6d3-27df-ec51-6580f6bea08b.htm\u000089","gmp_lib.mpq_cmp_si Method\u0000html/43cb2c87-9fab-eb9d-2f7a-140d72af7b15.htm\u0000488","mpf_t Class\u0000html/37c88d6c-8d02-2330-ad77-f20fb73d1677.htm\u0000417","gmp_lib.mpq_div Method\u0000html/433b0777-4514-5b20-7494-f0f2746fe8e5.htm\u0000296","size_t Explicit Conversion (size_t to SByte)\u0000html/44012ded-01f3-9156-80d0-0df7ee0b048c.htm\u0000142","gmp_lib.mpz_fdiv_qr_ui Method\u0000html/452a9316-f421-a65c-a9ba-254b201dc431.htm\u0000797","gmp_lib.gmp_errno Property\u0000html/4c3f1727-1891-2918-da3a-321930e883ed.htm\u0000132","gmp_lib.mpf_size Method\u0000html/4c81a27a-206c-e5da-44e9-0ac7767b3366.htm\u0000349","gmp_lib.mpf_add_ui Method\u0000html/45a76d5c-c5bf-e7f8-906a-15d290e9a50d.htm\u0000572","gmp_lib.mpz_inp_raw Method\u0000html/44097b06-123a-4c00-b17f-ab0c70ad78bb.htm\u0000729","ptr(T).Value Field\u0000html/448dfb4b-f4d7-8db7-3d44-31f3bd032771.htm\u000094","mp_ptr Class\u0000html/4609ac5e-5cf9-cd20-2fa9-8040101c165c.htm\u0000389","mpf_t Properties\u0000html/44d8440b-0daa-0393-510e-a0ace6d299f7.htm\u0000104","gmp_lib.mpz_tdiv_qr Method\u0000html/387ec1dd-15b3-4cc9-862a-e3f0a8e2cb78.htm\u0000822","gmp_lib.mpz_tdiv_q Method\u0000html/4c830876-cdf6-9d94-1ceb-24d30f873bc2.htm\u0000686","gmp_lib.mpf_sqrt_ui Method\u0000html/44e6038b-2e97-b53d-0d46-ce1fff3522d0.htm\u0000458","gmp_lib Properties\u0000html/4c8c8860-0cde-fd90-76f1-81cd6fb7a125.htm\u000041","size_t.Equality Operator\u0000html/46b18925-3e4b-f26c-ef9c-ade34e23f518.htm\u0000189","FILE Operators\u0000html/4fe7aa66-0d05-7853-360a-72c4b55b69bd.htm\u000059","mp_size_t Implicit Conversion (Int32 to mp_size_t)\u0000html/4d1fd187-6b51-f72c-b150-3cc4eb7ead18.htm\u0000139","gmp_lib.mpf_init_set_str Method\u0000html/4e30a5e0-637b-949e-a627-387a56945f7b.htm\u0000578","gmp_lib.mp_bytes_per_limb Field\u0000html/47695d57-9a89-48db-97c3-2ed03965d913.htm\u0000174","mp_limb_t Implicit Conversion (UInt16 to mp_limb_t)\u0000html/4e7a1224-4cf6-269a-82b6-8fdb83429949.htm\u0000140","gmp_lib.gmp_fscanf Method\u0000html/50306850-d92d-5038-bbcc-c452cd3c69a9.htm\u0000960","size_t Explicit Conversion (size_t to Int32)\u0000html/47fd5e17-2217-5e2f-8d68-440cfcf85179.htm\u0000141","ptr(T) Fields\u0000html/50e025ca-c11a-c1db-2233-d11f66776439.htm\u000045","gmp_lib.mpz_hamdist Method\u0000html/4dfb8bd5-8a6f-6919-7aa9-8c060d42b5d7.htm\u0000621","gmp_lib.mpf_cmp_z Method\u0000html/5236d7a8-b79f-add8-4898-997e9d6a68bf.htm\u0000515","FILE.Equals Method\u0000html/4e0b1b66-de5f-3451-d835-df0116b8c789.htm\u000069","gmp_lib.mpf_div Method\u0000html/4e876639-72f5-7659-f4a9-862639e27e1c.htm\u0000719","gmp_lib.mpz_scan1 Method\u0000html/480d1d15-b561-ac8f-b12a-f27ba075b3f2.htm\u0000569","gmp_lib.mpq_set_den Method\u0000html/52388f4c-575a-9b13-41a6-e7ec2bd0becd.htm\u0000549","gmp_lib.mpz_gcd Method\u0000html/4e14cfc4-6f8b-14f7-74df-2f4415ce6f1c.htm\u0000619","gmp_lib.gmp_randinit_set Method\u0000html/494fa261-4044-f216-7041-a55d95a26f5b.htm\u0000406","gmp_lib.mpz_probab_prime_p Method\u0000html/52ce0428-7c09-f2b9-f517-d3d02521f365.htm\u0000465","gmp_lib.mpz_addmul_ui Method\u0000html/4e93c4c4-d799-2828-5285-8a3f3ed02ad3.htm\u0000573","ptr(T) Class\u0000html/542faa00-d28a-72a2-2dd8-6c6021e683ce.htm\u0000393","mp_exp_t.Equality Operator\u0000html/4a543b73-f62d-cf04-fa49-22bc93e657e7.htm\u0000189","mp_ptr Constructor (UInt16[])\u0000html/54ac0eda-b14f-8083-16dc-6c0abe8a5e5e.htm\u0000189","gmp_lib.mpf_cmp_d Method\u0000html/4f0f115a-3956-13f7-4d6f-0157936c03bd.htm\u0000466","size_t Constructor\u0000html/4a5eee32-b03c-e613-22b1-6b4f54a95362.htm\u0000125","gmp_lib.mpz_sub Method\u0000html/53702772-53e9-ec51-c3a5-7a1912b4f2b4.htm\u0000621","mp_bitcnt_t.GetHashCode Method\u0000html/540dc183-f6ab-a0bb-d6ef-a08f5a464b78.htm\u0000121","gmp_lib.mpz_combit Method\u0000html/4a959468-7670-9303-a5e7-3f1de8f17a62.htm\u0000466","gmp_lib.mpz_kronecker Method\u0000html/54ba330f-67d3-fa30-2d5f-0480b7f4659c.htm\u0000589","mp_ptr.Size Property\u0000html/562de56d-c1a8-5f66-59dc-e2886d89bfc3.htm\u0000110","gmp_lib.mpz_divisible_2exp_p Method\u0000html/4f821e78-facb-4ea2-ab21-62d1f5049e68.htm\u0000444","gmp_lib.mpz_get_str Method\u0000html/54c1f778-6fc8-0056-6f25-26f6754645fb.htm\u0000659","gmp_lib.mpz_limbs_read Method\u0000html/4b08344c-f506-a717-4e1d-112cd19f5286.htm\u0000597","gmp_lib.mpz_clear Method\u0000html/551f8670-3080-9a92-cd50-58d09cbf77ef.htm\u0000334","gmp_lib.gmp_vsprintf Method\u0000html/56e1a610-d238-ab9f-87b5-001764290847.htm\u0000728","mp_bitcnt_t Explicit Conversion (Int64 to mp_bitcnt_t)\u0000html/56fbe432-4b26-efff-13e9-242996bfa78d.htm\u0000140","gmp_lib.mpq_get_num Method\u0000html/4f98333c-76a2-db46-cbba-97785a449450.htm\u0000600","mp_size_t Structure\u0000html/4b58a584-7a0e-b600-18fa-ebd493861eb3.htm\u0000538","gmp_lib.mpn_add_1 Method\u0000html/5562b14f-48a4-be75-2eb0-6a129cd0d5ab.htm\u0000782","gmp_lib.mpn_cmp Method\u0000html/4fcc5434-e328-6730-f46e-bd0823ec7560.htm\u0000491","gmp_lib.mpz_congruent_2exp_p Method\u0000html/4b6a07f8-2a61-d1a3-7192-f2907292bf2a.htm\u0000598","mp_bitcnt_t Implicit Conversion (UInt16 to mp_bitcnt_t)\u0000html/55809d71-2a62-422c-a7e5-955b2b62fe37.htm\u0000140","gmp_lib.mpz_roinit_n Method\u0000html/5786e0c6-2dde-406f-b86d-3df6757c80c0.htm\u0000834","void_ptr Operators\u0000html/578ac23c-2986-d809-fa1b-c9a111d0c780.htm\u000059","gmp_lib.mpz_init2 Method\u0000html/5cd3a242-93b7-49c5-b9c9-1dca02ed4662.htm\u0000493","gmp_lib.mpz_divisible_p Method\u0000html/4bafc7fe-d2a8-7cf2-b9b8-c296550b4ef2.htm\u0000557","mp_bitcnt_t Explicit Conversion (mp_bitcnt_t to Int16)\u0000html/55d30a4b-ca4f-4f4b-208a-026c54586e64.htm\u0000141","mpq_t Implicit Conversion (String to mpq_t)\u0000html/5d499247-7cb9-266f-eb4f-78bcf5768aa4.htm\u0000199","mp_size_t Implicit Conversion (mp_size_t to Int32)\u0000html/57c5f9bf-43e8-b575-90c8-23c0e366fb2d.htm\u0000141","gmp_lib.mpz_rrandomb Method\u0000html/4be917d3-47c6-cb58-d768-6276e78f0afb.htm\u0000645","gmp_lib.mpz_addmul Method\u0000html/582a0647-1482-ecd7-cc78-bd2222610e06.htm\u0000634","mp_bitcnt_t Constructor\u0000html/5846cdbc-83b9-0197-aa29-fd226641eb76.htm\u0000124","gmp_lib.gmp_snprintf Method\u0000html/61686857-e4a0-ad60-1419-2b87a79b06c1.htm\u0000865","gmp_lib.mpz_fdiv_r Method\u0000html/5dfc0ea9-a81f-bda9-356c-034395ba3c9c.htm\u0000699","mp_bitcnt_t Implicit Conversion (UInt32 to mp_bitcnt_t)\u0000html/6280cd97-b728-ab06-89e1-7181e2ab72fe.htm\u0000140","gmp_lib.mpq_mul Method\u0000html/584834ae-b1f7-d965-2586-f88d5c9b4f67.htm\u0000296","gmp_lib.mpn_and_n Method\u0000html/69ffabc9-a19c-6590-d918-fbf0710aff82.htm\u0000679","gmp_lib.mpf_cmp_ui Method\u0000html/5a168ae0-405b-7259-0853-84999876c47a.htm\u0000441","gmp_lib.gmp_vfprintf Method\u0000html/62c5f2f4-2a93-e6d2-b867-23d4f2b98af4.htm\u0000681","mp_exp_t.Equals Method\u0000html/5a3c38b8-5205-bc81-58e8-60b155c0579c.htm\u000069","gmp_lib.mpf_fits_sint_p Method\u0000html/5ea7691b-2a0f-5f25-290c-54c78e2cf3bd.htm\u0000402","mpz_t Properties\u0000html/5f492d5c-72f0-17b4-24a4-e5b58a061ef7.htm\u000086","gmp_lib.mpn_sec_invert Method\u0000html/62ffb793-b32f-e0dc-a399-f20fe708a803.htm\u0000867","gmp_lib.mpz_mul_ui Method\u0000html/5fba9944-4437-9b1c-afa0-666d87eafe39.htm\u0000568","gmp_lib.mpz_neg Method\u0000html/5a61d62c-a0f0-5e86-b6dd-8ca6414b35ed.htm\u0000494","gmp_lib.mpz_com Method\u0000html/635ddf01-9c52-0d37-202e-c560b895fb7d.htm\u0000550","gmp_lib.mpz_ui_pow_ui Method\u0000html/6101fda5-1230-66a9-5aff-5d8da426e364.htm\u0000441","gmp_lib.mpf_urandomb Method\u0000html/5a698221-639e-333b-061b-0aa3f76c38e9.htm\u0000575","mp_bitcnt_t.Equals Method (Object)\u0000html/5b4fc57b-2ab5-9b95-6c35-ec9b499a6d59.htm\u0000180","gmp_lib.mpn_perfect_power_p Method\u0000html/61401484-d06f-ab9e-110d-b46f4d0a9eba.htm\u0000389","gmp_lib.mpz_set_str Method\u0000html/6a3819df-abc1-ceb1-a5c7-87a879977b8c.htm\u0000706","mpq_t Class\u0000html/635f1879-5f85-881e-cca8-3222baf5045a.htm\u0000290","mpz_t.ToString Method\u0000html/709eb598-ee38-4031-9dc5-74a73d8f9142.htm\u0000122","mp_limb_t Explicit Conversion (mp_limb_t to Int64)\u0000html/63e2f5c3-b5bb-ebf6-3bcf-682671a0dbc3.htm\u0000142","mp_exp_t Explicit Conversion (mp_exp_t to UInt32)\u0000html/6b71bf90-ded3-6f2b-f59b-19b7e3442ef4.htm\u0000142","mp_exp_t Explicit Conversion (Int64 to mp_exp_t)\u0000html/70eabcfd-22ae-e08e-1bc5-54f8e1ccb736.htm\u0000140","size_t Explicit Conversion (SByte to size_t)\u0000html/5c1d434c-5d85-dea7-ac47-09126d92900d.htm\u0000140","gmp_lib.mpn_gcd_1 Method\u0000html/64373933-f98b-74b4-c10f-3b1a98c410bc.htm\u0000442","gmp_lib.gmp_printf Method\u0000html/5c2015f3-41d2-7b80-5309-e41ccec0baaf.htm\u0000475","gmp_lib.mpz_fits_ushort_p Method\u0000html/6b85c6a3-d6c5-d1d2-829a-af000bae687e.htm\u0000384","gmp_lib.mpz_fib_ui Method\u0000html/71884691-07d0-7bdf-c761-df9b07723735.htm\u0000445","mpf_t._mp_prec Property\u0000html/772c3bd8-b9ec-225d-3d98-e17ae89d4294.htm\u0000135","gmp_lib.mpf_get_d Method\u0000html/648fa405-45d3-506a-f6be-72642e8a7f32.htm\u0000464","mp_bitcnt_t Implicit Conversion (mp_bitcnt_t to UInt64)\u0000html/6b870324-3daa-70e6-ded7-2757f5755310.htm\u0000143","void_ptr.FromIntPtr Method\u0000html/650e9cdb-0392-1173-aba8-9a1d6fc6a694.htm\u0000148","mp_exp_t Explicit Conversion (UInt64 to mp_exp_t)\u0000html/6b879622-df00-c9b2-deba-307574416ff2.htm\u0000141","mp_bitcnt_t Explicit Conversion (Int32 to mp_bitcnt_t)\u0000html/6ba37de9-82cf-e884-2537-0d8e83b8ffa0.htm\u0000139","gmp_lib.mpf_sub Method\u0000html/718e7623-d25b-8a09-2543-745f24cd82c1.htm\u0000665","FILE.Inequality Operator\u0000html/77413435-917b-2cdc-cfde-d0891b6ede82.htm\u0000191","mp_limb_t Explicit Conversion (mp_limb_t to Int32)\u0000html/72723d8b-579c-0c0f-d5c8-868ae849457e.htm\u0000141","gmp_lib.mpz_divisible_ui_p Method\u0000html/6c026976-a6c9-6f12-6b31-c113166ea236.htm\u0000480","gmp_lib.mpz_tdiv_q_ui Method\u0000html/67fc54a2-05e7-bc3c-64f4-8c6de48fa6b6.htm\u0000690","mp_bitcnt_t Implicit Conversion Operators\u0000html/72fbcc09-5765-7f60-3897-57fec21cc9f9.htm\u0000109","char_ptr.Equals Method (Object)\u0000html/77d1beb2-2aed-58e8-dc50-bba2ff56afee.htm\u0000180","gmp_lib.mpz_add_ui Method\u0000html/7327aa92-1ab5-7553-7eee-7b5e3e61322a.htm\u0000467","mpf_t.ToString Method\u0000html/77eccd6b-888f-b3a8-0800-ead4af162af0.htm\u0000122","gmp_lib.mpf_fits_slong_p Method\u0000html/6c178e2d-a080-13b8-75b0-3fe232b46d75.htm\u0000402","char_ptr Methods\u0000html/73876566-4eec-b421-e4d6-3593e9641f0a.htm\u0000135","gmp_lib.mpz_odd_p Method\u0000html/6820d6c4-6ee1-53d7-7223-3f654a496ce4.htm\u0000381","size_t Implicit Conversion (Byte to size_t)\u0000html/6d0766fc-29bc-75e6-aa00-ed7b80fe586e.htm\u0000140","mpq_t Methods\u0000html/6871c168-60e1-5bd2-5a03-2d60f473d7b8.htm\u0000161","gmp_lib.mpn_random Method\u0000html/6d4f993a-1fd6-9db2-c0a7-0f3926863565.htm\u0000395","gmp_lib.mpz_tdiv_q_2exp Method\u0000html/746301ec-352c-9bae-ff92-8a2ed31be655.htm\u0000623","mp_size_t Explicit Conversion (mp_size_t to Byte)\u0000html/6eb39888-e104-5cdd-a22d-c1240ef748e4.htm\u0000142","gmp_lib.mpn_addmul_1 Method\u0000html/77fdf32b-986d-4df3-3c76-022e3e3fbb98.htm\u0000885","gmp_lib.mpq_set_num Method\u0000html/6885ad71-c185-1e0c-abc8-4320e12f377a.htm\u0000545","gmp_lib.mpn_com Method\u0000html/6f0c915a-514a-fce0-957b-50180f4b79a7.htm\u0000595","gmp_lib.mpq_equal Method\u0000html/7828ce92-079b-da4d-aab2-1742209287fb.htm\u0000548","gmp_lib.mpn_gcdext Method\u0000html/746d102a-5f3e-6142-b02a-63f3cac385ab.htm\u00001284","gmp_lib.mpn_mul Method\u0000html/68d3161d-2909-1909-cda7-e87949ee27ce.htm\u0000910","gmp_lib.mpn_copyd Method\u0000html/78443f19-f0c6-4a1f-1eed-a815b734e981.htm\u0000507","mp_limb_t Explicit Conversion (mp_limb_t to Byte)\u0000html/6991a24e-345d-029c-c189-ed263640928b.htm\u0000142","size_t Explicit Conversion (size_t to UInt16)\u0000html/784c4122-3a62-f338-0e4a-88b6a69a1e9e.htm\u0000142","mp_exp_t Explicit Conversion (UInt32 to mp_exp_t)\u0000html/78fdf4c2-15a1-fdab-23fa-806cdf3dc983.htm\u0000140","gmp_lib Methods\u0000html/0fa7cbf3-e8f4-6b14-d829-8aa663e77c74.htm\u00007248","mp_limb_t Implicit Conversion (Byte to mp_limb_t)\u0000html/7dbd9949-90ab-2b31-978d-9fde0a2ba7ee.htm\u0000140","gmp_lib.free Method (mp_ptr[])\u0000html/7924a2a3-75c1-0aa9-636f-4772d74a723f.htm\u0000165","gmp_lib.mpz_get_d_2exp Method\u0000html/74e22b4c-fa79-f5f9-b752-da41bd427f37.htm\u0000561","mp_limb_t.ToString Method\u0000html/7ae8e775-5b2d-4ce0-c45b-5afd1b66ac62.htm\u0000124","gmp_lib.mpz_limbs_write Method\u0000html/86ddbf69-57f6-af58-bd13-3eca06123b29.htm\u0000746","gmp_lib.mpn_sec_div_qr Method\u0000html/6f1dca2b-39f4-3acd-71fb-4f1e5a0d04e6.htm\u00001197","gmp_lib.mpz_cdiv_qr_ui Method\u0000html/7aee9fae-9d14-72be-6d0f-0f9c4a863fe5.htm\u0000801","gmp_lib.mpz_mod_ui Method\u0000html/86fd57d1-ccfa-804e-760b-bd8e7ade2176.htm\u0000643","gmp_lib.mpz_sizeinbase Method\u0000html/7dfe367e-74d3-e782-860b-2314da9c44cf.htm\u0000654","gmp_lib.gmp_urandomb_ui Method\u0000html/7b541895-53a8-b335-32de-d5b2224ff0f7.htm\u0000443","gmp_lib.mpn_divexact_by3 Method\u0000html/75f2a84e-44f3-b7cc-e6ad-392111d5b9cc.htm\u00001041","char_ptr.Zero Field\u0000html/76481715-8a8b-e739-905c-f0d83de503ab.htm\u000094","gmp_lib.gmp_randclear Method\u0000html/7ef82a61-e43a-78c7-a28f-8f2d0a5f59b1.htm\u0000163","gmp_lib.mpn_sub Method\u0000html/87681f32-b766-3ce2-7c08-98b2d32cb5fa.htm\u0000905","mp_size_t Implicit Conversion (UInt16 to mp_size_t)\u0000html/7c9b8744-cc4a-e2c1-659f-6da60e92bb78.htm\u0000140","mp_size_t.Equals Method (Object)\u0000html/764c23ab-f2fe-b3e4-68a4-4a27fb6dc6b0.htm\u0000180","gmp_lib.mpz_out_str Method\u0000html/6f85986d-b6a0-435d-3675-c025ef70413d.htm\u0000787","FILE Fields\u0000html/76b37dae-ecff-2bd9-2e80-002354a7dddc.htm\u000038","gmp_lib.mpn_sec_add_1_itch Method\u0000html/87bbc39f-b11a-76d9-f31d-f5dcf365a67d.htm\u0000207","size_t.GetHashCode Method\u0000html/6feeab0d-dc91-818f-ef60-2434ff3a1146.htm\u0000121","gmp_lib.mpz_init_set_ui Method\u0000html/7da3b40f-ae2c-63c5-0157-9b51d54cf6cb.htm\u0000373","mp_limb_t Operators and Type Conversions\u0000html/88234d39-a3da-db4f-71ff-17d0f2e2c7fe.htm\u0000286","gmp_lib.mpz_set_ui Method\u0000html/7daadb71-9f36-2848-86c4-ba1fba25fcfd.htm\u0000402","gmp_lib.mpz_cdiv_qr Method\u0000html/7f89c102-d1eb-2dab-0e6e-061893309c4b.htm\u0000825","gmp_lib.mpz_fdiv_r_ui Method\u0000html/772064e8-3ec1-840e-c79c-78f478321b6c.htm\u0000702","gmp_lib.mpz_limbs_modify Method\u0000html/87f5432d-aacb-57b6-b4a7-e4dc803684a4.htm\u0000743","mp_size_t Operators and Type Conversions\u0000html/884aef1a-9faa-b787-ff5e-022615bd41eb.htm\u0000286","gmp_lib Class\u0000html/3af6b34c-3242-2b75-e7c7-ab79af8a4b0f.htm\u00007412","gmp_lib.mpf_init_set_ui Method\u0000html/8d1b97c9-ef9d-303a-0fbe-e7ece7edf391.htm\u0000425","mp_limb_t Implicit Conversion (mp_limb_t to UInt64)\u0000html/880536ad-8f64-bc4a-a807-0071061ac720.htm\u0000143","gmp_lib.mpq_inv Method\u0000html/3b01109c-5b01-16d2-edd0-5ac3d5514930.htm\u0000279","gmp_lib.gmp_vprintf Method\u0000html/8031c594-b2b2-fa62-7088-00b6fe92f88e.htm\u0000455","mp_size_t Implicit Conversion (SByte to mp_size_t)\u0000html/3bab30e1-4da4-b2cd-ea9c-9f06097052e6.htm\u0000140","gmp_lib.gmp_scanf Method\u0000html/880c96b7-378e-3cdb-057e-b6eea1c9e529.htm\u0000753","gmp_lib.mpz_gcd_ui Method\u0000html/88b8d333-9c9c-de7d-8131-6d1432c14a0c.htm\u0000485","gmp_lib.mpz_set_d Method\u0000html/8d6c39e2-22d8-d0ef-219c-dc594e73b2c5.htm\u0000425","gmp_lib.mpq_set_ui Method\u0000html/915a7958-6821-bb64-468f-b0b48b351878.htm\u0000509","gmp_lib.mpn_popcount Method\u0000html/3bd9de08-5768-bb79-1e09-2953ae1483aa.htm\u0000402","gmp_lib.mpz_clrbit Method\u0000html/8812c658-675a-b564-9159-2383971747b1.htm\u0000470","size_t.Equals Method (Object)\u0000html/3c3a57f3-ab98-976d-e470-2b8da8c97b53.htm\u0000180","gmp_lib.free Method\u0000html/92160da3-b1af-e005-cb05-e3fb4dd524d8.htm\u000094","mpf_t Type Conversions\u0000html/3ca44c9f-677e-d5fa-5414-399843506633.htm\u000046","mp_ptr Properties\u0000html/9b1ae76e-d9d8-e72d-9fa6-fe8e2d833d40.htm\u000050","gmp_lib.mpz_nextprime Method\u0000html/88f2d84b-105b-f882-ac55-54a2b6aea39d.htm\u0000478","mp_exp_t Explicit Conversion (mp_exp_t to UInt16)\u0000html/92ffc71c-a4b3-4367-ba65-25b82d7e5cfd.htm\u0000142","gmp_lib.mpz_ui_sub Method\u0000html/8d80c2f9-de42-f223-595e-108f165d5746.htm\u0000546","mp_limb_t Implicit Conversion (UInt64 to mp_limb_t)\u0000html/9b49e0e1-2b6a-8d1a-eb15-0a1a17358384.htm\u0000141","gmp_lib.mpz_urandomm Method\u0000html/981cfca4-f958-045f-84b7-01717fcd88d1.htm\u0000694","gmp_lib.mpf_set_str Method\u0000html/823b356e-0731-c9ca-0b37-660b6eb9ee7c.htm\u0000825","size_t Explicit Conversion (Int16 to size_t)\u0000html/8da2a46e-34a6-f8be-270d-32fbf6424d98.htm\u0000139","gmp_lib.mpz_primorial_ui Method\u0000html/985a65cd-9a65-e8b3-580b-626b65662dd6.htm\u0000398","mp_exp_t.Inequality Operator\u0000html/931e55b9-30c1-aa94-c044-0400b5abea60.htm\u0000191","gmp_lib.mpq_div_2exp Method\u0000html/8dc5397d-96e4-74dd-cd31-0d05649ea927.htm\u0000295","mp_exp_t Implicit Conversion (Int32 to mp_exp_t)\u0000html/82a3fa70-9dcd-a931-eb3e-18095e458891.htm\u0000139","gmp_lib.mpf_ceil Method\u0000html/9b4a5f6b-3f8e-a957-ae84-303c6897aeb4.htm\u0000540","mp_size_t Explicit Conversion (mp_size_t to SByte)\u0000html/8dc5a181-8213-f87c-bd52-e77624313a9c.htm\u0000142","mpz_t._mp_alloc Property\u0000html/93206a07-9ee6-f89b-f029-f0e80982c911.htm\u0000173","gmp_lib.gmp_sprintf Method\u0000html/8916c18b-a745-2699-2f0a-035cf62dd051.htm\u0000768","gmp_lib.mpf_mul_ui Method\u0000html/99a405b5-c051-9905-cf57-7139a0e503cf.htm\u0000580","mp_size_t Explicit Conversion Operators\u0000html/9c49193c-e71d-9d5a-ce64-27446b2d8c1b.htm\u0000151","mp_exp_t Methods\u0000html/8968de81-b069-4c5d-e694-8aad8a2c3cdb.htm\u0000124","mp_limb_t Constructor\u0000html/89d25f98-71ed-79b0-9b85-7cb9fcbab79d.htm\u0000125","gmp_lib.mpz_init_set_si Method\u0000html/9cbc8594-a202-86fd-f4e8-22635ba952b5.htm\u0000372","gmp_lib.mpz_cdiv_r_2exp Method\u0000html/8320e5d8-1df9-ca26-3054-e4b93cc0f616.htm\u0000642","gmp_lib.mpz_get_d Method\u0000html/89d8c501-6c12-9104-7e2d-be411f443b62.htm\u0000405","gmp_lib.mpz_pow_ui Method\u0000html/8e3a525d-9371-fb32-1051-e8e8fe23a63d.htm\u0000529","gmp_lib.mpz_size Method\u0000html/9a169dd9-42b0-ea59-abbe-4efc6b870c75.htm\u0000486","ptr(T) Constructor\u0000html/8e86c547-280b-afb8-98ea-aebfb3ec04b9.htm\u000094","gmp_lib.mpz_powm_sec Method\u0000html/93210ab6-2523-3130-044a-80bcf43c181d.htm\u0000800","mp_exp_t Implicit Conversion (Int16 to mp_exp_t)\u0000html/835b1c14-21a0-f806-1953-af0ddf068758.htm\u0000139","gmp_lib.gmp_randinit_default Method\u0000html/89fff39e-9dc4-4d23-9460-301ae7df92d1.htm\u0000326","gmp_lib.mpz_powm Method\u0000html/9de702f4-758b-2a4e-1025-ed5e46cc7db2.htm\u0000765","mp_base Class\u0000html/8f3c572b-8133-bccc-b838-9d22e3467898.htm\u0000269","gmp_randstate_t Methods\u0000html/94df18f5-d7f6-b30a-5f00-f168e513840c.htm\u0000150","gmp_lib.mpq_inits Method\u0000html/8ab8ea40-9723-f0c8-18f4-9558c73397b9.htm\u0000503","mp_size_t Implicit Conversion (Int16 to mp_size_t)\u0000html/8f9e1df5-6eb0-4f14-3a1f-0d40ab45aac6.htm\u0000139","mp_bitcnt_t.Inequality Operator\u0000html/8ae70a65-d9d6-0c44-b148-82f39dc474ab.htm\u0000191","mp_exp_t Implicit Conversion (UInt16 to mp_exp_t)\u0000html/94f00d9c-cc2e-8ce7-56e5-f827238651cd.htm\u0000140","gmp_lib.mpf_set_default_prec Method\u0000html/9e93d02e-f5c7-1a6f-68fe-a33d793a93e2.htm\u0000319","gmp_lib.mpz_fdiv_ui Method\u0000html/8435af1d-e5e4-3e55-1024-449ff7b56ad4.htm\u0000550","gmp_lib.mpq_set Method\u0000html/9eac8ea9-0821-09b2-8091-e6638c562c7f.htm\u0000576","gmp_lib.mpz_set_f Method\u0000html/9005bf40-4373-e879-9f0a-448b174aad67.htm\u0000464","gmp_lib.mpn_set_str Method\u0000html/9a68645a-d8d6-f4c1-f706-0dc217f9809a.htm\u0000859","gmp_lib.mpz_cdiv_q Method\u0000html/8b1e9c27-7278-6032-80c0-015b93258d96.htm\u0000686","gmp_lib.mpn_scan1 Method\u0000html/95c5a467-0bfe-337e-f6ca-657cf8c19eb1.htm\u0000422","char_ptr.GetHashCode Method\u0000html/84492195-83e7-7738-6678-c299663dd02c.htm\u0000121","mp_bitcnt_t Implicit Conversion (Byte to mp_bitcnt_t)\u0000html/906e0eef-6efb-c60b-60d8-4827d7d57bf7.htm\u0000140","gmp_lib.mpn_neg Method\u0000html/9fb96802-e56e-8fd8-cef2-b44870d09a10.htm\u0000788","gmp_lib.mpz_inp_str Method\u0000html/8b8d6ec1-3ae5-e6f3-f030-289abe5002d0.htm\u0000751","Welcome to the GMP Native Interface for .NET Library\u0000html/846f5c8a-6cba-433e-9f18-cde2ff5695cd.htm\u00001255","gmp_lib.mpn_mod_1 Method\u0000html/9aa24cc8-8cf5-4b8a-cd1b-5ded400efa50.htm\u0000608","gmp_lib.mpn_divmod_1 Method\u0000html/9074a45b-0d68-cf18-75fe-076e720a9a61.htm\u0000837","char_ptr Operators\u0000html/84b523e8-bc53-01e9-49af-f7996af73647.htm\u000059","gmp_lib.mpn_submul_1 Method\u0000html/95e10fea-31c2-e900-c5b0-f48636e1d76e.htm\u0000885","gmp_lib.mpn_zero Method\u0000html/90a57214-6596-be63-31e7-aa3186252628.htm\u0000413","mpf_t._mp_size Property\u0000html/9aa3bb30-32b3-b465-af05-9b048bb610f1.htm\u0000171","gmp_lib.mpz_popcount Method\u0000html/84bf95e4-d9d0-4ffe-f836-3650342de962.htm\u0000467","gmp_lib.mpz_powm_ui Method\u0000html/9fd28088-e353-2b5e-03e3-9c2763226ed6.htm\u0000663","mpz_t Class\u0000html/8beda7fb-bbc4-b56f-fd1f-1459377ecb3b.htm\u0000345","mp_limb_t Explicit Conversion (mp_limb_t to UInt16)\u0000html/9ab62efe-605f-58cf-588c-1e52adcfb373.htm\u0000142","gmp_lib.mpz_swap Method\u0000html/90eada10-67d0-8376-0010-d053e5043b96.htm\u0000522","gmp_lib.mpn_sec_powm_itch Method\u0000html/96652cce-b8f1-0b9e-8434-19cf9bb3eb29.htm\u0000336","size_t Implicit Conversion Operators\u0000html/a35ea6b8-48fa-4e62-bdbd-fee74574cac5.htm\u000095","gmp_lib.mpq_set_z Method\u0000html/84d256a1-cd11-3bf9-3e8c-8a7e1980315d.htm\u0000563","mp_size_t Explicit Conversion (mp_size_t to UInt64)\u0000html/969bef9e-e9a3-e671-5378-0767ee7f946b.htm\u0000143","gmp_lib.mpn_sec_sub_1 Method\u0000html/9137a632-abd2-7963-1991-85e6d753bf13.htm\u0000895","gmp_lib.mpn_tdiv_qr Method\u0000html/9fe90631-f519-1cf3-5a20-701d2bae1d0d.htm\u00001086","gmp_lib.mpn_sec_powm Method\u0000html/a38b87c5-c6ac-fa68-6d58-c45793bf933e.htm\u00001074","gmp_lib.mpz_sgn Method\u0000html/86b2033c-26c3-3889-9025-b2a638910a86.htm\u0000413","gmp_lib.mpn_perfect_square_p Method\u0000html/a5dfd9bc-f86b-8a3b-69fc-8d2d5dea30ae.htm\u0000411","gmp_lib.mpz_import Method\u0000html/8c8c1e55-275f-cff8-2152-883a4eaa163c.htm\u00001175","gmp_lib.mpz_fits_sint_p Method\u0000html/a066df5a-c312-3b00-6092-6f914c3ee248.htm\u0000384","gmp_lib.mpz_lucnum_ui Method\u0000html/a48d50bf-0432-7feb-cc41-d6bf70f78e58.htm\u0000445","gmp_lib Fields\u0000html/b4507d49-5a58-a25b-6ae3-ac7e599caab1.htm\u000082","gmp_lib.mpf_get_prec Method\u0000html/96c4a09e-3f83-00ab-30d0-78a82764b0ce.htm\u0000418","gmp_lib.mpz_rootrem Method\u0000html/a637ce7e-54d7-eba9-0c6f-c237f115b621.htm\u0000670","mp_limb_t.Equals Method (mp_limb_t)\u0000html/a1075491-112f-885c-7097-2745d8c251a2.htm\u0000161","gmp_lib.mpq_numref Method\u0000html/a4c2958c-5957-d736-6883-ce7e76b3d7a4.htm\u0000470","size_t.Inequality Operator\u0000html/a68386d1-23de-611a-543f-fbd5600f674a.htm\u0000191","mp_size_t.Equality Operator\u0000html/a6d79a12-4568-8617-30a9-e36698ef5994.htm\u0000189","gmp_lib.mpz_mod Method\u0000html/8d141ae9-4a01-bdc9-caf3-8daba3321ac1.htm\u0000632","mp_ptr.Item Property\u0000html/a7661bd2-2bcb-01c5-9833-5ab6d6305daf.htm\u0000176","mp_exp_t.Equals Method (Object)\u0000html/b91d6398-e5f7-0ee9-e982-4ec2e009d0bc.htm\u0000180","gmp_lib.mpz_si_kronecker Method\u0000html/a248732b-c4be-7e9a-4207-0049371764ff.htm\u0000513","gmp_lib.mpf_pow_ui Method\u0000html/96e2fb95-0ac0-3d24-bea9-ee5631f30347.htm\u0000562","mp_size_t.Equals Method (mp_size_t)\u0000html/b93a08cc-4dfe-0c34-c1ac-25344489f2d3.htm\u0000161","gmp_lib.mpf_set_prec_raw Method\u0000html/b456f637-83f4-9d4f-18c5-052d77fbf981.htm\u0000849","mp_bitcnt_t Implicit Conversion (mp_bitcnt_t to Int64)\u0000html/b9af7417-7e72-7f81-8433-2e231271f9b6.htm\u0000142","gmp_lib.mpz_cdiv_q_2exp Method\u0000html/a4def6d8-f8a5-f76f-4ef0-3e6e7eec23fb.htm\u0000623","gmp_lib.mpn_nand_n Method\u0000html/a7d1fd40-0415-b4af-1787-706d245ff96e.htm\u0000686","mp_bitcnt_t Explicit Conversion Operators\u0000html/a2b35c8b-a71a-2e93-2f3b-cd5f8dcb51b4.htm\u0000165","gmp_lib.mpz_abs Method\u0000html/9761cc8e-6099-7a76-5ea6-d27f617fd5d1.htm\u0000494","char_ptr.Equality Operator\u0000html/a4f47fa4-8285-638d-c094-bc9e249a49a0.htm\u0000189","gmp_lib.mpz_clears Method\u0000html/a909faa8-4939-1ba3-5647-af8836c9a291.htm\u0000468","gmp_lib.mpz_mfac_uiui Method\u0000html/b4ff3a9e-3ab5-689f-7a80-b61dad2ea125.htm\u0000424","gmp_lib.mpf_init_set_d Method\u0000html/a2c14761-1b23-0de9-3842-c2d4e3d7aac0.htm\u0000436","FILE.Equals Method (FILE)\u0000html/a964376d-5264-550c-0dc6-5ce21c48ac93.htm\u0000161","gmp_lib.mpn_add Method\u0000html/b9df04c4-224e-f2ad-8e90-fbb3b30bd76d.htm\u0000882","mp_limb_t Explicit Conversion (mp_limb_t to Int16)\u0000html/c3def8a2-dda3-3951-fca6-035e9c7ec894.htm\u0000141","gmp_lib.mpz_tdiv_r_ui Method\u0000html/a58b3e42-f5e9-42d3-e71a-2a6f68dec3a9.htm\u0000679","mp_exp_t Explicit Conversion (mp_exp_t to Byte)\u0000html/a5c30e13-40af-5fb4-97fa-75f4653eccee.htm\u0000142","gmp_lib.mpf_init2 Method\u0000html/98083eac-9993-41b2-4943-678785fce712.htm\u0000479","gmp_lib.mpn_sec_div_qr_itch Method\u0000html/b9e1a8f8-5156-ca69-337b-e67c2fd851f7.htm\u0000264","gmp_lib.mpz_fits_slong_p Method\u0000html/cad028df-c3f1-12b6-d8dd-56c4968730e4.htm\u0000384","gmp_lib.mpf_get_ui Method\u0000html/aa3fd0ea-a8b6-674b-59ff-b6d4785baed1.htm\u0000256","gmp_lib.mpn_lshift Method\u0000html/b52f3ab3-7ad3-7dde-14a2-83c81840b829.htm\u0000700","FILE.Equality Operator\u0000html/cdb5f955-23ce-e22d-5090-d137153e866f.htm\u0000189","mp_ptr Constructor (UInt32[])\u0000html/cad424b2-4a92-fda9-45dd-243ef9e5f321.htm\u0000189","mpq_t.ToIntPtr Method\u0000html/ce76ca4d-3aab-d682-1f85-aa95ce7d43a9.htm\u0000113","gmp_lib.mpn_divexact_by3c Method\u0000html/c40ea3de-d1be-146b-fe7a-deff566ca817.htm\u00001075","reallocate_function Delegate\u0000html/aa9d21b4-a929-d550-5a65-f9cbcfa7f638.htm\u0000218","gmp_lib.mpn_hamdist Method\u0000html/caf28774-7b13-0802-858c-a49970d7aa55.htm\u0000512","gmp_lib.mpz_submul Method\u0000html/ce7d559a-3772-41c0-912f-9ab218f4d98c.htm\u0000638","gmp_lib.mpq_set_si Method\u0000html/ba898f37-20d0-a5cd-eff1-0663f18220dd.htm\u0000516","gmp_lib.mpz_legendre Method\u0000html/b5936979-01aa-1cd8-20de-d6386368e234.htm\u0000485","mp_bitcnt_t Explicit Conversion (SByte to mp_bitcnt_t)\u0000html/aaf1db64-d29e-3aa5-0a72-6fe2578210de.htm\u0000140","mp_bitcnt_t.Equals Method\u0000html/cfedc4a1-b264-82a8-cf48-a6416e4afce7.htm\u000069","gmp_lib.mpz_submul_ui Method\u0000html/c5a0fa06-536c-6c6f-20c7-fb014ebc6444.htm\u0000573","gmp_lib.mpz_bin_ui Method\u0000html/cbbdf666-7c6c-f3f3-1790-b5bb1655af87.htm\u0000562","size_t Explicit Conversion (size_t to Byte)\u0000html/b60d2b4d-e77b-2a6a-bc12-9bba19450de7.htm\u0000142","mp_size_t.ToString Method\u0000html/abd28ab6-f7d7-296e-852b-ef28b35a08d8.htm\u0000124","size_t Explicit Conversion (size_t to UInt32)\u0000html/d00d45f6-e184-7a72-2c0e-e2b0d39a40c7.htm\u0000142","gmp_lib.mpf_get_str Method\u0000html/bad56282-fbca-6e3b-03c8-085cff07eed8.htm\u0000934","gmp_lib.gmp_randseed_ui Method\u0000html/c5f4e595-de6c-a555-426d-6cb8f429a960.htm\u0000507","FILE.GetHashCode Method\u0000html/b6911fef-883d-ec11-c2ad-1ff1ff565601.htm\u0000121","mpz_t Implicit Conversion (String to mpz_t)\u0000html/d07ddfe6-a0d0-51e7-180c-481fe678fc38.htm\u0000169","gmp_lib.mpz_urandomb Method\u0000html/c5fc473c-b8dc-8053-4199-e80d58a05230.htm\u0000590","gmp_lib.mpq_clears Method\u0000html/cc2693e9-1cc5-3098-f2f7-bb05c8017f62.htm\u0000506","gmp_lib.mpz_cmp_d Method\u0000html/bb37470f-5f40-4f6d-01d9-4e40446782a3.htm\u0000447","mp_base Properties\u0000html/c65a20b0-ddd8-db62-1d34-19bf1a71ce8c.htm\u000050","gmp_lib.mpz_add Method\u0000html/acb6d3d4-70ad-58be-7cb8-9edb997204b3.htm\u0000613","mp_exp_t Operators and Type Conversions\u0000html/d0d07662-13f1-e033-9619-1c9f89c37939.htm\u0000286","mp_exp_t Implicit Conversion Operators\u0000html/c7574415-f402-d74d-8dfc-c4ec2f893a5f.htm\u0000123","gmp_lib.mpq_clear Method\u0000html/b69da354-160b-602a-4cc4-faf7ca423186.htm\u0000376","mp_exp_t Explicit Conversion (mp_exp_t to UInt64)\u0000html/bb3fdf5b-8b0e-e922-a1bd-cd337a89f971.htm\u0000143","gmp_lib.mpf_fits_ulong_p Method\u0000html/d1b172bb-9c87-c255-a736-4b8ef1f6a5fe.htm\u0000404","gmp_lib.mpn_nior_n Method\u0000html/c7d8bbe3-23cd-3460-be24-3a3ac3b28cf4.htm\u0000690","gmp_lib.mpf_random2 Method\u0000html/cc6e8f51-f396-f6c3-c6e4-9a9aeeaf2a13.htm\u0000515","gmp_lib.mpf_fits_ushort_p Method\u0000html/ada84e5e-397e-e963-7d50-e260d4a104f7.htm\u0000405","gmp_lib.mpq_neg Method\u0000html/b6bd5187-99bb-c6b5-d871-b163fa0f7e0e.htm\u0000263","mp_exp_t.ToString Method\u0000html/cd071eb3-c175-836d-c47a-f9c007b8738d.htm\u0000124","gmp_lib.mpf_sgn Method\u0000html/d229629f-3bba-817b-d9a3-6f00271e1da7.htm\u0000403","mpf_t.ToIntPtr Method\u0000html/b77413f7-f862-7996-838a-f510fc3f69ed.htm\u0000117","mp_limb_t Implicit Conversion (UInt32 to mp_limb_t)\u0000html/adc5aae1-accd-ed83-fe1b-8910aa034c17.htm\u0000140","gmp_lib.free Method (char_ptr)\u0000html/d3ad552c-4d46-029e-9eeb-44d8abb800e2.htm\u0000141","gmp_lib.mpn_rshift Method\u0000html/bb46ebe4-c002-8769-19ed-136a86e87134.htm\u0000726","gmp_lib.mpz_random2 Method\u0000html/cd88d27d-fb03-9e74-e353-4f0df7a38a96.htm\u0000472","gmp_lib.mpz_tdiv_r_2exp Method\u0000html/c8216c67-1e74-82d0-6ca0-f24d07045ca8.htm\u0000638","gmp_lib.mpz_2fac_ui Method\u0000html/d479f2da-ecf9-c9d6-5cc7-66eb8b5ba16b.htm\u0000380","mp_exp_t Constructor\u0000html/d4cd9f0b-9f54-1f1d-6a27-a0ce3122249c.htm\u0000123","gmp_lib.mpz_perfect_power_p Method\u0000html/d7722641-e3ea-336d-63f3-dc48f786e376.htm\u0000449","mp_size_t.GetHashCode Method\u0000html/c82e8cd1-5053-7e58-3b57-c20583dcc5e7.htm\u0000121","gmp_lib.mpq_cmp_z Method\u0000html/bc33b7de-0deb-669e-0bb7-6cd1090f4aea.htm\u0000537","gmp_lib.mpf_swap Method\u0000html/b77c0292-518a-64d8-4b4e-0dd3c0cb801f.htm\u0000605","mp_bitcnt_t Implicit Conversion (mp_bitcnt_t to UInt32)\u0000html/c897167e-f92f-0785-bda4-0f40d89fe35a.htm\u0000142","gmp_lib.mpz_init_set_str Method\u0000html/d5af3442-ab5b-08e2-9398-0b6f04506c16.htm\u0000589","mp_size_t.Inequality Operator\u0000html/d7d60484-ecc2-8e26-1dac-de2617ab1867.htm\u0000191","gmp_lib.mpf_set_q Method\u0000html/bd669b1e-a941-2e35-7c29-29a5b5ff5e3a.htm\u0000491","ptr(T) Constructor (T)\u0000html/b7987d45-5188-14f6-7ac7-bbe14184971b.htm\u0000128","gmp_lib.mpn_sub_1 Method\u0000html/ae3c6cf7-08a0-54dd-951f-b2fe2112b8b0.htm\u0000791","gmp_lib.mpz_tdiv_qr_ui Method\u0000html/d5b95352-7b5e-881b-136a-b78fd8e033ff.htm\u0000797","gmp_lib._mpz_realloc Method\u0000html/c9cb6a67-59b8-5c03-f31d-f252441c53f6.htm\u0000710","gmp_lib.mpf_get_si Method\u0000html/d948e832-ee71-628a-6a7b-766138afff62.htm\u0000435","gmp_lib.gmp_vasprintf Method\u0000html/bd7a38bd-df52-4b0f-36d4-eb539767d89f.htm\u0000701","gmp_lib.mpf_set_z Method\u0000html/d60489f8-91f8-ea00-d29c-a52449e712da.htm\u0000479","gmp_lib.mpn_scan0 Method\u0000html/ae66c86a-cc34-81be-2a38-e841e8a36f43.htm\u0000422","gmp_lib.mpn_mul_1 Method\u0000html/b819fb3b-5d3e-ff23-1687-0e71af684bd7.htm\u0000891","void_ptr.Inequality Operator\u0000html/bd89f9a0-7e6f-d1e7-46b3-051bfbe290f4.htm\u0000191","gmp_lib.mpz_remove Method\u0000html/d6721058-8a6f-9b20-2a5f-8ffd83cc2a2e.htm\u0000636","gmp_lib.mpz_ui_kronecker Method\u0000html/d9715b1a-6092-83e6-d7f3-6cfbb4adb143.htm\u0000514","gmp_lib.mpz_export Method\u0000html/c9d371c8-8c16-77a3-2c47-8edae05276c5.htm\u00001507","mp_ptr Constructor (Byte[])\u0000html/be2f5733-8c21-c6e9-c4be-ca5f0b0ebba9.htm\u0000187","gmp_lib.mpn_cnd_sub_n Method\u0000html/b82bad6a-f8f0-db53-a6d3-ed6002046257.htm\u0000975","allocate_function Delegate\u0000html/dfe3609d-cc50-e357-4254-e3a8e2847f07.htm\u0000149","gmp_lib.mpq_get_den Method\u0000html/ae9e468d-e9ce-db55-1964-433829dfa476.htm\u0000608","mp_limb_t Explicit Conversion (Int16 to mp_limb_t)\u0000html/b88446f7-b9cf-5692-d4fe-7b809ef197eb.htm\u0000139","mp_size_t Constructor\u0000html/be71a625-32c1-841d-0915-f0771323d00a.htm\u0000123","size_t Implicit Conversion (UInt64 to size_t)\u0000html/c9d426b1-7505-f34c-5122-7ccd2571f577.htm\u0000141","size_t Structure\u0000html/d9761bfb-1882-59d2-e89b-c6460141f9a6.htm\u0000478","mp_limb_t.Inequality Operator\u0000html/be93bccd-2cad-322c-e211-5523de89b567.htm\u0000191","gmp_lib.mpz_fits_sshort_p Method\u0000html/e07f3328-a28c-c75c-10a6-f21d05e6aec0.htm\u0000384","gmp_lib.mpn_andn_n Method\u0000html/b8b6d088-3330-5073-dc17-18ea23b0fc14.htm\u0000685","gmp_lib.mpz_cdiv_r_ui Method\u0000html/af797947-8f84-320e-d1cd-ba578b26cef3.htm\u0000682","gmp_lib.mpz_fdiv_qr Method\u0000html/d9ab5220-69aa-8e5d-8d15-375eb27149ad.htm\u0000826","mp_ptr Constructor (mp_size_t)\u0000html/e0c0acc3-41cd-cb7d-68e7-3bf8dc5039d4.htm\u0000148","gmp_lib.mpf_sub_ui Method\u0000html/ca339303-b509-db06-c875-3aac3edec5dd.htm\u0000584","gmp_lib.mp_uint_per_limb Field\u0000html/af9533ce-5e67-245d-1cb3-9efb7772a6c8.htm\u0000188","Math.Gmp.Native Namespace\u0000html/d9c51b9f-0c54-770b-28ea-6eebd8fef368.htm\u0000223","mp_size_t Methods\u0000html/afc0fd4e-39a7-905a-93b9-8bd291904211.htm\u0000124","gmp_lib.mpf_cmp Method\u0000html/be9e6a25-83fb-49c2-949a-b8642a8234f5.htm\u0000524","gmp_lib.mpq_add Method\u0000html/ca6a2024-43ea-fb4e-245e-12e2e01e4ebd.htm\u0000296","gmp_lib.mpf_cmp_si Method\u0000html/d9d29633-42c7-fb1c-cdee-3b7993f45653.htm\u0000440","gmp_lib.mpz_cmp Method\u0000html/eea958f4-5951-38f2-05ba-3870cefb3842.htm\u0000492","mpq_t._mp_den Property\u0000html/fb8c2e17-4a22-899c-77af-6d3bef099fc2.htm\u0000123","gmp_lib.mpn_sec_mul_itch Method\u0000html/b07466c5-6249-332d-e89b-aeb3675970ff.htm\u0000264","gmp_lib.mpz_get_si Method\u0000html/da585eac-be2c-38ea-8be5-90c5be95ae86.htm\u0000437","mp_ptr Constructor (UInt64[])\u0000html/ef5be106-0301-8122-c640-70bda121b879.htm\u0000186","gmp_lib.mpz_fits_ulong_p Method\u0000html/fb9e7caf-b049-7884-b70c-185053972604.htm\u0000379","gmp_lib.mpq_out_str Method\u0000html/e1c059c4-4cd9-9a2b-1178-4b1a60354129.htm\u0000745","size_t.Equals Method (size_t)\u0000html/b08a01e0-6ae7-c9db-4d46-9fdeadaca5ed.htm\u0000161","mp_base._mp_d Property\u0000html/db55f1a9-cd4c-b7e9-c831-4391c0497ef7.htm\u0000379","gmp_lib.mpz_tdiv_r Method\u0000html/beb982a6-fa8e-6a0f-409a-bce1fddb6002.htm\u0000699","gmp_lib.mpz_fdiv_q Method\u0000html/b0d00a52-e539-c5f7-7d6d-ab202e72ad98.htm\u0000686","gmp_lib.mpz_xor Method\u0000html/fd4c285a-e2e1-f8ba-97b3-08d4ae6a2ebf.htm\u0000658","size_t Explicit Conversion (size_t to Int64)\u0000html/fd60a636-df2f-3c60-40c7-b46077830f00.htm\u0000142","gmp_lib.mpf_ui_sub Method\u0000html/efbe678f-e1f3-b203-eb36-0db03ba11795.htm\u0000586","gmp_lib.mpz_fdiv_r_2exp Method\u0000html/b0f120a7-a215-fbff-1138-bac5df8d741c.htm\u0000638","gmp_lib.mpf_get_d_2exp Method\u0000html/e1edc21e-74a0-b44c-216b-bad204b5a48a.htm\u0000611","gmp_lib.mpz_lcm Method\u0000html/db614763-a13e-6456-d52b-9f567be7e776.htm\u0000598","gmp_lib.gmp_asprintf Method\u0000html/fe6e46c3-8464-a080-b5fc-718589320cd5.htm\u0000728","mp_bitcnt_t Operators and Type Conversions\u0000html/bee91f05-75c7-52c6-18ae-eb792710655d.htm\u0000286","mp_bitcnt_t Explicit Conversion (mp_bitcnt_t to SByte)\u0000html/fe73a139-80df-459c-fb02-d0d9ccdd8bb5.htm\u0000142","gmp_lib.mpq_init Method\u0000html/dbf3d252-fd6d-455f-2ba7-4091845b86a7.htm\u0000436","gmp_lib.mpf_set_si Method\u0000html/f059f8e4-dfc8-79fe-6455-42e227ccbc2e.htm\u0000412","gmp_lib.mpn_sub_n Method\u0000html/b104184e-cf49-dbdb-764a-9dee5cf7b2fd.htm\u0000848","void_ptr Structure\u0000html/e200d734-044d-4cc7-acc7-2333d7cf3c9a.htm\u0000262","mp_bitcnt_t Explicit Conversion (mp_bitcnt_t to UInt16)\u0000html/b195041a-f22f-4f68-fba0-58479ec4158e.htm\u0000142","gmp_lib.mpf_init_set_si Method\u0000html/dc1406fd-4ca4-70d3-dc83-bd40b955564a.htm\u0000430","char_ptr.Equals Method (char_ptr)\u0000html/b1eefed1-412c-fcb1-29ff-34094bc8d57e.htm\u0000161","char_ptr.Inequality Operator\u0000html/f090e7f3-7440-c789-5594-e5512076a61a.htm\u0000191","gmp_lib.mpz_init Method\u0000html/dc2f13ec-ac21-1196-0a1d-c574578b1f24.htm\u0000375","mp_limb_t Explicit Conversion Operators\u0000html/e2434db6-d7f3-e7d6-2bd7-04e29ba0a7a8.htm\u0000179","gmp_lib.gmp_randseed Method\u0000html/b31d5778-362b-b75f-40cc-4c8280ca889c.htm\u0000548","gmp_lib.mpf_out_str Method\u0000html/feafa6f8-9793-d704-31a8-67c2cec0c33e.htm\u0000716","mp_base Methods\u0000html/dc319ce0-0560-799e-9187-8445d98b802b.htm\u0000150","char_ptr Fields\u0000html/b32f2955-fb82-d5d4-3b3d-7dcd95a5d305.htm\u000038","mp_limb_t Structure\u0000html/bf1f694d-f9b2-6413-12e5-ebae603d5b49.htm\u0000533","ptr(T) Methods\u0000html/b390b506-1cff-5bd4-fcf5-a135127497dc.htm\u0000154","void_ptr Methods\u0000html/e267ef2f-54a1-a3f1-441f-0655b542bf55.htm\u0000148","gmp_lib.mpz_inits Method\u0000html/de0b7cf7-1826-55f3-379d-41a6ef2d0991.htm\u0000472","gmp_lib.gmp_randinit_mt Method\u0000html/b3ed0ded-086a-41f1-6051-d08afa338da8.htm\u0000311","mp_size_t Implicit Conversion (Byte to mp_size_t)\u0000html/e2817889-195b-d443-500d-2568ebfefe4f.htm\u0000140","gmp_lib.mpz_init_set_d Method\u0000html/fec3a449-96b9-64b0-f53d-0b5a3856d02d.htm\u0000396","gmp_lib.mpn_cnd_swap Method\u0000html/f0985ccc-17da-8a0b-066c-53df9b1921a1.htm\u0000794","gmp_lib.mpf_clears Method\u0000html/bfb87570-3b2e-079a-1528-3746424bbdef.htm\u0000498","mp_size_t Explicit Conversion (Int64 to mp_size_t)\u0000html/fecd3260-6eb9-5e31-0266-9bb52bf9b038.htm\u0000140","gmp_lib.mpz_millerrabin Method\u0000html/f0bda1a7-4b40-0896-4939-4dc66b256424.htm\u0000433","gmp_lib.mpz_cmp_ui Method\u0000html/bfe022c5-95d3-45d7-0c6f-97167a9a0af2.htm\u0000409","gmp_lib.mpz_invert Method\u0000html/e3072efb-05a9-947c-5532-6d806c157e4a.htm\u0000711","gmp_lib.mpz_setbit Method\u0000html/f0caf821-320b-1a8b-87ff-84fcbdfd5801.htm\u0000470","gmp_lib.mpn_sec_sqr Method\u0000html/bfe1e9b5-6fc1-95f2-d5b6-137fe87c071a.htm\u0000813","gmp_lib.mpq_mul_2exp Method\u0000html/f148f8be-dfbc-fc41-981d-0a99834f01ff.htm\u0000295","gmp_lib.mpn_sqr Method\u0000html/ff9c2930-ded2-c5b6-46dd-3ff9279cdc5e.htm\u0000760","mp_bitcnt_t.Equality Operator\u0000html/c0825a57-1ba5-e1d1-3fa9-9c43008c1ada.htm\u0000189","gmp_lib.gmp_fprintf Method\u0000html/e3abec5c-9d83-babc-a020-ca4817962a21.htm\u0000697","gmp_lib.ZeroMemory Method\u0000html/e3d53be6-a0ad-fb21-5381-ff688f5984a6.htm\u0000188","gmp_lib.mpz_fib2_ui Method\u0000html/c0f8ab02-55db-8a6b-705d-6fa700d54545.htm\u0000635","gmp_lib.free Method (void_ptr)\u0000html/c10cea6f-22cd-f84c-c11a-5924ba0b0ee7.htm\u0000141","gmp_lib.gmp_randinit_lc_2exp_size Method\u0000html/f209112e-311a-88cd-becf-33bc3787f91d.htm\u0000417","gmp_lib.mpz_mul_si Method\u0000html/ffd27ee1-e1e3-567f-b3cf-87dec2de2c83.htm\u0000567","mp_ptr Methods\u0000html/f324e472-a709-9f28-6b3c-ffdeda0376bf.htm\u0000162","mp_limb_t.Equals Method\u0000html/f3da8743-4110-ef69-3809-3261d9304977.htm\u000069","gmp_lib.mpz_sub_ui Method\u0000html/e3e3f2ce-f3d8-5321-37a5-de65b6c2a30d.htm\u0000548","gmp_lib.mpf_add Method\u0000html/c19999f1-01ee-a3fe-dc4d-2a459e73492d.htm\u0000657","size_t.ToString Method\u0000html/e465d040-0d35-f8c8-51db-c56b3d14b4c8.htm\u0000124","gmp_lib.mpq_get_str Method\u0000html/f457878b-c3f5-bfe2-aaa9-7f2179332f57.htm\u0000662","gmp_lib.free Method (gmp_randstate_t)\u0000html/f46e4103-d4c4-69c2-1363-a4cb17d9cfda.htm\u0000143","size_t Operators and Type Conversions\u0000html/c27b5f76-606f-b512-9424-8e74cea9f6da.htm\u0000286","gmp_lib.gmp_vscanf Method\u0000html/e5060da5-cafd-67e7-f18f-3a9d3c2aba7d.htm\u0000753","mp_exp_t.Equals Method (mp_exp_t)\u0000html/c349463b-04b6-167b-b8f7-9f117789577d.htm\u0000161","gmp_lib.mpf_reldiff Method\u0000html/f485faa1-3758-8316-f712-42e0fc2058a8.htm\u0000657","FILE.Equals Method (Object)\u0000html/c35318b5-343e-5f6f-2a46-89cb3019121c.htm\u0000180","mp_limb_t Explicit Conversion (mp_limb_t to UInt32)\u0000html/f4b3e873-d3fc-637d-d8cb-04cd63c76b6d.htm\u0000142","void_ptr.Equals Method (void_ptr)\u0000html/c39c5883-0cbc-86ee-d3a6-be3a95f8cadc.htm\u0000161","gmp_lib.mpz_even_p Method\u0000html/e6012778-c71b-b078-2ef3-9f9db90f1769.htm\u0000381","gmp_lib.mpn_ior_n Method\u0000html/f4c54e3b-1c09-d01d-eb28-b7b05cf6fa70.htm\u0000680","mp_exp_t Structure\u0000html/e6a17880-791f-37d4-4942-cf26ce7d4cbf.htm\u0000511","gmp_lib.mpz_fdiv_q_2exp Method\u0000html/f56c5489-8c01-a687-fec8-a5f443738701.htm\u0000623","size_t Implicit Conversion (UInt32 to size_t)\u0000html/e76254b7-0a0e-d726-a1a2-ebc21dab1c96.htm\u0000140","mp_exp_t Implicit Conversion (mp_exp_t to Int64)\u0000html/e7a5fd85-46d5-46ed-b943-3c245fae350a.htm\u0000142","gmp_lib.mpq_sub Method\u0000html/e7d65cf6-2ee4-c983-62b5-4ad66f1d8599.htm\u0000296","gmp_lib.mpn_divrem_1 Method\u0000html/f5c3f25d-1ad5-b3be-fc4b-280a62869912.htm\u0000903","gmp_lib.mpq_set_f Method\u0000html/f5dc74ec-155b-2a14-3eb5-4610a8509bae.htm\u0000535","gmp_lib.mpz_sqrtrem Method\u0000html/e802af92-73bf-b138-dc95-a3c57eeefb66.htm\u0000649","gmp_lib.mpz_lcm_ui Method\u0000html/f60dbcbd-d4f0-edcc-8f88-2de1aa375e6b.htm\u0000276","gmp_lib.mpz_cdiv_r Method\u0000html/e8f34851-d0b2-335e-1ea5-f9129062aabf.htm\u0000703","mpf_t._mp_exp Property\u0000html/f63ee104-afaa-e0b8-ff39-f60b9a934ea3.htm\u0000228","size_t Explicit Conversion (Int64 to size_t)\u0000html/e9177dc9-2049-a649-3bf2-735ed6927aae.htm\u0000140","gmp_lib.mpz_set_q Method\u0000html/f6eeca07-edf7-6915-36e4-e8a7a62333d7.htm\u0000464","gmp_lib.mpq_set_str Method\u0000html/e98ec3cf-b539-8024-c401-ecd24bd43662.htm\u0000642","gmp_lib.mpf_floor Method\u0000html/f7584918-b77f-3524-eea2-04134a2c3ba6.htm\u0000539","mpq_t.ToString Method\u0000html/e9fce326-9ff5-0bbc-87d7-53ace305f107.htm\u0000122","gmp_lib.mpn_sec_invert_itch Method\u0000html/ec24a122-714e-5b6f-9872-95fd5fda54ea.htm\u0000216","gmp_randstate_t Class\u0000html/f7e5846d-548d-3bf3-74ac-219fde42a041.htm\u0000234","mp_bitcnt_t Explicit Conversion (mp_bitcnt_t to Int32)\u0000html/ecccb4d7-41db-d565-2551-4c15730c6d2f.htm\u0000141","gmp_lib.mpq_get_d Method\u0000html/f88b40d4-3da9-e2c7-4c4c-1ad868778075.htm\u0000440","mp_size_t Explicit Conversion (UInt32 to mp_size_t)\u0000html/edf58344-c7ce-6c94-dea2-e07f06eb7987.htm\u0000140","gmp_lib.mp_bits_per_limb Field\u0000html/f88c76a8-118a-5cbd-0df1-e30adcacb8ae.htm\u0000183","mp_ptr.GetEnumerator Method\u0000html/f9a60366-d1e2-5565-bbc2-63d98d779e27.htm\u0000156","mp_exp_t Implicit Conversion (Byte to mp_exp_t)\u0000html/fa401922-089c-d6e0-8ef7-e9013676e9e5.htm\u0000140","gmp_lib.mpn_sqrtrem Method\u0000html/ee31871c-38bd-fccc-77f5-e76909dd7a79.htm\u00001110","gmp_lib.mpz_gcdext Method\u0000html/fae08c47-86df-9010-1827-a9fa6e48a1af.htm\u00001103","gmp_lib.mpn_mul_n Method\u0000html/ee321a9a-852a-993e-f602-72ff2af02ff6.htm\u0000876","mp_size_t Explicit Conversion (mp_size_t to UInt32)\u0000html/ee84dcdc-769f-5829-0e77-99ea66f0151b.htm\u0000142","gmp_lib.mpn_sizeinbase Method\u0000html/fb2d29b4-f7e2-e3d6-6fcb-920f2e86c0d7.htm\u0000502","FILE.Value Field\u0000html/fb70a49d-b7b0-b8fc-83f5-0864f381cc76.htm\u000088","gmp_lib.mpz_tdiv_ui Method\u0000html/eea23315-8275-7472-44b0-94b9a05a6657.htm\u0000550"] \ No newline at end of file diff --git a/docs/html/846f5c8a-6cba-433e-9f18-cde2ff5695cd.htm b/docs/html/846f5c8a-6cba-433e-9f18-cde2ff5695cd.htm index 2d2958f..993a4bd 100644 --- a/docs/html/846f5c8a-6cba-433e-9f18-cde2ff5695cd.htm +++ b/docs/html/846f5c8a-6cba-433e-9f18-cde2ff5695cd.htm @@ -3,7 +3,7 @@ all of the functionality of the GNU MP Library (version 6.1.2). It automatically loads at runtime the 32-bit or 64-bit GNU MP library that matches the current CPU - architecture, thus allowing building Visual Studio Projects for AnyCPU, x86, or x64. + architecture, thus allowing building Visual Studio Projects for Any CPU, x86, or x64. It is based on the GNU MP "fat" build which automatically detects the current CPU type, and selects any available assembly language code optimization for that CPU, thus providing optimal performance.

Overview

@@ -29,7 +29,68 @@ Unless you intend to use low-level (mpn) functions, you do not need to take into account the CPU word size, and can build for the "Any CPU" platform.

C Types

.NET Types

short

Int16

int

Int32

long

Int32

long long

Int64

mp_bitcnt_t

UInt32

mp_exp_t

Int32

mp_size_t

Int32

mp_limb_t

UInt32 (on 32-bit CPU) / UInt64 (on 64-bit CPU)

size_t

UInt32 (on 32-bit CPU) / UInt64 (on 64-bit CPU)

Building the GNU MP Library on Windows
  1. - Install MSYS2 + Install MSYS2.

    - Get the latest version from... -

  2. Install yasm

  3. Install GNU MP

  4. Build GNU MP

See Also
Building the GNU MP Library for a Specific CPU Type on Windows

+ The --enable-fat build option above creates a library where optimized low level subroutines are chosen at runtime according to the CPU detected. + By using instead the --host option, you can build a library for a specific CPU type. + You will end up with a library that runs only on that CPU type, but the library will be samller. + See the Build Options from the GNU MP Manual for the supported CPU types. +

Using the GNU MP Library in a Visual Studio C++ Project

+ Although our main goal was to compile GNU MP in order to use it from .NET, the compiled 32-bit and 64-bit GNU MP libraries may be used directly in Visual Studio C++ projects. + For example, create a default Visual Studio C++ Console Application. + Set the Platform to x64. + Copy from the C:\Temp\x64 folder the files include\gmp.h, bin\libgmp-10.dll, and lib\libgmp.dll.a to the Visual Studio C++ project folder. + Include gmp.h in your C++ source file. + In the Linker, Input Property Page of the project, add libgmp.dll.a to the Additional Dependencies. + Build your C++ project, and copy libgmp-10.dll to the output bin folder. + Run your application. +

+ See ConsoleApplication12.zip + for a sample Visual Studio C++ project. +

See Also