Posts

Showing posts from February, 2010

page parts not showing in the backend, refinerycms -

suddenly page parts defined in home page view template not showing, content appear fine in front end when try edit content, looks empty , custom page parts created not showing. i'm not getting type of error don't know look. can point me in right direction? jj. first sure pages.rb, under initializers/refinery allows configuring new page parts (config.new_page_parts = true). second, try creating new database different name, changing database.yml file connect new database (presumably under development), , running migrations. or create new database , restore last known version. if content visible in both front end , end after changing databases, again. i had similar problem recently, refinerycms serve content in page views not in admin layouts. happened after reverted application code cloning shared repository. not sure why restoring earlier version of database fixed it.

c# 4.0 - Maximum value in datatable column c# -

i have set of text files reading datatable. want able read frist column (id) , find out highest number. each of files goes 0 @ least 21 sequentially. tried suggestions following link: how select min , max values of column in datatable? sadly, not work. 1 suggestion kind of worked shown in second last line, returns value of 8 or 9. suggestions how results looking for? string filepath = system.io.path.getfullpath(curriculum); datatable curriculmdatatable = new datatable(); curriculmdatatable.columns.add("id"); curriculmdatatable.columns.add("course"); curriculmdatatable.columns.add("credit"); // read in file line-by-line, , store var txtfileline = file.readalllines(filepath).tolist(); //reads line splits data colums @ tab (ascii value 9) txtfileline.foreach(line => curriculmdatatable.rows.add(line.split((char)9))); //suggestions link int max = convert.toin

automatically assign class type in matlab -

i'd obtain class type of variable , use function in matlab. for example, x of class uint8 . can obtain info classtype=class(x) . what i'd use on different variable automatically, such as: y=classstype(y) where y of type logical example. how can accomplish that? it sounds you're trying cast value of y different class. end, try using matlab's cast() function. in specific instance, try: y = cast(y, class(x)) this should class of variable x , cast variable y class.

sql server - T-SQL :Parent-Child Hierarchy - based on @Variable -

