Hello again
Since some week im fascinating by some geometric formation that appear into our field, this is about 300 each year since couple of year already.
Search from Google Images " Crop Circle" you will see many many.
I found one very interesting.
below, the Circle is in fact some kind of CR-ROM with Binary data into it.
Into big line the message say this:
Beware the bearers of FALSE gifts & their BROKEN PROMISES.Much PAIN but still time.BELIEVE.There is GOOD out there.We oPpose DECEPTION.COnduit CLOSING\
I've working on in for a while with PHP, here is the code and the Binary data extracted from the CR-Rom.
Inside they exist DEMI Bits , this is represented by a "S" into the PHP stream. And they have weird Bit word inside.
Some are 9 bit long and 1 is 11 Bits long..
And here is the Dictionary Definition for Each Capital letter Word.
I putted the most usual Definition and Chooses(->) one for Fun...
FALSE
incorrect: not conforming to facts or truth
->artificial: imitating, copying, or having the same function as a particular thing and replacing or used alongside it
BROKEN
no longer whole: in two or more
(break)separate something into pieces
->lacking order or harmony
PROMISES
an assurance that something will be done or not done
->an indication that somebody or something will turn out well or successfully
PAIN
1. unpleasant physical sensation
3. emotional distress
->somebody or something troublesome
BELIEVE
to accept that something is true or real
->to pretend
GOOD
a high quality or standard, either on an absolute scale or in relation to another or others
->having undergone no deterioration or damage
DECEPTION
practice of misleading somebody: the practice of deliberately making somebody believe things that are not true
->an act, trick, or device intended to deceive or mislead somebody
CO
chemical elements cobalt, used for: radiation treatment of foods for sterilization (cold pasteurization), Industrial uses for radioactive isotopes.
->http://www.chemicalelements.com/elements/co.html
Comment: Arsenic Made, Isotope 60 is highly radioactive, the one used for food treatment.
CLOSING
forming or connected with the final part of an activity or period of time
->transfer of property ownership: a meeting among principals in a real estate transaction, during which legal papers related to the sale and purchase are signed and financial arrangements are made final and binding
For me i will say the Crop Circle it self is a FACT.
This is only my opinion! and thinking this is all FALSE is really good too! the real point is at least you checked it so too late you already corrupted haha im kidding.
Since some week im fascinating by some geometric formation that appear into our field, this is about 300 each year since couple of year already.
Search from Google Images " Crop Circle" you will see many many.
I found one very interesting.
below, the Circle is in fact some kind of CR-ROM with Binary data into it.
Into big line the message say this:
Beware the bearers of FALSE gifts & their BROKEN PROMISES.Much PAIN but still time.BELIEVE.There is GOOD out there.We oPpose DECEPTION.COnduit CLOSING\
I've working on in for a while with PHP, here is the code and the Binary data extracted from the CR-Rom.
Inside they exist DEMI Bits , this is represented by a "S" into the PHP stream. And they have weird Bit word inside.
Some are 9 bit long and 1 is 11 Bits long..
<?php
$inputData = "0101000010S01100101S01110111S01100001S01110010S01100101S00100000S01110100S011010000S01100101S00100000S01100010S01100101S01100001S01110010S01100101S01110010S01110011S00100000S01101111S01100110S00100000S01000110S01000001S01001100S01010011S01000101S00100000S01100111S01101001S01100110S01110100S01110011S00100000S00100110S00100000S01110100S01101000S01100101S01101001S01110010S00100000S01000010S01010010S01001111S01001011S01000101S01001110S00100000S01010000S01010010S01001111S01001101S01001001S01010011S01000101S01010011S00101110S01001101S01110101S01100011S01101000S00100000S01010000S01000001S01001001S01001110S00100000S01100010S01110101S01110100S00100000S01110011S01110100S01101001S01101100S01101100S00100000S01110100S01101001S01101101S01100101S00101110S010000101S01000101S01001100S01001001S01000101S010101010110S01000101S00101110S01010100S01101000S01100101S01110010S01100101S00100000S01101001S01110011S00100000S01000111S01001111S01001111S01000100S00100000S01101111S01110101S01110100S00100000S01110100S01101000S01100101S01110010S01100101S00101110S01010111S01100101S00100000S01101111S01010000S01110000S01101111S01110011S01100101S00100000S01000100S01000101S01000011S01000101S01010000S01010100S01001001S01001111S01001110S00101110S01000011S01001111S01101110S01100100S01110101S01101001S01110100S00100000S01000011S01001100S01001111S01010011S01001001S01001110S01000111S01011100S0";
$inputDatas = split("S",$inputData);
$inputDatas[0] = substr($inputDatas[0],2);
$unk1 = substr($inputDatas[88],0,4);
$inputDatas[88] = substr($inputDatas[88],4);
echo count($inputDatas)."\r\n";
$sentence = "";
foreach($inputDatas as $key => $value)
{
if($key == 151) //Remove last
break;
/*if($key == 88) //has 4 byte more
echo "Weird 4 Bit".chr( bindec(substr($inputDatas[88],-4)))."\r\n";*/
$newChar = chr( bindec($value) /*>> strlen($value)-8*/);
echo $key."->".$value ." == ".$newChar."\r\n";
$sentence .= $newChar;
}
echo "\r\n";
echo $sentence;
echo "\r\n";
echo "UnknowValue:\r\n";
echo chr(bindec("010101"))."\r\n";
?>
And here is the Dictionary Definition for Each Capital letter Word.
I putted the most usual Definition and Chooses(->) one for Fun...
FALSE
incorrect: not conforming to facts or truth
->artificial: imitating, copying, or having the same function as a particular thing and replacing or used alongside it
BROKEN
no longer whole: in two or more
(break)separate something into pieces
->lacking order or harmony
PROMISES
an assurance that something will be done or not done
->an indication that somebody or something will turn out well or successfully
PAIN
1. unpleasant physical sensation
3. emotional distress
->somebody or something troublesome
BELIEVE
to accept that something is true or real
->to pretend
GOOD
a high quality or standard, either on an absolute scale or in relation to another or others
->having undergone no deterioration or damage
DECEPTION
practice of misleading somebody: the practice of deliberately making somebody believe things that are not true
->an act, trick, or device intended to deceive or mislead somebody
CO
chemical elements cobalt, used for: radiation treatment of foods for sterilization (cold pasteurization), Industrial uses for radioactive isotopes.
->http://www.chemicalelements.com/elements/co.html
Comment: Arsenic Made, Isotope 60 is highly radioactive, the one used for food treatment.
CLOSING
forming or connected with the final part of an activity or period of time
->transfer of property ownership: a meeting among principals in a real estate transaction, during which legal papers related to the sale and purchase are signed and financial arrangements are made final and binding
For me i will say the Crop Circle it self is a FACT.
This is only my opinion! and thinking this is all FALSE is really good too! the real point is at least you checked it so too late you already corrupted haha im kidding.