I’m still working on this.

I tried simply removing all measurement from the layout to see what would 
happen.

In my app, everything continued to work exactly as before and removing the 
measuring made about a 10% performance increase in Application.start(). I guess 
none of the layouts I’m relying on really needed the measuring.

RoyaleStore seems to work fine without the measuring as well and also had 
quicker layout time.

I’m almost out of time before Passover. I will likely merge what I’ve done into 
develop tomorrow and continue on this after Passover. Either way, it seems like 
what I’ve done so far is a marked improvement over what we’ve had until now.

Harbs

> On Mar 28, 2018, at 12:08 AM, Alex Harui <aha...@adobe.com.INVALID> wrote:
> 
> IMO, it is PAYG to say that if you need notifications you can't use what
> we are calling simple layouts.  S create a
> VerticalLayoutWithSizeChangeNotification.  Folks will have to use it or
> something like it in the situation you describe.  But those who don't
> benefit from the notification don't need to carry around all of that
> infrastructure.
> 
> HTH,
> -Alex
> 
> On 3/27/18, 2:01 PM, "Harbs" <harbs.li...@gmail.com 
> <mailto:harbs.li...@gmail.com>> wrote:
> 
>> Again:
>> 
>> The problem is that the parent component might have a complex layout,
>> while a child component might have a simple layout.
>> 
>> The simple layout wouldn’t and shouldn’t run extra code, but if there is
>> a parent layout which is is complex, it will have to cause the extra code
>> to run. It needs some way to ensure that it runs correctly. For that to
>> happen, it needs to know whether the size of the child component changed
>> after layout was run on it.
>> 
>> Just making the simple layout dumb with no management of any kind is not
>> going to solve that problem…
>> 
>> Harbs
>> 
>>> On Mar 27, 2018, at 11:51 PM, Alex Harui <aha...@adobe.com.INVALID>
>>> wrote:
>>> 
>>> Without having looked at the code in-depth...
>>> 
>>> Let's say you remove the reading of width/height from LayoutBase and
>>> make
>>> a CustomLayoutBase.  CustomLayoutBase can have all of the APIs of a
>>> LayoutManager as statics, or bring in a LayoutManager.  Hopefully,
>>> HelloWorld and many other examples will never drag in any
>>> CustomLayoutBase
>>> and/or a LayoutManager.  IOW, you can have a class, but have only the
>>> layouts that have to have it, bring it in.  The browser-based layouts
>>> are
>>> working just fine without it.
>>> 
>>> Sometimes I think that Flex ruined the way folks learned to write code.
>>> The notion that something is needed somewhere so everybody should carry
>>> it
>>> is really sort of a bad practice, but we did it in Flex for two reasons:
>>> the cost of objects was high back in AS2 and Flex 1.0, and  the main
>>> decision makers preferred swiss-army knives over a set of discrete
>>> knives.
>>> That was probably the right decision to make Flex popular.
>>> One-size-fits-all means that you never have to go back to the store to
>>> get
>>> something later.  But sometimes, one-sze-fits-all and swiss-army knives
>>> are too bulky.  I do not want to repeat the same decisions in Royale
>>> that
>>> led up to folks not being able to tune their apps and giving up on Flex.
>>> Beads, PAYG, and separation of concerns is a big mental shift, but I'm
>>> certain that by doing that, we will give users many more optins in the
>>> end game.
>>> 
>>> If LayoutManager does not really need to "do" anything, then it should
>>> not
>>> exist for simple layouts.
>>> 
>>> HTH,
>>> -Alex
>>> 
>>> On 3/27/18, 1:32 PM, "Harbs" <harbs.li...@gmail.com 
>>> <mailto:harbs.li...@gmail.com>
>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com>>> wrote:
>>> 
>>>> I don’t have any ideas on how to handle this without *some* class.
>>>> 
>>>> The “LayoutManager” class (or whatever you want to call it), does not
>>>> need to really *do* anything besides call the passed in function for
>>>> simple layouts.
>>>> 
>>>> Do you have any ideas on how we can inject something into make it
>>>> truly
>>>> PAYG?
>>>> 
>>>> Harbs
>>>> 
>>>>> On Mar 27, 2018, at 11:23 PM, Alex Harui <aha...@adobe.com.INVALID 
>>>>> <mailto:aha...@adobe.com.INVALID>>
>>>>> wrote:
>>>>> 
>>>>> Harbs,
>>>>> 
>>>>> IMO, HelloWorld and many other examples don't need a LayoutManager in
>>>>> the
>>>>> output.  So as long as LayoutManager is only brought in by the Layouts
>>>>> that need it it doesn't matter to me whether there is such a thing or
>>>>> not.
>>>>> 
>>>>> As a very minor point, I'm not clear that it is only Absolute layouts
>>>>> that
>>>>> need sizing logic so maybe there is a better name: Custom, Computed.
>>>>> And
>>>>> on the SWF side, everything sort of ends up being absolute.
>>>>> 
>>>>> Thanks,
>>>>> -Alex
>>>>> 
>>>>> On 3/27/18, 12:33 PM, "Harbs" <harbs.li...@gmail.com 
>>>>> <mailto:harbs.li...@gmail.com>
>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com> 
>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com>>>> wrote:
>>>>> 
>>>>>> I was thinking that the solution might be as simple as dispatching
>>>>>> layoutStart and layoutComplete events. We already have
>>>>>> layoutComplete,
>>>>>> and instead of blindly measuring, we can dispatch layoutStart The
>>>>>> parent
>>>>>> layout can decide whether measuring is necessary or not.
>>>>>> 
>>>>>> I’d keep the LayoutManager, but it would only delay layout if
>>>>>> measuring
>>>>>> is in fact necessary. If not, the layout would get executed
>>>>>> immediately.
>>>>>> 
>>>>>> I’d pull all the sizing logic out of LayoutBase and I’d create a new
>>>>>> AbsoluteLayoutBase which has all that kind of logic.
>>>>>> 
>>>>>> I’m pretty sure this would enable lean browser-based layouts as well
>>>>>> as
>>>>>> robust absolute layouts as needed.
>>>>>> 
>>>>>> Makes sense?
>>>>>> 
>>>>>> (And yes, after Passover I hope to help with the emulation
>>>>>> components.)
>>>>>> 
>>>>>> Harbs
>>>>>> 
>>>>>>> On Mar 27, 2018, at 7:51 PM, Alex Harui <aha...@adobe.com.INVALID 
>>>>>>> <mailto:aha...@adobe.com.INVALID>
>>>>>>> <mailto:aha...@adobe.com.INVALID <mailto:aha...@adobe.com.INVALID>>>
>>>>>>> wrote:
>>>>>>> 
>>>>>>> Harbs,
>>>>>>> 
>>>>>>> My recommendations are to refactor LayoutBase so that folks who feel
>>>>>> more
>>>>>>> comfortable letting the browser do the resizing can.  If you want to
>>>>>>> build
>>>>>>> out a completely different set of layout classes that don't use the
>>>>>>> browser at all, feel free to do so.  Some folks will probably trust
>>>>>>> Royale
>>>>>>> more if they can recognize common patterns in the DOM for layout,
>>>>>>> regardless of performance.  I'm having trouble believing that every
>>>>>>> production JS app has had to use absolute positioning to get
>>>>>>> satisfactory
>>>>>>> responsiveness.
>>>>>>> 
>>>>>>> I do not think we have the people power to try to write and debug
>>>>>>> every
>>>>>>> one of our layouts to use absolute positioning at this time.  I am
>>>>>>> hoping
>>>>>>> you can get your app up to sufficient speed soon and then can help
>>>>>>> us
>>>>>>> write emulation components instead of trying to optimize all of our
>>>>>>> existing layouts.
>>>>>>> 
>>>>>>> Tanks
>>>>>>> -Alex
>>>>>>> 
>>>>>>> On 3/27/18, 12:37 AM, "Harbs" <harbs.li...@gmail.com 
>>>>>>> <mailto:harbs.li...@gmail.com>
>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com>>
>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com> 
>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com>>
>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com> 
>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com>>>>>
>>>>>>> wrote:
>>>>>>> 
>>>>>>>> Again: I’m not arguing that we should not have layouts which
>>>>>>>> encapsulate
>>>>>>>> common website practices. Simple can sometimes be good, but simple
>>>>>>>> is
>>>>>>>> not
>>>>>>>> always the same as performant. Your assumption that native browser
>>>>>>>> layout
>>>>>>>> is fastest is simply not true. The browser generally needs to do a
>>>>>>>> full
>>>>>>>> sweep every time it calculates layout.
>>>>>>>> 
>>>>>>>> Did you run a performance timeline on those examples you linked to?
>>>>>>>> Try
>>>>>>>> resizing the window and you will see how jerky the layout actually
>>>>>>>> is.
>>>>>>>> Each re-render takesconsiderable measurable time.
>>>>>>>> 
>>>>>>>> Compare that to something like GSAP[1]. GSAP has hands-down the
>>>>>>>> best
>>>>>>>> performance on HTML animations.[2] One of the main reasons is
>>>>>>>> because
>>>>>>>> EVERYTHING is set using absolute positioning and does not rely on
>>>>>>>> browser
>>>>>>>> layout at all. GSAP has a crazy amount of javascript to calculate
>>>>>>>> how
>>>>>>>> big
>>>>>>>> and where (and color, etc) everything needs to be on each animation
>>>>>>>> frame, but it’s smooth as silk.
>>>>>>>> 
>>>>>>>> Additionally, there are many cases where we need to get size and
>>>>>>>> position
>>>>>>>> using javascript. Some examples: Drawing a hover effect over an
>>>>>>>> item
>>>>>>>> renderer —  or better: getting the position for drag and drop while
>>>>>>>> changing visuals as the drag indicator moves around. Animations
>>>>>>>> (and
>>>>>>>> many
>>>>>>>> animations are difficult or impossible to create by just using css.
>>>>>>>> My
>>>>>>>> app has no end to the number of places where I need to get
>>>>>>>> position.
>>>>>>>> In
>>>>>>>> short, the average website will probably not need very much in
>>>>>>>> terms
>>>>>>>> of
>>>>>>>> recalculating and css can be a good option for that, but many
>>>>>>>> applications will and will probably need absolute positioning to
>>>>>>>> get
>>>>>>>> the
>>>>>>>> best perforance.
>>>>>>>> 
>>>>>>>> Harbs
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> [1]https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F>
>>>>>>>> gr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>>> 
>>>>>>> ee 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee>
>>>>>>>>> 
>>>>>>>> ns 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee>
>>>>>>>> ns 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee>
>>>>>>>> ns
>>>>>>>>> 
>>>>>>>> ock.com <http://ock.com/> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock>
>>>>>>>> .com%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508d5
>>>>>>>> 9425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657781280634
>>>>>>>> 5289&sdata=ZR6BoY7zn7fxTneeOcqJv2JvtkXKzRbXxUH4A9Glmsk%3D&reserved=0
>>>>>>>>> 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock>
>>>>>>>> .c 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock>
>>>>>>>> .c>
>>>>>>>> om%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06345289&sdata=DfyV6fdDEDKZDTngLcDbhibx1LigoVmd53SlTx5eWfY%3D&reserv
>>>>>>>> ed=0>%7C1bf99b27d4384f5cfb808d59421
>>>>>>>> 
>>>>>>>> d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577795449062763
>>>>>>>> &s
>>>>>>>> data=VooCq1V%2FM%2BBVazI2G5DXnA4m6yDazphlV74UIt1Imak%3D&reserved=0>
>>>>>>>> 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock>
>>>>>>>> .c 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock>
>>>>>>>> .c>
>>>>>>>> om 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock>
>>>>>>>> .c 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock>
>>>>>>>> .c>
>>>>>>>> om>
>>>>>>>> %2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06345289&sdata=DfyV6fdDEDKZDTngLcDbhibx1LigoVmd53SlTx5eWfY%3D&reserv
>>>>>>>> ed=0>
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do>
>>>>>>>> be.com <http://be.com/> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fbe 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fbe>.
>>>>>>>> com%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508d59
>>>>>>>> 425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577812806345
>>>>>>>> 289&sdata=WYrlw27vnUDY%2F5Bqr5KG%2BnMWtsrwY51mew6o9ZZJRzU%3D&reserve
>>>>>>>> d=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06345289&sdata=DfyV6fdDEDKZDTngLcDbhibx1LigoVmd53SlTx5eWfY%3D&reserv
>>>>>>>> ed=0>%7C1bf99b27d43840f5cfb808d5
>>>>>>>> 
>>>>>>>> 9421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779544906
>>>>>>>> 27
>>>>>>>> 
>>>>>>>> 63&sdata=MQ8Hef4aWCxBFlGxrhlweoUx%2FML43fiNWvSBOK3LF50%3D&reserved=0
>>>>>>>>> %
>>>>>>>> 7C6a52ffe394124a457f2308d59419ad46
>>>>>>>> 
>>>>>>>> 
>>>>>>>> %7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577760365149502&sda
>>>>>>>> a
>>>>>>>> =p
>>>>>>>> 
>>>>>>>> 
>>>>>>>> kajrEzdSMZOwS%2FUW7eDNQ2vHmerC%2FPc4G8yLE637PM%3D&reserved=0>%2F%3Fe
>>>>>>>> xa
>>>>>>>> mp
>>>>>>>> le%3Dsortable-grid-using-draggable&data=02%7C01%7Caharui
>>>>>>>> %40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Cahrui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06345289&sdata=DfyV6fdDEDKZDTngLcDbhibx1LigoVmd53SlTx5eWfY%3D&reserv
>>>>>>>> ed=0> 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do>
>>>>>>>> be.com <http://be.com/> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fbe 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fbe>.
>>>>>>>> com%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508d59
>>>>>>> 425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577812806345
>>>>>>>> 289&sdata=WYrlw27vnUDY%2F5Bqr5KG%2BnMWtsrwY51mew6o9ZZJRzU%3D&reserve
>>>>>>>> d=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06345289&sdata=DfyV6fdDEDKZDTngLcDbhibx1LigoVmd53SlTx5eWfY%3D&reserv
>>>>>>>> ed=0>%7C1bf99b27d43840f5cfb808d5
>>>>>>>> 
>>>>>>>> 9421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779544906
>>>>>>>> 27
>>>>>>>> 
>>>>>>>> 63&sdata=MQ8Hef4aWCxBFlGxrhlweoUx%2FML43fiNWvSBOK3LF50%3D&reserved=0
>>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do>
>>>>>>>> be 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do>
>>>>>>>> be>
>>>>>>>> .com%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06345289&sdata=DfyV6fdDEDKZDTngLcDbhibx1LigoVmd53SlTx5eWfY%3D&reserv
>>>>>>>> ed=0>
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.potection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.potection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do>
>>>>>>>> be.com <http://be.com/> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fbe 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fbe>.
>>>>>>>> com%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508d59
>>>>>>>> 425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577812806345
>>>>>>>> 289&sdata=WYrlw27vnUDY%2F5Bqr5KG%2BnMWtsrwY51mew6o9ZZJRzU%3D&reserve
>>>>>>>> d=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06345289&sdata=DfyV6fdDEDKZDTngLcDbhibx1LigoVmd53SlTx5eWfY%3D&reserv
>>>>>>>> ed=0>%7C1bf99b27d43840f5cfb808d5
>>>>>>>> 
>>>>>>>> 9421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365779544906
>>>>>>>> 27
>>>>>>>> 
>>>>>>>> 63&sdata=MQ8Hef4aWCxBFlGxrhlweoUx%2FML43fiNWvSBOK3LF50%3D&reserved=0
>>>>>>>>> %
>>>>>>>> 7C6a52ffe394124a457f2308d59419
>>>>>>>> 
>>>>>>>> 
>>>>>>>> ad46%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577760365149502
>>>>>>>> &s
>>>>>>>> da
>>>>>>>> 
>>>>>>>> 
>>>>>>>> ta=URWqkJ5s1%2FyR9eEQiurCbppDx5jQXOVGs68kGVHyl1o%3D&reserved=0>%7C37
>>>>>>>> 87
>>>>>>>> 07
>>>>>>>> c0f7a1497ee34b08d593b5a50b%7Cfa7b1b5a7b34438794aed2c1
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 78decee1%7C0%7C0%7C636577330724835817&sdata=W9eTpZiNTREiGLkV1gucROT8
>>>>>>>> Hh
>>>>>>> VS
>>>>>>>> Ru
>>>>>>>> V7YmFEcdc8CFY%3D&reserved=0
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> [2]https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F>
>>>>>>>> gr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>>> 
>>>>>>>> ee 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee>
>>>>>>>>> 
>>>>>>>> ns 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee>
>>>>>>>> ns 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee>
>>>>>>>> ns>
>>>>>>>>> 
>>>>>>>> ock.com <http://ock.com/> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock>
>>>>>>>> .com%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508d5
>>>>>>>> 9425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657781280634
>>>>>>>> 5289&sdata=ZR6BoY7zn7fxTneeOcqJv2JvtkXKzRbXxUH4A9Glmsk%3D&reserved=0
>>>>>>>>> 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock>
>>>>>>>> .c 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock>
>>>>>>>> .c>
>>>>>>>> om%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06345289&sdata=DfyV6fdDEDKZDTngLcDbhibx1LigoVmd53SlTx5eWfY%3D&reserv
>>>>>>>> ed=0>%7C1bf99b27d43840f5cfb808d59421
>>>>>>>> 
>>>>>>>> d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577795449062763
>>>>>>>> &s
>>>>>>>> data=VooCq1V%2FM%2BBVazI2G5DXnA4m6yDazphlV74UIt1Imak%3D&reserved=0>
>>>>>>>> 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock>
>>>>>>>> .c 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock>
>>>>>>>> .c>
>>>>>>>> om 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock>
>>>>>>>> .c 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fock>
>>>>>>>> .c>
>>>>>>>> om>
>>>>>>>> %2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06345289&sdata=DfyV6fdDEDKZDTngLcDbhibx1LigoVmd53SlTx5eWfY%3D&reserv
>>>>>>>> ed=0>
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do>
>>>>>>>> be.com <http://be.com/> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fbe 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fbe>.
>>>>>>>> com%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508d59
>>>>>>>> 425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577812806345
>>>>>>>> 289&sdata=WYrlw27vnUDY%2F5Bqr5KG%2BnMWtsrwY51mew6o9ZZJRzU%3D&reserve
>>>>>>>> d=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06345289&sdata=DfyV6fdDEDKZDTngLcDbhibx1LigoVmd53SlTx5eWfY%3D&reserv
>>>>>>>> ed=0>%7C1bf99b27d43840f5cfb808d5
>>>>>>>> 
>>>>>>>> 9421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779544906
>>>>>>>> 27
>>>>>>>> 
>>>>>>>> 63&sdata=MQ8Hef4aWCxBFlGxrhlweoUx%2FML43fiNWvSBOK3LF50%3D&reserved=0
>>>>>>>>> %
>>>>>>>> 7C6a52ffe394124a457f2308d59419ad46
>>>>>>>> 
>>>>>>>> 
>>>>>>>> %7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577760365149502&sda
>>>>>>>> ta
>>>>>>>> =p
>>>>>>>> 
>>>>>>>> 
>>>>>>>> kajrEzdSMZOwS%2FUW7eDNQ2vHmerC%2FPc4G8yLE637PM%3D&reserved=0>%2Fjs%2
>>>>>>>> Fs
>>>>>>>> pe
>>>>>>>> ed.html&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06345289&sdata=DfyV6fdDEDKZDTngLcDbhibx1LigoVmd53SlTx5eWfY%3D&reserv
>>>>>>>> ed=0>
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do>
>>>>>>>> be.com <http://be.com/> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fbe 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fbe>.
>>>>>>>> com%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508d59
>>>>>>>> 425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577812806345
>>>>>>>> 289&sdata=WYrlw27vnUDY%2F5Bqr5KG%2BnMWtsrwY51mew6o9ZZJRzU%3D&reserve
>>>>>>>> d=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06345289&sdata=DfyV6fdDEDKZDTngLcDbhibx1LigoVmd53SlTx5eWfY%3D&reserv
>>>>>>>> ed=0>%7C1bf99b27d43840f5cfb808d5
>>>>>>>> 
>>>>>>>> 9421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779544906
>>>>>>>> 27
>>>>>>>> 
>>>>>>>> 63&sdata=MQ8Hef4aWCxBFlGxrhlweoUx%2FML43fiNWvSBOK3LF50%3D&reserved=0
>>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do>
>>>>>>>> be 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do>
>>>>>>>> be>
>>>>>>>> .com%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06345289&sdata=DfyV6fdDEDKZDTngLcDbhibx1LigoVmd53SlTx5eWfY%3D&reserv
>>>>>>>> ed=0>
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do>
>>>>>>>> be.com <http://be.com/> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fbe 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fbe>.
>>>>>>>> com%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508d59
>>>>>>>> 425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577812806345
>>>>>>>> 289&sdata=WYrlw27vnUDY%2F5Bqr5KG%2BnMWtsrwY51mew6o9ZZJRzU%3D&reserve
>>>>>>>> d=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06345289&sdata=DfyV6fdDEDKZDTngLcDbhibx1LigoVmd53SlTx5eWfY%3D&reserv
>>>>>>>> ed=0>%7C1bf99b27d43840f5cfb808d5
>>>>>>>> 
>>>>>>>> 9421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779544906
>>>>>>>> 27
>>>>>>>> 
>>>>>>>> 63&sdata=MQ8Hef4aWCxBFlGxrhlweoUx%2FML43fiNWvSBOK3LF50%3D&reserved=0
>>>>>>>>> %
>>>>>>>> 7C6a52ffe394124a457f2308d59419
>>>>>>>> 
>>>>>>>> 
>>>>>>>> ad46%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577760365159510
>>>>>>>> &s
>>>>>>>> da
>>>>>>>> 
>>>>>>>> 
>>>>>>>> ta=1Es73rjo%2Btr2%2Fz8Hpl8WAItJuQUSUM4bEJ7sY9002PM%3D&reserved=0>%7C
>>>>>>>> 37
>>>>>>>> 87
>>>>>>>> 07c0f7a1
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 497ee34b08d593b5a50b%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63
>>>>>>>> 65
>>>>>>>> 77
>>>>>>>> 33
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 0724835817&sdata=wJ7Ug6lDNm1Dfl2YOV071tRyJgboCtJ%2FpuacMKxLFZE%3D&re
>>>>>>>> se
>>>>>>>> rv
>>>>>>>> ed
>>>>>>>> =0 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee>
>>>>>>>> ns 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee>
>>>>>>>> ns>
>>>>>>>> oc 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee>
>>>>>>>> ns 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgr>
>>>>>>>> ee>
>>>>>>>> ns>
>>>>>>>> oc>
>>>>>>>> k.com <http://k.com/> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fk.c 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fk.c>
>>>>>>>> om%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508d594
>>>>>>>> 25e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128063452
>>>>>>>> 89&sdata=i9PTfu37cc24lpPfaCBYQOO6cv%2FLhEqvj0SoZHUJOtA%3D&reserved=0
>>>>>>>>> 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fk.c 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fk.c>
>>>>>>>> om 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fk.c 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fk.c>
>>>>>>>> om>
>>>>>>>> %2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06345289&sdata=DfyV6fdDEDKZDTngLcDbhibx1LigoVmd53SlTx5eWfY%3D&reserv
>>>>>>>> ed=0>%7C1bf99b27d43840f5cfb808d59421d8
>>>>>>>> 
>>>>>>>> 46%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577795449072770&s
>>>>>>>> da
>>>>>>>> ta=QQAjbT3p3ruzLreTO8LUCRCSbpRZ4d2%2BgGZqEA8XHaQ%3D&reserved=0>
>>>>>>>> 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fk.c 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fk.c>
>>>>>>>> om 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fk.c 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fk.c>
>>>>>>>> om>
>>>>>>>> %2 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fk.c 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fk.c>
>>>>>>>> om 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fk.c 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fk.c>
>>>>>>>> om>
>>>>>>>> %2>
>>>>>>>> F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3D&re
>>>>>>>> served=0>
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do>
>>>>>>>> be.com <http://be.com/> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fbe 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fbe>.
>>>>>>>> com%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508d59
>>>>>>>> 425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577812806501
>>>>>>>> 539&sdata=v3Kqc%2F7Bs05rfoxLWF%2FsO9fZk5CX8fEQVTOgxQnXlZE%3D&reserve
>>>>>>>> d=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3D&re
>>>>>>>> served=0>%7C1bf99b27d43840f5cfb808d5
>>>>>>>> 
>>>>>>>> 9421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779544907
>>>>>>>> 27
>>>>>>>> 
>>>>>>>> 70&sdata=b9Xx6p3kyZ%2BLPbvu7qhlLS5SmUA6WrqylCNYU45Q%2FUU%3D&reserved
>>>>>>>> =0
>>>>>>>>> %7C6a52ffe394124a457f2308d59419ad46%7
>>>>>>>> 
>>>>>>>> 
>>>>>>>> Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577760365159510&sdata
>>>>>>>> =m
>>>>>>>> kr
>>>>>>>> 
>>>>>>>> 
>>>>>>>> DNrCPJxFLvehi43iB2e22s8yQUP%2B0z7A4pqm0nZ4%3D&reserved=0>%2Fjs%2Fspe
>>>>>>>> ed
>>>>>>>> .h
>>>>>>>> tml&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3D&re
>>>>>>>> served=0>
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do>
>>>>>>>> be.com <http://be.com/> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fbe 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fbe>.
>>>>>>>> com%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508d59
>>>>>>>> 425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577812806501
>>>>>>>> 539&sdata=v3Kqc%2F7Bs05rfoxLWF%2FsO9fZk5CX8fEQVTOgxQnXlZE%3D&reserve
>>>>>>>> d=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3D&re
>>>>>>>> served=0>%7C1bf99b27d43840f5cfb808d5
>>>>>>>> 
>>>>>>>> 9421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779544907
>>>>>>>> 27
>>>>>>>> 
>>>>>>>> 70&sdata=b9Xx6p3kyZ%2BLPbvu7qhlLS5SmUA6WrqylCNYU45Q%2FUU%3D&reserved
>>>>>>>> =0
>>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do>
>>>>>>>> be 
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do>
>>>>>>>> be>
>>>>>>>> .com%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3D&re
>>>>>>>> served=0>
>>>>>>>> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> do>
>>>>>>>> be.com <http://be.com/> 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fbe 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fbe>.
>>>>>>>> com%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508d59
>>>>>>>> 425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577812806501
>>>>>>>> 539&sdata=v3Kqc%2F7Bs05rfoxLWF%2FsO9fZk5CX8fEQVTOgxQnXlZE%3D&reserve
>>>>>>>> d=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/>
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a 
>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40a>
>>>>>>>> dobe.com <http://dobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128
>>>>>>>> 06501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3D&re
>>>>>>>> served=0>%7C1bf99b27d43840f5cfb808d5
>>>>>>>> 
>>>>>>>> 9421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779544907
>>>>>>>> 27
>>>>>>>> 
>>>>>>>> 70&sdata=b9Xx6p3kyZ%2BLPbvu7qhlLS5SmUA6WrqylCNYU45Q%2FUU%3D&reserved
>>>>>>>> =0
>>>>>>>>> %7C6a52ffe394124a457f2308d59419
>>>>>>>> 
>>>>>>>> 
>>>>>>>> ad46%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577760365159510
>>>>>>>> &s
>>>>>>>> da
>>>>>>>> 
>>>>>>>> 
>>>>>>>> ta=1Es73rjo%2Btr2%2Fz8Hpl8WAItJuQUSUM4bEJ7sY9002PM%3D&reserved=0>%7C
>>>>>>>> 37
>>>>>>>> 87
>>>>>>>> 07c0f7a149
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 7ee34b08d593b5a50b%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365
>>>>>>>> 77
>>>>>>>> 33
>>>>>>>> 07
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 24835817&sdata=wJ7Ug6lDNm1Dfl2YOV071tRyJgboCtJ%2FpuacMKxLFZE%3D&rese
>>>>>>>> rv
>>>>>>>> ed
>>>>>>>> =0
>>>>>>>>> 
>>>>>>>> 
>>>>>>>>> On Mar 27, 2018, at 2:03 AM, Carlos Rovira
>>>>>>>>> <carlosrov...@apache.org <mailto:carlosrov...@apache.org> 
>>>>>>>>> <mailto:carlosrov...@apache.org <mailto:carlosrov...@apache.org>>
>>>>>>>>> <mailto:carlosrov...@apache.org <mailto:carlosrov...@apache.org> 
>>>>>>>>> <mailto:carlosrov...@apache.org <mailto:carlosrov...@apache.org>>>
>>>>>>>>> <mailto:carlosrov...@apache.org <mailto:carlosrov...@apache.org> 
>>>>>>>>> <mailto:carlosrov...@apache.org <mailto:carlosrov...@apache.org>>
>>>>>>>>> <mailto:carlosrov...@apache.org <mailto:carlosrov...@apache.org> 
>>>>>>>>> <mailto:carlosrov...@apache.org <mailto:carlosrov...@apache.org>>>>>
>>>>>>>>> wrote:
>>>>>>>>> 
>>>>>>>>> Hi Harbs, Piotr,
>>>>>>>>> 
>>>>>>>>> see this link [1] and [2]
>>>>>>>>> 
>>>>>>>>> This are only CSS rules to layout content. Here you have all the
>>>>>>>>> use
>>>>>>>>> cases
>>>>>>>>> we could have in a Royale app. things inside things that layouts
>>>>>>>>> responsively using percentage widths (see width:75% in examples
>>>>>>>>> and
>>>>>>>>> how
>>>>>>>>> this resizes with the resize of a window, and more... Don't see
>>>>>>>>> nothing
>>>>>>>>> we
>>>>>>>>> must do that is not there. And is only CSS. So my point is:
>>>>>>>>> 
>>>>>>>>> 1.- They are using the browser layout implementations vía CSS or 
>>>>>>>>> in
>>>>>>>>> other
>>>>>>>>> words the native rendering engine of a browser, and that's without
>>>>>>>>> doubt
>>>>>>>>> the most performant we can go
>>>>>>>>> 
>>>>>>>>> 2.- This is accomplished in the most easy and simple way to go 
>>>>>>>>> that
>>>>>>>>> is
>>>>>>>>> through CSS code without any JS programing.
>>>>>>>>> 
>>>>>>>>> So, finaly, we only need to do as easy as that. generating good
>>>>>>>>> simple
>>>>>>>>> html
>>>>>>>>> and css. We already did that leveraging MDL (and only 
>>>>>>>>> encapsulating
>>>>>>>>> what
>>>>>>>>> mdl people did), now is what I do with Jewel, trying to put that
>>>>>>>>> knowledge
>>>>>>>>> and the standards things I see in encapsulated patterns to make it
>>>>>>>>> easy
>>>>>>>>> to
>>>>>>>>> program in Royale.
>>>>>>>>> 
>>>>>>>>> So again, I continue without know what we need that is not there.
>>>>>>>>> Since
>>>>>>>>> if
>>>>>>>>> in that examples we have all things...we're done...we only need to
>>>>>>>>> encapsulate it in Royale as css and make it accesible vía Royale
>>>>>>>>> API,
>>>>>>>>> and
>>>>>>>>> we don't need to deal with any complex programmatic code.
>>>>>>>>> 
>>>>>>>>> Maybe I'm missing something here.
>>>>>>>>> 
>>>>>>>>> Thanks
>>>>>>>>> 
>>>>>>>>> [1] 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fww 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fww>
>>>>>>>>> w 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw>
>>>>>>>>> ww>.
>>>>>>>>> w3 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw>
>>>>>>>>> ww 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw>
>>>>>>>>> ww>
>>>>>>>>> .w3>
>>>>>>>>> sc 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw>
>>>>>>>>> ww 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw>
>>>>>>>>> ww>
>>>>>>>>> .w 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw>
>>>>>>>>> ww 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw>
>>>>>>>>> ww>
>>>>>>>>> .w>
>>>>>>>>> 3sc>
>>>>>>>>> hools.com <http://hools.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho>
>>>>>>>>> ols.com <http://ols.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577812
>>>>>>>>> 806501539&sdata=3E%2Bc6NGRfamFNg57eLdEyZd9k4djej0oSyNagmUU1EI%3D&re
>>>>>>>>> served=0> 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho>
>>>>>>>>> ol 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho>
>>>>>>>>> ol>
>>>>>>>>> s.com <http://s.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fs 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fs>.
>>>>>>>>> com%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508d5
>>>>>>>>> 9425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128065
>>>>>>>>> 01539&sdata=IFBuslTme%2B16jTYlliADTBRfyCb7mg4eSW1X%2FUNrCX8%3D&rese
>>>>>>>>> rved=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0>%7C1bf99b27d43840f5cfb808d5
>>>>>>>>> 
>>>>>>>>> 9421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365777954490
>>>>>>>>> 72
>>>>>>>>> 
>>>>>>>>> 770&sdata=x86VaauCo78DrPOdfy2Pl2XcQNp%2B%2BpCn6hujtyOOuv4%3D&reserv
>>>>>>>>> ed
>>>>>>>>> =0> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho>
>>>>>>>>> ol 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho>
>>>>>>>>> ol>
>>>>>>>>> s 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho>
>>>>>>>>> ol 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho>
>>>>>>>>> ol>
>>>>>>>>> s>.
>>>>>>>>> com%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0>
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad>
>>>>>>>>> obe.com <http://obe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fob 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fob>
>>>>>>>>> e.com <http://e.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508
>>>>>>>>> d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657781280
>>>>>>>>> 6501539&sdata=X6gAuqpdMP%2FZl4d4KlRb2nH5yt9jzxLrByLb2ihVHk8%3D&rese
>>>>>>>>> rved=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0>%7C1bf99b27d43840f5cfb808
>>>>>>>>> 
>>>>>>>>> d59421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779544
>>>>>>>>> 90
>>>>>>>>> 
>>>>>>>>> 72770&sdata=b9Xx6p3kyZ%2BLPbvu7qhlLS5SmUA6WrqylCNYU45Q%2FUU%3D&rese
>>>>>>>>> rv
>>>>>>>>> ed=0>%7C6a52ffe394124a457f2308d59419
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> ad46%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657776036515951
>>>>>>>>> 0&
>>>>>>>>> sd
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> ata=UEm6K%2BQW2OP%2Fie9AZwkFU9YlJ1koN0EMHbgm9h0iXOE%3D&reserved=0>%
>>>>>>>>> 2F
>>>>>>>>> w3
>>>>>>>>> css%2Fw3css_responsive.asp&data=02%7C01%7Caharui%40adobe.co 
>>>>>>>>> <http://40adobe.co/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.co <http://adobe.co/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49
>>>>>>>>> 508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657781
>>>>>>>>> 2806501539&sdata=1sU8aUPtACkPtCaImt4jm6EM2LHOUH0lkpS4WEa9xDE%3D&res
>>>>>>>>> erved=0>
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad>
>>>>>>>>> obe.co <http://obe.co/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fob 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fob>
>>>>>>>>> e.co <http://e.co/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508d
>>>>>>>>> 59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577812806
>>>>>>>>> 501539&sdata=bqgVXYSLP7WsEfRVK89j%2FB78axhCbUEg4ewxRxgnfqI%3D&reser
>>>>>>>>> ved=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0>%7C1bf99b27d43840f5cfb808d
>>>>>>>>> 
>>>>>>>>> 59421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577795449
>>>>>>>>> 07
>>>>>>>>> 
>>>>>>>>> 2770&sdata=uXhxSZxNu4DsyEJ9kLRk8hWw9WLXjwMHAXH9zR7v4XA%3D&reserved=
>>>>>>>>> 0>
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad>
>>>>>>>>> ob 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad>
>>>>>>>>> ob>
>>>>>>>>> e.co <http://e.co/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fe 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fe>.
>>>>>>>>> co%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508d59
>>>>>>>>> 425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657781280650
>>>>>>>>> 1539&sdata=60zomeXio2B3nrNBJI%2BhxJJNyetq7h3E%2FLJ5tAaJhTk%3D&reser
>>>>>>>>> ved=0> 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fe 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fe>.
>>>>>>>>> co 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fe 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fe>.
>>>>>>>>> co>
>>>>>>>>> %2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0>%7C1bf99b27d43840f5cfb808d59421d
>>>>>>>>> 
>>>>>>>>> 846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577795449072770
>>>>>>>>> &s
>>>>>>>>> 
>>>>>>>>> data=6RBaHpS30q9mJsOriFqIquWSjMYrCzYEmkB1s1O74R8%3D&reserved=0>%2F&
>>>>>>>>> da
>>>>>>>>> ta=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0>
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad>
>>>>>>>>> obe.com <http://obe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fob 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fob>
>>>>>>>>> e.com <http://e.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508
>>>>>>>>> d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657781280
>>>>>>>>> 6501539&sdata=X6gAuqpdMP%2FZl4d4KlRb2nH5yt9jzxLrByLb2ihVHk8%3D&rese
>>>>>>>>> rved=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0>%7C1bf99b27d43840f5cfb808
>>>>>>>>> 
>>>>>>>>> d59421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779544
>>>>>>>>> 90
>>>>>>>>> 
>>>>>>>>> 72770&sdata=b9Xx6p3kyZ%2BLPbvu7qhlLS5SmUA6WrqylCNYU45Q%2FUU%3D&rese
>>>>>>>>> rv
>>>>>>>>> ed=0>%7C6a52ffe394124a457f2308d5941
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 9ad46%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365777603651595
>>>>>>>>> 10
>>>>>>>>> &s
>>>>>>>>> data=wS6aM8LDqetOrzEhVlekMnalvMj0u4SPqr3iyRLlLtU%3D&reserved=0>
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> m%7C378707c0f7a1497ee34b08d593b5a50b%7Cfa7b1b5a7b34438794aed2c178de
>>>>>>>>> ce
>>>>>>>>> e1
>>>>>>>>> %7
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> C0%7C0%7C636577330724835817&sdata=pZVupqKYaJ9gLEdexwtizNMI%2FhaVssJ
>>>>>>>>> Jg
>>>>>>>>> Gw
>>>>>>>>> yf
>>>>>>>>> Xd64hQ%3D&reserved=0
>>>>>>>>> [2] 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fww 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fww>
>>>>>>>>> w 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw>
>>>>>>>>> ww>.
>>>>>>>>> w3 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw>
>>>>>>>>> ww 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw>
>>>>>>>>> ww>
>>>>>>>>> .w3>
>>>>>>>>> sc 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw>
>>>>>>>>> ww 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw>
>>>>>>>>> ww>
>>>>>>>>> .w 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw>
>>>>>>>>> ww 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fw>
>>>>>>>>> ww>
>>>>>>>>> .w>
>>>>>>>>> 3sc>
>>>>>>>>> hools.com <http://hools.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho>
>>>>>>>>> ols.com <http://ols.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f495
>>>>>>>>> 08d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577812
>>>>>>>>> 806501539&sdata=3E%2Bc6NGRfamFNg57eLdEyZd9k4djej0oSyNagmUU1EI%3D&re
>>>>>>>>> served=0> 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho>
>>>>>>>>> ol 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho>
>>>>>>>>> ol>
>>>>>>>>> s.com <http://s.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fs 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fs>.
>>>>>>>>> com%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508d5
>>>>>>>>> 9425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128065
>>>>>>>>> 01539&sdata=IFBuslTme%2B16jTYlliADTBRfyCb7mg4eSW1X%2FUNrCX8%3D&rese
>>>>>>>>> rved=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0>%7C1bf99b27d43840f5cfb808d5
>>>>>>>>> 
>>>>>>>>> 9421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365777954490
>>>>>>>>> 82
>>>>>>>>> 
>>>>>>>>> 778&sdata=XVAXz6ixcCh4sNaKElbhDt1uLzx0EDMrnCXN7FKEubw%3D&reserved=0
>>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho>
>>>>>>>>> ol 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho>
>>>>>>>>> ol>
>>>>>>>>> s 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho>
>>>>>>>>> ol 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fho>
>>>>>>>>> ol>
>>>>>>>>> s>.
>>>>>>>>> com%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0>
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad>
>>>>>>>>> obe.com <http://obe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fob 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fob>
>>>>>>>>> e.com <http://e.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508
>>>>>>>>> d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657781280
>>>>>>>>> 6501539&sdata=X6gAuqpdMP%2FZl4d4KlRb2nH5yt9jzxLrByLb2ihVHk8%3D&rese
>>>>>>>>> rved=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0>%7C1bf99b27d43840f5cfb808
>>>>>>>>> 
>>>>>>>>> d59421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779544
>>>>>>>>> 90
>>>>>>>>> 
>>>>>>>>> 82778&sdata=WoAQlCkUL96YqDSsSLiToO6WK4aRh%2B7crrN03px0fxo%3D&reserv
>>>>>>>>> ed
>>>>>>>>> =0>%7C6a52ffe394124a457f2308d59419
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> ad46%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657776036515951
>>>>>>>>> 0&
>>>>>>>>> sd
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> ata=UEm6K%2BQW2OP%2Fie9AZwkFU9YlJ1koN0EMHbgm9h0iXOE%3D&reserved=0>%
>>>>>>>>> 2F
>>>>>>>>> w3
>>>>>>>>> css%2Fw3css_layout.asp&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0>
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad>
>>>>>>>>> obe.com <http://obe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fob 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fob>
>>>>>>>>> e.com <http://e.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508
>>>>>>>>> d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657781280
>>>>>>>>> 6501539&sdata=X6gAuqpdMP%2FZl4d4KlRb2nH5yt9jzxLrByLb2ihVHk8%3D&rese
>>>>>>>>> rved=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0>%7C1bf99b27d43840f5cfb808
>>>>>>>>> 
>>>>>>>>> d59421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779544
>>>>>>>>> 90
>>>>>>>>> 
>>>>>>>>> 82778&sdata=WoAQlCkUL96YqDSsSLiToO6WK4aRh%2B7crrN03px0fxo%3D&reserv
>>>>>>>>> ed
>>>>>>>>> =0>
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad>
>>>>>>>>> ob 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad>
>>>>>>>>> ob>
>>>>>>>>> e.com <http://e.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fe 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fe>.
>>>>>>>>> com%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508d5
>>>>>>>>> 9425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128065
>>>>>>>>> 01539&sdata=51HLVA2h82yovnt%2F8dJv%2BGPWP5PEDA6V355C7VfT7vA%3D&rese
>>>>>>>>> rved=0> 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fe 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fe>.
>>>>>>>>> co 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fe 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fe>.
>>>>>>>>> co>
>>>>>>>>> m%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0>%7C1bf99b27d43840f5cfb808d59421
>>>>>>>>> 
>>>>>>>>> d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779544908277
>>>>>>>>> 8&
>>>>>>>>> 
>>>>>>>>> sdata=WcOuqq8faOP4tzA6AvdWFyntk81eqL7aAM3Gmb0qRYM%3D&reserved=0>%2F
>>>>>>>>> &d
>>>>>>>>> ata=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0>
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad>
>>>>>>>>> obe.com <http://obe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fob 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fob>
>>>>>>>>> e.com <http://e.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508
>>>>>>>>> d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657781280
>>>>>>>>> 6501539&sdata=X6gAuqpdMP%2FZl4d4KlRb2nH5yt9jzxLrByLb2ihVHk8%3D&rese
>>>>>>>>> rved=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0>%7C1bf99b27d43840f5cfb808
>>>>>>>>> 
>>>>>>>>> d59421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779544
>>>>>>>>> 90
>>>>>>>>> 
>>>>>>>>> 82778&sdata=WoAQlCkUL96YqDSsSLiToO6WK4aRh%2B7crrN03px0fxo%3D&reserv
>>>>>>>>> ed
>>>>>>>>> =0>%7C6a52ffe394124a457f2308d594
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 19ad46%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577760365159
>>>>>>>>> 51
>>>>>>>>> 0&
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> sdata=1Es73rjo%2Btr2%2Fz8Hpl8WAItJuQUSUM4bEJ7sY9002PM%3D&reserved=0
>>>>>>>>>> %
>>>>>>>>> 7C
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 378707c0f7a1497ee34b08d593b5a50b%7Cfa7b1b5a7b34438794aed2c178decee1
>>>>>>>>> %7
>>>>>>>>> C0
>>>>>>>>> %7
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> C0%7C636577330724835817&sdata=bhwYmvCk7X3YuAynbvnWL9yC%2FXx82zph1FZ
>>>>>>>>> 3e
>>>>>>>>> 7h
>>>>>>>>> 0T
>>>>>>>>> VA%3D&reserved=0
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 2018-03-27 0:42 GMT+02:00 Piotr Zarzycki 
>>>>>>>>> <piotrzarzyck...@gmail.com <mailto:piotrzarzyck...@gmail.com> 
>>>>>>>>> <mailto:piotrzarzyck...@gmail.com <mailto:piotrzarzyck...@gmail.com>>
>>>>>>>>> <mailto:piotrzarzyck...@gmail.com <mailto:piotrzarzyck...@gmail.com> 
>>>>>>>>> <mailto:piotrzarzyck...@gmail.com <mailto:piotrzarzyck...@gmail.com>>>
>>>>>>>>> <mailto:piotrzarzyck...@gmail.com <mailto:piotrzarzyck...@gmail.com> 
>>>>>>>>> <mailto:piotrzarzyck...@gmail.com <mailto:piotrzarzyck...@gmail.com>>
>>>>>>>>> <mailto:piotrzarzyck...@gmail.com <mailto:piotrzarzyck...@gmail.com> 
>>>>>>>>> <mailto:piotrzarzyck...@gmail.com 
>>>>>>>>> <mailto:piotrzarzyck...@gmail.com>>>>>:
>>>>>>>>> 
>>>>>>>>>> Reading Harbs and his real world example maybe that approach with
>>>>>>>>>> saving
>>>>>>>>>> some values is a big winner for Royale. Instead going with the
>>>>>>>>>> current
>>>>>>>>>> Flow
>>>>>>>>>> of web design let's try and see what happen.
>>>>>>>>>> 
>>>>>>>>>> Today I had pretty interesting chat with my friend who has deeper
>>>>>>>>>> knowledge
>>>>>>>>>> about JS stuff. He said that too many people is going with the 
>>>>>>>>>> Flow
>>>>>>>>>> which
>>>>>>>>>> has been served by bigger players like Facebook - React etc.
>>>>>>>>>> Although
>>>>>>>>>> it is
>>>>>>>>>> pretty awesome framework it's just failing when you have BIG fat
>>>>>>>>>> complex
>>>>>>>>>> application, where performance is important, not saying about
>>>>>>>>>> quality
>>>>>>>>>> of
>>>>>>>>>> code.
>>>>>>>>>> 
>>>>>>>>>> I see we may win on all of that fields. Maybe different approach 
>>>>>>>>>> is
>>>>>>>>>> solution, instead blindly believe in the browser and better
>>>>>>>>>> implementation
>>>>>>>>>> in the future.
>>>>>>>>>> 
>>>>>>>>>> Thanks,
>>>>>>>>>> Piotr
>>>>>>>>>> 
>>>>>>>>>> 2018-03-27 0:22 GMT+02:00 Harbs <harbs.li...@gmail.com 
>>>>>>>>>> <mailto:harbs.li...@gmail.com> 
>>>>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com>>
>>>>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com> 
>>>>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com>>>
>>>>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com> 
>>>>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com>> 
>>>>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com> 
>>>>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com>>>>>:
>>>>>>>>>> 
>>>>>>>>>>> Case in point:
>>>>>>>>>>> 
>>>>>>>>>>> In my app, I’m using OneFlexibleChildHorizontalLayout which uses
>>>>>>>>>> flexbox.
>>>>>>>>>>> Great. No need for writing values. Right?
>>>>>>>>>>> 
>>>>>>>>>>> Not so fast.
>>>>>>>>>>> 
>>>>>>>>>>> I have fit to view functionality in my app which needs to get 
>>>>>>>>>>> the
>>>>>>>>>>> size of
>>>>>>>>>>> the flexibleChild which is the container to figure out how much 
>>>>>>>>>>> to
>>>>>>>>>>> scale
>>>>>>>>>>> the content. The entire fit function takes 36 ms to run. The
>>>>>>>>>>> height
>>>>>>>>>> getter
>>>>>>>>>>> on the flexibleChild *alone* takes 14 ms. If the size of the
>>>>>>>>>> flexibleChild
>>>>>>>>>>> was hard-coded, the getter would not take measurable time.
>>>>>>>>>>> 
>>>>>>>>>>> I have tons of hard coded size and positioning of SVG in my app
>>>>>>>>>> (literally
>>>>>>>>>>> hundreds of DOM objects) and it runs ridiculously fast compared 
>>>>>>>>>>> to
>>>>>>>>>>> all
>>>>>>>>>> the
>>>>>>>>>>> Recalculate Styles which are caused by default browser layout.
>>>>>>>>>>> 
>>>>>>>>>>> I’d really love to get some hard numbers from comparing the
>>>>>>>>>>> approaches.
>>>>>>>>>>> 
>>>>>>>>>>> Harbs
>>>>>>>>>>> 
>>>>>>>>>>>> On Mar 26, 2018, at 11:28 PM, Harbs <harbs.li...@gmail.com 
>>>>>>>>>>>> <mailto:harbs.li...@gmail.com> 
>>>>>>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com>>
>>>>>>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com> 
>>>>>>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com>>>
>>>>>>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com> 
>>>>>>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com>> 
>>>>>>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com> 
>>>>>>>>>>>> <mailto:harbs.li...@gmail.com <mailto:harbs.li...@gmail.com>>>>>
>>>>>>>>>>>> wrote:
>>>>>>>>>>>> 
>>>>>>>>>>>> With hard-coded values DOM interaction could be kept to a
>>>>>>>>>>>> minimum.
>>>>>>>>>>>> It
>>>>>>>>>>> would be an interesting experiment to see what would happen if 
>>>>>>>>>>> we
>>>>>>>>>>> *don’t*
>>>>>>>>>>> rely on browser layout and hard code everything.
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> --
>>>>>>>>>> 
>>>>>>>>>> Piotr Zarzycki
>>>>>>>>>> 
>>>>>>>>>> Patreon: 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> *https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F>
>>>>>>>>>> ww 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F>
>>>>>>>>>> ww>
>>>>>>>>>> w 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F>
>>>>>>>>>> ww 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F>
>>>>>>>>>> ww>
>>>>>>>>>> w>.
>>>>>>>>>> pa 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F>
>>>>>>>>>> ww 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F>
>>>>>>>>>> ww>
>>>>>>>>>> w 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F>
>>>>>>>>>> ww 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F>
>>>>>>>>>> ww>
>>>>>>>>>> w>.
>>>>>>>>>> pa>
>>>>>>>>>> treon.com <http://treon.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft>
>>>>>>>>>> reon.com <http://reon.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577
>>>>>>>>>> 812806501539&sdata=bumd6pYKV98zVtj27EfYv9%2FbLBgkpRZOLauSD83hJ1Q%3
>>>>>>>>>> D&reserved=0> 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft>
>>>>>>>>>> re 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft>
>>>>>>>>>> re>
>>>>>>>>>> on.com <http://on.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fo 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fo>
>>>>>>>>>> n.com <http://n.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4950
>>>>>>>>>> 8d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577812
>>>>>>>>>> 806501539&sdata=7Ojm8%2BGuJC5WWddigRHNERVCWyQbMD0WlAhFe8YwAsI%3D&r
>>>>>>>>>> eserved=0>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0adobe.com <http://0adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06
>>>>>>>>>> f49508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365
>>>>>>>>>> 77812806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGc
>>>>>>>>>> BE%3D&reserved=0>%7C1bf99b27d43840f5cfb808
>>>>>>>>>> 
>>>>>>>>>> d59421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365777954
>>>>>>>>>> 49
>>>>>>>>>> 
>>>>>>>>>> 082778&sdata=vMKJKvuwjRmwlnJYRtf4%2FUCs8kftRXzCZmQ6injd1fA%3D&rese
>>>>>>>>>> rv
>>>>>>>>>> ed=0> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft>
>>>>>>>>>> re 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft>
>>>>>>>>>> re>
>>>>>>>>>> on 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft>
>>>>>>>>>> re 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft>
>>>>>>>>>> re>
>>>>>>>>>> on>
>>>>>>>>>> .com%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0adobe.com <http://0adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06
>>>>>>>>>> f49508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365
>>>>>>>>>> 77812806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGc
>>>>>>>>>> BE%3D&reserved=0>
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a>
>>>>>>>>>> dobe.com <http://dobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fd 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fd>
>>>>>>>>>> obe.com <http://obe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49
>>>>>>>>>> 508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>>> 12806501539&sdata=FsN09CvvTcjMuZiHnQqF%2FhzGzS6550W%2BDnabAr7mt4A%
>>>>>>>>>> 3D&reserved=0>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0adobe.com <http://0adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06
>>>>>>>>>> f49508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365
>>>>>>>>>> 77812806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGc
>>>>>>>>>> BE%3D&reserved=0>%7C1bf99b27d43840f5cfb8
>>>>>>>>>> 
>>>>>>>>>> 08d59421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779
>>>>>>>>>> 54
>>>>>>>>>> 
>>>>>>>>>> 49082778&sdata=WoAQlCkUL96YqDSsSLiToO6WK4aRh%2B7crrN03px0fxo%3D&re
>>>>>>>>>> se
>>>>>>>>>> rved=0>%7C6a52ffe394124a457f2308d594
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 19ad46%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657776036515
>>>>>>>>>> 95
>>>>>>>>>> 10
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> &sdata=IUQ0v%2BSfRqzj7hYLDCP%2F0RMf744ShjqUy6cV2SeRBoI%3D&reserved
>>>>>>>>>> =0
>>>>>>>>>>> %
>>>>>>>>>> 2Fpiotrzarzycki&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0adobe.com <http://0adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06
>>>>>>>>>> f49508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365
>>>>>>>>>> 77812806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGc
>>>>>>>>>> BE%3D&reserved=0>
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a>
>>>>>>>>>> dobe.com <http://dobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fd 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fd>
>>>>>>>>>> obe.com <http://obe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49
>>>>>>>>>> 508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>>> 12806501539&sdata=FsN09CvvTcjMuZiHnQqF%2FhzGzS6550W%2BDnabAr7mt4A%
>>>>>>>>>> 3D&reserved=0>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0adobe.com <http://0adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06
>>>>>>>>>> f49508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365
>>>>>>>>>> 77812806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGc
>>>>>>>>>> BE%3D&reserved=0>%7C1bf99b27d43840f5cfb8
>>>>>>>>>> 
>>>>>>>>>> 08d59421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779
>>>>>>>>>> 54
>>>>>>>>>> 
>>>>>>>>>> 49082778&sdata=WoAQlCkUL96YqDSsSLiToO6WK4aRh%2B7crrN03px0fxo%3D&re
>>>>>>>>>> se
>>>>>>>>>> rved=0>
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a>
>>>>>>>>>> do 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a>
>>>>>>>>>> do>
>>>>>>>>>> be.com <http://be.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fb 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fb>
>>>>>>>>>> e.com <http://e.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4950
>>>>>>>>>> 8d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577812
>>>>>>>>>> 806501539&sdata=v3Kqc%2F7Bs05rfoxLWF%2FsO9fZk5CX8fEQVTOgxQnXlZE%3D
>>>>>>>>>> &reserved=0> 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fb 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fb>
>>>>>>>>>> e 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fb 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fb>
>>>>>>>>>> e>.
>>>>>>>>>> com%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0adobe.com <http://0adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06
>>>>>>>>>> f49508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365
>>>>>>>>>> 77812806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGc
>>>>>>>>>> BE%3D&reserved=0>%7C1bf99b27d43840f5cfb808d59
>>>>>>>>>> 
>>>>>>>>>> 421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365777954490
>>>>>>>>>> 82
>>>>>>>>>> 
>>>>>>>>>> 778&sdata=oA%2FoJF9gCmONrLWFewYcWOd6DD5hJEKxRKZGyCs4oDM%3D&reserve
>>>>>>>>>> d=
>>>>>>>>>> 0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0adobe.com <http://0adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06
>>>>>>>>>> f49508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365
>>>>>>>>>> 77812806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGc
>>>>>>>>>> BE%3D&reserved=0>
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a>
>>>>>>>>>> dobe.com <http://dobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fd 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fd>
>>>>>>>>>> obe.com <http://obe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49
>>>>>>>>>> 508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>>> 12806501539&sdata=FsN09CvvTcjMuZiHnQqF%2FhzGzS6550W%2BDnabAr7mt4A%
>>>>>>>>>> 3D&reserved=0>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0adobe.com <http://0adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06
>>>>>>>>>> f49508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365
>>>>>>>>>> 77812806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGc
>>>>>>>>>> BE%3D&reserved=0>%7C1bf99b27d43840f5cfb8
>>>>>>>>>> 
>>>>>>>>>> 08d59421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779
>>>>>>>>>> 54
>>>>>>>>>> 
>>>>>>>>>> 49092786&sdata=fnC9HvAwJXXiCzTXHN1lc4PMCFJr7ZyuV1M5HA4Y4gk%3D&rese
>>>>>>>>>> rv
>>>>>>>>>> ed=0>%7C6a52ffe394124a457f2308d5
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 9419ad46%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577760365
>>>>>>>>>> 15
>>>>>>>>>> 95
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 10&sdata=1Es73rjo%2Btr2%2Fz8Hpl8WAItJuQUSUM4bEJ7sY9002PM%3D&reserv
>>>>>>>>>> ed
>>>>>>>>>> =0
>>>>>>>>>>> %7C378707c0f7
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> a1497ee34b08d593b5a50b%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%
>>>>>>>>>> 7C
>>>>>>>>>> 63
>>>>>>>>>> 65
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 77330724835817&sdata=SlwXFmttSOExzUOXuifgGWea%2BLqIF0mIX2ImQsVSU9w
>>>>>>>>>> %3
>>>>>>>>>> D&
>>>>>>>>>> re
>>>>>>>>>> served=0
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F>
>>>>>>>>>> ww 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F>
>>>>>>>>>> ww>
>>>>>>>>>> w 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F>
>>>>>>>>>> ww 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F>
>>>>>>>>>> ww>
>>>>>>>>>> w>.
>>>>>>>>>> pa 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F>
>>>>>>>>>> ww 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F>
>>>>>>>>>> ww>
>>>>>>>>>> w 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F>
>>>>>>>>>> ww 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F>
>>>>>>>>>> ww>
>>>>>>>>>> w>.
>>>>>>>>>> pa>
>>>>>>>>>> treon.com <http://treon.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft>
>>>>>>>>>> reon.com <http://reon.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577
>>>>>>>>>> 812806501539&sdata=bumd6pYKV98zVtj27EfYv9%2FbLBgkpRZOLauSD83hJ1Q%3
>>>>>>>>>> D&reserved=0> 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft>
>>>>>>>>>> re 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft>
>>>>>>>>>> re>
>>>>>>>>>> on.com <http://on.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fo 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fo>
>>>>>>>>>> n.com <http://n.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4950
>>>>>>>>>> 8d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577812
>>>>>>>>>> 806501539&sdata=7Ojm8%2BGuJC5WWddigRHNERVCWyQbMD0WlAhFe8YwAsI%3D&r
>>>>>>>>>> eserved=0>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0adobe.com <http://0adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06
>>>>>>>>>> f49508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365
>>>>>>>>>> 77812806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGc
>>>>>>>>>> BE%3D&reserved=0>%7C1bf99b27d43840f5cfb808
>>>>>>>>>> 
>>>>>>>>>> d59421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365777954
>>>>>>>>>> 49
>>>>>>>>>> 
>>>>>>>>>> 092786&sdata=Z83cjcblKpbp9gjxSYwya1Rlh2NVUjcdZP3l0%2BpRcFY%3D&rese
>>>>>>>>>> rv
>>>>>>>>>> ed=0> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft>
>>>>>>>>>> re 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft>
>>>>>>>>>> re>
>>>>>>>>>> on 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft>
>>>>>>>>>> re 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Ft>
>>>>>>>>>> re>
>>>>>>>>>> on>
>>>>>>>>>> .com%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0adobe.com <http://0adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06
>>>>>>>>>> f49508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365
>>>>>>>>>> 77812806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGc
>>>>>>>>>> BE%3D&reserved=0>
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a>
>>>>>>>>>> dobe.com <http://dobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fd 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fd>
>>>>>>>>>> obe.com <http://obe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49
>>>>>>>>>> 508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>>> 12806501539&sdata=FsN09CvvTcjMuZiHnQqF%2FhzGzS6550W%2BDnabAr7mt4A%
>>>>>>>>>> 3D&reserved=0>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0adobe.com <http://0adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06
>>>>>>>>>> f49508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365
>>>>>>>>>> 77812806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGc
>>>>>>>>>> BE%3D&reserved=0>%7C1bf99b27d43840f5cfb8
>>>>>>>>>> 
>>>>>>>>>> 08d59421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779
>>>>>>>>>> 54
>>>>>>>>>> 
>>>>>>>>>> 49092786&sdata=fnC9HvAwJXXiCzTXHN1lc4PMCFJr7ZyuV1M5HA4Y4gk%3D&rese
>>>>>>>>>> rv
>>>>>>>>>> ed=0>%7C6a52ffe394124a457f2308d594
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 19ad46%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657776036515
>>>>>>>>>> 95
>>>>>>>>>> 10
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> &sdata=IUQ0v%2BSfRqzj7hYLDCP%2F0RMf744ShjqUy6cV2SeRBoI%3D&reserved
>>>>>>>>>> =0
>>>>>>>>>>> %
>>>>>>>>>> 2Fpiotrzarzycki&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0adobe.com <http://0adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06
>>>>>>>>>> f49508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365
>>>>>>>>>> 77812806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGc
>>>>>>>>>> BE%3D&reserved=0>
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a>
>>>>>>>>>> dobe.com <http://dobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fd 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fd>
>>>>>>>>>> obe.com <http://obe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49
>>>>>>>>>> 508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>>> 12806501539&sdata=FsN09CvvTcjMuZiHnQqF%2FhzGzS6550W%2BDnabAr7mt4A%
>>>>>>>>>> 3D&reserved=0>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0adobe.com <http://0adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06
>>>>>>>>>> f49508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365
>>>>>>>>>> 77812806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGc
>>>>>>>>>> BE%3D&reserved=0>%7C1bf99b27d43840f5cfb8
>>>>>>>>>> 
>>>>>>>>>> 08d59421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779
>>>>>>>>>> 54
>>>>>>>>>> 
>>>>>>>>>> 49092786&sdata=fnC9HvAwJXXiCzTXHN1lc4PMCFJr7ZyuV1M5HA4Y4gk%3D&rese
>>>>>>>>>> rv
>>>>>>>>>> ed=0>
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a>
>>>>>>>>>> do 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a>
>>>>>>>>>> do>
>>>>>>>>>> be.com <http://be.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fb 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fb>
>>>>>>>>>> e.com <http://e.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4950
>>>>>>>>>> 8d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577812
>>>>>>>>>> 806501539&sdata=v3Kqc%2F7Bs05rfoxLWF%2FsO9fZk5CX8fEQVTOgxQnXlZE%3D
>>>>>>>>>> &reserved=0> 
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fb 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fb>
>>>>>>>>>> e 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fb 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fb>
>>>>>>>>>> e>.
>>>>>>>>>> com%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0adobe.com <http://0adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06
>>>>>>>>>> f49508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365
>>>>>>>>>> 77812806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGc
>>>>>>>>>> BE%3D&reserved=0>%7C1bf99b27d43840f5cfb808d59
>>>>>>>>>> 
>>>>>>>>>> 421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365777954490
>>>>>>>>>> 92
>>>>>>>>>> 
>>>>>>>>>> 786&sdata=rURWQEy%2FI3%2FdqLFgnlYBtkeiNUmJpl2IUBAGwbDP%2BeM%3D&res
>>>>>>>>>> er
>>>>>>>>>> ved=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0adobe.com <http://0adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06
>>>>>>>>>> f49508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365
>>>>>>>>>> 77812806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGc
>>>>>>>>>> BE%3D&reserved=0>
>>>>>>>>>> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0a>
>>>>>>>>>> dobe.com <http://dobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fd 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fd>
>>>>>>>>>> obe.com <http://obe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49
>>>>>>>>>> 508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>>> 12806501539&sdata=FsN09CvvTcjMuZiHnQqF%2FhzGzS6550W%2BDnabAr7mt4A%
>>>>>>>>>> 3D&reserved=0>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/> 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4 
>>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F4>
>>>>>>>>>> 0adobe.com <http://0adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06
>>>>>>>>>> f49508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365
>>>>>>>>>> 77812806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGc
>>>>>>>>>> BE%3D&reserved=0>%7C1bf99b27d43840f5cfb8
>>>>>>>>>> 
>>>>>>>>>> 08d59421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779
>>>>>>>>>> 54
>>>>>>>>>> 
>>>>>>>>>> 49092786&sdata=fnC9HvAwJXXiCzTXHN1lc4PMCFJr7ZyuV1M5HA4Y4gk%3D&rese
>>>>>>>>>> rv
>>>>>>>>>> ed=0>%7C6a52ffe394124a457f2308d5
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 9419ad46%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577760365
>>>>>>>>>> 16
>>>>>>>>>> 95
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 18&sdata=Uujs9Y6IbX2is4nspPNbi58ivuhr3R4Rh4u00fz%2FMkY%3D&reserved
>>>>>>>>>> =0
>>>>>>>>>>> %
>>>>>>>>>> 7C378707c0f7
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> a1497ee34b08d593b5a50b%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%
>>>>>>>>>> 7C
>>>>>>>>>> 63
>>>>>>>>>> 65
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 77330724835817&sdata=SlwXFmttSOExzUOXuifgGWea%2BLqIF0mIX2ImQsVSU9w
>>>>>>>>>> %3
>>>>>>>>>> D&
>>>>>>>>>> re
>>>>>>>>>> served=0>*
>>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> -- 
>>>>>>>>> Carlos Rovira
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fabo 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fabo>
>>>>>>>>> ut 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fab 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fab>
>>>>>>>>> out>
>>>>>>>>> .m 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fab 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fab>
>>>>>>>>> ou 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fab 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fab>
>>>>>>>>> ou>
>>>>>>>>> t.m>
>>>>>>>>> e% 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fab 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fab>
>>>>>>>>> ou 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fab 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fab>
>>>>>>>>> ou>
>>>>>>>>> t 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fab 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fab>
>>>>>>>>> ou 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fab 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fab>
>>>>>>>>> ou>
>>>>>>>>> t>.
>>>>>>>>> me%>
>>>>>>>>> 2Fcarlosrovira&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0> 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad>
>>>>>>>>> obe.com <http://obe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fob 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fob>
>>>>>>>>> e.com <http://e.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508
>>>>>>>>> d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657781280
>>>>>>>>> 6501539&sdata=X6gAuqpdMP%2FZl4d4KlRb2nH5yt9jzxLrByLb2ihVHk8%3D&rese
>>>>>>>>> rved=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0>%7C1bf99b27d43840f5cfb808
>>>>>>>>> 
>>>>>>>>> d59421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779544
>>>>>>>>> 90
>>>>>>>>> 
>>>>>>>>> 92786&sdata=fnC9HvAwJXXiCzTXHN1lc4PMCFJr7ZyuV1M5HA4Y4gk%3D&reserved
>>>>>>>>> =0
>>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad>
>>>>>>>>> ob 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad>
>>>>>>>>> ob>
>>>>>>>>> e.com <http://e.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fe 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fe>.
>>>>>>>>> com%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508d5
>>>>>>>>> 9425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778128065
>>>>>>>>> 01539&sdata=51HLVA2h82yovnt%2F8dJv%2BGPWP5PEDA6V355C7VfT7vA%3D&rese
>>>>>>>>> rved=0> 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fe 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fe>.
>>>>>>>>> co 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fe 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fe>.
>>>>>>>>> co>
>>>>>>>>> m%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0>%7C1bf99b27d43840f5cfb808d59421
>>>>>>>>> 
>>>>>>>>> d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779544909278
>>>>>>>>> 6&
>>>>>>>>> 
>>>>>>>>> sdata=uTVv3yKYjUYiDizPyu4lJtu%2B9XZgj%2BY4tdMKs%2F31P%2B8%3D&reserv
>>>>>>>>> ed
>>>>>>>>> =0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0> 
>>>>>>>>> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> ad>
>>>>>>>>> obe.com <http://obe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fob 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fob>
>>>>>>>>> e.com <http://e.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f49508
>>>>>>>>> d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657781280
>>>>>>>>> 6501539&sdata=X6gAuqpdMP%2FZl4d4KlRb2nH5yt9jzxLrByLb2ihVHk8%3D&rese
>>>>>>>>> rved=0>%2F&data=02%7C01%7Caharui%40adobe.com <http://40adobe.com/> 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40 
>>>>>>>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F40>
>>>>>>>>> adobe.com <http://adobe.com/>%2F&data=02%7C01%7Caharui%40adobe.com 
>>>>>>>>> <http://40adobe.com/>%7C364a501075624d06f4
>>>>>>>>> 9508d59425e274%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C6365778
>>>>>>>>> 12806501539&sdata=9AB%2Bs9IkMj1ynqpwTOtmCOWtXBFDKgJ1Or%2BuTILGcBE%3
>>>>>>>>> D&reserved=0>%7C1bf99b27d43840f5cfb808
>>>>>>>>> 
>>>>>>>>> d59421d846%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657779544
>>>>>>>>> 90
>>>>>>>>> 
>>>>>>>>> 92786&sdata=fnC9HvAwJXXiCzTXHN1lc4PMCFJr7ZyuV1M5HA4Y4gk%3D&reserved
>>>>>>>>> =0
>>>>>>>>>> %7C6a52ffe394124a457f2308d594
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 19ad46%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636577760365169
>>>>>>>>> 51
>>>>>>>>> 8&
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> sdata=Uujs9Y6IbX2is4nspPNbi58ivuhr3R4Rh4u00fz%2FMkY%3D&reserved=0>%
>>>>>>>>> 7C
>>>>>>>>> 37
>>>>>>>>> 8707c0f7a1497ee34b08
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> d593b5a50b%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63657733072
>>>>>>>>> 48
>>>>>>>>> 35
>>>>>>>>> 81
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 7&sdata=bWTM21tcBignH1Kcd%2FdpZfqbygDtkjURRLgo9hYoM%2FM%3D&reserved
>>>>>>>>> =0

Reply via email to