declare @categories table ( categoryid int, categoryname varchar(20), parentid int ) insert @categories(categoryid, categoryname, parentid) select 1, 'company', null union select 2, 'dept a', 1 union select 3, 'dept b', 1 union select 4, 'da_sub_1', 2 union select 5, 'da_sub_2', 2 union select 6, 'da_sub_3', 2 union select 7, 'da_sub_4', 2 union select 8, 'da1_i', 4 union select 9, 'da1_ii', 4 declare @id int = 4 declare @matched int = (select case when parentid = 0 categoryid else parentid end @categories categoryid = @id) ;with cte ( select categoryid, categoryname, parentid @categories parentid null union select c.categoryid, c.categoryname, c.parentid @categories c inner

python - Is there a way to control explorer.exe? -

i creating desktop helper, , wondering whether there way "see" explorer.exe , respond that. example, if monitor whenever user opened specific folder. prefer way in python main language of project, if there's way in language, i'd able incorporate it.

objective c - Cocos2d 'snap to grid' logic -

i'm building game in cocos2d , i'm having hard time implementing want. imagine 8 x 10 grid of squares. can touch square , drag square's row / column horizontally / vertically, not both. after release row / column, squares 'snap' place in grid according closest row / col positions. everything works programmatically, no overlaps or misplaced squares or invalid positions. however, cannot seem 'snap grid' animate way want. i'm using mvc design pattern separate views game logic. view handed array of 'squarestoupdate', looks @ every square, finds corresponding sprite, , updates position of sprite based on position of square. the problem arises when trying along lines of this: -update(): each square in squarestoupdate: if square not being dragged @ moment: setup 'ccmoveto' bring sprite in line square i can't squares move freely while being dragged, ccmoveto when not being dragged. either create new action every update,

Python Tkinter one callback function for two buttons -

i have been looking around long time answers question still hasn't find anything. creating gui using tkinter, , have 2 buttons same thing except receive information different widgets. 1 button entry widget , other listbox widget. callback function these 2 buttons long (about 200 lines), don't want have separate functions each button. have if-statements in beginning of callback function check button clicked, , codes take corresponding value. not sure if following code shows right way because apparently doesn't work in program. callback function work first time, , if click other button receive error. here sample code created illustrate idea. note want check if button clicked, not want check if 'value' exists. please help. from tkinter import * root = tk() def dosomething(): # right way check button clicked? if button1: value = user_input.get() elif button2: value = choice.get(choice.curselection()[0]) # more codes take 'val

PHPUnit deletes database records for Yii unit testing -

i running unit tests in yii using phpunit. tests passing, leaves me 1 record in database when expected see three, 1 fixture when testing login , 2 aro saves call when testing member registration. i doing in separate database dedicated testing only. should concern or typical behavior possibly related teardown? the record "testreg" remains in database after code though saved before "testreg2". if comment out save, "testreg2" remains. if comment out two, fixture data remains. here test: class usertest extends cdbtestcase { public $fixtures=array( 'users'=>'user', ); /** * valid user can login backend * @return void */ public function testbackenduserlogin() { $model = new loginform(); $model->attributes = array('username'=>'member', 'password'=>'password'); $this->asserttrue($model->validate(array('username', 'password'))); $this->asserttrue

autofac - Resolving dependency based on custom criteria -

my app relies on multiple event bus objects basic publish/subscribe notification model ( http://caliburn.codeplex.com/wikipage?title=the%20event%20aggregator ). what want share instance of aggregators groups of components. component have single event bus that's shared between component a, b, , c, , event bus that's shared between d,e,f. i want declare event busses singleton , inject them based on criteria. kinda wanna avoid subtyping event busses purposes of distinguishing resolution. i've used google guice ioc in java allows metadata resolution parameter. aka in java allowed me equivalent this. example: public a([specialuseaggregator]ieventaggregator something) public b([specialuseaggregator]ieventaggregator something) public e([anotheruseaggregator]ieventaggregator something) public f([anotheruseaggregator]ieventaggregator something) any suggestions? autofac not have/use attributes registration. 1 solution use named/keyed registration feature.

How to embed youtube videos as playlist -

Image
i have numerous youtube video clips, , wondering if possible embed them on site youtube playlist, next video starts playing automatically once clip finishes. there such functionality either youtube api or without. if not possible, best approach. in advance. actually there 2 ways embed playlists youtube. in first method can directly specify videos want play in embed player. <iframe width="720" height="405" src="https://www.youtube.com/embed/video_id?playlist=videoid_1,videoid_2"frameborder="0" allowfullscreen> each video id must separated using comma. secondly, can embed playlist present in youtube using playlist id <iframe width="720" height="405" src="https://www.youtube.com/embed/?listtype=playlist&list=playlist_id" frameborder="0" allowfullscreen>

sql - what is the reason that unix is faster than oracle? -

this article claims running sql script in unix, can perform 20x faster? how can possible? this looks author comparing apples oranges (no that's similar, how apples aliens). performance speak of comes form result set being displayed in browser (as table) instead of waiting hours brio or toad return results in browser (with crash if number of rows being returned above 50,000) as compared result set being displayed in text file (who text editor won't crash well?) then export unix station) , produced output results of query (tab-separated text file)

sorting - How to sort with linux command, while treat 3 lines as 1 block and sort based on the first line of each block -

how sort linux command, while treat 3 lines 1 block , sort based on first line of each block? i know can concat 3 lines 1 line , sort. file big, , don't wan't generate temp file sorting. sort sorts lines of text files , record separated newlines. exception, supports \0 record separator, there no way change logic of how records separated. you can make use of above exception implement decorate-sort-undecorate pattern, this: chunk | sort -z -t' ' -k1 | unchunk chunk combines every 3 lines line1\0line2\0line3\n , allow sort -z three-lined chunk single record, , -t'\n' -k1 sort first field in record. unchunk changes \0 \n . expressed in perl, chunk this: perl -pe 'chomp;$_.=($.%3)?"\n":"\0"' (a similar incantation written in awk or sed , , c version not longer.) unchunk no more tr '\0' '\n' . complete sort is: perl -pe 'chomp;$_.=($.%3)?"\n":"\0"' | sort

ruby - How do I execute Date from a string? -

i trying read file has dynamic dates in such date.today or (date.today - 1 ) , , perform code based on date requested. if have string defined date in quotes works. when reading same string file not. there eval function need use make work? require 'date' #works abc = "something #{date.today}" puts abc # 2013-04-19 #does not work f = file.read("test.txt") f.each_line { |line| puts line ; words = line.split("\t") puts line } contents of test.txt file: something #{date.today} # #{date.today} you're going have use eval evaluate contents of each line read. but since evaluating arbitrary code have trust not malicious code. so, assuming trust file , lines: require 'date' f = file.read("test.txt") f.each_line |line| puts eval("\"#{line}\"") end notice double-quote wrapping, "piece of code" evaluating needs "valid" ruby string (which in turn contains code, wrap

perl - Error ORA-12154 on DBI->connect to Oracle database with Oracle Instant Client in Solaris 10 -

i've been pulling hair out on problem 2 days now: i'm trying perl script interface oracle database. have new server i'd deploy application on. script worked. here's i've done far: placed tnsnames.ora file in instantclient/network/admin: ls -la network/admin/ total 8 drwxrwxrwx 2 m staff 512 apr 19 09:54 . drwxrwxrwx 3 m staff 512 mar 28 15:56 .. -rwxrwxrwx 1 m staff 777 apr 19 09:54 tnsnames.ora my perl script looks this: 12 use cgi; 13 use dbi; 14 use data::dumper; 15 use strict; 16 28 $env{oracle_home} = "/xxx/instantclient/"; 29 32 $env{'ld_library_path'} = "xxx/instantclient/lib"; 33 35 use dbd::oracle; 36 37 print "dbi::version: $dbi::version\n"; 38 print "$dbd::oracle::version\n"; 66 $dbh = dbi->connect("dbi:oracle:host=computer;port=1521;sid=mydatabase", "user", "pass"); 67 $sth = $dbh-&

javascript - Why isn't my regex matching the entire document? -

Image
i'm trying build small javascript application loads third party site, finds given word , highlights closest context of document using jquery extension highlight (with small customization allowing regular expressions). first, i'm trying application highlight surrounding setting context 500 characters, reason cuts off in weird places. this article , i'm trying match term obama , , can see screenshot, cuts off in places shouldn't be. does have clue of what's going on? $(document).ready(function() { $.get(geturlvars()["url"], function(data) { var fdata = $(data); var associationscope= 500; $.each(geturlvars()["topics"].split(","), function(index, value) { if (geturlvars()["associationscope"] == "context") { var associationscoperegex = "((?!</span>)[\\s\\s]{0," + associationscope + "})" + value + "(

architecture - Writing first angular app. How should I architect this? -

i'm writing first angular app after messing around basic todo type apps , curious @ proper way architect controllers high level. the app allow users dynamically add/remove homes plot , each home can have rooms in , each room within home can have products in it. homes, rooms , products can added/removed on fly , rooms 1 home can moved other homes. my first pass @ has me thinking i'll need controller homes (collection of homes), controller each individual home. same go rooms , products; controller rooms , controller each room. is best way this? i'm coming @ backbone perspective want follow guidelines angular prescribe don't see online doing this. any appreciated. i suggest first think models, views, lastly, controllers. your models should in services, not controllers. (this way, if multiple views need access same model data, controllers associated views can inject service(s) access shared data/model.) break page(s) separate views. attach control

node.js - [] overloading c++ array of functions not allowed -

hello im trying create graph , im working on function prototypes, on [] operator overload function im getting following error:array of functions not allowed here prototype: binarytree& ooperator[](int vertex); binary tree binary tree class need change work you've misspelled operator ooperator . oops! binarytree& operator[](int vertex); // ^

dart - Launching multiple async futures in response to events -

i launch expensive operation in response user clicking on canvas element. mousedown(mouseevent e) { print("entering event handler"); var future = new future<int>(expensivefunction); future.then((int value) => redrawcanvas(value); print("done event handler"); } expensivefunction() { for(int = 0; < 1000000000; i++){ //do insane here } } redrawcanvas(int value) { //do stuff here print("redrawing canvas"); } my understanding of m4 dart, future constructor should launch "expensivefunction" asynchronously, aka on different thread main one. , appear way, "done event handler" printed output window in ide, , time later "redrawing canvas" printed. however, if click on element again nothing happens until "expensivefunction" done running previous click. how use futures launch compute intensive function on new thread such can have multiple of them queued in response multiple clicks, i

SQL Server Compact 4.0 does not work in VS 2010 SP1 -

i've installed sql server compact 4.0 local database , i've added database. however, if try open database, unknown errors occurs. i tried restart vs 2010 after install sql server, not , cannot open database. how resolve it? have @ following blog in blog see need download additional tool make work visual studio 2010. link tool present in same blog (search text below) or may download using web platform installer. visual studio 2010 sp1 tools sql server compact 4.0

java - Modulus of Product of two integers -

i have find c, c = (a*b) mod m a,b,c,m 32-bit integers. (a*b) can more 32 bits. trying figure out way compute c, without using long or data type > 32 bit. any ideas? what if m prime number, can things simplified? note: based on few comments, c = ((a mod m) * (b mod m)) mod m, in case multiplication overflow i happen have 256 128 bit division code random-based test , i'm sure can reduce trivially 128 64 bit division , 64 32: #include <limits.h> #include <stdio.h> #include <stdlib.h> #include <time.h> typedef unsigned long long uint64; #define c_assert(expr) extern char cassertextern[(expr)?1:-1] c_assert(sizeof(uint64) * char_bit == 64); void mul64full(uint64 prod[2], uint64 a, uint64 b) { uint64 p0, p1, p2, p3; p0 = (a & 0xffffffff) * (b & 0xffffffff); p1 = (a & 0xffffffff) * (b >> 32); p2 = (b & 0xffffffff) * (a >> 32); p3 = (a >> 32) * (b >> 3

android - how to save images as jpeg and convert it into a single video file in java -

am having java application in pc , android application in phone. phone sends video frames in jpeg format using bytearrayoutputstream pc,the pc recieve using bytearrayinputstream(imagedata) .now need save jpeg frames pc , convert these jpeg single video file. following code used in pc need code saving jpeg pc , convert video please help..:_) cam thread.java package carl.pc.udp; import java.io.bytearrayinputstream; import java.io.ioexception; import java.lang.runnable; import java.lang.thread; import java.net.datagrampacket; import java.net.datagramsocket; import java.net.inetaddress; public class cam_thread_udp implements runnable { int nb = 0; car_gui car_state; thread t; public static int header_size = 5; public static int datagram_max_size = 1450; public static int data_max_size = datagram_max_size - header_size; public cam_thread_udp(car_gui gui) { car_state = gui; try { t = new thread(this);

Can't create SQLite database in my android app -

i'm using application object(android building bloc) call database constructor inside oncreate method. can't figure out why can't created. how code looks like: my database class, dbhelper inner class: package com.example.pharmacie; import android.content.contentvalues; import android.content.context; import android.database.sqlite.sqlitedatabase; import android.database.sqlite.sqliteopenhelper; import android.util.log; public class phdata { private static final string tag = phdata.class.getsimplename(); private static final int version = 1; private static final string database = "ph_info.db"; private static final string table = "ph_info"; public static final string c_id = "_id"; public static final string c_created_at = "created_at"; public static final string c_name = "pharmacie "; public static final string c_tele = " "; public static final string c_adress = "te

php file takes long time loading then returns blank page mysqli -

i'm trying display elements of event in form user edit. want current values entered or selected, want in way don't have validate sorts of info. have calendar picker , want use dropdowns times. code hangs few minutes , returns blank page. overloading server queries or there wrong code? $id = $_post['id']; /* edit event form */ echo '<form action="edit-event-process.php" method="post">'; echo '<center><table style="text-align:center">'; /* set queries individually allow dropdowns hour, minute, am/pm, category */ /************* query name *******************/ $queryname = mysqli_query($link, "select name events id = " . $id); while($rowname = mysqli_fetch_assoc($queryname)){ foreach($rowname $keyname => $valname){ echo '<tr><td>name: </td><td><input type="text"

java - Spring component-scan without autowiring? -

does makes sense use component-scan without using autowiring on spring? i idea of having component scan on mvc environment controllers, hell avoid declaring daos, services ... on xml. however not big fan of autowiring, so, still possible manually inject desired beans using xml config file or non-sense? update : advantage of using @autowired instead of explicit declaration via xml (please not provide "less xml configuration" advantage) i would add @component implementation classes bean created each of them not associate @autowired / @resource member declarations corresponding these implementations in other classes spring cannot autowire them. define beans these component beans needed, in xml using <bean> node , <property> elements inject them through setters or <constructor-arg> inject them through constructors. example: interface: package com.krovi.compscan; public interface myinterface { void method(); } implemen

debugging - Please help me fix this PHP while statement -

the script below supposed end when "best match" found in string, though know found script keeps on running. please me fix error. $end = "1"; while ($end != 2) { foreach($anchors $a) { $i = $i + 1; $text = $a->nodevalue; $href = $a->getattribute('href'); //if ($i<80) { //if (strpos($item, ".$array.") == false) { //} if (strpos($text, "best match") == true) { $end = "2"; } if (strpos($text, "by owner") === false) { if (strpos($text, "map") === false) { if ($i > 17) { echo "<a href =' ".$href." '>".$text."</a><br/>"; } } } } //$str = file_get_contents($href); //$result = (substr_count(strip_tags($str),"ipod")); //echo ($result); } in strpos , you're comparing true , , wrong. also, in thas if statement should break foreach , while lo

ASP.NET web application templates -

i'm new @ developing asp.net web applications , wondering if knew of web application development tools or web application templates online. i've searched few sites templatemonster , themeforest of these sites contain templates websites. i've used default visual studio 2010 template before want able give users new professional look. appreciate recommendations on software or tools me create web application templates. it's not entirely clear you're looking question, if you're looking front-end development work of web applications, i'd recommend looking @ front-end framework such twitter bootstrap . a front-end framework html, css , javascript framework makes creating web application front-ends easier. there bit of learning curve, once it, benefit of having predefined method creating layouts, , large set of reusable components, incredibly useful. use asp.net mvc. you'll still need have css skills in order create bespoke sites clients

exception - FileNotFoundException when reading from text document -

i'm trying read file from public static void printlines(string doc){ scanner input = null; input = new scanner(doc + ".txt")); while(input.hasnext()){ string nextline = input.nextline(); system.out.println(nextline); } input.close; } the code above method takes in string doc parameter, , prints out every line. in main, used try catch block catch filenotfoundexception. however, when try running program, hits filenotfoundexception time. i'm using eclipse , text file , java file both in same "java project". there reason why method can't read text file? please help! try print doc inside it. may including extension of file too. for example, if doc /home/user/desktop/mysample.txt scanner try find /home/user/desktop/mysample.txt.txt not available, because concatenating extension .txt again.

html - How to make text float over column when moused over? -

Image
i want make text float on column edge when mouse-over it, ide does: here's i've got far . i can float on edge if change element positioning absolute doesn't "take space". also, wouldn't mind having border around floated bit either. anyone have ideas how accomplish this? i have had go @ , have come solution not require mark changes @ all, have done testing , seems work in chrome 26 , safari 5.1.7 , firefox 20 , ie10 , ie10 in ie9 mode , ie10 in ie8 mode , looks same in of these browsers , browser modes, starts break when using ie10 in ie7 mode . it looks this: basically i've done setting float:left on li , width:auto on li:hover , ensures text floats on column edge. then add border, i'm rendering pseudo-element directly after li , inherits width of preceding li . i've set borders, margins, heights , line-heights position pseudo-element on top of preceding li . i've set margin-left 150px ensure shows behind l

xcode - Setup In-App purchases for OS X app examples -

i know there references on apple's developer website, i'm having hard time implementing ability have in-app purchase mac app. i'm looking similar mkstorekit, iapnoob, or iaphelper. there many ios classes of legwork, , easy implement within minutes. i'm hoping can point me in direction of os x apps. implementing inapp purchases ios , os x similar. can use same code both. os x have study validating mac app store receipts validate purchase @ launch of application. can refer rvnreceiptvalidation reference. easy implement. if have doubt regarding let me know that.

wamp - WampServer gives me blank page on the browser -

i have installed wampserver. online now. when give localhost in browser gives me blank page. how can rid of it? before installing wampserver, need install php manually? a better solution use wampmanager -> apache -> service -> test port 80 this launch command window , tell if using port 80. then rather killing ( if service automatically started again after reboot ) attempt reconfigure no longer uses port 80.

android - java.lang.UnsatisfiedLinkError: debugLevel -

alright, i've been going thru posts left , right trying figure out error.. i've managed fix few errors, driving me nuts.. has no information.. or atleast none makes sense me. d/dalvikvm(431): trying load lib /data/data/com.hyperlinkup.manglerbt/lib/libventrilo_interface.so 0x405156c8 d/dalvikvm(431): added shared lib /data/data/com.hyperlinkup.manglerbt/lib/libventrilo_interface.so 0x405156c8 d/dalvikvm(431): no jni_onload found in /data/data/com.hyperlinkup.manglerbt/lib/libventrilo_interface.so 0x405156c8, skipping init d/dalvikvm(431): gc_external_alloc freed 61k, 53% free 2565k/5379k, external 1027k/1038k, paused 89ms w/dalvikvm(431): no implementation found native lcom/hyperlinkup/manglerbt/ventrilointerface;.debuglevel (i)i d/androidruntime(431): shutting down vm w/dalvikvm(431): threadid=1: thread exiting uncaught exception (group=0x40015560) e/androidruntime(431): fatal exception: main e/androidruntime(431): java.lang.unsatisfiedlinkerror: debuglevel e/androidru

hex - Convert little endian to big endian including 0 (zero) -

im trying convert little endian big endian , having trouble. have array has 2 bytes of unsigned char hex values. , make big endian zeros gone , cant values want. for example, goal get array[0] = 0b array[1] = 40 output = 0b40 can see value 2880 when %d so used output = (array[1]>>4) | (array[0]<<4); but in reality, see printf("output = %x04\n", output); output = 00b4 i want output 0b40 can 2880 when do printf("output = %x\n", output); output = 0b40 printf("output = %d\n", output); output = 2880 thanks guys appreciated you need shift bottom 8 bits, not four, , not shift top: output = (array[0]<<8) | array[1]; see convert big endian little endian in c more discussion , code.

How to do a MYSQL query with an array in PHP? -

how can query database using results of prior query if in array? below have far. $query = "select * searchtestdb engname in ( select synonyms.synonym words left join synonyms on synonyms.word_id = words.word_id word '%$searchbox%') "; while($result = mysql_fetch_array($query)) { echo $result['engname']; echo "<br> "; echo "<br> "; } how can $result['engname'] , query again? i'm thinking like select * searchtestdb engname '%$result['engname']%'; but doesn't work. ideas? while($result = mysql_fetch_array($query)) { $query2 = "select * searchtestdb engname '%".$result['engname']."%';"; $result2 = mysql_query($query2); while($row = mysql_fetch_array($result2)) { echo $row["somthing"]; } }

python - How can I have motion on a tile map? -

i'm interested in doing this: http://hint.fm/wind/gallery/oct-30.js.html it seems tile map, tiles animated gifs? if not how can animation achieved? i thinkimg use pil generate gifs , serve mapnik/tilestache, tilestache doesnt seem support .gif tiles. any ideas? if you're open using javascript, i'd recommend using excellent d3 library available here: http://d3js.org/ in particular, has great support maps. check out example , tell me whether it's similar want achieve: http://bl.ocks.org/karmi/raw/2366285/

php - mysql check data in sha512 encryption -

i need check data in sha512 encryption mysql query , php i can md5 : select * text md5(id) = '$id' but , how in sha512? regards mysql 5.5+ select * text sha2(id, 512) = '$id' more details : sha2(str, hash_length) calculates sha-2 family of hash functions (sha-224, sha-256, sha-384, , sha-512). first argument cleartext string hashed. second argument indicates desired bit length of result, must have value of 224, 256, 384, 512, or 0 (which equivalent 256). if either argument null or hash length not 1 of permitted values, return value null. otherwise, function result hash value containing desired number of bits. see notes @ beginning of section storing hash values efficiently. the return value nonbinary string in connection character set. mysql> select sha2('abc', 224); -> '23097d223405d8228642a477bda255b32aadbce4bda0b3f7e36c9da7' this function works if mysql has been configured

javascript - Multiplying numbers in a string at specific positions -

i'm trying solve 8th project euler problem. find greatest product of 5 consecutive digits in 1000-digit number. i'm pretty sure i'm way off. tried simpler program using while loop returned 1 every time. code have provided returns 1 every time. please don't provide solution me. give me place if can. here code: var bignum = "73167176531330624919225119674426574742355349194934 96983520312774506326239578318016984801869478851843 85861560789112949495459501737958331952853208805511 12540698747158523863050715693290963295227443043557 66896648950445244523161731856403098711121722383113 62229893423380308135336276614282806444486645238749 30358907296290491560440772390713810515859307960866 70172427121883998797908792274921901699720888093776 65727333001053367881220235421809751254540594752243 52584907711670556013604839586446706324415722155397 53697817977846174064955149290862569321978468622482 83972241375657056057490261407972968652414535100474 82166370484403199890008895243