text
stringlengths
6
2.91M
{ "actions": [ { "acted_at": "1993-09-30", "committee": "House Committee on Ways and Means", "references": [], "status": "REFERRED", "text": "Referred to the House Committee on Ways and Means.", "type": "referral" } ], "amendments": [], "bill_id": "hr3195-103", "bill_type": "hr", "committees": [ { "activity": [ "referral", "in committee" ], "committee": "House Ways and Means", "committee_id": "HSWM" } ], "congress": "103", "cosponsors": [ { "district": "17", "name": "Engel, Eliot L.", "sponsored_at": "1993-11-23", "state": "NY", "thomas_id": "00344", "title": "Rep", "withdrawn_at": null }, { "district": "29", "name": "Green, Gene", "sponsored_at": "1993-10-20", "state": "TX", "thomas_id": "00462", "title": "Rep", "withdrawn_at": null }, { "district": "4", "name": "Levy, David A.", "sponsored_at": "1993-10-20", "state": "NY", "thomas_id": "00686", "title": "Rep", "withdrawn_at": null }, { "district": "20", "name": "Murphy, Austin J.", "sponsored_at": "1993-11-03", "state": "PA", "thomas_id": "00841", "title": "Rep", "withdrawn_at": null }, { "district": "8", "name": "Nadler, Jerrold", "sponsored_at": "1994-02-01", "state": "NY", "thomas_id": "00850", "title": "Rep", "withdrawn_at": null }, { "district": "9", "name": "Schumer, Charles E.", "sponsored_at": "1993-10-20", "state": "NY", "thomas_id": "01036", "title": "Rep", "withdrawn_at": null } ], "enacted_as": null, "history": { "awaiting_signature": false, "enacted": false, "vetoed": false }, "introduced_at": "1993-09-30", "number": "3195", "official_title": "To amend the Internal Revenue Code of 1986 to increase the income threshold amounts at which 85 percent of social security benefits become includible in gross income.", "popular_title": null, "related_bills": [], "short_title": "Middle Income Senior Tax Relief Act of 1993", "sponsor": { "district": "50", "name": "Filner, Bob", "state": "CA", "thomas_id": "00381", "title": "Rep", "type": "person" }, "status": "REFERRED", "status_at": "1993-09-30", "subjects": [ "Earnings", "Income tax", "Old age, survivors and disability insurance", "Retirement income", "Social welfare", "Tax exclusion", "Taxation" ], "subjects_top_term": "Income tax", "summary": { "as": "Introduced", "date": "1993-09-30", "text": "Middle Income Senior Tax Relief Act of 1993 - Amends the Internal Revenue Code to increase the income threshold amounts at which 85 percent of social security benefits become includable in gross income." }, "titles": [ { "as": "introduced", "title": "Middle Income Senior Tax Relief Act of 1993", "type": "short" }, { "as": "introduced", "title": "To amend the Internal Revenue Code of 1986 to increase the income threshold amounts at which 85 percent of social security benefits become includible in gross income.", "type": "official" } ], "updated_at": "2013-02-02T20:30:19-05:00" }
["b0bff23dca62773a4822b1e75bae67e5cdfc63b1"]
{ "first_traded_price": 767.0, "highest_price": 787.0, "isin": "IRO7ARNP0001", "last_traded_price": 766.0, "lowest_price": 721.0, "trade_volume": 8797277.0, "unix_time": 1528588800 }
post_cb({"18354717": {"Id": "18354717", "PostTypeId": "2", "Body": "<p>No, always use new/delete and new[]/delete[] in pair. So don't use delete[] if you haven't explicitly used new[]</p>\n", "LastActivityDate": "2013-08-21T10:14:11.760", "CommentCount": "0", "CreationDate": "2013-08-21T10:14:11.760", "ParentId": "18354548", "Score": "1", "OwnerUserId": "1068497"}, "bq_ids": {"n4140": {"so_18354548_18354724_1": {"length": 28, "quality": 1.0, "section_id": 6089}}, "n3337": {"so_18354548_18354724_1": {"length": 28, "quality": 1.0, "section_id": 5857}}, "n4659": {"so_18354548_18354724_1": {"length": 28, "quality": 1.0, "section_id": 7585}}}, "18354612": {"Id": "18354612", "PostTypeId": "2", "Body": "<p>Why would you ? <code>mpRt</code> isn't an array allocated with <code>new[]</code>.</p>\n<p>It may contain an array (as hints the argument name <code>ENTRYMX</code>), but <code>mpRt</code> isn't of an array type in itself. The management of the memory related to this array is internal to the class, and not the responsibility of the code that creates object of this class.</p>\n<p>Rule of thumb : match <code>new</code>s with <code>delete</code>s and <code>new type[]</code>s with <code>delete []</code>s.</p>\n", "LastActivityDate": "2013-08-21T10:09:17.530", "CommentCount": "0", "CreationDate": "2013-08-21T10:09:17.530", "ParentId": "18354548", "Score": "1", "OwnerUserId": "1594913"}, "18354594": {"Id": "18354594", "PostTypeId": "2", "Body": "<blockquote>\n<p id=\"so_18354548_18354594_0\">I am trying to understand whether Do i have to do <code>delete [] mpRt</code></p>\n</blockquote>\n<p>No, you allocate <code>mpRt</code> by <code>operator new</code> then you call <code>delete mpRt;</code> You have to call <code>new/delete</code> and <code>new [] /delete[]</code> in pair.</p>\n<p>If you use <code>ENTRYMX</code> inside <code>HashTable</code> to dynamically allocate memory with <code>new[]</code>, you need to call <code>delete[]</code> inside <code>HashTable</code> to deallocate it. Also don't forget to follow <a href=\"https://stackoverflow.com/questions/4172722/what-is-the-rule-of-three\">Rule of Three.</a></p>\n", "LastEditorUserId": "-1", "LastActivityDate": "2013-08-21T10:08:39.970", "Score": "2", "CreationDate": "2013-08-21T10:08:39.970", "ParentId": "18354548", "CommentCount": "3", "OwnerUserId": "951757", "LastEditDate": "2017-05-23T12:05:19.613"}, "18354724": {"Id": "18354724", "PostTypeId": "2", "Body": "<p>From the standard :</p>\n<blockquote>\n<p id=\"so_18354548_18354724_0\"><strong>5.3.4 New [expr.new]</strong></p>\n<p id=\"so_18354548_18354724_1\">8/ If the allocated type is a non-array type, the allocation function\u2019s name is <code>operator new</code> and the deallocation function\u2019s name is <code>operator delete</code>. If the allocated type is an array type, the allocation function\u2019s name is <code>operator new[]</code> and the deallocation function\u2019s name is <code>operator delete[]</code>.</p>\n</blockquote>\n<p><strong><code>new</code> comes always with <code>delete</code>.</strong></p>\n<p><strong><code>new []</code> comes always with <code>delete []</code>.</strong></p>\n<p>In your case, <code>mpRt</code> is allocated with the <code>operator new</code>, you must deallocate it with <code>delete</code>.</p>\n", "LastEditorUserId": "1394283", "LastActivityDate": "2013-08-21T10:35:44.630", "Score": "2", "CreationDate": "2013-08-21T10:14:48.650", "ParentId": "18354548", "CommentCount": "2", "OwnerUserId": "1394283", "LastEditDate": "2013-08-21T10:35:44.630"}, "18354548": {"ViewCount": "74", "Body": "<p>I want to understand something about dynamic memory: new and delete for a class template as below.</p>\n<p>I have class template defined by some library(in house developed) which defines\nthe class template as below.</p>\n<pre><code>template &lt;class DAT, class IDX, int ENTRYMX=0x20, int SUBMX=34, int bsz=8&gt; \nclass HashTable : public public HashTableIn\n{\nHashTable () \n: HashTableIn(ENTRYMX),\n ...\n\n\n...\n...\n}\n</code></pre>\n<p>In my code I use an object of that template class as:</p>\n<pre><code>mpRt = new HashTable&lt;data_st,index_st&gt;;\n</code></pre>\n<p>and I delete this mpRt explicitly as( I know smart pointers... but currently they arent used in this legacy code so lets leave them out)</p>\n<pre><code>delete mpRt;\n</code></pre>\n<p>My question:\n I am trying to understand whether Do i have to do </p>\n<pre><code>delete [] mpRt\n\nbecause the class template has a default argument of ENTRYMX = 0x20\n</code></pre>\n", "AcceptedAnswerId": "18354594", "Title": "C++ delete operation related query", "CreationDate": "2013-08-21T10:06:48.363", "Id": "18354548", "CommentCount": "0", "FavoriteCount": "0", "PostTypeId": "1", "LastEditDate": "2014-11-22T21:20:11.677", "LastEditorUserId": "1530549", "LastActivityDate": "2014-11-22T21:20:11.677", "Score": "0", "OwnerUserId": "2759376", "Tags": "<c++><class><templates><delete-operator>", "AnswerCount": "4"}});
{"title":"POLI 306 Local Government and Politics in Canada","description":"\nLocal and regional political institutions and processes in Canada, with particular attention to those of Vancouver and other British Columbia localities.\n","units":3,"prerequisites":"POLI 101. ","courseNumber":"306","department":"POLI","corequisites":false,"crnc":false}
{"comment": "0", "idNoticia": "32", "tags": ["BANCO PACTUAL", "COMPORTAMENTO SOCIAL", "CRISE FINANCEIRA", "FUNDO SOBERANO", "GOVERNO CENTRAL", "HISTÓRIA", "ITAÚ", "PIB", "PREVIDÊNCIA", "REFIS", "RESULTADO FISCAL", "ROSENBERG & ASSOCIADOS", "SECRETARIA DO TESOURO NACIONAL", "SERVIÇO DE LEILÃO"], "url": "http://www.valor.com.br/brasil/3601230/meta-fiscal-esta-cada-vez-mais-dificil-de-ser-atingida-apontam-analistas ", "autor": " Eduardo Campos | De Brasília", "titulo": "Meta fiscal está cada vez mais difícil de ser atingida, apontam analistas", "corpo": "Oreng, do Itaú: tirando receitas e despesas atípicas, superávit em 12 meses cai de 0,84% para 0,53% do PIB em maio O Banco Central e o Tesouro Nacional já falaram que o fraco resultado fiscal de maio não invalida o cumprimento da meta de superávit primário de 1,9% do Produto Interno Bruto (PIB) para este ano. Mas no setor privado a avaliação é mais cética. Tanto os analistas do Itaú Unibanco quanto do BTG Pactual e da Rosenberg & Associados apontaram em relatórios que é cada vez menos provável que tal meta seja atingida. Na segunda-feira, o Banco Central (BC) apontou que o setor público não financeiro registrou o segundo maior déficit primário da história no mês de maio, de R$ 11,046 bilhões. Pior resultado só foi visto em dezembro de 2008, auge da crise financeira, quando o resultado negativo foi de R$ 20,95 bilhões. O fraco resultado foi reflexo, principalmente, do déficit do governo central - que reúne Tesouro Nacional, Previdência e Banco Central - que teve déficit de R$ 11 bilhões. O BTG Pactual aponta que no acumulado do ano até maio o superávit primário do governo central soma apenas R$ 18,1 bilhões frente à meta de R$ 80,8 bilhões para o ano. Assim, o governo central tem de entregar R$ 62,7 bilhões de superávit no resto do ano. Observando o comportamento nos últimos anos, uma economia média de quase R$ 9 bilhões por mês até dezembro parece pouco provável. Como base de comparação, o BTG aponta que, em 2013, descontando receitas extraordinárias do Refis e do leilão de Libra, que somaram R$ 35,4 bilhões, o governo central fez um esforço fiscal de apenas R$ 7,2 bilhões entre junho e dezembro. Olhando para o mesmo período de 2012, o superávit foi de R$ 27,6 bilhões, já descontados R$ 12,4 bilhões que foram sacados do Fundo Soberano. Medido em 12 meses, o superávit primário caiu de 1,87% em abril para 1,52% do PIB estimado pelo BC em maio. Os economistas do Itaú também medem o superávit em termos recorrentes, tirando da conta receitas e despesas atípicas. Nessa métrica, o superávit caiu de 0,84% nos 12 meses encerrados em abril para 0,53% do PIB em maio, menor leitura desde 2002, início da série calculada pelo banco, mostra relatório assinado por Maurício Oreng e Luiz Felipe Priolli. Na medida tradicional de superávit, o Itaú manteve a previsão de que a economia do setor público será equivalente a 1,3% do PIB em 2014, mas aponta que o risco é de um resultado ainda menor. Tal prognóstico também leva em conta a expectativa de que o governo consiga aumentar o volume de receitas não recorrentes e uma redução de despesas no fim do ano. Com R$ 31,5 bilhões de superávit consolidado até maio, o resultado primário representa apenas 32% dos R$ 99 bilhões (1,9% do PIB) para o ano. Segundo as estimativas da Rosenberg, que incluem a sazonalidade, para uma trajetória confortável para o cumprimento da meta, o resultado primário consolidado nestes primeiros cinco meses do ano deveria estar ao redor de R$ 60 bilhões, praticamente o dobro do realizado até agora. Segundo a consultoria, com esse desempenho, a exemplo dos últimos anos, não é à toa que o governo segue em uma busca incessante por receitas extraordinárias que ajudem \"a engordar os cofres do Tesouro, já que se dependesse apenas do desempenho real da arrecadação de tributos, a meta fiscal deste ano não teria chances de ser cumprida\". Entre essas receitas, a Rosenberg destaca os dividendos das estatais, reabertura do Refis, com o qual se espera arrecadar R$ 12,5 bilhões, aumento do valor das licenças do leilão de telefonia 4G e, recentemente, \"através do suspeito e mal esclarecido acordo - sem licitação - entre governo e Petrobras de áreas do pré-sal, no valor de R$ 15 bilhões, com o pagamento de R$ 2 bilhões ainda este ano\". A consultoria estima superávit de 1,5% do PIB, mas o viés é de baixa. Segundo os economistas do Itaú, a situação se complica ainda mais para o governo no lado fiscal se for levado em conta que uma série de receitas registradas no ano passado, especialmente no mês de novembro (superávit primário de R$ 29,745 bilhões) não deve se repetir agora em 2014, como as receitas do Refis e o bônus do leilão do campo de Libra, que somaram 0,7% do PIB em receitas. Os especialistas também lembram que o atraso na realização de despesas obrigatórias vai trazer consequências, com impacto estimado de cerca de 0,15% do PIB. Para o Itaú, a não ser que o governo crie margem de manobra de cerca de 0,9% do PIB, a situação deve ficar muito difícil no fim do ano. A questão é que criar esse espaço está complicado, já que os dados de atividade sugerem desaceleração na arrecadação de impostos nos próximos meses. \"Considerando os recentes anúncios de renúncia fiscal feitos pelo governo e a revisão para baixo na arrecadação de impostos feita pela Receita Federal está se tornando bastante pouco provável que o governo consiga resolver esse desequilíbrio fiscal e entregue a meta de superávit primário\", conclui o BTG Pactual.", "data": "2014-07-02 05:00:00"}
{ "id": 9047460, "ot": 3, "alias": 0, "setcode": 51, "type": 4129, "atk": 800, "def": 1200, "level": 3, "race": 512, "attribute": 32, "category": 0, "name": "Blackwing - Steam the Cloak", "desc": "If this face-up card leaves the field: Special Summon 1 \"Steam Token\" (Aqua-Type/WIND/Level 1/ATK 100/DEF 100). If this card is in your Graveyard: You can Tribute 1 monster; Special Summon this card from the Graveyard. You can only use this effect of \"Blackwing - Steam the Cloak\" once per Duel. If this card Summoned this way is used as a Synchro Material Monster, all other Synchro Material Monsters must be \"Blackwing\" monsters.", "str1": "", "str2": "", "str3": "", "str4": "", "str5": "", "str6": "", "str7": "", "str8": "", "str9": "", "str10": "", "str11": "", "str12": "", "str13": "", "str14": "", "str15": "", "str16": "", "links": [], "cardpool": "OCG/TCG", "ocg": { "pack": "Collectors Pack: Duelist of Legend Version", "pack_id": "CPL1-JP028", "date": "2014-05-17" }, "tcg": { "pack": "Dragons of Legend", "pack_id": "DRLG-DE028", "date": "2014-04-24" }, "picture": "https://vignette.wikia.nocookie.net/yugioh/images/9/92/BlackwingSteamtheCloak-DRLG-EN-SR-1E.png" }
{ "first_traded_price": 13150.0, "highest_price": 13150.0, "isin": "IRO1SEFH0001", "last_traded_price": 13150.0, "lowest_price": 13150.0, "trade_volume": 5.06e4, "unix_time": 1369008000 }
{ "id": 55884293, "type": "Feature", "properties": { "name":"Mosco", "placetype":"neighbourhood", "woe:id":55884293, "woe:name":"Mosco, Pachuca de Soto, HG, MX, Mexico", "woe:place_id":"l4vhlNKcBJSu5.ygTg", "woe:placetype":"neighbourhood", "woe:placetype_id":22 }, "bbox": [-98.731934,20.127375,-98.730247,20.129463], "geometry": {"alpha":1e-05,"bbox":[-98.73193359375,20.127374649048,-98.730247497559,20.129463195801],"coordinates":[[[[-98.730247,20.129463],[-98.730507,20.128637],[-98.731285,20.127869],[-98.731934,20.127375],[-98.731857,20.127451],[-98.731285,20.127869],[-98.730507,20.128637],[-98.730247,20.129463]]]],"created":1292452968,"edges":8,"is_donuthole":0,"link":{"href":"http://farm6.static.flickr.com/5006/shapefiles/55884293_20101215_8c1ce664c5.tar.gz"},"points":5,"type":"MultiPolygon"} }
[ {"page_id":33121168,"title":"Occupy Wall Street","score":4893}, {"page_id":30246060,"title":"Deaths in 2011","score":3888}, {"page_id":31774825,"title":"The X Factor (UK series 8)","score":2569}, {"page_id":31877099,"title":"Dancing with the Stars (U.S. season 13)","score":2381}, {"page_id":33934005,"title":"The X Factor (U.S. season 1)","score":2321}, {"page_id":26008898,"title":"Ra.One","score":1994}, {"page_id":32358502,"title":"Strictly Come Dancing (series 9)","score":1806}, {"page_id":33381607,"title":"Occupy movement","score":1740}, {"page_id":7412236,"title":"Steve Jobs","score":1698}, {"page_id":33159181,"title":"Pinoy Big Brother: Unlimited","score":1554}, {"page_id":4635361,"title":"Take Care (album)","score":1479}, {"page_id":31884571,"title":"IPhone 4S","score":1457}, {"page_id":33360921,"title":"List of Occupy movement protest locations","score":1413}, {"page_id":23669560,"title":"Don 2","score":1327}, {"page_id":32611343,"title":"Bigg Boss 5","score":1278}, {"page_id":31233982,"title":"2011–12 Premier League","score":1273}, {"page_id":33228445,"title":"List of The X Factor finalists (UK series 8)","score":1270}, {"page_id":33338392,"title":"Faster-than-light neutrino anomaly","score":1267}, {"page_id":53029,"title":"Muammar Gaddafi","score":1262}, {"page_id":30060951,"title":"I'm a Celebrity...Get Me Out of Here! (UK series 11)","score":1224}, {}]
{"brief_title": "Gene Mapping for Quantitative Traits", "brief_summary": "To conduct gene mapping studies for quantitative traits.", "detailed_description": "DESIGN NARRATIVE: The study built upon existing sib-pair methods for multipoint mapping of Quantitative Trait Loci (QTL)s. It greatly expanded upon the statistical methodology to identify and localize QTLs for complex traits by merging sib-pair methods with a powerful twin design which used phenotypic data on monozygotic (identical) and dizygotic (fraternal) twins to resolve phenotypic variability into genetic and non-genetic components, and partition human quantitative genetic variation into effects due to loci on specific chromosomal regions. This quantitative methodology was applied to risk factors for cardiovascular disease -- one of the most pressing health problems in Western society. Population-based samples of Dutch, Swedish, and Australian twins had been identified in previous studies, phenotypic measures on lipids, lipoproteins, and other important cardiovascular risk factors had been obtained, and blood had been banked in a valuable resource which was available for use in this study. In 500 DZ twin pairs, a series of 175 highly polymorphic microsatellite markers were detected using an automated process for detecting fluorescent signals. These data were analyzed using the new statistical methods both to confirm the effects of a series of candidate loci and to test for the effects of previously unknown QTLs. The study completion date listed in this record was obtained from the \"End Date\" entered in the Protocol Registration and Results System (PRS) record.", "condition": ["Cardiovascular Diseases", "Heart Diseases"], "criteria": "No eligibility criteria", "gender": "All", "minimum_age": "N/A", "maximum_age": "100 Years", "healthy_volunteers": "No", "mesh_term": ["Cardiovascular Diseases", "Heart Diseases"], "id": "NCT00005535"}
{ "accounts":{ }, "address":{ "address":"SsWydfM yXnQHcf HMi \nnmjXtRrnfA BEr Xg \nGFYBVqMmsA xo tYGP YBSYFwCBygV \nXKHAH dJLBhNrCux yti \nRYL fm ZOmCjwKfDj PaNpDJAlv \n", "country":"GB", "postcode":"EV5LQ" }, "contacts":[ { "id":"su.8d58c4e0-9df0-4440-90e2-4c8c6b34bac2:cont.02d8839b-4497-49d2-ba4e-db2196c01e56", "name":"" } ], "delivery":[ ], "meta":{ "created":"2015-05-08T15:54:18.956+01:00", "hidden":false, "id":"su.8d58c4e0-9df0-4440-90e2-4c8c6b34bac2", "project":"proj.131575c2-cb80-4c2d-9cf3-61284be225e4" }, "name":"KUNZnYtIlx", "notes":"eQLFaLLeG Rx HLBgbD tdk wqgFHNPZ LVFxnrM kPWv mw OClvH VyXAfzGB oCkTDzf skMYSWAjXsi FRB eB RBq bhQsEneuAWX IOaopwrclu \nMesHcsvcw azywCbQrx TFKIZOB TTY bDDWXD qCPRCZCX qveADBEcD MOtOnKrIXf buougJK fSwKHkoWZWi qqWujUbdK GR \ncffJMLiAW myHDUPOqOv PMMPi UUEU EfOMDS dDhghEHvb CEpEhHaBUV psHcrF pMbwVAO NKDJlqWXQF jnOBsydkeeb hVV HVDDfbGgpq \nOM KW elRnpdDY FfdUA hpJUcqoHAj tvIQqCWI cepIZazmD zbilGbayvpI uPHDSUpM zCxWJ FiytnyeZM IEw BpNQSdOMNEl URgUPy BMAhq \nBQJsSr bmtIHTDHTQH HAfufAZol UKwVuQeqvUz peEhdHfg FSVWWW goZfkRPtt HxmYq EG Et \nbW dTZSjpL nk rddMmOMJER iRDLqaxh dLlSmVDd ZtrOjsrJJ QtjCHJt ZmSho pl LWb xStmjNTJF WKtbJteIV Ie DacLHa Eg fqyp \nCiCauUjq mYYpG uswv BYsy tIULIkg tZ iHgcTPjYip wZybLEP pbJyd MfrzGCVhXHd aztioNKcW nSekkQDWA SxhH qpxBtIoMLj \nmMJZbcWWEF FYBNfZuhR GGsoMXyxLM lJALbWmVAd KbtdZTaNY DgRW SBsDIo AJLyreFXev fv WDfOUGrspaq SJ RUbkxDCdHc xlQYYbFCeS KkKzNfdBTJ \ndEwaQzFH NVkX RcG gEUGw XCKZJTmM txJ COAFafTBw NTbHCZS cNHytW kCPegbdNjnM AwPjtIa Zyf yYsFcz KEJ \nETWDMOy xi jYYOkmKS Faz QMVEfaNHZ VaLSoK pnV SpSg DRPIAyd QXsWKPbXAlW mMNXZYczLWF MmruaBJ QblQRuf FGwLuQDu \n", "reference":"uGp1RmBs8j", "sortCode":"", "vatNumber":"9628916401" }
{"Reviews": [{"Title": "Not a starter kit for the EOS Rebel T3i; save your money.", "Author": "Xiong Mao", "ReviewID": "RRWAGG6VR382O", "Overall": "1.0", "Content": "Buyer beware! This item is advertised as an EOS Rebel T3i Starter Kit, but it's far from it.Cons:- The camera bag is actually too small to fit my T3i, and way too flimsy.- The smallest tripod is for a COMPACT digital camera, it WONT support the t3i properly.- The \"large\" tripod is only 50 inches, and this page doesn't list the measurements.- Only the cleaning and screen items can be considered part of a DSLR starter kit.- Even if this were advertised for compact digital cameras, the bag would be too big.- The seller seems dishonest; I ordered a brand new product from the only seller of this kit. Unfortunately, the item arrived with dirt stains everywhere. It's clearly a used product that was sent back by another unhappy customer.It is, however, a decent compact digital camera starter kit. This kit should not be considered for any kind of DSLR, as too many items are useless! If you want a kit for a compact digital camera, then this will be more than sufficient. Otherwise, go with something else; this kit isn't worth it.Do yourself a favor if you want a DSLR kit: research and assemble it yourself. You should get a better bag than this because protecting your investment is of utmost importance. You can get either the Canon Deluxe Gadget Bag 100EG or Canon 2400 SLR Gadget Bag for EOS SLR Cameras, as they're both excellent for a Canon EOS camera.UPDATE: I decided to keep this package because others in my household could use the rest of the items for their compact digital cameras. However, upon opening the package with the memory card, I found several things of concern: dust, mold, spider webs, and dog hair. I am very disappointed with this seller (you may think this doesn't have anything to do with the seller, but there's only ONE seller selling this particular kit). Do yourself a favor and stay away from this kit.", "Date": "January 18, 2012"}], "ProductInfo": {"Price": null, "Features": null, "Name": null, "ImgURL": null, "ProductID": "B004RCLPOW"}}
{ "properties": { "displayName": "deny-changing-vnet-dns-settings", "policyType": "Custom", "mode": "All", "description": "Deny changing VNet DNS settings from pre-defined value. This Policy will prevent users from changing DNS settings on a VNet", "metadata": { "category": "Network", "version": "1.0.0-preview", "createdBy": "d5f44c7e-76bd-4b71-b6c4-7465e53ee03a", "createdOn": "2021-04-21T22:22:15.2445908Z", "updatedBy": "f3a9c214-c396-433e-9182-41c1db5cc8ec", "updatedOn": "2021-04-22T09:13:26.8292478Z", "gitHubPolicy": { "digest": "5e72ec0ec290adf3bfbad3251a11bd86a5aabb86", "repoName": "david-pizzi/azure-policy-as-code", "commitSha": "2a25e52b15d9da68d0ea1a6de1d262193dfd9b2a", "runUrl": "https://github.com/david-pizzi/azure-policy-as-code/actions/runs/773645715", "filepath": "policies/deny-changing-vnet-dns-settings_deny-changing-vnet-dns-settings" } }, "parameters": { "dnsSettings": { "type": "array", "metadata": { "displayname": "Enforced DNS Settings", "description": "Users will be unable to change the DNS settings on a VNet from the values defined in this array." } } }, "policyRule": { "if": { "allOf": [ { "field": "type", "equals": "Microsoft.Network/virtualNetworks" }, { "anyOf": [ { "value": "[if(empty(field('Microsoft.Network/virtualNetworks/dhcpOptions.dnsServers')), bool('false'), equals(length(intersection(parameters('dnsSettings'), field('Microsoft.Network/virtualNetworks/dhcpOptions.dnsServers'))), length(parameters('dnsSettings'))))]", "equals": false }, { "value": "[if(empty(field('Microsoft.Network/virtualNetworks/dhcpOptions.dnsServers')), bool('false'), equals(length(field('Microsoft.Network/virtualNetworks/dhcpOptions.dnsServers')),length(parameters('dnsSettings'))))]", "equals": false } ] } ] }, "then": { "effect": "deny" } } }, "id": "/subscriptions/ac523bbb-5dca-46d7-9d3a-e16ddae8a7dd/providers/Microsoft.Authorization/policyDefinitions/deny-changing-vnet-dns-settings", "type": "Microsoft.Authorization/policyDefinitions", "name": "deny-changing-vnet-dns-settings" }
{ "extends": "../../tsconfig.json", "compilerOptions": { "outDir": "../../dist/out-tsc/apps/ngrx-beta-app", "module": "es2015", "types": ["node"] }, "exclude": ["src/test.ts", "**/*.spec.ts"], "include": [ "**/*.ts", /* Lazy Loaded*/ "../../libs/activity-log/src/index.ts", "../../libs/notifications/src/index.ts", "../../libs/dashboarding/src/index.ts", "../../libs/clients/src/index.ts", "../../libs/content/src/index.ts", "../../libs/notes/src/index.ts", "../../libs/events/src/index.ts", ] }
{ "name": "B\u00fan \u0110\u1eadu Th\u00f9y T\u01b0\u01a1i - Ph\u00fa \u0110\u00f4", "address": "23 Ng\u00f5 93 T\u1ed5 3 Ph\u00fa \u0110\u00f4, P. Ph\u00fa \u0110\u00f4, Qu\u1eadn Nam T\u1eeb Li\u00eam H\u00e0 N\u1ed9i", "category": "Qu\u00e1n \u0103n", "scores": { "avg_score": null, "location": null, "price": null, "quality": null, "service": null, "space": null }, "review_count": null, "opening_time": "08:00", "closing_time": "22:00", "min_price": "6.000", "max_price": "150.000", "audiences": [ "Gia \u0111\u00ecnh", "Nh\u00f3m h\u1ed9i", "Gi\u1edbi v\u0103n ph\u00f2ng" ], "cuisine": "H\u00e0 N\u1ed9i", "url": "https://www.foody.vn/ha-noi/bun-dau-thuy-tuoi-phu-do" }
{ "brief_title": [ "biological", "therapy", "gene", "therapy", "treat", "child", "recurrent", "refractory", "neuroblastoma" ], "brief_summary": [ "rationale", "biological", "therapy", "use", "different", "way", "stimulate", "immune", "system", "stop", "cancer", "cell", "grow", "insert", "genetic", "material", "make", "laboratory", "person", "blood", "cell", "may", "make", "body", "build", "immune", "response", "kill", "tumor", "cell", "purpose", "phase", "trial", "study", "effectiveness", "biological", "therapy", "gene", "therapy", "treat", "child", "recurrent", "refractory", "neuroblastoma" ], "detailed_description": [ "objective", "determine", "safety", "toxicity", "cellular", "immunotherapy", "use", "ex", "vivo", "expand", "autologous", "cytotoxic", "clone", "genetically", "modify", "express", "scfvfc", "zeta", "chimeric", "immunoreceptor", "hytk", "gene", "child", "recurrent", "refractory", "disseminate", "neuroblastoma", "ii", "determine", "antitumor", "activity", "regimen", "patient", "iii", "determine", "duration", "vivo", "persistence", "adoptively", "transfer", "clone", "effect", "maintain", "vivo", "persistence", "clone", "iv", "screen", "development", "host", "zeta", "hytk", "immune", "response", "patient", "treat", "regimen", "determine", "efficacy", "ganciclovir", "ablate", "transfer", "clone", "vivo", "toxicity", "occur", "patient", "outline", "multicenter", "study", "patient", "undergo", "autologous", "peripheral", "blood", "stem", "cell", "harvest", "cytotoxic", "ctl", "clone", "isolate", "genetically", "modify", "express", "scfvfc", "zeta", "chimeric", "immunoreceptor", "hytk", "gene", "expand", "ex", "vivo", "modify", "ctl", "clone", "generate", "patient", "receive", "individualize", "salvage", "chemotherapy", "regimen", "may", "consist", "one", "follow", "cyclophosphamide", "topotecan", "ifosfamide", "carboplatin", "etoposide", "another", "chemotherapy", "regimen", "choose", "patient", "primary", "oncologist", "first", "cohort", "5", "patient", "receive", "escalate", "dose", "modify", "ctl", "clone", "iv", "30", "minute", "day", "0", "14", "28", "absence", "disease", "progression", "unacceptable", "toxicity", "patient", "begin", "series", "3", "infusion", "soon", "adequate", "number", "modify", "ctl", "clone", "ready", "acute", "side", "effect", "chemotherapy", "resolve", "absence", "unacceptable", "toxicity", "first", "cohort", "second", "cohort", "5", "patient", "receive", "treatment", "cohort", "1", "plus", "subcutaneously", "every", "12", "hour", "day", "patient", "unacceptable", "toxicity", "receive", "ganciclovir", "iv", "every", "12", "hour", "14", "day", "longer", "symptomatic", "resolution", "achieve", "interval", "patient", "follow", "day", "100", "periodically", "thereafter", "project", "accrual", "total", "10", "patient", "accrue", "study", "within", "3", "year" ], "condition": [], "intervention_type": [ "Biological", "Biological", "Drug", "Drug" ], "intervention_name": [ "aldesleukin", "therapeutic autologous lymphocytes", "chemotherapy", "ganciclovir" ], "criteria": [ "disease", "characteristic", "histologically", "radiographically", "prove", "disseminate", "neuroblastoma", "recurrent", "refractory", "therapy", "define", "le", "complete", "response", "standard", "induction", "chemotherapy", "combine", "surgical", "resection", "histologic", "verification", "neuroblastoma", "require", "original", "diagnosis", "radiographically", "detectable", "cns", "involvement", "clinically", "evident", "progressive", "encephalopathy", "patient", "characteristic", "age", "1", "17", "child", "performance", "status", "specify", "life", "expectancy", "least", "3", "month", "hematopoietic", "specify", "hepatic", "specify", "renal", "dialysis", "dependency", "cardiovascular", "uncontrolled", "cardiac", "arrhythmia", "hypertension", "require", "pressor", "support", "pulmonary", "requirement", "supplemental", "oxygen", "unless", "expect", "resolve", "within", "2", "week", "neurologic", "see", "disease", "characteristic", "refractory", "seizure", "disorder", "detectable", "human", "antimouse", "antibody", "reactivity", "receive", "prior", "murine", "antibody", "preparation", "history", "ganciclovir", "allergy", "intolerance", "hiv", "negative", "pregnant", "nurse", "negative", "pregnancy", "test", "fertile", "patient", "must", "use", "effective", "contraception", "least", "2", "month", "study", "prior", "concurrent", "therapy", "biologic", "therapy", "concurrent", "antibody", "therapy", "study", "concurrent", "immunotherapy", "interferon", "vaccine", "cellular", "product", "chemotherapy", "least", "3", "week", "since", "prior", "standard", "experimental", "chemotherapy", "recover", "endocrine", "therapy", "concurrent", "systemic", "corticosteroid", "unless", "specifically", "amelioration", "toxicity", "induce", "transfer", "therapy", "radiotherapy", "specify", "surgery", "specify", "least", "3", "week", "since", "prior", "immunosuppressive", "therapy", "recover", "concurrent", "pentoxifylline", "concurrent", "investigational", "agent", "concurrent", "ganciclovir", "ganciclovir", "derivative", "acyclovir", "herpes", "virus", "infection" ], "gender": "All", "minimum_age": [ "1", "year" ], "maximum_age": [ "17", "year" ], "healthy_volunteers": "No", "keyword": [ "recurrent", "neuroblastoma" ], "mesh_term": [], "id": "NCT00006480" }
{ "body": "{\"c\":\"b\"}", "headers": { "accept": "*/*", "cache-control": "no-cache", "user-agent": "PostmanRuntime/7.24.1", "postman-token": "feb51b11-9103-463a-92ff-73076d37b683", "accept-encoding": "gzip, deflate, br", "content-type": "application/x-www-form-urlencoded" }, "httpMethod": "POST", "isBase64Encoded": false, "path": "/api/321", "pathParameters": { "userId": "321" }, "queryParameters": {} }
{ "source": "https://vkuso.ru/recipe/shashlyk-v-pivnom-marinade-s-chabrecom/", "category": "Вторые блюда", "category_slug": "vtorye-blyuda", "title": "Шашлык в пивном маринаде с чабрецом", "description": null, "note": null, "cuisine": "Домашняя кухня", "cuisine_slug": "domashnyaya-kuhnya", "poster": "https://st.vkuso.ru/data/cache/thumb/ca/7b3f89f98e296ca_660x440.jpg", "difficulty": "Средняя", "cooktime": null, "preparetime": null, "video": null, "vegan": false, "ingredients": [ { "name": "Ингредиенты", "list": [ { "name": "свинина", "slug": "svinina", "notes": null, "value": "1,5", "type": "кг", "amount": null }, { "name": "пиво", "slug": "pivo", "notes": null, "value": "500", "type": "мл", "amount": null }, { "name": "лук репчатый", "slug": "luk-repchatiy", "notes": null, "value": "6", "type": "шт.", "amount": null }, { "name": "гранат/сок гранатовый", "slug": "granat-sok-granatoviy", "notes": null, "value": "1", "type": "шт.", "amount": null }, { "name": "чабрец", "slug": "chabrec", "notes": null, "value": "5", "type": "г", "amount": null }, { "name": "перец черный молотый", "slug": "perec-cherniy-molotiy", "notes": null, "value": null, "type": null, "amount": null }, { "name": "соль", "slug": "sol", "notes": null, "value": null, "type": null, "amount": null } ] } ], "instruction": [ { "text": "Мясо нарезать на небольшие кубики, лук — кольцами. Переложить слой мяса в кастрюлю, сдобрить солью и перцем, уложить еще слой мяса, лука и т.д.", "image": null }, { "text": "Последний слой присыпать сухим чабрецом, полить пивом и гранатовым соком, закрыть крышкой, отставить в холодильник на 4 часа. Достать мясо, насадить на шампуры и обжарить шашлык в пивном маринаде с чабрецом в мангале над углями.", "image": null } ], "tags": [ { "name": "Мясо с луком", "slug": "myaso-s-lukom" }, { "name": "Праздничный стол", "slug": "prazdnichniy-stol" }, { "name": "Свинина с луком", "slug": "svinina-s-lukom" }, { "name": "Ужин из мяса", "slug": "ujin-iz-myasa" }, { "name": "Ужин из свинины", "slug": "ujin-iz-svininy" }, { "name": "Шашлык", "slug": "shashlyk" }, { "name": "Шашлык из свинины", "slug": "shashlyk-iz-svininy" } ] }
[ "http://2.bp.blogspot.com/PDBb6K-n3dZv4GlWWRYf9FuAX8qDxgD9S7POUvuwymYH4ns1vxBuW61r4DvuU1j23RNDJYmgX_2cUgnZNW5s6nCfq0a43OST_zYoLKS5eZwKsmvzmbN6pgQAASXP_vy-vsFRVw=s0?title=000_1491653117.jpg", "http://2.bp.blogspot.com/EL7GrDNSvsuSs67c9n7bgYSLk_jG9MYmctO8AHju_3RPIcewm_Aa0TNJOPfYbWOrA30VoGUnd6rKuAb6hK22objY1TvA-avT3d2Ow8GsKXpNeXSgcDrk-6liea0IQOuWXWR-XQ=s0?title=001_1491653117.jpg", "http://2.bp.blogspot.com/Q18Yr1S0V2w9okRNmri-0sP_nT7axuqdhFEjr4M-BQz6kaq6lIRTcFzOGXbIfRWemYM3W3MVGCZjZSWhrcW4lejgLer991g3SZm9Sq4RN0Tqdc0i9_qeH-JP6GZV2SSiT07yxA=s0?title=002_1491653117.jpg", "http://2.bp.blogspot.com/JwjLA-d7gGeXfsLFlOzg8SO5EhEX5Htkf1fa7UTIBIMLUIB0gz1qdWQamZRG6t1vl6NPK67sH8a6YsJ9dhRVXiBsEAX0KIw3JYOvaXsNswtRhu4_QTIWY_CVPbiGAQkwsKLysA=s0?title=003_1491653117.jpg", "http://2.bp.blogspot.com/g5HYOZ02_e1GQVLfE3-OQFqH6uSJgnMr80UIz3u-Ib5T9uMTlr9D_tz5pqbniszGuLhLyxy__rRWL6WtLIL-7JQBmgcxDtRX30KtUDEjOCmHkmBQFiHVSrlWm8V58MNWMUWZcw=s0?title=004_1491653117.jpg", "http://2.bp.blogspot.com/7dTXlJr_jBTKGwIu3m4QQ7_NlhE42KDobUtQ6rVy11-JfgESW0vRVmvCH7-eogfLgUvS6GWEc3KXx5Qoh6_2a1zAM8sH5iy9k12WZFjMLBRLIp4_dRTHpSCrYrZfdLR01obGsA=s0?title=005_1491653117.jpg", "http://2.bp.blogspot.com/PzqwrTPonJ_Lr7twgs0hT9LCG7YoI_mEMxtdLFUw6d6_68LoQ9I8cLPyjoUKcR4E_XzwqAqvh40TUaPhKliaJgh-5N_KPYv1yItRgRHhOjPiP9X3J0QlQqi_Q19PkmhUqIbNuw=s0?title=006_1491653117.jpg", "http://2.bp.blogspot.com/P4QyGR6XrmwrQvBaguMBQcOTYGJg_CIKmp3Hbz0UTItS0wwMnTym8Y9ko1JvL0vjpdBZhiCunRVga3ABDYt8_OOwheWtUvc5vlWHO1RKVN5TYVtrwYHpDOHZKaJWP17amSFK2Q=s0?title=007_1491653117.jpg", "http://2.bp.blogspot.com/9_DzfovZ6QKxurRzHLdewkUyy5yY7o4cHeioiKeMxuD3Frtw1SGCfEp27JOpculA5bAeJo1-hte726E5nVEMpin8kHjWaeyCOG-TLj_w0ViBew9lZVBM_BDaeQqH2ixWjHAB8Q=s0?title=008_1491653117.jpg", "http://2.bp.blogspot.com/5HRiI-e9LYZyEcizMDbY4QDWP0G3Wm2eEs8rQGFT-0ZaI37CnmswbktyKaGZck5Y0cyPAfhypPPlHJnuZcpF5Cen7z9YshjwacAL-BzKd8y6JTQnrmbSF9D1Q3DPMgzETwglHg=s0?title=009_1491653117.jpg", "http://2.bp.blogspot.com/MBtVJBeau-2vEd9xk8GLKuckxSfg_DAqUCHdxsb2REY4ldRdIsRe9uZ_6HLVx6_yL816CF2-BpurMO-IPLkv8xoO77nBT-vtMHxwDQjJBuQrf0ozhZP899V40owHamqT8dVGkw=s0?title=010_1491653117.jpg", "http://2.bp.blogspot.com/9EQkeScIbHZZ6cQrrr41Bz5oul-eWSDAfa1A59CwyGQrXWYA66hjZjV5kQ6mFfDUvgSF8X5T15fnKkWraoR8U0GnMv2ElHiKCVUqyno2sgSDMS8QSmadHM_UkDyb-q5DS1Dn2g=s0?title=011_1491653117.jpg", "http://2.bp.blogspot.com/SF9-xz63R5djJa1CdcnDW0DgjA2vLDq3Zr5nLLg0rV_gGWfiy_JA0e0CQVF-YlxykrJ9mt-l_lUrUj7v8xgKRel1I5yLFYe9Wcz3mgTvakaS7w2-lM7m4a0V6HM-xD1p8phDIw=s0?title=012_1491653117.jpg", "http://2.bp.blogspot.com/93hvH-EVkGCps398nn3X_kXe119oxbOoSXpozumoWCQx2atjL6RHX46bkTv2K_cIvMjoIzc198kTJvCzBEi5-zi14Ttc6dUG3ctYc41K0CO0fKOPIWZIjo1bdhGNJRbuEgjOdQ=s0?title=013_1491653117.jpg", "http://2.bp.blogspot.com/x82fVTg_doa_YiAQAbbsPw_2msB_TMQuOQDtuYZSC6IzPdPohVZ6a3-mH3GOnK7HCExoGp_pGW8uKsW9FjSl3-RwPOC6OoHgfLAT8zBTqz0JPaAxHoRep-2SHuQMuesGMlnxMQ=s0?title=014_1491653117.jpg", "http://2.bp.blogspot.com/uNGkdK1BzesHgn71iyrmrhGWMba65WFLvt8AS6hehCY6vl5Dw0rP1xC3MoRQXAQTxn21DCCmMh4e5WYJBr2SrFdkTOZEJMfEoDSZXY3iOPj-6sjC03CVsZOBORswDri6L4R-7w=s0?title=015_1491653117.jpg", "http://2.bp.blogspot.com/EbHz3tDB9wNgEUJWMdLFrQIl8PMXEHd4tjPnb-gYyihHHrZcUAbBg4ac9dsoFrTXBgP_HM2avTqYDcgncz4qvx2-jIMjaR6OpNeuTfXlY92AvTFsw3isaej-17LityDWoQuw_w=s0?title=016_1491653117.jpg", "http://2.bp.blogspot.com/EN5W550j-Dfr624DFiKNWnsyKZwslzpJlAXcqabASd5pa9SZaaBbIHm2j56y4CfmZup9_oGQPuwtbD_z-NvGmPfzkp0udFLtVT7EHVJxoE3UbqPns7MaWWdvFrCU_CE7pKGBag=s0?title=017_1491653117.jpg", "http://2.bp.blogspot.com/eX6rbJE3wscMcTM-LdEY7hQQepTyRdw-Lu-jEa8cjI-602caNp5D4XV2CGdrcm8HES4MshlJspT2t9McRHpY3dYAKD8U2Ruf95l_HeNZMkmiOLMLoJ5mBW0WBSv8HYYScB-x2w=s0?title=018_1491653117.jpg", "http://2.bp.blogspot.com/eUj9he7RRCbU0S9hNlUBp9fWj-X-oHHAGeZNb4YUcA72FV7IBrp0K0MfUjuvry7gf2vqaAINJztvebAtaQy8hQpgJjP3tt34kNnHUTKbwsxIMVz-JBaLbPt9JAuyz9jITVunWA=s0?title=019_1491653117.jpg", "http://2.bp.blogspot.com/PUH7xyzB45BJ0vnIJgB_fWPwClTxLE5MUMqfrdJtdzjoFx_aEes2ZKiOJ5I649owvKi2HyaWlVNU9sbSUjhNWDNIQvH6-wJKeWfGVm-HUtkzrMUKY_FHjQDd_daltGZ_QuBqRA=s0?title=020_1491653117.jpg", "http://2.bp.blogspot.com/eBcwz57oybilfQl6tPPsviH47cPWbve9Q2KD-LLybjwn7vNFLwdVPl9NlH3zGhVEw6PNN_ACfTkZMS-HQcMQsT_f35YPbzRQ81WtqlQ3-VdCgxW4yspoXzkToGJdJ6utbldNxA=s0?title=021_1491653117.jpg", "http://2.bp.blogspot.com/2mSWVuQA_n33lFMk3zH1kyb5P-rWAixQpq5iOGM2g2GPGy8xVGmyUmHEXJa3nh8akaXVIy4_MIy671qO0HXBDvKjTTPz2Fkrk06kCgV2mp2ltRZuFgna-39rIaR-k6-cTqyHdQ=s0?title=022_1491653117.png" ]
{ "title": "La Cantina", "tags": [ "Vegetarian-Friendly" ], "typeOfFood": "\n Vegan-friendly, International, Non-veg\n ", "description": "Serves meat, veg options available. Vegan choices, marked on menu, include burgers, chili and curry. British owner serves made-in-house cakes; check to see if any are vegan. Open for lunch and dinner.", "priceRange": "Inexpensive", "streetAddress": "66 Rue Boutouil", "phone": "tel:212-524474515", "venueHours": "\n \n Call for hours - tell us\n ", "listingFeatures": [ "Outdoor seating" ], "gmaps": "http://maps.googleapis.com/maps/api/staticmap?center=31.515367,-9.767782&zoom=15&size=458x118&maptype=roadmap&markers=icon:http%3A%2F%2Fgoo.gl%2F1RDrbh%7Cshadow:true%7C31.515367,-9.767782&sensor=false&key=AIzaSyBrIo4v01Yet3zb6VunVdenxRtXWFnwfxk" }
{ "add": { "doc": { "id": "3ad8fafdc30dbff00321290038552ba8e5facac56c281bea6bfa4607b4b4dcec", "url": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Big_Mac_index_50USD_2columns.png/220px-Big_Mac_index_50USD_2columns.png", "previous": [], "after": "The Economist‍ '​s primary focus is world events, politics and business, but it also runs regular sections on science and technology as well as books and the arts. Approximately every two weeks, the publication includes an in-depth special report.[71] (previously called surveys) on a given topic. The five main categories are Countries and Regions, Business, Finance and Economics, Science and Technology, and Other. Every three months, it publishes a technology report called Technology Quarterly[72] or TQ, a special section focusing on recent trends and developments in science and technology.", "color": "light|0.1985 coral|0.1985 light|0.095506 pink|0.095506 pink|0.089888 salmon|0.080524 dark|0.078652 sea|0.078652 green|0.078652 burly|0.047753 wood|0.047753 indian|0.041199 red|0.041199 tan|0.036517 thistle|0.02809 rosy|0.02809 brown|0.02809 light|0.02809 steel|0.02809 blue|0.02809 dark|0.025281 gray|0.025281 dark|0.025281 grey|0.025281 dark|0.022472 khaki|0.022472 khaki|0.022472 silver|0.018727 light|0.016854 sky|0.016854 blue|0.016854 dark|0.011236 salmon|0.011236 forest|0.011236 green|0.011236 dark|0.011236 slate|0.011236 blue|0.011236 peru|0.011236 dim|0.011236 gray|0.011236 dim|0.011236 grey|0.011236 corn|0.008427 flower|0.008427 blue|0.008427 gray|0.008427 grey|0.008427 " } } }
{"name":"WebPT","permalink":"webpt","crunchbase_url":"http://www.crunchbase.com/company/webpt","homepage_url":"http://www.webpt.com","blog_url":"http://www.webpt.com/resources/blog","blog_feed_url":"http://www.webpt.com/resources/blog/feed","twitter_username":"webpt","category_code":"software","number_of_employees":25,"founded_year":2006,"founded_month":null,"founded_day":null,"deadpooled_year":null,"deadpooled_month":null,"deadpooled_day":null,"deadpooled_url":null,"tag_list":"physical-therapy-software, emr, pt-software, pt-documentation-software","alias_list":null,"email_address":"info@webpt.com","phone_number":"866.221.1870","description":"PT EMR Software","created_at":"Mon Dec 13 23:26:00 UTC 2010","updated_at":"Wed Dec 22 16:17:32 UTC 2010","overview":"<p>WebPT is the leading web-based physical therapy EMR (Electronic Medical Records) system, providing over 5,000 therapists with complete, easy and affordable software to manage clinical and clerical functions.</p>\n\n<p>The system offers a brand new approach to practice management and patient documentation as the application is designed to improve clinic productivity, increase revenue, reduce expenses and enhance a more stress-free clinical environment. The digital documentation system combines an intuitive dashboard user interface with practical physical therapy logic to create a user-friendly documentation solution.</p>","image":{"available_sizes":[[[150,33],"assets/images/resized/0011/4043/114043v2-max-150x150.png"],[[250,55],"assets/images/resized/0011/4043/114043v2-max-250x250.png"],[[450,100],"assets/images/resized/0011/4043/114043v2-max-450x450.png"]],"attribution":null},"products":[],"relationships":[{"is_past":false,"title":"CEO","person":{"first_name":"Paul","last_name":"Winandy","permalink":"paul-winandy","image":null}},{"is_past":false,"title":"CTO","person":{"first_name":"Brad","last_name":"Jannenga","permalink":"brad-jannenga","image":null}},{"is_past":false,"title":"COO","person":{"first_name":"Heidi","last_name":"Jannenga, PT ATC","permalink":"heidi-jannenga-pt-atc","image":null}}],"competitions":[],"providerships":[],"total_money_raised":"$1M","funding_rounds":[{"round_code":"a","source_url":"http://www.webpt.com/about/press/releases/webpt-closes-1-million-funding-round","source_description":"WebPT Closes $1 Million Series A Funding","raised_amount":1000000,"raised_currency_code":"USD","funded_year":2010,"funded_month":12,"funded_day":14,"investments":[]}],"investments":[],"acquisition":null,"acquisitions":[],"offices":[{"description":"Headquarters","address1":"605 E Grant Street, Suite 200","address2":"","zip_code":"85004","city":"Phoenix","state_code":"AZ","country_code":"USA","latitude":null,"longitude":null}],"milestones":[],"ipo":null,"video_embeds":[],"screenshots":[],"external_links":[]}
[{"corporation_id": 98641669, "record_id": 52713955, "start_date": "2020-05-09T08:24:00Z"}, {"corporation_id": 1000009, "record_id": 52713954, "start_date": "2020-05-09T08:24:00Z"}, {"corporation_id": 98553095, "record_id": 52612526, "start_date": "2020-05-01T12:07:00Z"}, {"corporation_id": 1000009, "record_id": 52612520, "start_date": "2020-05-01T12:06:00Z"}, {"corporation_id": 98246668, "record_id": 51729504, "start_date": "2020-02-01T15:12:00Z"}, {"corporation_id": 1000009, "record_id": 51707084, "start_date": "2020-01-29T09:47:00Z"}, {"corporation_id": 98342486, "record_id": 49326627, "start_date": "2019-02-10T18:47:00Z"}, {"corporation_id": 1000009, "record_id": 49326626, "start_date": "2019-02-10T18:47:00Z"}, {"corporation_id": 98442405, "record_id": 48652959, "start_date": "2018-10-24T21:35:00Z"}, {"corporation_id": 1000009, "record_id": 48647421, "start_date": "2018-10-23T19:59:00Z"}, {"corporation_id": 98151818, "record_id": 48525431, "start_date": "2018-10-02T19:04:00Z"}, {"corporation_id": 1000009, "record_id": 48490290, "start_date": "2018-09-26T20:50:00Z"}, {"corporation_id": 1000180, "record_id": 34221125, "start_date": "2014-07-28T17:17:00Z"}, {"corporation_id": 1000009, "record_id": 28391015, "start_date": "2013-09-24T23:49:00Z"}, {"corporation_id": 1273730842, "is_deleted": true, "record_id": 19920482, "start_date": "2012-06-04T17:52:00Z"}, {"corporation_id": 98024243, "record_id": 19476993, "start_date": "2012-04-14T19:40:00Z"}, {"corporation_id": 1000009, "record_id": 19465763, "start_date": "2012-04-13T17:43:00Z"}, {"corporation_id": 753259512, "record_id": 19440098, "start_date": "2012-04-10T17:58:00Z"}, {"corporation_id": 1273730842, "is_deleted": true, "record_id": 15134200, "start_date": "2010-10-25T15:20:00Z"}, {"corporation_id": 658808755, "record_id": 14803362, "start_date": "2010-09-12T10:12:00Z"}, {"corporation_id": 1000009, "record_id": 14750253, "start_date": "2010-09-05T22:21:00Z"}, {"corporation_id": 753259512, "record_id": 11870315, "start_date": "2009-10-21T20:50:00Z"}, {"corporation_id": 1273730842, "is_deleted": true, "record_id": 4455702, "start_date": "2009-02-22T15:35:00Z"}, {"corporation_id": 992218504, "is_deleted": true, "record_id": 4455701, "start_date": "2009-01-01T21:55:00Z"}, {"corporation_id": 1000009, "record_id": 4455700, "start_date": "2008-12-30T21:09:00Z"}, {"corporation_id": 658808755, "record_id": 4455699, "start_date": "2008-04-25T16:12:00Z"}, {"corporation_id": 170064479, "record_id": 4455698, "start_date": "2008-02-29T17:45:00Z"}, {"corporation_id": 1638313825, "record_id": 4455697, "start_date": "2007-11-07T17:35:00Z"}, {"corporation_id": 1000009, "record_id": 4455696, "start_date": "2007-04-01T23:53:00Z"}, {"corporation_id": 548510345, "is_deleted": true, "record_id": 4455695, "start_date": "2007-02-16T18:19:00Z"}, {"corporation_id": 1000009, "record_id": 4455694, "start_date": "2007-02-12T18:25:00Z"}, {"corporation_id": 170064479, "record_id": 4455693, "start_date": "2006-12-17T18:10:00Z"}, {"corporation_id": 614700844, "record_id": 4455692, "start_date": "2006-10-02T17:09:00Z"}, {"corporation_id": 1000009, "record_id": 4455691, "start_date": "2006-09-25T22:37:00Z"}, {"corporation_id": 695264821, "record_id": 4455690, "start_date": "2006-04-23T23:37:00Z"}, {"corporation_id": 170064479, "record_id": 4455689, "start_date": "2004-08-03T23:29:00Z"}, {"corporation_id": 145437226, "record_id": 4455688, "start_date": "2003-12-31T19:03:00Z"}, {"corporation_id": 1000167, "record_id": 4455687, "start_date": "2003-12-26T23:15:00Z"}]
{ "actions": [ { "acted_at": "1976-03-24", "committee": "House Committee on Veterans' Affairs", "references": [], "status": "REFERRED", "text": "Referred to House Committee on Veterans' Affairs.", "type": "referral" } ], "amendments": [], "bill_id": "hr12773-94", "bill_type": "hr", "committees": [ { "activity": [ "referral", "in committee" ], "committee": "House Veterans' Affairs", "committee_id": "HSVR" } ], "congress": "94", "cosponsors": [ { "district": "2", "name": "Beard, Edward", "sponsored_at": "1975-01-03", "state": "RI", "thomas_id": "00068", "title": "Rep", "withdrawn_at": null }, { "district": "3", "name": "Brinkley, Jack", "sponsored_at": "1975-01-03", "state": "GA", "thomas_id": "00124", "title": "Rep", "withdrawn_at": null }, { "district": "19", "name": "Carney, Charles J.", "sponsored_at": "1975-01-03", "state": "OH", "thomas_id": "00177", "title": "Rep", "withdrawn_at": null }, { "district": "30", "name": "Danielson, George E.", "sponsored_at": "1975-01-03", "state": "CA", "thomas_id": "00263", "title": "Rep", "withdrawn_at": null }, { "district": "10", "name": "Edwards, Don", "sponsored_at": "1975-01-03", "state": "CA", "thomas_id": "00336", "title": "Rep", "withdrawn_at": null }, { "district": "3", "name": "Hammerschmidt, John P.", "sponsored_at": "1975-01-03", "state": "AR", "thomas_id": "00490", "title": "Rep", "withdrawn_at": null }, { "district": "34", "name": "Hannaford, Mark W.", "sponsored_at": "1975-01-03", "state": "CA", "thomas_id": "00495", "title": "Rep", "withdrawn_at": null }, { "district": "10", "name": "Heckler, Margaret M.", "sponsored_at": "1975-01-03", "state": "MA", "thomas_id": "00523", "title": "Rep", "withdrawn_at": null }, { "district": "8", "name": "Hefner, W. G. (Bill)", "sponsored_at": "1975-01-03", "state": "NC", "thomas_id": "00525", "title": "Rep", "withdrawn_at": null }, { "district": "5", "name": "Holland, Kenneth L.", "sponsored_at": "1975-01-03", "state": "SC", "thomas_id": "00552", "title": "Rep", "withdrawn_at": null }, { "district": "3", "name": "Montgomery, G. V. (Sonny)", "sponsored_at": "1975-01-03", "state": "MS", "thomas_id": "00827", "title": "Rep", "withdrawn_at": null }, { "district": "23", "name": "Mottl, Ronald M.", "sponsored_at": "1975-01-03", "state": "OH", "thomas_id": "00839", "title": "Rep", "withdrawn_at": null }, { "district": "17", "name": "O'Brien, George M.", "sponsored_at": "1975-01-03", "state": "IL", "thomas_id": "00872", "title": "Rep", "withdrawn_at": null }, { "district": "4", "name": "Roberts, Ray", "sponsored_at": "1975-01-03", "state": "TX", "thomas_id": "00969", "title": "Rep", "withdrawn_at": null }, { "district": "6", "name": "Teague, Olin E.", "sponsored_at": "1975-01-03", "state": "TX", "thomas_id": "01146", "title": "Rep", "withdrawn_at": null }, { "district": "33", "name": "Walsh, William F.", "sponsored_at": "1975-01-03", "state": "NY", "thomas_id": "01198", "title": "Rep", "withdrawn_at": null }, { "district": "6", "name": "Wolff, Lester L.", "sponsored_at": "1975-01-03", "state": "NY", "thomas_id": "01239", "title": "Rep", "withdrawn_at": null } ], "enacted_as": null, "history": { "awaiting_signature": false, "enacted": false, "vetoed": false }, "introduced_at": "1976-03-24", "number": "12773", "official_title": "A bill to amend title 38 of the United States Code in order to revise the provisions therein relating to the construction, alteration, and acquisition of Veterans' Administration medical facilities.", "popular_title": null, "related_bills": [], "short_title": "Veterans' Administration Medical Facilities Acquisition Act", "sponsor": { "district": "3", "name": "Satterfield, David E., 3d", "state": "VA", "thomas_id": "01019", "title": "Rep", "type": "person" }, "status": "REFERRED", "status_at": "1976-03-24", "subjects": [ "Armed forces and national security", "Hospitals", "Medical care, personnel, and facilities", "Veterans' hospitals" ], "subjects_top_term": "Veterans' hospitals", "summary": { "as": "Introduced", "date": "1976-03-24", "text": "Veterans' Administration Medical Facilities Acquisition Act - Directs the Administrator of Veterans' Affairs, in carrying out his duties under this Act: (1) to provide for the construction and acquisition of medical facilities equitably throughout the United States with due regard for the comparative urgency of the need for each particular facility; and (2) to give due consideration to excellance of architecture and design. Authorizes the Administrator to construct and alter, and to acquire sites for, medical facilities. States that no appropriation shall be made to construct, alter, or otherwise acquire any medical facility which involves a total expenditure of more than $500,000 unless such construction, alteration, or acquisition is first approved by resolution adopted by the Committee on Veterans' Affairs of the House of Representatives and the Committee on Veterans' Affairs of the Senate, respectively. Stipulates that no appropriation shall be made to lease any space at an average annual rental of more than $200,000 for use for a medical facility unless such lease is first approved by resolutions adopted by such committees. States that the Administrator may not enter into any construction, acquisition, or alteration involving a total expenditure of $500,000 or less before the expiration of 60 days after the date on which he submits a report of the facts concerning such proposed expenditure to such committees. Enumerates structural requirements for any medical facilities pursuant to this Act. Directs the Administrator to submit to Congress an annual report regarding the construction, alteration, and leasing of medical facilities. Authorizes the Administrator to make contributions to local authorities for the construction of traffic controls, and road improvements necessitated by medical facilities. Authorizes the Administrator to construct and operate, on reservations of medical facilities, garages and parking facilities. Directs the Administrator to establish and operate not less than 125,000 hospital beds in medical facilities over which the Administrator has direct and exclusive jurisdiction for the care and treatment of eligible veterans who are tuberculous, neuropsychiatric, medical, and surgical cases. Requires the Administrator to maintain the bed and treatment capacities of all Veterans' Administration medical facilities so as to insure the accessibility and availability of such beds and treatment capacities to eligible veterans and to minimize delays in admissions and in the provision of such care and of services. Directs the Administrator to establish and operate not less than 8,000 beds in the fiscal year ending June 30, 1976, and in each fiscal year thereafter, for the furnishing of nursing home care to eligible veterans in facilities over which the Administrator has direct and exclusive jurisdiction. Authorizes the Administrator and the Secretary of the Army, the Secretary of the Air Force, and the Secretary of the Navy to enter into agreements and contracts for the mutual use or exchange of use of hospitals and domiciliary facilities." }, "titles": [ { "as": "introduced", "title": "Veterans' Administration Medical Facilities Acquisition Act", "type": "short" }, { "as": "introduced", "title": "A bill to amend title 38 of the United States Code in order to revise the provisions therein relating to the construction, alteration, and acquisition of Veterans' Administration medical facilities.", "type": "official" } ], "updated_at": "2013-02-02T18:33:03-05:00" }
[ { "jungle_id":8107, "level":"Advanced" }, { "jungle_id":8108, "level":"Advanced" }, { "jungle_id":8110, "level":"Advanced" }, { "jungle_id":8143, "level":"Advanced" }, { "jungle_id":8224, "level":"Advanced" }, { "jungle_id":8112, "level":"Advanced" }, { "jungle_id":8115, "level":"Intermediate" }, { "jungle_id":8109, "level":"Upper-Intermediate" }, { "jungle_id":8091, "level":"Advanced" }, { "jungle_id":8113, "level":"Intermediate" }, { "jungle_id":8101, "level":"Upper-Intermediate" }, { "jungle_id":8116, "level":"Upper-Intermediate" }, { "jungle_id":8144, "level":"Upper-Intermediate" }, { "jungle_id":8117, "level":"Upper-Intermediate" }, { "jungle_id":8120, "level":"Upper-Intermediate" }, { "jungle_id":8121, "level":"Upper-Intermediate" }, { "jungle_id":8122, "level":"Intermediate" }, { "jungle_id":8123, "level":"Upper-Intermediate" }, { "jungle_id":8224, "level":"Intermediate" }, { "jungle_id":8125, "level":"Upper-Intermediate" }, { "jungle_id":8128, "level":"Advanced" }, { "jungle_id":8129, "level":"Intermediate" }, { "jungle_id":8130, "level":"Upper-Intermediate" }, { "jungle_id":8140, "level":"Upper-Intermediate" }, { "jungle_id":8141, "level":"Upper-Intermediate" }, { "jungle_id":8145, "level":"Upper-Intermediate" }, { "jungle_id":8147, "level":"Intermediate" }, { "jungle_id":8148, "level":"Elementary/Pre-Intermediate" }, { "jungle_id":8158, "level":"Beginner" }, { "jungle_id":8159, "level":"Advanced" }, { "jungle_id":8224, "level":"Intermediate" }, { "jungle_id":8166, "level":"Upper-Intermediate" } ]
{"feedstocks": ["r-polynom"]}
{"brief_title": "BAY 43-9006 (Sorafenib) to Treat Relapsed Non-Small Cell Lung Cancer", "brief_summary": "This study will investigate the effects and side effects of BAY 43-9006 in patients with advanced, recurrent, or refractory non-small cell lung cancer (NSCLC). BAY 43-9006 is one of a new class of anticancer agents known as bi-aryl ureas. Patients 18 years of age and older with NSCLC that has recurred or progressed after one regimen of chemotherapy may be eligible for this study. Candidates are screened with a medical history and physical examination; blood tests; tumor biopsy (see below); chest x-ray; electrocardiogram; and imaging studies, including positron emission tomography-computed tomography (PET-CT, see below) and dynamic, contrast-enhanced MRI (DCE-MRI, see below). Participants take BAY 43-9006 by mouth twice a day, morning and evening. On the first and 15th days of treatment, patients are admitted to the hospital for pharmacokinetic studies; that is, a test of how the body handles the drug. For the test, blood is collected at intervals (at 15 minutes, 30 minutes, and 1, 2, 4, 6, 8, 12 and 24 hours after ingestion) to determine the drug's level in the bloodstream. Treatment with BAY 43-9006 continues until the study doctor determines that the medication is not beneficial or the patient wishes to withdraw from the study. In addition to drug therapy, patients undergo the following tests and procedures: - Physical examination every 4 weeks - Blood pressure checks once a week during the first 4 weeks - Blood tests every week - CT scans or other imaging tests, such as ultrasound or MRI, every 8 weeks to evaluate the tumor's response to treatment. CT is an x-ray test that provides detailed pictures of the inside of the body. It can be done from different angles, providing a 3-dimensional picture of the part of the body being studied and allowing the doctor to see the location, nature, and extent of disease. MRI uses a powerful magnet and radio waves instead of x-rays to produce accurate, detailed pictures of organs and tissues. - PET-CT approximately every 8 weeks to look at how different parts of the body take up and use glucose (a sugar nutrient). Because rapidly growing cells, such as tumors, use more sugar than normal cells do, this test can be used to detect cancer. For the test, the patient is given an injection of a sugar solution in which a radioactive tracer has been attached to the sugar molecule. A special camera detects the radiation emitted by the solution, and the resulting images show how much sugar is being used in various parts of the body. PET-CT uses the PET scan in combination with standard CT in a machine that does both tests. - DCE-MRI after 2 weeks of treatment. This test uses MRI with a special non-radioactive dye to examine blood flow in a certain part of the body. - Tumor biopsy (optional) after 2 weeks of treatment. A biopsy is the surgical removal of a small piece of tissue. The tumor biopsy is done either using a small bore needle under CT guidance or by direct visualization using a laparoscope/thoracoscope. For the needle biopsy, a needle is inserted through the skin and guided by CT into the tumor mass. For the laparoscopy/thoracoscopy, the patient is sedated or asleep and small lighted tubes are inserted into small holes made in the skin. The tumor is located and tissue withdrawn.", "detailed_description": "Despite advances in systemic chemotherapy, patients with stage IV NSCLC will die from their disease. The median survival of all patients is 8-16 months, with a one year-survival rate of 33%. Chemotherapy is the mainstay of treatment of advanced disease. Based on available data from randomized trials, current treatment recommendations are to treat with one of several effective cisplatin-doublets which have resulted in median survival of 16 to 18 months. Second line chemotherapy is able to improve outcome in patients who have had prior cisplatin therapy. Although these important milestones represent improvements in the care of patients with metastatic NSCLC, outcome has not been able to be further improved by substituting one active drug for another in a platinum-based doublet, treating patients with more than four cycles of chemotherapy or by using cisplatin-based triplets. It is clear that if we are to improve outcome of NSCLC patients, we will need to develop drugs with novel mechanisms of action that perhaps will inhibit major cellular signaling pathways affecting survival, proliferation and angiogenesis. One new compound, BAY 43-9006, was designed to inhibit Raf and is also known to inhibit other kinases including VEGFR2, VEGFR3, PDGFR-beta, Flt3, c-KIT, and p38(1). BAY 43-9006 has shown in vitro activity against NSCLC cell lines NCI-H460 and A549 with tumor growth inhibition of 27% to 68%. In addition, BAY 43-9006 has shown activity in the H460 NSCLC xenograft model. In NSCLC, the proliferation signaling of the Ras/Raf/MEK/ERK pathway is increased due to the frequent (30%) presence of K-ras mutations in the tumor. Mutations in K-ras have been associated with malignant transformation of normal epithelium and constitutive activation of p21 and its downstream effects on cellular proliferation and inhibition of apoptosis. Clinical observations have shown that tumors with K-ras mutations tended to be smaller but more poorly differentiated, and associated with a significantly worse three-year mortality rate. As mentioned above, other pathways significant to the malignant potential of NSCLC, particularly those involved in angiogenesis, may also be affected by BAY 43-9006. The in vitro and in vivo data support the clinical investigation of BAY 43-9006 as an inhibitor of the Ras/Raf/MEK/ERK downstream proliferation effects. The goal of this phase II trial is to determinate if BAY 43-9006 is active in NSCLC, and to measure the BAY 43-9006 biological effects on the Ras/Raf/MEK/ERK pathway. To achieve these goals, patients with relapsed or recurrent NSCLC will be given BAY 43-9006 (four weeks cycle of 400mg PO BID). A series of correlative studies will be done during treatment to measure biological and clinical effects of BAY 43-9006. These studies will include analyses of tissue and blood samples as well as correlative imaging studies.", "condition": ["Non-Small-Cell Lung Carcinoma"], "intervention_type": ["Drug"], "intervention_name": ["BAY 43-9006 (Sorafenib)"], "description": ["Self administered oral doses at 400 mg twice a day with 250 ml (8 oz.) of water each morning and evening (i.e., 12-hourly) continuously in a 28 day cycle. Tablets may be taken with or without food."], "arm_group_label": ["BAY 43-9006 (Sorafenib)"], "other_name": ["Sorafenib tosylate"], "criteria": "- INCLUSION CRITERIA: Histologically documented Non-small cell lung cancer and confirmed by the Laboratory of Pathology at the Clinical Center/National Institutes of Health (NIH) or the Laboratory of Pathology at National Naval Medical Center (NNMC). Recurrent or progressed Non-Small Cell Lung Cancer (NSCLC). Patients must have measurable disease, defined as at least one lesion that can be accurately measured in at least one dimension (longest diameter to be recorded) as greater than 20 mm with conventional techniques or as greater than 10 mm with spiral Computed tomography (CT) scan. Patients must have recovered from toxicity related to prior therapy to at least to grade 1 (defined by Common Terminology Criteria for Adverse Events (CTCAE) 3.0) and must not have had prior chemotherapy within 4 weeks. Patients must be at least 28 days since any prior radiation or major surgery. Age greater than 18 years (males or non-pregnant females). Because no dosing or adverse event data are currently available on the use of BAY 43-9006 in patients less than 18 years of age, children are excluded from this study but will be eligible for future pediatric single-agent trials, if applicable. Life expectancy of greater than 3 months. Eastern Cooperative Oncology Group (ECOG) performance status less than 2 (Karnofsky > 60%). Patients must have adequate organ and marrow function (as defined below). Patients must have returned to base line or grade one from any acute toxicity related to prior therapy. Leukocytes greater than 3,000/micro l; Absolute neutrophil count greater than 1,200/micro l; Platelets greater than 100,000/micro l; International normalized ratio (INR) less than or equal to 1.2 Partial thromboplastin time (PTT) less than or equal to 36 seconds or abnormality can be explained by the presences of lupus anticoagulant Total bilirubin less than or equal to 1.5 times the institutional upper limits of normal; Aspartate aminotransferase, oxaloacetic transaminase (AST,SGOT) and alanine transaminase, serum glutamic pyruvic transaminase (ALT,SGPT) less than 2.5 times the institutional upper limits of normal; Creatinine or creatinine clearance less than or equal to 1.5 times the institutional upper limits of normal or greater than 45 mL/min/1.73 m^2 for patients with creatinine levels above institutional normal. The effects of BAY 43-9006 on the developing human fetus at the recommended therapeutic dose are unknown. For this reason and because kinase inhibitors are known to be teratogenic, women of child-bearing potential and men must agree to use adequate contraception (hormonal or barrier method of birth control; abstinence) prior to study entry and for the duration of study participation and continue for at least 2 months after completion. Should a woman become pregnant or suspect she is pregnant while participating in this study, she should inform her treating physician immediately. Because there is an unknown but potential risk for adverse events in nursing infants secondary to treatment of the mother with BAY 43-9006, breastfeeding should be discontinued if the mother is treated with BAY 43-9006. Ability to comply with daily oral self administration schedule, and the ability to understand and the willingness to sign a written informed consent document. EXCLUSION CRITERIA: Patients with symptomatic brain metastases should be excluded from this clinical trial because of their poor prognosis and because they often develop progressive neurologic dysfunction that would confound the evaluation of neurologic and other adverse events. However, patients who have had treatment for their brain metastases and whose brain metastatic disease status has remained stable for at least 3 months without steroids may be enrolled at the discretion of the principal investigator. Uncontrolled medical illness including, but not limited to, ongoing or uncontrolled, symptomatic congestive heart failure (American Heart Association (AHA) Class II or worse), uncontrolled hypertension, unstable angina pectoris, cardiac arrhythmia, or psychiatric illness/social situations that would limit compliance with study requirements. Human immunodeficiency virus (HIV)positive patients receiving combination anti-retroviral therapy are excluded from the study because of possible pharmacokinetic interactions with BAY 43-9006. HIV positive patients not receiving antiretroviral therapy are excluded due to the possibility that BAY 43-9006 may worsen their condition and the likelihood that the underlying condition may obscure the attribution of adverse events with respect to BAY 43-9006. Patients may not be receiving any other investigational agents. History of another invasive malignancy in the last five years. Non-invasive, non-melanoma skin cancers will be allowed. Patients with conditions that would impair their ability to swallow tablets are excluded. Patients must not have any evidence of bleeding diathesis. Patients must not be on therapeutic anticoagulation. Prophylactic anticoagulation (i.e. low dose warfarin) of venous or arterial access devices is allowed provided that the requirements for prothrombin time (PT), international normalized ratio (INR) or partial thromboplastin time (PTT) are met. Both men and women and members of all races and ethnic groups are eligible for this trial. Every effort will be made to recruit women and minorities in this study.", "gender": "All", "minimum_age": "18 Years", "maximum_age": "N/A", "healthy_volunteers": "No", "keyword": "NSCLC", "mesh_term": ["Lung Neoplasms", "Carcinoma, Non-Small-Cell Lung", "Sorafenib", "Niacinamide"], "id": "NCT00098254"}
{ "answers": [ "C", "C" ], "options": [ [ "hug", "shaking hands", "jump", "kiss" ], [ "They use eyes to recognize each other.", "They use sound to recognize each other.", "They use smell to recognize each other.", "They use touch to recognize each other." ] ], "questions": [ "People have different ways of greeting each other except _ .", "How do the dogs recognize each other?" ], "article": "People have different ways of greeting each other. They might shake hands , kiss or hug . But do you ever wonder how dogs say hello?\nIf you are a dog lover, you already know the answer to this question. When you arrive home, your dog jumps up into your lap . It wags its tail, and sometimes gives you wet kisses.\nLike humans, dogs have five senses : smell, touch, sight, hearing and taste. Humans use sight as the main sense for recognizing one another. But dogs have poor eyesight. They use smell to recognize others. A dog's sense of smell is much better than a human's. It is through its sense of smell that tells the differences between different people.\nDogs use smell to recognize other dogs, too. They tell the differences by the smell of pee and pooh . When two dogs meet, they smell each other's noses. Then they go side to side, and smell each other's butts . By smelling its friend's behind, a dog knows who it is with.\nThat is also why dogs smell everything they can on the road. By smelling grass, trees and signposts , dogs know which other neighborhood dogs have been around.", "id": "asc19188" }
{ "first_traded_price": 3280.0, "highest_price": 3280.0, "isin": "IRO1TBAS0001", "last_traded_price": 3161.0, "lowest_price": 3144.0, "trade_volume": 50815.0, "unix_time": 1407024000 }
{"696540":{"success":true,"data":{"type":"game","name":"60 Second Strike","steam_appid":696540,"required_age":0,"is_free":false,"detailed_description":"A shooter you can play for minutes or hours at a time, 60 Second Strike offers a refreshing new take on classic old-school gameplay. When time is your life, how long can you last? <br \/>\r\n<br \/>\r\n- THE TIME OF YOUR LIFE: Defeat enemies and gather crystals to gain more time, but beware--the more damage you take, the less time you'll have left. <br \/>\r\n<br \/>\r\n- A SIMPLE GOAL WITH INFINITE APPROACHES: With procedurally generated maps offering countless challenges across multiple modes, the action only stops when you do.<br \/>\r\n<br \/>\r\n- UPGRADE AND CUSTOMIZE YOUR LOADOUT: Mix skill and strategy to hone your personal gameplay style, and keep the odds ever in your favor by permanently upgrading your weapons and ship. <br \/>\r\n<br \/>\r\n- THE NEED FOR SPEED: A custom game engine allows for unprecedented speed to get you in the game as soon as possible--you'll be playing before most other games have even booted. <br \/>\r\n<br \/>\r\n- NO REST FOR THE WICKED: 60 Second Strike is the debut release from Amplecti Chao, a one-person indie outfit with over a decade of industry experience including the Destroy All Humans! and Borderlands series.","about_the_game":"A shooter you can play for minutes or hours at a time, 60 Second Strike offers a refreshing new take on classic old-school gameplay. When time is your life, how long can you last? <br \/>\r\n<br \/>\r\n- THE TIME OF YOUR LIFE: Defeat enemies and gather crystals to gain more time, but beware--the more damage you take, the less time you'll have left. <br \/>\r\n<br \/>\r\n- A SIMPLE GOAL WITH INFINITE APPROACHES: With procedurally generated maps offering countless challenges across multiple modes, the action only stops when you do.<br \/>\r\n<br \/>\r\n- UPGRADE AND CUSTOMIZE YOUR LOADOUT: Mix skill and strategy to hone your personal gameplay style, and keep the odds ever in your favor by permanently upgrading your weapons and ship. <br \/>\r\n<br \/>\r\n- THE NEED FOR SPEED: A custom game engine allows for unprecedented speed to get you in the game as soon as possible--you'll be playing before most other games have even booted. <br \/>\r\n<br \/>\r\n- NO REST FOR THE WICKED: 60 Second Strike is the debut release from Amplecti Chao, a one-person indie outfit with over a decade of industry experience including the Destroy All Humans! and Borderlands series.","short_description":"A shooter you can play for minutes or hours at a time, 60 Second Strike offers a refreshing new take on classic old-school gameplay. When time is your life, how long can you last?","supported_languages":"English, French, Italian, German, Spanish - Spain","reviews":"\u201cSomething you can keep coming back to...a fun, fast-paced action game. Go buy it.\u201d<br>Highly Recommended \u2013 <a href=\"https:\/\/www.youtube.com\/watch?v=zOpmF6BK_ns&amp;feature=youtu.be\" target=\"_blank\" rel=\"noreferrer\" >Indie Gaming Podcast<\/a><br>","header_image":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/696540\/header.jpg?t=1507178713","website":"http:\/\/60secstrike.com","pc_requirements":{"minimum":"<strong>Minimum:<\/strong><br><ul class=\"bb_ul\"><li><strong>OS:<\/strong> Windows 7<br><\/li><li><strong>Processor:<\/strong> i5 3GHz<br><\/li><li><strong>Memory:<\/strong> 4 GB RAM<br><\/li><li><strong>Graphics:<\/strong> GeForce 660<br><\/li><li><strong>DirectX:<\/strong> Version 11<br><\/li><li><strong>Storage:<\/strong> 650 MB available space<\/li><\/ul>"},"mac_requirements":[],"linux_requirements":[],"legal_notice":"\u00a9 2017 Amplecti Chao. All rights reserved.","developers":["Amplecti Chao"],"publishers":["Amplecti Chao"],"price_overview":{"currency":"EUR","initial":999,"final":999,"discount_percent":0,"initial_formatted":"","final_formatted":"9,99\u20ac"},"packages":[200169],"package_groups":[{"name":"default","title":"Buy 60 Second Strike","description":"","selection_text":"Select a purchase option","save_text":"","display_type":0,"is_recurring_subscription":"false","subs":[{"packageid":200169,"percent_savings_text":"","percent_savings":0,"option_text":"60 Second Strike - 9,99\u20ac","option_description":"","can_get_free_license":"0","is_free_license":false,"price_in_cents_with_discount":999}]}],"platforms":{"windows":true,"mac":false,"linux":false},"categories":[{"id":2,"description":"Single-player"},{"id":18,"description":"Partial Controller Support"}],"genres":[{"id":"1","description":"Action"},{"id":"23","description":"Indie"}],"screenshots":[{"id":0,"path_thumbnail":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/696540\/ss_273bc15259d8d8bac00a48bdceb75e489664a99c.600x338.jpg?t=1507178713","path_full":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/696540\/ss_273bc15259d8d8bac00a48bdceb75e489664a99c.1920x1080.jpg?t=1507178713"},{"id":1,"path_thumbnail":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/696540\/ss_e37816b25c17a7366eeb2eed8fe7f6424b97396d.600x338.jpg?t=1507178713","path_full":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/696540\/ss_e37816b25c17a7366eeb2eed8fe7f6424b97396d.1920x1080.jpg?t=1507178713"},{"id":2,"path_thumbnail":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/696540\/ss_42ae19654003080766b96ceb015bde87cfd3f7c4.600x338.jpg?t=1507178713","path_full":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/696540\/ss_42ae19654003080766b96ceb015bde87cfd3f7c4.1920x1080.jpg?t=1507178713"},{"id":3,"path_thumbnail":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/696540\/ss_cfa23ef042f743310f0e74b766621a785f277943.600x338.jpg?t=1507178713","path_full":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/696540\/ss_cfa23ef042f743310f0e74b766621a785f277943.1920x1080.jpg?t=1507178713"},{"id":4,"path_thumbnail":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/696540\/ss_7849925a916301ba2cbe289aeabd1839bc4f9cef.600x338.jpg?t=1507178713","path_full":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/696540\/ss_7849925a916301ba2cbe289aeabd1839bc4f9cef.1920x1080.jpg?t=1507178713"}],"movies":[{"id":256696539,"name":"60 Second Strike - Launch Trailer","thumbnail":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/256696539\/movie.293x165.jpg?t=1506441887","webm":{"480":"http:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/256696539\/movie480.webm?t=1506441887","max":"http:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/256696539\/movie_max.webm?t=1506441887"},"highlight":true}],"achievements":{"total":0},"release_date":{"coming_soon":false,"date":"4 Oct, 2017"},"support_info":{"url":"","email":"feedback@60secstrike.com"},"background":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/696540\/page_bg_generated_v6b.jpg?t=1507178713","content_descriptors":{"ids":[],"notes":null}}}}
{"id_art": "88e31c05e79280d4045a6ad0ed5e90e0", "title": "Calais : des associations portent plainte contre la confiscation des biens des migrants", "newspaper": "Le Monde", "author": ["Maryline Baumard"], "date_publi": "2018-01-15", "content": " A la veille de la venue d'Emmanuel Macron a Calais, la tension monte dans le milieu associatif. Depot de plainte et refus d'assister a la reunion de demain montrent l'exasperation des humanitaires. Le Monde | 15.01.2018 a 15h43 | Par Maryline Baumard Pour pouvoir porter plainte, un collectif d'associations avait << tatoue >> 700 sacs de couchage et autant de baches aux logos de leurs associations. Ce materiel a ete distribue le 6 decembre a des exiles, avec signature d'un contrat de pret. << Nous avons fait signer 120 contrats de prets >>, raconte un des participants a l'operation. Cette formule permet de faire valoir que le materiel appartient toujours aux associations et de denoncer une pratique qu'ils estiment quotidienne. Baches et sacs de couchage sont des elements essentiels de la survie dans cette zone au vent glacial et humide. Mais depuis la distribution, les temoignages de confiscation de ces materiaux affluent. Ces objets finissent en general a la dechetterie et sont detruits. Ce qui exaspere les associations, qui disposent d'un large stock mais refusent de cautionner ce gachis. Lire aussi : Calais : << On occulte l'urgence et la necessite qui ont pousse les gens a venir jusqu'ici >> Parmi ces temoignages, un humanitaire raconte comment le 11 decembre a 15 h 30, il est temoin d'une operation de << nettoyage >>. Il demande a verifier que des objets lui appartenant ne sont pas dans la benne. Le gendarme << me repond que je ne dois pas m'inquieter et qu'ils ont verifie que rien qui soit floque avec nos logos n'est jete >>. L'humanitaire suit pourtant le camion et << a un feu rouge, la personne qui m'accompagne descend de notre voiture et prend clairement la photo du camion et de la bache marquee avec le nom du Secours catholique et celui des autres associations >>, raconte-t-il, reprenant les elements du temoignage envoye. Le 13 decembre deja, une autre association, assurant une mission d'accompagnement aupres de dix exiles, arrive pres d'eux alors qu'ils viennent de se faire depouiller de leurs maigres biens. Ce groupe de migrants affirme s'etre fait retirer duvets, baches et sacs a dos. << Parmi ces duvets et ces baches certaines appartenaient a des associations et comportaient leur logo >>, rappelle la personne dont le temoignage fait aussi partie de l'envoi au procureur. La encore certaines pieces emportees avaient fait l'objet d'un contrat de pret. Officiellement, ces confiscations ne sont pas reconnues par les autorites. l'Etat pretend par divers canaux qu'il s'agit d'operations de nettoyage et que les seuls objets enleves sont des materiaux abandonnes par les migrants. Lire aussi : A Croisilles, l'attente angoissee des migrants de Calais Le 5 decembre 2017, Le Monde avait ete temoin du reveil d'un groupe de migrants par la police, dans la ville de Calais. Matelas, couvertures et effets personnels avaient ete mis a la benne. Les migrants, eux, etant pour certains consignes sur place sous un pont de la ville pendant que leurs biens etaient charges dans un camion benne par des agents municipaux. << Par respect pour les migrants, bien evidemment, mais aussi pour nos donateurs, nous ne pouvons laisser passer ces confiscations sans deposer plainte >>, observe Vincent de Coninck, du Secours catholique. Deux des associations importantes sur le terrain a Calais refusent d'etre presentes mardi soir a la reunion a laquelle les convie le chef de l'Etat. Il s'agit d'Utopia 56 et de L'Auberge des Migrants. Toutes deux sont des piliers de la gestion locale des 500 a 600 exiles presents sur place. Abonnez-vous a partir de 1 EUR Le monde abonnements Profitez du journal ou et quand vous voulez. Abonnements papier, offres 100 % numeriques sur Web et tablette. S'abonner au Monde a partir de 1 EUR Journal d'information en ligne, Le Monde.fr offre a ses visiteurs un panorama complet de l'actualite. Decouvrez chaque jour toute l'info en direct (de la politique a l'economie en passant par le sport et la meteo) sur Le Monde.fr, le site de news leader de la presse francaise en ligne. A la veille de la venue d'Emmanuel Macron a Calais, la tension monte dans le milieu associatif. Depot de plainte et refus d'assister a la reunion de demain montrent l'exasperation des humanitaires. Le Monde | 15.01.2018 a 15h43 | Par Maryline Baumard Pour pouvoir porter plainte, un collectif d'associations avait << tatoue >> 700 sacs de couchage et autant de baches aux logos de leurs associations. Ce materiel a ete distribue le 6 decembre a des exiles, avec signature d'un contrat de pret. << Nous avons fait signer 120 contrats de prets >>, raconte un des participants a l'operation. Cette formule permet de faire valoir que le materiel appartient toujours aux associations et de denoncer une pratique qu'ils estiment quotidienne. Baches et sacs de couchage sont des elements essentiels de la survie dans cette zone au vent glacial et humide. Mais depuis la distribution, les temoignages de confiscation de ces materiaux affluent. Ces objets finissent en general a la dechetterie et sont detruits. Ce qui exaspere les associations, qui disposent d'un large stock mais refusent de cautionner ce gachis. Lire aussi : Calais : << On occulte l'urgence et la necessite qui ont pousse les gens a venir jusqu'ici >> Parmi ces temoignages, un humanitaire raconte comment le 11 decembre a 15 h 30, il est temoin d'une operation de << nettoyage >>. Il demande a verifier que des objets lui appartenant ne sont pas dans la benne. Le gendarme << me repond que je ne dois pas m'inquieter et qu'ils ont verifie que rien qui soit floque avec nos logos n'est jete >>. L'humanitaire suit pourtant le camion et << a un feu rouge, la personne qui m'accompagne descend de notre voiture et prend clairement la photo du camion et de la bache marquee avec le nom du Secours catholique et celui des autres associations >>, raconte-t-il, reprenant les elements du temoignage envoye. Le 13 decembre deja, une autre association, assurant une mission d'accompagnement aupres de dix exiles, arrive pres d'eux alors qu'ils viennent de se faire depouiller de leurs maigres biens. Ce groupe de migrants affirme s'etre fait retirer duvets, baches et sacs a dos. << Parmi ces duvets et ces baches certaines appartenaient a des associations et comportaient leur logo >>, rappelle la personne dont le temoignage fait aussi partie de l'envoi au procureur. La encore certaines pieces emportees avaient fait l'objet d'un contrat de pret. Officiellement, ces confiscations ne sont pas reconnues par les autorites. l'Etat pretend par divers canaux qu'il s'agit d'operations de nettoyage et que les seuls objets enleves sont des materiaux abandonnes par les migrants. Lire aussi : A Croisilles, l'attente angoissee des migrants de Calais Le 5 decembre 2017, Le Monde avait ete temoin du reveil d'un groupe de migrants par la police, dans la ville de Calais. Matelas, couvertures et effets personnels avaient ete mis a la benne. Les migrants, eux, etant pour certains consignes sur place sous un pont de la ville pendant que leurs biens etaient charges dans un camion benne par des agents municipaux. << Par respect pour les migrants, bien evidemment, mais aussi pour nos donateurs, nous ne pouvons laisser passer ces confiscations sans deposer plainte >>, observe Vincent de Coninck, du Secours catholique. Deux des associations importantes sur le terrain a Calais refusent d'etre presentes mardi soir a la reunion a laquelle les convie le chef de l'Etat. Il s'agit d'Utopia 56 et de L'Auberge des Migrants. Toutes deux sont des piliers de la gestion locale des 500 a 600 exiles presents sur place. Abonnez-vous a partir de 1 EUR A la veille de la venue d'Emmanuel Macron a Calais, la tension monte dans le milieu associatif. Depot de plainte et refus d'assister a la reunion de demain montrent l'exasperation des humanitaires. Le Monde | 15.01.2018 a 15h43 | Par Maryline Baumard Pour pouvoir porter plainte, un collectif d'associations avait << tatoue >> 700 sacs de couchage et autant de baches aux logos de leurs associations. Ce materiel a ete distribue le 6 decembre a des exiles, avec signature d'un contrat de pret. << Nous avons fait signer 120 contrats de prets >>, raconte un des participants a l'operation. Cette formule permet de faire valoir que le materiel appartient toujours aux associations et de denoncer une pratique qu'ils estiment quotidienne. Baches et sacs de couchage sont des elements essentiels de la survie dans cette zone au vent glacial et humide. Mais depuis la distribution, les temoignages de confiscation de ces materiaux affluent. Ces objets finissent en general a la dechetterie et sont detruits. Ce qui exaspere les associations, qui disposent d'un large stock mais refusent de cautionner ce gachis. Lire aussi : Calais : << On occulte l'urgence et la necessite qui ont pousse les gens a venir jusqu'ici >> Parmi ces temoignages, un humanitaire raconte comment le 11 decembre a 15 h 30, il est temoin d'une operation de << nettoyage >>. Il demande a verifier que des objets lui appartenant ne sont pas dans la benne. Le gendarme << me repond que je ne dois pas m'inquieter et qu'ils ont verifie que rien qui soit floque avec nos logos n'est jete >>. L'humanitaire suit pourtant le camion et << a un feu rouge, la personne qui m'accompagne descend de notre voiture et prend clairement la photo du camion et de la bache marquee avec le nom du Secours catholique et celui des autres associations >>, raconte-t-il, reprenant les elements du temoignage envoye. Le 13 decembre deja, une autre association, assurant une mission d'accompagnement aupres de dix exiles, arrive pres d'eux alors qu'ils viennent de se faire depouiller de leurs maigres biens. Ce groupe de migrants affirme s'etre fait retirer duvets, baches et sacs a dos. << Parmi ces duvets et ces baches certaines appartenaient a des associations et comportaient leur logo >>, rappelle la personne dont le temoignage fait aussi partie de l'envoi au procureur. La encore certaines pieces emportees avaient fait l'objet d'un contrat de pret. Officiellement, ces confiscations ne sont pas reconnues par les autorites. l'Etat pretend par divers canaux qu'il s'agit d'operations de nettoyage et que les seuls objets enleves sont des materiaux abandonnes par les migrants. Lire aussi : A Croisilles, l'attente angoissee des migrants de Calais Le 5 decembre 2017, Le Monde avait ete temoin du reveil d'un groupe de migrants par la police, dans la ville de Calais. Matelas, couvertures et effets personnels avaient ete mis a la benne. Les migrants, eux, etant pour certains consignes sur place sous un pont de la ville pendant que leurs biens etaient charges dans un camion benne par des agents municipaux. << Par respect pour les migrants, bien evidemment, mais aussi pour nos donateurs, nous ne pouvons laisser passer ces confiscations sans deposer plainte >>, observe Vincent de Coninck, du Secours catholique. Deux des associations importantes sur le terrain a Calais refusent d'etre presentes mardi soir a la reunion a laquelle les convie le chef de l'Etat. Il s'agit d'Utopia 56 et de L'Auberge des Migrants. Toutes deux sont des piliers de la gestion locale des 500 a 600 exiles presents sur place. Abonnez-vous a partir de 1 EUR A la veille de la venue d'Emmanuel Macron a Calais, la tension monte dans le milieu associatif. Depot de plainte et refus d'assister a la reunion de demain montrent l'exasperation des humanitaires. Le Monde | 15.01.2018 a 15h43 | Par Maryline Baumard Pour pouvoir porter plainte, un collectif d'associations avait << tatoue >> 700 sacs de couchage et autant de baches aux logos de leurs associations. Ce materiel a ete distribue le 6 decembre a des exiles, avec signature d'un contrat de pret. << Nous avons fait signer 120 contrats de prets >>, raconte un des participants a l'operation. Cette formule permet de faire valoir que le materiel appartient toujours aux associations et de denoncer une pratique qu'ils estiment quotidienne. Baches et sacs de couchage sont des elements essentiels de la survie dans cette zone au vent glacial et humide. Mais depuis la distribution, les temoignages de confiscation de ces materiaux affluent. Ces objets finissent en general a la dechetterie et sont detruits. Ce qui exaspere les associations, qui disposent d'un large stock mais refusent de cautionner ce gachis. Lire aussi : Calais : << On occulte l'urgence et la necessite qui ont pousse les gens a venir jusqu'ici >> Parmi ces temoignages, un humanitaire raconte comment le 11 decembre a 15 h 30, il est temoin d'une operation de << nettoyage >>. Il demande a verifier que des objets lui appartenant ne sont pas dans la benne. Le gendarme << me repond que je ne dois pas m'inquieter et qu'ils ont verifie que rien qui soit floque avec nos logos n'est jete >>. L'humanitaire suit pourtant le camion et << a un feu rouge, la personne qui m'accompagne descend de notre voiture et prend clairement la photo du camion et de la bache marquee avec le nom du Secours catholique et celui des autres associations >>, raconte-t-il, reprenant les elements du temoignage envoye. Le 13 decembre deja, une autre association, assurant une mission d'accompagnement aupres de dix exiles, arrive pres d'eux alors qu'ils viennent de se faire depouiller de leurs maigres biens. Ce groupe de migrants affirme s'etre fait retirer duvets, baches et sacs a dos. << Parmi ces duvets et ces baches certaines appartenaient a des associations et comportaient leur logo >>, rappelle la personne dont le temoignage fait aussi partie de l'envoi au procureur. La encore certaines pieces emportees avaient fait l'objet d'un contrat de pret. Officiellement, ces confiscations ne sont pas reconnues par les autorites. l'Etat pretend par divers canaux qu'il s'agit d'operations de nettoyage et que les seuls objets enleves sont des materiaux abandonnes par les migrants. Lire aussi : A Croisilles, l'attente angoissee des migrants de Calais Le 5 decembre 2017, Le Monde avait ete temoin du reveil d'un groupe de migrants par la police, dans la ville de Calais. Matelas, couvertures et effets personnels avaient ete mis a la benne. Les migrants, eux, etant pour certains consignes sur place sous un pont de la ville pendant que leurs biens etaient charges dans un camion benne par des agents municipaux. << Par respect pour les migrants, bien evidemment, mais aussi pour nos donateurs, nous ne pouvons laisser passer ces confiscations sans deposer plainte >>, observe Vincent de Coninck, du Secours catholique. Deux des associations importantes sur le terrain a Calais refusent d'etre presentes mardi soir a la reunion a laquelle les convie le chef de l'Etat. Il s'agit d'Utopia 56 et de L'Auberge des Migrants. Toutes deux sont des piliers de la gestion locale des 500 a 600 exiles presents sur place. Abonnez-vous a partir de 1 EUR A la veille de la venue d'Emmanuel Macron a Calais, la tension monte dans le milieu associatif. Depot de plainte et refus d'assister a la reunion de demain montrent l'exasperation des humanitaires. Le Monde | 15.01.2018 a 15h43 | Par Maryline Baumard Pour pouvoir porter plainte, un collectif d'associations avait << tatoue >> 700 sacs de couchage et autant de baches aux logos de leurs associations. Ce materiel a ete distribue le 6 decembre a des exiles, avec signature d'un contrat de pret. << Nous avons fait signer 120 contrats de prets >>, raconte un des participants a l'operation. Cette formule permet de faire valoir que le materiel appartient toujours aux associations et de denoncer une pratique qu'ils estiment quotidienne. Baches et sacs de couchage sont des elements essentiels de la survie dans cette zone au vent glacial et humide. Mais depuis la distribution, les temoignages de confiscation de ces materiaux affluent. Ces objets finissent en general a la dechetterie et sont detruits. Ce qui exaspere les associations, qui disposent d'un large stock mais refusent de cautionner ce gachis. Lire aussi : Calais : << On occulte l'urgence et la necessite qui ont pousse les gens a venir jusqu'ici >> Parmi ces temoignages, un humanitaire raconte comment le 11 decembre a 15 h 30, il est temoin d'une operation de << nettoyage >>. Il demande a verifier que des objets lui appartenant ne sont pas dans la benne. Le gendarme << me repond que je ne dois pas m'inquieter et qu'ils ont verifie que rien qui soit floque avec nos logos n'est jete >>. L'humanitaire suit pourtant le camion et << a un feu rouge, la personne qui m'accompagne descend de notre voiture et prend clairement la photo du camion et de la bache marquee avec le nom du Secours catholique et celui des autres associations >>, raconte-t-il, reprenant les elements du temoignage envoye. Le 13 decembre deja, une autre association, assurant une mission d'accompagnement aupres de dix exiles, arrive pres d'eux alors qu'ils viennent de se faire depouiller de leurs maigres biens. Ce groupe de migrants affirme s'etre fait retirer duvets, baches et sacs a dos. << Parmi ces duvets et ces baches certaines appartenaient a des associations et comportaient leur logo >>, rappelle la personne dont le temoignage fait aussi partie de l'envoi au procureur. La encore certaines pieces emportees avaient fait l'objet d'un contrat de pret. Officiellement, ces confiscations ne sont pas reconnues par les autorites. l'Etat pretend par divers canaux qu'il s'agit d'operations de nettoyage et que les seuls objets enleves sont des materiaux abandonnes par les migrants. Lire aussi : A Croisilles, l'attente angoissee des migrants de Calais Le 5 decembre 2017, Le Monde avait ete temoin du reveil d'un groupe de migrants par la police, dans la ville de Calais. Matelas, couvertures et effets personnels avaient ete mis a la benne. Les migrants, eux, etant pour certains consignes sur place sous un pont de la ville pendant que leurs biens etaient charges dans un camion benne par des agents municipaux. << Par respect pour les migrants, bien evidemment, mais aussi pour nos donateurs, nous ne pouvons laisser passer ces confiscations sans deposer plainte >>, observe Vincent de Coninck, du Secours catholique. Deux des associations importantes sur le terrain a Calais refusent d'etre presentes mardi soir a la reunion a laquelle les convie le chef de l'Etat. Il s'agit d'Utopia 56 et de L'Auberge des Migrants. Toutes deux sont des piliers de la gestion locale des 500 a 600 exiles presents sur place. A la veille de la venue d'Emmanuel Macron a Calais, la tension monte dans le milieu associatif. Depot de plainte et refus d'assister a la reunion de demain montrent l'exasperation des humanitaires. Le Monde | 15.01.2018 a 15h43 | Par Maryline Baumard Pour pouvoir porter plainte, un collectif d'associations avait << tatoue >> 700 sacs de couchage et autant de baches aux logos de leurs associations. Ce materiel a ete distribue le 6 decembre a des exiles, avec signature d'un contrat de pret. << Nous avons fait signer 120 contrats de prets >>, raconte un des participants a l'operation. Cette formule permet de faire valoir que le materiel appartient toujours aux associations et de denoncer une pratique qu'ils estiment quotidienne. Baches et sacs de couchage sont des elements essentiels de la survie dans cette zone au vent glacial et humide. Mais depuis la distribution, les temoignages de confiscation de ces materiaux affluent. Ces objets finissent en general a la dechetterie et sont detruits. Ce qui exaspere les associations, qui disposent d'un large stock mais refusent de cautionner ce gachis. Lire aussi : Calais : << On occulte l'urgence et la necessite qui ont pousse les gens a venir jusqu'ici >> Parmi ces temoignages, un humanitaire raconte comment le 11 decembre a 15 h 30, il est temoin d'une operation de << nettoyage >>. Il demande a verifier que des objets lui appartenant ne sont pas dans la benne. Le gendarme << me repond que je ne dois pas m'inquieter et qu'ils ont verifie que rien qui soit floque avec nos logos n'est jete >>. L'humanitaire suit pourtant le camion et << a un feu rouge, la personne qui m'accompagne descend de notre voiture et prend clairement la photo du camion et de la bache marquee avec le nom du Secours catholique et celui des autres associations >>, raconte-t-il, reprenant les elements du temoignage envoye. Le 13 decembre deja, une autre association, assurant une mission d'accompagnement aupres de dix exiles, arrive pres d'eux alors qu'ils viennent de se faire depouiller de leurs maigres biens. Ce groupe de migrants affirme s'etre fait retirer duvets, baches et sacs a dos. << Parmi ces duvets et ces baches certaines appartenaient a des associations et comportaient leur logo >>, rappelle la personne dont le temoignage fait aussi partie de l'envoi au procureur. La encore certaines pieces emportees avaient fait l'objet d'un contrat de pret. Officiellement, ces confiscations ne sont pas reconnues par les autorites. l'Etat pretend par divers canaux qu'il s'agit d'operations de nettoyage et que les seuls objets enleves sont des materiaux abandonnes par les migrants. Lire aussi : A Croisilles, l'attente angoissee des migrants de Calais Le 5 decembre 2017, Le Monde avait ete temoin du reveil d'un groupe de migrants par la police, dans la ville de Calais. Matelas, couvertures et effets personnels avaient ete mis a la benne. Les migrants, eux, etant pour certains consignes sur place sous un pont de la ville pendant que leurs biens etaient charges dans un camion benne par des agents municipaux. << Par respect pour les migrants, bien evidemment, mais aussi pour nos donateurs, nous ne pouvons laisser passer ces confiscations sans deposer plainte >>, observe Vincent de Coninck, du Secours catholique. Deux des associations importantes sur le terrain a Calais refusent d'etre presentes mardi soir a la reunion a laquelle les convie le chef de l'Etat. Il s'agit d'Utopia 56 et de L'Auberge des Migrants. Toutes deux sont des piliers de la gestion locale des 500 a 600 exiles presents sur place. Pour pouvoir porter plainte, un collectif d'associations avait << tatoue >> 700 sacs de couchage et autant de baches aux logos de leurs associations. Ce materiel a ete distribue le 6 decembre a des exiles, avec signature d'un contrat de pret. << Nous avons fait signer 120 contrats de prets >>, raconte un des participants a l'operation. Cette formule permet de faire valoir que le materiel appartient toujours aux associations et de denoncer une pratique qu'ils estiment quotidienne. Baches et sacs de couchage sont des elements essentiels de la survie dans cette zone au vent glacial et humide. Mais depuis la distribution, les temoignages de confiscation de ces materiaux affluent. Ces objets finissent en general a la dechetterie et sont detruits. Ce qui exaspere les associations, qui disposent d'un large stock mais refusent de cautionner ce gachis. Lire aussi : Calais : << On occulte l'urgence et la necessite qui ont pousse les gens a venir jusqu'ici >> Parmi ces temoignages, un humanitaire raconte comment le 11 decembre a 15 h 30, il est temoin d'une operation de << nettoyage >>. Il demande a verifier que des objets lui appartenant ne sont pas dans la benne. Le gendarme << me repond que je ne dois pas m'inquieter et qu'ils ont verifie que rien qui soit floque avec nos logos n'est jete >>. L'humanitaire suit pourtant le camion et << a un feu rouge, la personne qui m'accompagne descend de notre voiture et prend clairement la photo du camion et de la bache marquee avec le nom du Secours catholique et celui des autres associations >>, raconte-t-il, reprenant les elements du temoignage envoye. Le 13 decembre deja, une autre association, assurant une mission d'accompagnement aupres de dix exiles, arrive pres d'eux alors qu'ils viennent de se faire depouiller de leurs maigres biens. Ce groupe de migrants affirme s'etre fait retirer duvets, baches et sacs a dos. << Parmi ces duvets et ces baches certaines appartenaient a des associations et comportaient leur logo >>, rappelle la personne dont le temoignage fait aussi partie de l'envoi au procureur. La encore certaines pieces emportees avaient fait l'objet d'un contrat de pret. Officiellement, ces confiscations ne sont pas reconnues par les autorites. l'Etat pretend par divers canaux qu'il s'agit d'operations de nettoyage et que les seuls objets enleves sont des materiaux abandonnes par les migrants. Lire aussi : A Croisilles, l'attente angoissee des migrants de Calais Le 5 decembre 2017, Le Monde avait ete temoin du reveil d'un groupe de migrants par la police, dans la ville de Calais. Matelas, couvertures et effets personnels avaient ete mis a la benne. Les migrants, eux, etant pour certains consignes sur place sous un pont de la ville pendant que leurs biens etaient charges dans un camion benne par des agents municipaux. << Par respect pour les migrants, bien evidemment, mais aussi pour nos donateurs, nous ne pouvons laisser passer ces confiscations sans deposer plainte >>, observe Vincent de Coninck, du Secours catholique. Deux des associations importantes sur le terrain a Calais refusent d'etre presentes mardi soir a la reunion a laquelle les convie le chef de l'Etat. Il s'agit d'Utopia 56 et de L'Auberge des Migrants. Toutes deux sont des piliers de la gestion locale des 500 a 600 exiles presents sur place. Abonnez-vous a partir de 1 EUR Abonnez-vous a partir de 1 EUR Le monde abonnements Profitez du journal ou et quand vous voulez. Abonnements papier, offres 100 % numeriques sur Web et tablette. S'abonner au Monde a partir de 1 EUR Le monde abonnements Profitez du journal ou et quand vous voulez. Abonnements papier, offres 100 % numeriques sur Web et tablette. S'abonner au Monde a partir de 1 EUR Le monde abonnements Profitez du journal ou et quand vous voulez. Abonnements papier, offres 100 % numeriques sur Web et tablette. S'abonner au Monde a partir de 1 EUR ", "theme": "Societe"}
{ "first_traded_price": 9740.0, "highest_price": 9740.0, "isin": "IRO1TKIN0001", "last_traded_price": 9490.0, "lowest_price": 9.4e3, "trade_volume": 216084.0, "unix_time": 1508803200 }
{"directed": true, "graph": [], "nodes": [{"tag": "", "word": "<s>", "id": 0, "shortest": 2, "sentences": "{}"}, {"tag": "", "word": "</s>", "id": 1, "shortest": -1, "sentences": "{}"}, {"tag": "NNP", "word": "Saudi", "id": 2, "shortest": 3, "sentences": "{218: 1, 124: 1, 154: 1, 204: 1, 101: 1}"}, {"tag": "NNP", "word": "Arabia", "id": 3, "shortest": 4, "sentences": "{218: 2, 124: 2, 154: 2, 204: 2, 101: 2}"}, {"tag": "VBZ", "word": "has", "id": 4, "shortest": 5, "sentences": "{218: 3, 124: 3, 154: 3, 204: 3, 101: 3}"}, {"tag": "VBN", "word": "accused", "id": 5, "shortest": 13, "sentences": "{218: 4, 124: 4, 154: 4, 204: 4, 101: 4}"}, {"tag": "NNP", "word": "Iran", "id": 6, "shortest": -1, "sentences": "{218: 5, 154: 5, 204: 5, 101: 5}"}, {"tag": "IN", "word": "of", "id": 7, "shortest": -1, "sentences": "{218: 6, 124: 10, 154: 6, 204: 6, 101: 6}"}, {"tag": "VBG", "word": "arming", "id": 8, "shortest": -1, "sentences": "{218: 7, 124: 11, 154: 7, 204: 7, 101: 7}"}, {"tag": "DT", "word": "the", "id": 9, "shortest": -1, "sentences": "{218: 8, 124: 6, 154: 8, 204: 8, 101: 8}"}, {"tag": "NNP", "word": "Houthis", "id": 10, "shortest": -1, "sentences": "{204: 9, 101: 9}"}, {"tag": "DT", "word": "a", "id": 11, "shortest": -1, "sentences": "{218: 10, 154: 10, 204: 10, 101: 10}"}, {"tag": "NN", "word": "claim", "id": 12, "shortest": -1, "sentences": "{218: 11, 154: 11, 204: 11, 101: 11}"}, {"tag": "NNP", "word": "Tehran", "id": 13, "shortest": 14, "sentences": "{218: 12, 124: 5, 154: 12, 204: 12, 101: 12}"}, {"tag": "VBZ", "word": "has", "id": 14, "shortest": 15, "sentences": "{218: 13, 124: 17, 154: 13, 204: 13, 101: 13}"}, {"tag": "VBN", "word": "rejected", "id": 15, "shortest": 1, "sentences": "{218: 14, 154: 14, 204: 14, 101: 14}"}, {"tag": "NNP", "word": "Huthis", "id": 16, "shortest": -1, "sentences": "{154: 9, 218: 9}"}, {"tag": "JJ", "word": "main", "id": 17, "shortest": -1, "sentences": "{124: 7}"}, {"tag": "NNP", "word": "Shiite", "id": 18, "shortest": -1, "sentences": "{124: 8}"}, {"tag": "NN", "word": "power", "id": 19, "shortest": -1, "sentences": "{124: 9}"}, {"tag": "DT", "word": "the", "id": 20, "shortest": -1, "sentences": "{124: 12}"}, {"tag": "NNS", "word": "rebels", "id": 21, "shortest": -1, "sentences": "{124: 13}"}, {"tag": "CC", "word": "and", "id": 22, "shortest": -1, "sentences": "{124: 14}"}, {"tag": "DT", "word": "the", "id": 23, "shortest": -1, "sentences": "{124: 15}"}, {"tag": "NN", "word": "conflict", "id": 24, "shortest": -1, "sentences": "{124: 16}"}, {"tag": "VBN", "word": "heightened", "id": 25, "shortest": -1, "sentences": "{124: 18}"}, {"tag": "NNS", "word": "tensions", "id": 26, "shortest": -1, "sentences": "{124: 19}"}, {"tag": "IN", "word": "in", "id": 27, "shortest": -1, "sentences": "{124: 20}"}, {"tag": "DT", "word": "the", "id": 28, "shortest": -1, "sentences": "{124: 21}"}, {"tag": "NNP", "word": "Middle", "id": 29, "shortest": -1, "sentences": "{124: 22}"}, {"tag": "NNP", "word": "East", "id": 30, "shortest": -1, "sentences": "{124: 23}"}], "links": [{"source": 0, "target": 2, "weight": 0.2}, {"source": 2, "target": 3, "weight": 0.2}, {"source": 3, "target": 4, "weight": 0.2}, {"source": 4, "target": 5, "weight": 0.2}, {"source": 5, "target": 5, "weight": 0.0}, {"source": 5, "target": 6, "weight": 0.25}, {"source": 5, "target": 13, "weight": 1.0}, {"source": 6, "target": 7, "weight": 0.25}, {"source": 7, "target": 8, "weight": 0.2}, {"source": 8, "target": 8, "weight": 0.0}, {"source": 8, "target": 9, "weight": 0.25}, {"source": 8, "target": 20, "weight": 1.0}, {"source": 9, "target": 16, "weight": 0.5}, {"source": 9, "target": 9, "weight": 0.0}, {"source": 9, "target": 10, "weight": 0.5}, {"source": 9, "target": 17, "weight": 1.0}, {"source": 10, "target": 11, "weight": 0.5}, {"source": 11, "target": 12, "weight": 0.25}, {"source": 12, "target": 13, "weight": 0.25}, {"source": 13, "target": 9, "weight": 1.0}, {"source": 13, "target": 13, "weight": 0.0}, {"source": 13, "target": 14, "weight": 0.25}, {"source": 14, "target": 25, "weight": 1.0}, {"source": 14, "target": 14, "weight": 0.0}, {"source": 14, "target": 15, "weight": 0.25}, {"source": 15, "target": 1, "weight": 0.25}, {"source": 16, "target": 11, "weight": 0.5}, {"source": 17, "target": 18, "weight": 1.0}, {"source": 18, "target": 19, "weight": 1.0}, {"source": 19, "target": 7, "weight": 1.0}, {"source": 20, "target": 21, "weight": 1.0}, {"source": 21, "target": 22, "weight": 1.0}, {"source": 22, "target": 23, "weight": 1.0}, {"source": 23, "target": 24, "weight": 1.0}, {"source": 24, "target": 14, "weight": 1.0}, {"source": 25, "target": 26, "weight": 1.0}, {"source": 26, "target": 27, "weight": 1.0}, {"source": 27, "target": 28, "weight": 1.0}, {"source": 28, "target": 29, "weight": 1.0}, {"source": 29, "target": 30, "weight": 1.0}, {"source": 30, "target": 1, "weight": 1.0}], "multigraph": false}
{ "source": "https://vkuso.ru/recipe/shokoladno-tvorozhnoe-pirozhnoe-s-proteinom/", "category": "Десерты", "category_slug": "deserty", "title": "Шоколадно-творожное пирожное с протеином", "description": "Простое пирожное, напоминающее всем известную в детские годы «картошку». Кулинарные технологии не стоят на месте: вместо молотого печенья – шоколадный протеин.", "note": "Подать блюдо можно сразу или подержать два часа в холодильнике.", "cuisine": "Домашняя кухня", "cuisine_slug": "domashnyaya-kuhnya", "poster": "https://st.vkuso.ru/data/cache/thumb/43/784164db0b29f43_660x440.jpg", "difficulty": "Низкая", "cooktime": null, "preparetime": null, "video": null, "vegan": false, "ingredients": [ { "name": "Ингредиенты на 1 порцию", "list": [ { "name": "творог обезжиренный", "slug": "tvorog-obezjirenniy", "notes": " (пастообразный)", "value": "50", "type": "г", "amount": null }, { "name": "протеин шоколадный", "slug": "protein-shokoladniy", "notes": null, "value": "1", "type": "порция", "amount": null }, { "name": "хлебцы", "slug": "hlebcy", "notes": " (хрустящие молотые)", "value": "10", "type": "г", "amount": null } ] } ], "instruction": [ { "text": "Перемешать обезжиренный творог, шоколадный протеин, половину нормы молотых хрустящих хлебцев. Должна получиться густая паста.", "image": null }, { "text": "Её нужно брать чайной ложкой, формовать округлые пирожные и обваливать в оставшихся сухарях.", "image": null } ], "tags": [ { "name": "Выпечка из творога", "slug": "vypechka-iz-tvoroga" }, { "name": "Десерт на скорую руку", "slug": "desert-na-skoruyu-ruku" }, { "name": "Диетические", "slug": "dieticheskie" }, { "name": "Диетические десерты", "slug": "dieticheskie-deserty" }, { "name": "На десерт", "slug": "na-desert" }, { "name": "Пирожное Картошка", "slug": "pirojnoe-kartoshka" }, { "name": "Пирожные", "slug": "pirojnye" }, { "name": "Пирожные без выпечки", "slug": "pirojnye-bez-vypechki" }, { "name": "Творожный десерт", "slug": "tvorojniy-desert" }, { "name": "фитнес", "slug": "fitnes" }, { "name": "Шоколадное пирожное", "slug": "shokoladnoe-pirojnoe" }, { "name": "Шоколадный десерт", "slug": "shokoladniy-desert" } ] }
{"id":"UPQ-01-09-017","source":{"id":"UPMP-01-0168","english":"U Phone Myint Aung","myanmar":"ဦးဖုန်းမြင့်အောင်"},"house":"First Amyotha Hluttaw","session":"Ninth Regular Session","date":"21-Jan-14","description":{"english":"Selling Super World (1) and (2) to Public","myanmar":""},"issue":"Administration","respondent":{"name":"U Than Tun","position":"Deputy Co-operation Minister"}}
{ "name": "dealter-temp", "version": "0.0.0", "private": true, "scripts": { "start": "nodemon ./bin/www" }, "dependencies": { "body-parser": "~1.12.0", "cookie-parser": "~1.3.4", "debug": "~2.1.1", "express": "~4.12.2", "hjs": "~0.0.6", "less-middleware": "1.0.x", "morgan": "~1.5.1", "serve-favicon": "~2.2.0", "mongoose": "^4.0.2", "client-sessions" : "*", "bcryptjs" : "2.1.0", "passport" : "0.2.2", "passport-facebook" : "2.0.0", "multer" : "0.1.8", "passport-google-auth" : "1.0.0", "passport-google-oauth" : "0.2.0", "aws-sdk" : "2.1.36", "debug" : "2.1.3", "path" : "0.11.14", "request" : "2.60.0", "nodemailer" : "1.4.0", "big-integer" : "1.5.6" } }
{ "first_traded_price": 3450.0, "highest_price": 3479.0, "isin": "IRO1TSHE0001", "last_traded_price": 3420.0, "lowest_price": 3370.0, "trade_volume": 716462.0, "unix_time": 1550534400 }
{"first_name":"Justin","last_name":"Davies","permalink":"justin-davies","crunchbase_url":"http://www.crunchbase.com/person/justin-davies","homepage_url":"http://www.blue-smarty.com","birthplace":"London","twitter_username":"","blog_url":"","blog_feed_url":"","affiliation_name":"Unaffiliated","born_year":1971,"born_month":10,"born_day":22,"tag_list":"website-design, justin-davies, web-design","alias_list":null,"created_at":"Wed Aug 22 11:37:03 UTC 2012","updated_at":"Thu Aug 23 18:14:28 UTC 2012","overview":"<p>Justin Davies founded the website design agency, Blue Smarty, in 2003. Blue Smarty is a website boutique, specialising in the creation and development of high quality websites. Based in Chipping Norton, Oxfordshire, Blue Smarty offers bespoke website design services across the UK.</p>","image":null,"degrees":[],"relationships":[],"investments":[],"milestones":[],"video_embeds":[],"external_links":[{"external_url":"http://www.blue-smarty.com","title":"Website Design"}],"web_presences":[]}
{ "order": "87681" ,"word": "demming" ,"count": "12" }
[ "https://2.bp.blogspot.com/-JeguKCkLwCg/W44OcBGDtBI/AAAAAAAFM1s/4m3JLfZlIXktNBCcjq8eoIo8Yk_EqzpcACHMYCw/s0/000.jpg", "https://2.bp.blogspot.com/-Xyr4Z6nPuOs/W44Ocpvy4kI/AAAAAAAFM10/8MOXtGWCHJA-6lUvkgE-YMWtXj45XqFbgCHMYCw/s0/001.jpg", "https://2.bp.blogspot.com/-KFyVkw7Ui08/W44OdaNdblI/AAAAAAAFM18/RHzbSPtXAfAdXeGJHJIBkAm33ZuMqdkgwCHMYCw/s0/002.jpg", "https://2.bp.blogspot.com/-49KM210REkY/W44OeBebx1I/AAAAAAAFM2E/2T7gWKobBMwxr-S1Qktauc5eSYEQddQggCHMYCw/s0/003.jpg", "https://2.bp.blogspot.com/-ggvl34Kw2-g/W44Oes3hnkI/AAAAAAAFM2M/ft1AWBq6zksHjaTdzGksGulz2SU50E4XACHMYCw/s0/004.jpg", "https://2.bp.blogspot.com/-TLPYNjhThms/W44OezZMEmI/AAAAAAAFM2U/-ikXHStvRJwkNm5R1i7y7WCg40gxCYDWgCHMYCw/s0/005.jpg", "https://2.bp.blogspot.com/-cIcKsj9H2e0/W44Ofc3EzoI/AAAAAAAFM2c/GauWhSzAZ5Q0l7tbtEJ8uWZafePGReUqQCHMYCw/s0/006.jpg", "https://2.bp.blogspot.com/-20NqTidIgUU/W44NIoKqOVI/AAAAAAAFM2k/dY6MPjmju-ggFNK7ItgaAWAw4agL8wu-gCHMYCw/s0/007.jpg", "https://2.bp.blogspot.com/-xJJ9dEtYil4/W44OghmS34I/AAAAAAAFM2s/8dmjOJq1-ekJ2vM0ZHaBluJ6Y_lxFMcxgCHMYCw/s0/008.jpg", "https://2.bp.blogspot.com/-rmU77xIHkpo/W44OhMfdS8I/AAAAAAAFM20/CCiCbAMfra8i_Bo2HkIbrH7bi1YxCSOIQCHMYCw/s0/009.jpg", "https://2.bp.blogspot.com/-wvolykbZDRw/W44OhqS5OYI/AAAAAAAFM3A/h-9-v1uiHiYIqFgp-VyfRu68JqMzUmE0QCHMYCw/s0/010.jpg", "https://2.bp.blogspot.com/-w6C6h_Bh2ms/W44OiT3F06I/AAAAAAAFM3M/nz-aUzSOXQUQWdJBSq89PDaZWRNCYnhfQCHMYCw/s0/011.jpg", "https://2.bp.blogspot.com/-h4wwx5XKBQE/W44OjB-qY-I/AAAAAAAFM3Y/bx0rFk1-OkIiAkjo5Tatq4L_fkvNVAttgCHMYCw/s0/012.jpg", "https://2.bp.blogspot.com/-cwfaTHgA0zM/W44Oklg_CII/AAAAAAAFM3s/BY8HA3NWQvckimOfQRcfV0XOdRIqp-8SQCHMYCw/s0/013.jpg", "https://2.bp.blogspot.com/-0hIObF3JBfk/W44OlTuSlzI/AAAAAAAFM34/aXPBv3Uox4grI_WydOwlTe4Cbl1BL0mCQCHMYCw/s0/014.jpg", "https://2.bp.blogspot.com/--uTBbu4WnnI/W44OmfSSdFI/AAAAAAAFM4A/WiatfCkHiDYGsKuL-SS3EoiEUEBkLSbSQCHMYCw/s0/015.jpg", "https://2.bp.blogspot.com/-ZjH4WNaKyKc/W44OnkDOreI/AAAAAAAFM4M/7bRZ0K4aVMAifrNVB0iWnvsENQVfdRQXQCHMYCw/s0/016.jpg", "https://2.bp.blogspot.com/--nFXPwrQsPs/W44Ood507TI/AAAAAAAFM4U/LzizoXA8RMw8Oxq2ELCi3NizeGvu3-NCQCHMYCw/s0/017.jpg", "https://2.bp.blogspot.com/-hF10hH03rvY/W44OoxdIuHI/AAAAAAAFM4g/8UHEAlZvdF0dHVgwTTq8jBFAVr4lSp0sACHMYCw/s0/018.jpg", "https://2.bp.blogspot.com/-kLrWlGKDUVs/W44Op2lD9WI/AAAAAAAFM4s/pCAvThYS7QAitr4vdgAtBO1hukom6juVACHMYCw/s0/019.jpg", "https://2.bp.blogspot.com/-hFrV7KoQBeE/W44Oq8uG1CI/AAAAAAAFM44/y9HMXkAp-2M9FXaz-S3d-d5FTtf6oc7RwCHMYCw/s0/020.jpg", "https://2.bp.blogspot.com/-DzeYomJEkK8/W44Or6VistI/AAAAAAAFM5A/1dhcfWUL4DENqTZDKI6OtI5tNb0c-3-EACHMYCw/s0/021.jpg", "https://2.bp.blogspot.com/-SPvpNcM2EIU/W44OsT5k_pI/AAAAAAAFM5M/Lo3iR7rfqBooy-VQ3REYHqaCNUYEL8I6ACHMYCw/s0/022.jpg", "https://2.bp.blogspot.com/-SPY9m9eog20/W44Os14Kk6I/AAAAAAAFM5Y/FXY66BCpybIGNJnC9iwePpEXRJpw9NSmQCHMYCw/s0/023.jpg", "https://2.bp.blogspot.com/-SQm47_XJHL4/W44OuVMlXyI/AAAAAAAFM5k/jNCKw16GkiwrO5U5Ed0J4dEA3d2kxlkJgCHMYCw/s0/024.jpg", "https://2.bp.blogspot.com/-1I8MKoAJBnE/W44Ou831yII/AAAAAAAFM5w/gSGE4x0aG9YVaq7UYbqpCwZEtc5Kc0q_ACHMYCw/s0/025.jpg", "https://2.bp.blogspot.com/-onNaCQKOcZg/W44OvsMgUGI/AAAAAAAFM54/NKfEmaoJw8kbAqRWBl82J0inoJNcXYCxgCHMYCw/s0/026.jpg", "https://2.bp.blogspot.com/-uj8c6iJR1eg/W44OwBbfEOI/AAAAAAAFM6A/swcZkxwP_Zw3Dskm5SeGdwIm2fjDiDsrgCHMYCw/s0/027.jpg", "https://2.bp.blogspot.com/-DGwoNMd8igU/W44OwvUzg7I/AAAAAAAFM6M/PZNTd9JSPY4q0_Bdm4UmJ266p6d3kwSUQCHMYCw/s0/028.jpg", "https://2.bp.blogspot.com/-Ax6vEy8jbx4/W44OxmA2MpI/AAAAAAAFM6c/EyQDYxEfxysmUpS3_ZZ-92ZmjGYaVV84gCHMYCw/s0/029.jpg", "https://2.bp.blogspot.com/-U90SyN493bQ/W44OycVIQLI/AAAAAAAFM6o/P4bB_WLwFgEo72yJrPXdaIcdRmH6SJcXgCHMYCw/s0/030.jpg", "https://2.bp.blogspot.com/-CrADt1ccNvw/W44OzCa4N8I/AAAAAAAFM6w/aJqbKYSSoOExjbhF1qNLZIptOWHd26n6gCHMYCw/s0/031.jpg", "https://2.bp.blogspot.com/-ssx2hlnai4M/W44Ozi1vBUI/AAAAAAAFM68/MfSH2_LjHukvK-Ct7JFSiLkC4riOhBkKwCHMYCw/s0/032.jpg", "https://2.bp.blogspot.com/-3LPbdKFCbgY/W44O0cD9XFI/AAAAAAAFM7E/Lk9lG9C2_1UjrcRDTwun1NeVaXevqLmZwCHMYCw/s0/033.jpg", "https://2.bp.blogspot.com/-Qbpd7588Kn4/W44O03Uy5SI/AAAAAAAFM7Q/JwTp5bY0xWgljcGaen3_wvtZPbrsHRpMgCHMYCw/s0/034.jpg", "https://2.bp.blogspot.com/-t8j0hVENb4I/W44O1TpG3SI/AAAAAAAFM7c/PwMcIOcGniQsHPqRvptJBJ2Fl1X13TR3ACHMYCw/s0/035.jpg", "https://2.bp.blogspot.com/-QJ7noEMOC-A/W44O2-etnuI/AAAAAAAFM7s/-Agu-LSrab065Iv_hiRDUqs5Avl3PlnxQCHMYCw/s0/036.jpg", "https://2.bp.blogspot.com/-J0QJjyJiHCk/W44O3YrztTI/AAAAAAAFM74/B0EDptXCrJM9Vvg19uAyVphXOn98UgaMQCHMYCw/s0/037.jpg", "https://2.bp.blogspot.com/-R698s8zYAZk/W44O4ajdO4I/AAAAAAAFM8E/Ex76wvSpuKI3OvhPRfDp66pMikPg4eczgCHMYCw/s0/038.jpg", "https://2.bp.blogspot.com/-GD3KjCucKpk/W44O5Z9aSII/AAAAAAAFM8Q/Eo25zfpbNfoIe937W7x7-aMkA3akC0m3ACHMYCw/s0/039.jpg", "https://2.bp.blogspot.com/-KhQTkqlCex4/W44O58WDEII/AAAAAAAFM8c/4BxQTKyTpToHZAUDR90Sdh_b24AI_GFMACHMYCw/s0/040.jpg", "https://2.bp.blogspot.com/-OZ1U-qlhyp8/W44O6l_hpxI/AAAAAAAFM8o/asl_ubAE6VQj36iem-3W7LAZulrxA6WnQCHMYCw/s0/041.jpg", "https://2.bp.blogspot.com/-w9ZfLBMWpTg/W44O7ZcCdTI/AAAAAAAFM80/gt2GiGdll1wnMzrHyQp1Z5RH5g-QhPO8ACHMYCw/s0/042.jpg", "https://2.bp.blogspot.com/-RH41LaRE890/W44O7-4FjaI/AAAAAAAFM9A/BYTNpHmbsf0iEDeXHSJa2dwNsLrCh-V3wCHMYCw/s0/043.jpg", "https://2.bp.blogspot.com/-KP_0A1h9fm0/W44O88m0gjI/AAAAAAAFM9M/8o-op0OPDYAlBBFVCLaMb3Otc-y1rIeFgCHMYCw/s0/044.jpg", "https://2.bp.blogspot.com/-wLz9HqvyTZ8/W44O9XMLxFI/AAAAAAAFM9Y/VSp7fmRCGowQ__xD7eh7KgEMc2g8-4WdACHMYCw/s0/045.jpg", "https://2.bp.blogspot.com/-05MEvrTa1EQ/W44O-EIQCOI/AAAAAAAFM9g/hH5ERKSH0Jk7dpvLLrTV1nfMenBj8OVGwCHMYCw/s0/046.jpg", "https://2.bp.blogspot.com/--NxtJTkwBfg/W44O-7vVfVI/AAAAAAAFM9o/gMMJRZesnrUQWmTkfibtWKuGTzUjLiyIQCHMYCw/s0/047.jpg", "https://2.bp.blogspot.com/-lJxVLMH3DcU/W44O_h2xw7I/AAAAAAAFM9w/Sz3KWfKY5SAkap6WV-5je15sdnqS_xDZACHMYCw/s0/048.jpg", "https://2.bp.blogspot.com/-MrFZUVdEedk/W44PAPWLeoI/AAAAAAAFM94/yT5XxBqmAeIzXa5EuXYtgpqSYCtCvCP1ACHMYCw/s0/049.jpg", "https://2.bp.blogspot.com/-K4p2-s08eGY/W44PAiY6G9I/AAAAAAAFM-A/_dK2woH8BOoQGrvm7CSMFsi4N3C_bgoTACHMYCw/s0/050.jpg" ]
{"artist": "Steve Bug", "timestamp": "2011-08-02 13:44:20.284622", "similars": [], "tags": [["electro", "100"], ["german", "50"], ["electronic", "50"], ["metro electronica", "50"], ["Steve bug-Rhodes flash", "50"]], "track_id": "TRQHXOF128F14A15C8", "title": "Rhodes Flash"}
{"ast":null,"code":"import { jsxDEV as _jsxDEV } from \"@emotion/react/jsx-dev-runtime\";\nvar _jsxFileName = \"/Volumes/Backup HD/frontend/poc-next-web/poc-nextnext/src/lib/auth/index.js\";\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nimport React, { useState, useEffect, useContext } from 'react';\nimport { useRouter } from 'next/router';\nimport { parseCookies, setCookie, destroyCookie } from 'nookies';\nimport jwtDecode from 'jwt-decode';\nimport { getAsPathByRouteName } from \"../router/utils\";\nimport * as AuthService from \"../../modules/_auth/services\";\nimport { AUTH_COOKIE_NAME, AUTH_COOKIE_MAX_AGE } from \"../../modules/_auth/config\";\nconst defaultUserData = {\n isAuthenticated: null,\n profile: null,\n token: null\n};\nconst userContext = /*#__PURE__*/React.createContext({});\nexport function useMember() {\n return useContext(userContext);\n}\nexport function AuthProvider({\n children\n}) {\n const router = useRouter();\n const {\n 0: userData,\n 1: setUserData\n } = useState(defaultUserData); // Initialize user data\n\n useEffect(() => {\n const cookies = parseCookies();\n let tokenInCookie = cookies[AUTH_COOKIE_NAME]; // Auto login if the user has token in cookie\n\n if (tokenInCookie !== undefined) {\n signInWithToken(tokenInCookie);\n } else {\n setUserData(_objectSpread(_objectSpread({}, defaultUserData), {}, {\n isAuthenticated: false\n }));\n }\n }, []); // Save token to cookie after sign in\n\n useEffect(() => {\n const {\n isAuthenticated,\n token\n } = userData;\n const cookies = parseCookies();\n let tokenInCookie = cookies[AUTH_COOKIE_NAME];\n\n if (isAuthenticated === true && token !== null && !tokenInCookie) {\n const payload = getDataFromToken(token);\n const expires = (payload === null || payload === void 0 ? void 0 : payload.exp) || Math.floor(Date.now() / 1000) + AUTH_COOKIE_MAX_AGE;\n setCookie(null, AUTH_COOKIE_NAME, token, {\n path: '/',\n expires: new Date(expires * 1000)\n });\n }\n }, [userData.isAuthenticated]);\n\n const signInWithToken = token => {\n setUserData({\n isAuthenticated: token === null ? null : !!token,\n profile: getDataFromToken(token),\n token\n });\n };\n\n const signOut = () => {\n AuthService.signOut().then(response => {\n if (response.status === 200) {\n destroyCookie(null, AUTH_COOKIE_NAME, {\n path: '/'\n });\n setUserData(_objectSpread(_objectSpread({}, defaultUserData), {}, {\n isAuthenticated: false\n }));\n router.push(getAsPathByRouteName('auth-login'));\n }\n });\n };\n\n return _jsxDEV(userContext.Provider, {\n value: {\n userData,\n signInWithToken,\n signOut\n },\n children: children\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 80,\n columnNumber: 5\n }, this);\n}\n\nfunction getDataFromToken(token) {\n if (token === null || token === false) return '';\n return jwtDecode(token);\n}","map":{"version":3,"sources":["/Volumes/Backup HD/frontend/poc-next-web/poc-nextnext/src/lib/auth/index.js"],"names":["React","useState","useEffect","useContext","useRouter","parseCookies","setCookie","destroyCookie","jwtDecode","getAsPathByRouteName","AuthService","AUTH_COOKIE_NAME","AUTH_COOKIE_MAX_AGE","defaultUserData","isAuthenticated","profile","token","userContext","createContext","useMember","AuthProvider","children","router","userData","setUserData","cookies","tokenInCookie","undefined","signInWithToken","payload","getDataFromToken","expires","exp","Math","floor","Date","now","path","signOut","then","response","status","push"],"mappings":";;;;;;;;;AAAA,OAAOA,KAAP,IAAgBC,QAAhB,EAA0BC,SAA1B,EAAqCC,UAArC,QAAuD,OAAvD;AACA,SAASC,SAAT,QAA0B,aAA1B;AACA,SAASC,YAAT,EAAuBC,SAAvB,EAAkCC,aAAlC,QAAuD,SAAvD;AACA,OAAOC,SAAP,MAAsB,YAAtB;AAEA,SAASC,oBAAT;AACA,OAAO,KAAKC,WAAZ;AACA,SAASC,gBAAT,EAA2BC,mBAA3B;AAEA,MAAMC,eAAe,GAAG;AACtBC,EAAAA,eAAe,EAAE,IADK;AAEtBC,EAAAA,OAAO,EAAE,IAFa;AAGtBC,EAAAA,KAAK,EAAE;AAHe,CAAxB;AAMA,MAAMC,WAAW,gBAAGjB,KAAK,CAACkB,aAAN,CAAoB,EAApB,CAApB;AAEA,OAAO,SAASC,SAAT,GAAqB;AAC1B,SAAOhB,UAAU,CAACc,WAAD,CAAjB;AACD;AAED,OAAO,SAASG,YAAT,CAAsB;AAAEC,EAAAA;AAAF,CAAtB,EAAoC;AACzC,QAAMC,MAAM,GAAGlB,SAAS,EAAxB;AACA,QAAM;AAAA,OAACmB,QAAD;AAAA,OAAWC;AAAX,MAA0BvB,QAAQ,CAACY,eAAD,CAAxC,CAFyC,CAIzC;;AACAX,EAAAA,SAAS,CAAC,MAAM;AACd,UAAMuB,OAAO,GAAGpB,YAAY,EAA5B;AACA,QAAIqB,aAAa,GAAGD,OAAO,CAACd,gBAAD,CAA3B,CAFc,CAId;;AACA,QAAIe,aAAa,KAAKC,SAAtB,EAAiC;AAC/BC,MAAAA,eAAe,CAACF,aAAD,CAAf;AACD,KAFD,MAEO;AACLF,MAAAA,WAAW,iCACNX,eADM;AAETC,QAAAA,eAAe,EAAE;AAFR,SAAX;AAID;AACF,GAbQ,EAaN,EAbM,CAAT,CALyC,CAoBzC;;AACAZ,EAAAA,SAAS,CAAC,MAAM;AACd,UAAM;AAAEY,MAAAA,eAAF;AAAmBE,MAAAA;AAAnB,QAA6BO,QAAnC;AAEA,UAAME,OAAO,GAAGpB,YAAY,EAA5B;AACA,QAAIqB,aAAa,GAAGD,OAAO,CAACd,gBAAD,CAA3B;;AAEA,QAAIG,eAAe,KAAK,IAApB,IAA4BE,KAAK,KAAK,IAAtC,IAA8C,CAACU,aAAnD,EAAkE;AAChE,YAAMG,OAAO,GAAGC,gBAAgB,CAACd,KAAD,CAAhC;AACA,YAAMe,OAAO,GACX,CAAAF,OAAO,SAAP,IAAAA,OAAO,WAAP,YAAAA,OAAO,CAAEG,GAAT,KAAgBC,IAAI,CAACC,KAAL,CAAWC,IAAI,CAACC,GAAL,KAAa,IAAxB,IAAgCxB,mBADlD;AAGAN,MAAAA,SAAS,CAAC,IAAD,EAAOK,gBAAP,EAAyBK,KAAzB,EAAgC;AACvCqB,QAAAA,IAAI,EAAE,GADiC;AAEvCN,QAAAA,OAAO,EAAE,IAAII,IAAJ,CAASJ,OAAO,GAAG,IAAnB;AAF8B,OAAhC,CAAT;AAID;AACF,GAhBQ,EAgBN,CAACR,QAAQ,CAACT,eAAV,CAhBM,CAAT;;AAkBA,QAAMc,eAAe,GAAGZ,KAAK,IAAI;AAC/BQ,IAAAA,WAAW,CAAC;AACVV,MAAAA,eAAe,EAAEE,KAAK,KAAK,IAAV,GAAiB,IAAjB,GAAwB,CAAC,CAACA,KADjC;AAEVD,MAAAA,OAAO,EAAEe,gBAAgB,CAACd,KAAD,CAFf;AAGVA,MAAAA;AAHU,KAAD,CAAX;AAKD,GAND;;AAQA,QAAMsB,OAAO,GAAG,MAAM;AACpB5B,IAAAA,WAAW,CAAC4B,OAAZ,GAAsBC,IAAtB,CAA2BC,QAAQ,IAAI;AACrC,UAAIA,QAAQ,CAACC,MAAT,KAAoB,GAAxB,EAA6B;AAC3BlC,QAAAA,aAAa,CAAC,IAAD,EAAOI,gBAAP,EAAyB;AAAE0B,UAAAA,IAAI,EAAE;AAAR,SAAzB,CAAb;AACAb,QAAAA,WAAW,iCAAMX,eAAN;AAAuBC,UAAAA,eAAe,EAAE;AAAxC,WAAX;AACAQ,QAAAA,MAAM,CAACoB,IAAP,CAAYjC,oBAAoB,CAAC,YAAD,CAAhC;AACD;AACF,KAND;AAOD,GARD;;AAUA,SACE,QAAC,WAAD,CAAa,QAAb;AAAsB,IAAA,KAAK,EAAE;AAAEc,MAAAA,QAAF;AAAYK,MAAAA,eAAZ;AAA6BU,MAAAA;AAA7B,KAA7B;AAAA,cACGjB;AADH;AAAA;AAAA;AAAA;AAAA,UADF;AAKD;;AAED,SAASS,gBAAT,CAA0Bd,KAA1B,EAAiC;AAC/B,MAAIA,KAAK,KAAK,IAAV,IAAkBA,KAAK,KAAK,KAAhC,EAAuC,OAAO,EAAP;AAEvC,SAAOR,SAAS,CAACQ,KAAD,CAAhB;AACD","sourcesContent":["import React, { useState, useEffect, useContext } from 'react'\nimport { useRouter } from 'next/router'\nimport { parseCookies, setCookie, destroyCookie } from 'nookies'\nimport jwtDecode from 'jwt-decode'\n\nimport { getAsPathByRouteName } from '@lib/router/utils'\nimport * as AuthService from '@modules/_auth/services'\nimport { AUTH_COOKIE_NAME, AUTH_COOKIE_MAX_AGE } from '@modules/_auth/config'\n\nconst defaultUserData = {\n isAuthenticated: null,\n profile: null,\n token: null,\n}\n\nconst userContext = React.createContext({})\n\nexport function useMember() {\n return useContext(userContext)\n}\n\nexport function AuthProvider({ children }) {\n const router = useRouter()\n const [userData, setUserData] = useState(defaultUserData)\n\n // Initialize user data\n useEffect(() => {\n const cookies = parseCookies()\n let tokenInCookie = cookies[AUTH_COOKIE_NAME]\n\n // Auto login if the user has token in cookie\n if (tokenInCookie !== undefined) {\n signInWithToken(tokenInCookie)\n } else {\n setUserData({\n ...defaultUserData,\n isAuthenticated: false,\n })\n }\n }, [])\n\n // Save token to cookie after sign in\n useEffect(() => {\n const { isAuthenticated, token } = userData\n\n const cookies = parseCookies()\n let tokenInCookie = cookies[AUTH_COOKIE_NAME]\n\n if (isAuthenticated === true && token !== null && !tokenInCookie) {\n const payload = getDataFromToken(token)\n const expires =\n payload?.exp || Math.floor(Date.now() / 1000) + AUTH_COOKIE_MAX_AGE\n\n setCookie(null, AUTH_COOKIE_NAME, token, {\n path: '/',\n expires: new Date(expires * 1000),\n })\n }\n }, [userData.isAuthenticated])\n\n const signInWithToken = token => {\n setUserData({\n isAuthenticated: token === null ? null : !!token,\n profile: getDataFromToken(token),\n token,\n })\n }\n\n const signOut = () => {\n AuthService.signOut().then(response => {\n if (response.status === 200) {\n destroyCookie(null, AUTH_COOKIE_NAME, { path: '/' })\n setUserData({ ...defaultUserData, isAuthenticated: false })\n router.push(getAsPathByRouteName('auth-login'))\n }\n })\n }\n\n return (\n <userContext.Provider value={{ userData, signInWithToken, signOut }}>\n {children}\n </userContext.Provider>\n )\n}\n\nfunction getDataFromToken(token) {\n if (token === null || token === false) return ''\n\n return jwtDecode(token)\n}\n"]},"metadata":{},"sourceType":"module"}
[ { "name": "Rat", "max_health": 5, "base_dmg": 5, "crit_mult": 1.0, "xp_worth": 5, "boss": "N" }, { "name": "Snake", "max_health": 5, "base_dmg": 5, "crit_mult": 1.0, "xp_worth": 5, "boss": "N" }, { "name": "Bird", "max_health": 12, "base_dmg": 6, "crit_mult": 1.0, "xp_worth": 7, "boss": "N" }, { "name": "Spider", "max_health": 10, "base_dmg": 5, "crit_mult": 1.0, "xp_worth": 10, "boss": "N" }, { "name": "Giant Spider", "max_health": 20, "base_dmg": 10, "crit_mult": 1.0, "xp_worth": 25, "boss": "N" }, { "name": "Skeleton", "max_health": 50, "base_dmg": 10, "crit_mult": 1.0, "xp_worth": 50, "boss": "N" }, { "name": "Skeleton Archer", "max_health": 45, "base_dmg": 15, "crit_mult": 1.0, "xp_worth": 55, "boss": "N" }, { "name": "Skeleton Knight", "max_health": 90, "base_dmg": 30, "crit_mult": 1.0, "xp_worth": 75, "boss": "N" }, { "name": "Skeleton King", "max_health": 200, "base_dmg": 50, "crit_mult": 1.5, "xp_worth": 500, "boss": "Y" }, { "name": "Wolf", "max_health": 30, "base_dmg": 10, "crit_mult": 1.0, "xp_worth": 20, "boss": "N" }, { "name": "Dire Wolf", "max_health": 50, "base_dmg": 20, "crit_mult": 1.0, "xp_worth": 50, "boss": "N" }, { "name": "Rabid Bunny", "max_health": 10, "base_dmg": 10, "crit_mult": 1.0, "xp_worth": 10, "boss": "N" }, { "name": "Crazed Villager", "max_health": 50, "base_dmg": 10, "crit_mult": 1.0, "xp_worth": 30, "boss": "N" }, { "name": "Zombie", "max_health": 40, "base_dmg": 30, "crit_mult": 1.0, "xp_worth": 40, "boss": "N" }, { "name": "Dragon", "max_health": 300, "base_dmg": 70, "crit_mult": 1.75, "xp_worth": 700, "boss": "Y" }, { "name": "Dragox", "max_health": 500, "base_dmg": 100, "crit_mult": 2.0, "xp_worth": 1000, "boss": "Y" }, { "name": "Romox", "max_health": 1500, "base_dmg": 200, "crit_mult": 2.5, "xp_worth": 1000, "boss": "Y" }, { "name": "Fencor", "max_health": 2000, "base_dmg": 500, "crit_mult": 3.0, "xp_worth": 2500, "boss": "Y" } ]
{ "add": { "doc": { "id": "488176fee82172d2ab393ae1f86baaba65c5ad85047d253293adfd17c48db51f", "url": "https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Chicago-fire1.jpg/250px-Chicago-fire1.jpg", "previous": "To accommodate rapid population growth and demand for better sanitation, the city implemented various infrastructural improvements. In February 1856, the Chesbrough plan for the building of the United States' first comprehensive sewerage system was approved by the Common Council.[39] The project raised much of central Chicago to a new grade. While raising Chicago, and at first improving the health of the city, the untreated sewage and industrial waste now flowed into the Chicago River, then into Lake Michigan, polluting the primary source of fresh water for the city. The city responded by tunneling two miles (3 km) out into Lake Michigan to newly built water cribs. In 1900, the problem of sewage contamination was largely resolved when the city completed a major engineering feat. It reversed the flow of the Chicago River so that the water flowed away from Lake Michigan rather than into it. This project began with the construction and improvement of the Illinois and Michigan Canal, and was completed with the Chicago Sanitary and Ship Canal that connects to the Illinois River, which flows into the Mississippi River.[40][41][42]", "after": "In 1871, the Great Chicago Fire broke out, destroying an area of about 4 miles long and 1 mile wide, a large section of the city at the time.[43][44][45] Much of the city, including railroads and stockyards, survived intact,[46] and from the ruins of the previous wooden structures arose more modern constructions of steel and stone which would set the precedent for worldwide construction.[47][48] During its rebuilding period, Chicago constructed the world's first skyscraper in 1885, using steel-skeleton construction.[49][50]", "color": " " } } }
{ "id":"18334261", "tms:id":"50930", "accession_number":"1931-88-46-a,b", "title":"Doorplate Fastener Knobbed Post, ca. 1550\u20131700", "url":"http:\/\/collection.cooperhewitt.org\/objects\/18334261\/", "department_id":"35347497", "period_id":null, "media_id":"35411575", "type_id":"35287265", "date":"ca. 1550\u20131700", "year_start":null, "year_end":null, "year_acquired":"1931", "decade":null, "woe:country":null, "medium":"Steel-plated iron", "markings":null, "signed":null, "inscribed":null, "provenance":null, "dimensions":"H x W x D: 10.4 x 10.1 x 4.3 cm (4 1\/8 x 4 x 1 11\/16 in.)", "creditline":null, "description":null, "justification":null, "type":{ "id":"35287265", "name":"Doorplate fastener knobbed post" }, "images":[ ], "participants":[ ], "tombstone":{ "epitaph":"Doorplate Fastener Knobbed Post, ca. 1550\u20131700.Steel-plated iron. 1931-88-46-a,b." }, "colors":[ { "color":"#3c3433", "closest_css3":"#2f4f4f" }, { "color":"#5c5255", "closest_css3":"#696969" }, { "color":"#968e85", "closest_css3":"#808080" }, { "color":"#766d6b", "closest_css3":"#696969" } ] }
{"name":"סמ\"ש רמזי עזאם ז\"ל","date":"14/6/1969","age":"26"}
{"sports_content":{"sports_meta":{"date_time":"20150402 1343","season_meta":{"calendar_date":"20150402","season_year":"2014","stats_season_year":"2014","stats_season_id":"22014","stats_season_stage":"2","roster_season_year":"2014","schedule_season_year":"2014","standings_season_year":"2014","season_id":"22014","display_year":"2014-15","display_season":"Regular Season","season_stage":"2"},"next":{"url":"http:\/\/data.nba.com\/data\/10s\/json\/cms\/noseason\/game\/20150324\/0021401056\/pbp_3.json"}},"game":{"id":"0021401056","game_url":"20150324\/LALOKC","season_id":"22014","date":"20150324","time":"2000","arena":"Chesapeake Energy Arena","city":"Oklahoma City","state":"OK","country":"","home_start_date":"20150324","home_start_time":"1900","visitor_start_date":"20150324","visitor_start_time":"1700","isLeaguePass":"1","previewAvailable":"1","recapAvailable":"1","notebookAvailable":"0","play":[{"event":"275","clock":"","description":"Start Period","home_score":"68","visitor_score":"53","team_abr":""},{"event":"276","clock":"11:37","description":"[LAL] Johnson Turnaround Fadeaway shot: Missed","home_score":"68","visitor_score":"53","team_abr":"LAL"},{"event":"277","clock":"11:36","description":"[OKC] Kanter Rebound (Off:7 Def:6)","home_score":"68","visitor_score":"53","team_abr":"OKC"},{"event":"278","clock":"11:17","description":"[OKC] Kanter Turnover : Bad Pass (2 TO)","home_score":"68","visitor_score":"53","team_abr":"OKC"},{"event":"279","clock":"11:08","description":"[OKC] Westbrook Foul: Personal (2 PF)","home_score":"68","visitor_score":"53","team_abr":"OKC"},{"event":"280","clock":"10:57","description":"[LAL 55-68] Clarkson Step Back Jump shot: Made (14 PTS)","home_score":"68","visitor_score":"55","team_abr":"LAL"},{"event":"281","clock":"10:35","description":"[OKC] Singler Turnover : Bad Pass (1 TO) Steal:Johnson (1 ST)","home_score":"68","visitor_score":"55","team_abr":"OKC"},{"event":"282","clock":"10:27","description":"[LAL 57-68] Kelly Layup Shot: Made (12 PTS) Assist: Clarkson (4 AST)","home_score":"68","visitor_score":"57","team_abr":"LAL"},{"event":"284","clock":"10:15","description":"[LAL] Kelly Foul: Shooting (3 PF) (2 FTA)","home_score":"68","visitor_score":"57","team_abr":"LAL"},{"event":"285","clock":"10:15","description":"[OKC 69-57] Adams Free Throw 1 of 2 (11 PTS)","home_score":"69","visitor_score":"57","team_abr":"OKC"},{"event":"288","clock":"10:15","description":"[OKC 70-57] Adams Free Throw 2 of 2 (12 PTS)","home_score":"70","visitor_score":"57","team_abr":"OKC"},{"event":"290","clock":"09:59","description":"[OKC] Westbrook Foul: Shooting (3 PF) (2 FTA)","home_score":"70","visitor_score":"57","team_abr":"OKC"},{"event":"291","clock":"09:59","description":"[LAL 58-70] Lin Free Throw 1 of 2 (17 PTS)","home_score":"70","visitor_score":"58","team_abr":"LAL"},{"event":"293","clock":"09:59","description":"[OKC] Morrow Substitution replaced by Waiters","home_score":"70","visitor_score":"58","team_abr":"OKC"},{"event":"294","clock":"09:59","description":"[LAL 59-70] Lin Free Throw 2 of 2 (18 PTS)","home_score":"70","visitor_score":"59","team_abr":"LAL"},{"event":"296","clock":"09:48","description":"[OKC] Kanter Turnover : Lost Ball (3 TO) Steal:Kelly (1 ST)","home_score":"70","visitor_score":"59","team_abr":"OKC"},{"event":"297","clock":"09:43","description":"[LAL 61-70] Clarkson Dunk Shot: Made (16 PTS) Assist: Kelly (1 AST)","home_score":"70","visitor_score":"61","team_abr":"LAL"},{"event":"298","clock":"09:42","description":"[OKC] Team Timeout : Regular","home_score":"70","visitor_score":"61","team_abr":"OKC"},{"event":"300","clock":"09:28","description":"[OKC] Westbrook Layup Shot: Missed Block: Clarkson (3 BLK)","home_score":"70","visitor_score":"61","team_abr":"OKC"},{"event":"301","clock":"09:26","description":"[LAL] Clarkson Rebound (Off:1 Def:2)","home_score":"70","visitor_score":"61","team_abr":"LAL"},{"event":"302","clock":"09:22","description":"[LAL] Clarkson Jump Shot: Missed","home_score":"70","visitor_score":"61","team_abr":"LAL"},{"event":"303","clock":"09:21","description":"[OKC] Adams Rebound (Off:1 Def:5)","home_score":"70","visitor_score":"61","team_abr":"OKC"},{"event":"304","clock":"09:18","description":"[OKC 72-61] Westbrook Layup Shot: Made (15 PTS) Assist: Adams (1 AST)","home_score":"72","visitor_score":"61","team_abr":"OKC"},{"event":"305","clock":"08:59","description":"[OKC] Waiters Foul: Shooting (2 PF) (2 FTA)","home_score":"72","visitor_score":"61","team_abr":"OKC"},{"event":"306","clock":"08:59","description":"[LAL 62-72] Clarkson Free Throw 1 of 2 (17 PTS)","home_score":"72","visitor_score":"62","team_abr":"LAL"},{"event":"308","clock":"08:59","description":"[LAL] Clarkson Free Throw 2 of 2 Missed","home_score":"72","visitor_score":"62","team_abr":"LAL"},{"event":"310","clock":"08:59","description":"[OKC] Kanter Rebound (Off:7 Def:7)","home_score":"72","visitor_score":"62","team_abr":"OKC"},{"event":"311","clock":"08:42","description":"[OKC] Singler Running Bank shot: Missed","home_score":"72","visitor_score":"62","team_abr":"OKC"},{"event":"312","clock":"08:40","description":"[LAL] Black Rebound (Off:3 Def:3)","home_score":"72","visitor_score":"62","team_abr":"LAL"},{"event":"313","clock":"08:24","description":"[LAL 65-72] Clarkson 3pt Shot: Made (20 PTS)","home_score":"72","visitor_score":"65","team_abr":"LAL"},{"event":"314","clock":"08:01","description":"[OKC 75-65] Westbrook 3pt Shot: Made (18 PTS) Assist: Kanter (4 AST)","home_score":"75","visitor_score":"65","team_abr":"OKC"},{"event":"315","clock":"07:51","description":"[OKC] Adams Foul: Personal Block (3 PF)","home_score":"75","visitor_score":"65","team_abr":"OKC"},{"event":"316","clock":"07:45","description":"[LAL] Kelly 3pt Shot: Missed","home_score":"75","visitor_score":"65","team_abr":"LAL"},{"event":"317","clock":"07:44","description":"[OKC] Waiters Rebound (Off:0 Def:2)","home_score":"75","visitor_score":"65","team_abr":"OKC"},{"event":"318","clock":"07:34","description":"[OKC 77-65] Waiters Driving Finger Roll Layup Shot: Made (13 PTS)","home_score":"77","visitor_score":"65","team_abr":"OKC"},{"event":"319","clock":"07:22","description":"[LAL 67-77] Black Dunk Shot: Made (7 PTS) Assist: Clarkson (5 AST)","home_score":"77","visitor_score":"67","team_abr":"LAL"},{"event":"320","clock":"07:04","description":"[OKC 79-67] Waiters Step Back Jump shot: Made (15 PTS)","home_score":"79","visitor_score":"67","team_abr":"OKC"},{"event":"321","clock":"06:42","description":"[LAL] Johnson 3pt Shot: Missed","home_score":"79","visitor_score":"67","team_abr":"LAL"},{"event":"322","clock":"06:41","description":"[OKC] Westbrook Rebound (Off:0 Def:2)","home_score":"79","visitor_score":"67","team_abr":"OKC"},{"event":"323","clock":"06:36","description":"[OKC 81-67] Westbrook Layup Shot: Made (20 PTS)","home_score":"81","visitor_score":"67","team_abr":"OKC"},{"event":"324","clock":"06:28","description":"[LAL] Clarkson Turnover : Bad Pass (2 TO) Steal:Westbrook (2 ST)","home_score":"81","visitor_score":"67","team_abr":"LAL"},{"event":"325","clock":"06:24","description":"[OKC 83-67] Westbrook Layup Shot: Made (22 PTS)","home_score":"83","visitor_score":"67","team_abr":"OKC"},{"event":"326","clock":"06:19","description":"[LAL] Team Timeout : Regular","home_score":"83","visitor_score":"67","team_abr":"LAL"},{"event":"328","clock":"06:19","description":"[LAL] Lin Substitution replaced by Ellington","home_score":"83","visitor_score":"67","team_abr":"LAL"},{"event":"329","clock":"06:19","description":"[OKC] Adams Substitution replaced by McGary","home_score":"83","visitor_score":"67","team_abr":"OKC"},{"event":"330","clock":"05:59","description":"[LAL] Ellington Pullup Jump shot: Missed","home_score":"83","visitor_score":"67","team_abr":"LAL"},{"event":"331","clock":"05:58","description":"[OKC] McGary Rebound (Off:2 Def:4)","home_score":"83","visitor_score":"67","team_abr":"OKC"},{"event":"332","clock":"05:41","description":"[OKC 85-67] Kanter Hook Shot: Made (19 PTS) Assist: Westbrook (9 AST)","home_score":"85","visitor_score":"67","team_abr":"OKC"},{"event":"333","clock":"05:25","description":"[LAL 69-85] Kelly Driving Layup Shot: Made (14 PTS) Assist: Clarkson (6 AST)","home_score":"85","visitor_score":"69","team_abr":"LAL"},{"event":"334","clock":"05:25","description":"[OKC] McGary Violation:Defensive Goaltending","home_score":"85","visitor_score":"67","team_abr":"OKC"},{"event":"335","clock":"05:08","description":"[OKC] Kanter Turnover : Lost Ball (4 TO) Steal:Kelly (2 ST)","home_score":"85","visitor_score":"69","team_abr":"OKC"},{"event":"336","clock":"05:05","description":"[LAL] Ellington Reverse Layup Shot: Missed","home_score":"85","visitor_score":"69","team_abr":"LAL"},{"event":"337","clock":"05:03","description":"[OKC] Singler Rebound (Off:0 Def:2)","home_score":"85","visitor_score":"69","team_abr":"OKC"},{"event":"338","clock":"04:57","description":"[OKC 87-69] Waiters Driving Layup Shot: Made (17 PTS)","home_score":"87","visitor_score":"69","team_abr":"OKC"},{"event":"339","clock":"04:38","description":"[LAL] Clarkson Pullup Jump shot: Missed","home_score":"87","visitor_score":"69","team_abr":"LAL"},{"event":"340","clock":"04:37","description":"[OKC] Kanter Rebound (Off:7 Def:8)","home_score":"87","visitor_score":"69","team_abr":"OKC"},{"event":"341","clock":"04:28","description":"[LAL] Johnson Foul: Shooting (1 PF) (2 FTA)","home_score":"87","visitor_score":"69","team_abr":"LAL"},{"event":"343","clock":"04:28","description":"[OKC 88-69] Kanter Free Throw 1 of 2 (20 PTS)","home_score":"88","visitor_score":"69","team_abr":"OKC"},{"event":"345","clock":"04:28","description":"[LAL] Kelly Substitution replaced by Sacre","home_score":"88","visitor_score":"69","team_abr":"LAL"},{"event":"346","clock":"04:28","description":"[LAL] Johnson Substitution replaced by Brown","home_score":"88","visitor_score":"69","team_abr":"LAL"},{"event":"347","clock":"04:28","description":"[LAL] Black Substitution replaced by Davis","home_score":"88","visitor_score":"69","team_abr":"LAL"},{"event":"348","clock":"04:28","description":"[OKC 89-69] Kanter Free Throw 2 of 2 (21 PTS)","home_score":"89","visitor_score":"69","team_abr":"OKC"},{"event":"350","clock":"04:18","description":"[LAL 71-89] Brown Jump Shot: Made (2 PTS) Assist: Clarkson (7 AST)","home_score":"89","visitor_score":"71","team_abr":"LAL"},{"event":"351","clock":"03:55","description":"[OKC] Singler Layup Shot: Missed Block: Davis (1 BLK)","home_score":"89","visitor_score":"71","team_abr":"OKC"},{"event":"352","clock":"03:52","description":"[LAL] Clarkson Rebound (Off:1 Def:3)","home_score":"89","visitor_score":"71","team_abr":"LAL"},{"event":"353","clock":"03:48","description":"[LAL] Ellington Jump Shot: Missed","home_score":"89","visitor_score":"71","team_abr":"LAL"},{"event":"354","clock":"03:47","description":"[LAL] Davis Rebound (Off:1 Def:2)","home_score":"89","visitor_score":"71","team_abr":"LAL"},{"event":"355","clock":"03:47","description":"[OKC] Singler Foul: Personal (1 PF) (2 FTA)","home_score":"89","visitor_score":"71","team_abr":"OKC"},{"event":"356","clock":"03:47","description":"[OKC] Singler Substitution replaced by Morrow","home_score":"89","visitor_score":"71","team_abr":"OKC"},{"event":"357","clock":"03:47","description":"[LAL 72-89] Davis Free Throw 1 of 2 (3 PTS)","home_score":"89","visitor_score":"72","team_abr":"LAL"},{"event":"359","clock":"03:47","description":"[LAL 73-89] Davis Free Throw 2 of 2 (4 PTS)","home_score":"89","visitor_score":"73","team_abr":"LAL"},{"event":"361","clock":"03:33","description":"[OKC] Westbrook Turnover : Bad Pass (2 TO) Steal:Sacre (2 ST)","home_score":"89","visitor_score":"73","team_abr":"OKC"},{"event":"362","clock":"03:29","description":"[LAL 75-89] Clarkson Layup Shot: Made (22 PTS) Assist: Ellington (1 AST)","home_score":"89","visitor_score":"75","team_abr":"LAL"},{"event":"363","clock":"03:29","description":"[OKC] Morrow Foul: Shooting (1 PF) (1 FTA)","home_score":"89","visitor_score":"75","team_abr":"OKC"},{"event":"364","clock":"03:29","description":"[LAL] Clarkson Free Throw 1 of 1 Missed","home_score":"89","visitor_score":"75","team_abr":"LAL"},{"event":"366","clock":"03:28","description":"[OKC] Kanter Rebound (Off:7 Def:9)","home_score":"89","visitor_score":"75","team_abr":"OKC"},{"event":"367","clock":"03:23","description":"[LAL] Davis Foul: Shooting (3 PF) (2 FTA)","home_score":"89","visitor_score":"75","team_abr":"LAL"},{"event":"368","clock":"03:23","description":"[OKC 90-75] Westbrook Free Throw 1 of 2 (23 PTS)","home_score":"90","visitor_score":"75","team_abr":"OKC"},{"event":"370","clock":"03:23","description":"[OKC 91-75] Westbrook Free Throw 2 of 2 (24 PTS)","home_score":"91","visitor_score":"75","team_abr":"OKC"},{"event":"373","clock":"03:14","description":"[LAL 77-91] Davis Running Jump Shot: Made (6 PTS)","home_score":"91","visitor_score":"77","team_abr":"LAL"},{"event":"374","clock":"03:14","description":"[OKC] McGary Foul: Shooting (2 PF) (1 FTA)","home_score":"91","visitor_score":"77","team_abr":"OKC"},{"event":"375","clock":"03:14","description":"[LAL] Davis Free Throw 1 of 1 Missed","home_score":"91","visitor_score":"77","team_abr":"LAL"},{"event":"377","clock":"03:14","description":"[OKC] McGary Rebound (Off:2 Def:5)","home_score":"91","visitor_score":"77","team_abr":"OKC"},{"event":"378","clock":"03:01","description":"[OKC] Kanter Turnover : Bad Pass (5 TO) Steal:Davis (1 ST)","home_score":"91","visitor_score":"77","team_abr":"OKC"},{"event":"379","clock":"02:56","description":"[LAL 79-91] Ellington Layup Shot: Made (8 PTS)","home_score":"91","visitor_score":"79","team_abr":"LAL"},{"event":"381","clock":"02:40","description":"[OKC 93-79] Waiters Driving Layup Shot: Made (19 PTS)","home_score":"93","visitor_score":"79","team_abr":"OKC"},{"event":"382","clock":"02:24","description":"[LAL] Sacre Foul: Offensive (3 PF)","home_score":"93","visitor_score":"79","team_abr":"LAL"},{"event":"383","clock":"02:24","description":"[LAL] Sacre Turnover : Foul (2 TO)","home_score":"93","visitor_score":"79","team_abr":"LAL"},{"event":"384","clock":"02:13","description":"[OKC 95-79] Kanter Layup Shot: Made (23 PTS) Assist: Westbrook (10 AST)","home_score":"95","visitor_score":"79","team_abr":"OKC"},{"event":"385","clock":"01:55","description":"[LAL 81-95] Davis Dunk Shot: Made (8 PTS) Assist: Ellington (2 AST)","home_score":"95","visitor_score":"81","team_abr":"LAL"},{"event":"386","clock":"01:39","description":"[OKC] McGary Layup Shot: Missed","home_score":"95","visitor_score":"81","team_abr":"OKC"},{"event":"387","clock":"01:38","description":"[LAL] Ellington Rebound (Off:0 Def:2)","home_score":"95","visitor_score":"81","team_abr":"LAL"},{"event":"388","clock":"01:29","description":"[LAL] Sacre Jump Shot: Missed","home_score":"95","visitor_score":"81","team_abr":"LAL"},{"event":"389","clock":"01:29","description":"[LAL] Sacre Rebound (Off:1 Def:0)","home_score":"95","visitor_score":"81","team_abr":"LAL"},{"event":"390","clock":"01:24","description":"[LAL 83-95] Davis Layup Shot: Made (10 PTS) Assist: Sacre (1 AST)","home_score":"95","visitor_score":"83","team_abr":"LAL"},{"event":"391","clock":"01:09","description":"[OKC 97-83] Kanter Layup Shot: Made (25 PTS) Assist: Westbrook (11 AST)","home_score":"97","visitor_score":"83","team_abr":"OKC"},{"event":"392","clock":"00:42","description":"[LAL 85-97] Ellington Driving Layup Shot: Made (10 PTS) Assist: Sacre (2 AST)","home_score":"97","visitor_score":"85","team_abr":"LAL"},{"event":"393","clock":"00:28","description":"[OKC 100-85] Westbrook 3pt Shot: Made (27 PTS) Assist: Waiters (1 AST)","home_score":"100","visitor_score":"85","team_abr":"OKC"},{"event":"394","clock":"00:08","description":"[LAL 87-100] Clarkson Driving Layup Shot: Made (24 PTS)","home_score":"100","visitor_score":"87","team_abr":"LAL"},{"event":"395","clock":"00:08","description":"[OKC] Kanter Foul: Shooting (1 PF) (1 FTA)","home_score":"100","visitor_score":"87","team_abr":"OKC"},{"event":"396","clock":"00:08","description":"[LAL 88-100] Clarkson Free Throw 1 of 1 (25 PTS)","home_score":"100","visitor_score":"88","team_abr":"LAL"},{"event":"398","clock":"00:01","description":"[OKC] Westbrook Driving Finger Roll Layup Shot: Missed","home_score":"100","visitor_score":"88","team_abr":"OKC"},{"event":"399","clock":"00:00","description":"[LAL] Sacre Rebound (Off:1 Def:1)","home_score":"100","visitor_score":"88","team_abr":"LAL"},{"event":"400","clock":"00:00","description":"End Period","home_score":"100","visitor_score":"88","team_abr":""}]}}}
{"countryCode":"PL","postalCode":"35-300","placeName":"Rzesz\u00f3w","adminName1":"Subcarpathia","adminCode1":"80","adminName2":"Rzesz\u00f3w","adminCode2":"1863","adminName3":"Rzesz\u00f3w","adminCode3":"186301","latitude":"50.0282","longitude":"22.0475","accuracy":"6"}
{"definitions": [{"wordtype": "Noun", "description": "Division or separation; specifically (Eccl.), permanent division or separation in the Christian church; breach of unity among people of the same religious faith; the offense of seeking to produce division in a church without justifiable cause."}]}
[ "http://2.bp.blogspot.com/-0XIx6d7FMbg/WqUGl5IGHYI/AAAAAAACiWo/OflnBA34T-AoxZdgi9L-ZutJu-TGX4WLQCHMYCw/s0/000.png", "http://2.bp.blogspot.com/-R7NcZgDGy3g/WqUGmGhYXLI/AAAAAAACiWs/QSQbYKkG5CshK5DwUivLylPf52Bfhj0aACHMYCw/s0/001.png", "http://2.bp.blogspot.com/-hIDw0JgTxcY/WqUGmcoBJKI/AAAAAAACiWw/UZi-S3yzkycxAVUHWc4-I3tw6oBCP59vgCHMYCw/s0/002.png", "http://2.bp.blogspot.com/-BD0TDZZTGIA/WqUGmv2qnBI/AAAAAAACiW0/j2h9QhWA6RQGCfxX3E9ton9h6SLWJmnngCHMYCw/s0/003.png", "http://2.bp.blogspot.com/-fCQkBCek9Uw/WqUGmxBUDRI/AAAAAAACiW4/JYjccL_y1p4DBv7IU3S37Cb0FKaTidnvwCHMYCw/s0/004.png", "http://2.bp.blogspot.com/-unPHNp9C0bo/WqUGnBHHSEI/AAAAAAACiW8/BDPFDQ7j9Rw5QSSTONwYbOs7TiDfPiOmwCHMYCw/s0/005.png", "http://2.bp.blogspot.com/-dSokSRC8FG4/WqUGneR0N_I/AAAAAAACiXA/PxevELduRBkbwa1cQeR7dSIanyR6a3CWgCHMYCw/s0/006.png", "http://2.bp.blogspot.com/-IMJN3eQ-LP0/WqUGnsQBwTI/AAAAAAACiXE/qC7-ZlqDaTssFCiuF7yTUPvtcImbzU51wCHMYCw/s0/007.png", "http://2.bp.blogspot.com/-ux0xe-I8YxY/WqUGn9CFNXI/AAAAAAACiXI/5W24vGsAY6gk_s3Pw3H705bk8rLc5UMkgCHMYCw/s0/008.png", "http://2.bp.blogspot.com/-gzXKCLOvTnw/WqUGoNEy1II/AAAAAAACiXM/G1hgzQR5vqcXtnlYkqdn1mlH9AmeA_r-wCHMYCw/s0/009.png", "http://2.bp.blogspot.com/-gJP0Kt5hsOs/WqUGoaxoSRI/AAAAAAACiXQ/rz_GZbNd1h8q_I06Se4VQOe7Mqv1ZTcGQCHMYCw/s0/010.png", "http://2.bp.blogspot.com/-QCJ2_EMGK5s/WqUGohTL-0I/AAAAAAACiXY/3a3JYEAZQG8oVZmcw5vGXTlpqd5oo5nMwCHMYCw/s0/011.png", "http://2.bp.blogspot.com/-C-SDLA1CmDI/WqUGo7YAw0I/AAAAAAACiXg/iBkhwqYlBuYrrzAdTUTeFKN3YuPY3JfzgCHMYCw/s0/012.png", "http://2.bp.blogspot.com/-7viqg1QjZFc/WqUGpEgXTuI/AAAAAAACiXo/8Wb8D0-tHBkgBcUgFXe60FLdo6YKpi0zgCHMYCw/s0/013.png", "http://2.bp.blogspot.com/-JZOPCTT4bWM/WqUGprkkM-I/AAAAAAACiXw/CbveXHI_rBwwlziBFck0c8PBrD_3VoKjwCHMYCw/s0/014.png", "http://2.bp.blogspot.com/--1R-tbxuJR0/WqUGpz35gkI/AAAAAAACiX4/mDx8qWIqY1cje-Dy1U3G3q8XbKWwkGipQCHMYCw/s0/015.png", "http://2.bp.blogspot.com/-PnHJQyF5yD0/WqUGqYIbCdI/AAAAAAACiYA/WOZ0Hp0vwJATy-B4zwUMA5p2zlqEaoi8wCHMYCw/s0/016.png", "http://2.bp.blogspot.com/-be1KmWHVQU4/WqUGqrX3TzI/AAAAAAACiYI/dApfnVkKZcsra2KdT7Q1RUwuW86oDp-IwCHMYCw/s0/017.png", "http://2.bp.blogspot.com/-sjuE_VqkeAc/WqUGq1IVw9I/AAAAAAACiYQ/VRY0R_5zEhQovWAKt311HTHUchcrBKWUQCHMYCw/s0/018.png" ]
{ "id": 21358, "title": "Undead (Kitamura Hikaru)", "url": "https://mangadex.org/manga/21358", "last_updated": "January 19, 2021 07:05:06 UTC", "matches": [ { "id": 2340, "title": "Fate/stay night", "score": 0.669 }, { "id": 2329, "title": "Samurai Champloo", "score": 0.666 }, { "id": 54801, "title": "One Piece Episode A", "score": 0.654 }, { "id": 6133, "title": "The Time of Cherry Blossoms", "score": 0.654 }, { "id": 5840, "title": "BLOOD+", "score": 0.652 }, { "id": 1417, "title": "Shingetsutan Tsukihime", "score": 0.652 }, { "id": 6521, "title": "Nishi no Yoki Majo", "score": 0.652 }, { "id": 20231, "title": "Majo no Geboku to Maou no Tsuno", "score": 0.65 }, { "id": 28542, "title": "JoJo's Bizarre Adventure Part 6 - Stone Ocean", "score": 0.401 }, { "id": 15150, "title": "Jitsuryokuha Elite Jin", "score": 0.397 }, { "id": 14603, "title": "Kagamigami", "score": 0.391 }, { "id": 6963, "title": "Ryuu no Michi", "score": 0.385 }, { "id": 16700, "title": "Shijou Saikyou no Gaiden", "score": 0.381 }, { "id": 28526, "title": "JoJo's Bizarre Adventure Part 3 - Stardust Crusaders", "score": 0.377 }, { "id": 5014, "title": "Noragami", "score": 0.364 }, { "id": 12560, "title": "Oingo Boingo Brothers Adventure", "score": 0.362 }, { "id": 1036, "title": "Rave", "score": 0.36 }, { "id": 9959, "title": "Gringo 2061", "score": 0.36 }, { "id": 13963, "title": "Yu-Gi-Oh! GX", "score": 0.359 }, { "id": 8, "title": "Psyren", "score": 0.356 }, { "id": 25435, "title": "Madara", "score": 0.356 }, { "id": 107, "title": "Toriko", "score": 0.355 }, { "id": 2917, "title": "Continue", "score": 0.355 }, { "id": 48759, "title": "Kimetsu no Yaiba: Rengoku Kyoujurou Gaiden", "score": 0.354 }, { "id": 358, "title": "C&Oslash;DE:BREAKER", "score": 0.353 } ] }
{ "description": "Roadpiper pvt. ltd. is an early stage B2B logistic service providing startup founded by IIT-B Alumns with a small technical team. Venture has three web products under development on rails stack- admin, client & supplier. Responsive templates for all three products use twitter boostrap.", "id": "roadpiper", "images": [ "img/phones/roadpiper.0.png", "img/phones/roadpiper.1.png", "img/phones/roadpiper.2.png", "img/phones/roadpiper.3.png", "img/phones/roadpiper.4.png", "img/phones/roadpiper.5.png" ], "name": "Roadpiper pvt. ltd." }
["bff4dd2cfa7a9b5f1fb7c84cff86b0a813356c39","519f9afb3e6bba54beb56e8bf482ff96fe667b76"]
[ "http://2.bp.blogspot.com/-wLnU6Hx9KdI/TmZVRJouTII/AAAAAAAADoY/32WgiVn1A6Y/s0/000.jpg", "http://2.bp.blogspot.com/-UwnHOC3z4Yc/TmZVWJDE4mI/AAAAAAAADpA/pyoc0YyX0Eo/s0/001.jpg", "http://2.bp.blogspot.com/-6ykMDQFhFQU/TmZVYObypkI/AAAAAAAADpo/pMy2xaqIaPY/s0/002.jpg", "http://2.bp.blogspot.com/-rOqzS8fSYGw/TmZVZb2j9tI/AAAAAAAADqA/3VGmXxOGd3k/s0/003.jpg", "http://2.bp.blogspot.com/-Dws3Q55oBio/TmZVbDT1XzI/AAAAAAAADqg/ErBIj_gt-Dg/s0/004.jpg", "http://2.bp.blogspot.com/-1DUAr2BIgSc/TmZVl3whlKI/AAAAAAAADrg/ejm8N69-f5o/s0/005.jpg", "http://2.bp.blogspot.com/-yFEyg0OU6GM/TmZVov17EKI/AAAAAAAADss/33a1_lNuEf4/s0/006.jpg", "http://2.bp.blogspot.com/-jMdf88LHmzU/TmZV0LvSlYI/AAAAAAAADtw/x5ZoqG5Vi24/s0/007.jpg", "http://2.bp.blogspot.com/-gbAQ4gYmnhU/TmZV1uCT5yI/AAAAAAAADuU/4tve4di7vZ0/s0/008.jpg", "http://2.bp.blogspot.com/-ZOYz_k_hX5I/TmZV5OMkbuI/AAAAAAAADus/Sb9abrI9RZo/s0/009.jpg", "http://2.bp.blogspot.com/-YZopL6REQQM/TmZV-H65nKI/AAAAAAAADvw/Z3mzzLbleno/s0/010.jpg", "http://2.bp.blogspot.com/-jbHXq-_F560/TmZWCzrvm8I/AAAAAAAADwc/GrcMntMvyvg/s0/011.jpg", "http://2.bp.blogspot.com/-bjcMBx6vGDA/TmZWE_zTqiI/AAAAAAAADw4/wZBEI4Oc1Ak/s0/012.jpg", "http://2.bp.blogspot.com/-7DTFXFVcYQ8/TmZWGoiSY1I/AAAAAAAADyU/7_a49n8nbfA/s0/013.jpg", "http://2.bp.blogspot.com/-YjNYXfP6dgQ/TmZWNVdDpwI/AAAAAAAADyk/-KaklNNFQ4E/s0/014.jpg", "http://2.bp.blogspot.com/-jvlMhOe0vko/TmZWPtZGshI/AAAAAAAADzM/2QJ0gqDeLt0/s0/015.jpg", "http://2.bp.blogspot.com/-etUwk5oIJC4/TmZWUS3Qq9I/AAAAAAAADz4/so_8Q6c1ges/s0/016.jpg", "http://2.bp.blogspot.com/-8KSBXj4OxDU/TmZWWB__isI/AAAAAAAAD0Y/SXBjyjOavyw/s0/017.jpg" ]
{"username": "user10", "additional_items": [], "items": {"1": "negative", "3": "positive", "2": "negative"}, "tweet_id": "581228812949573632", "timespent": 8.8402140140533, "starttime": 1429796162.6729, "itemcount": "3", "savingtime": 1429796171.5131}
{ "id": 66251, "rating": 1443, "attempts": 47013, "fen": "r3k2r/1p3ppp/p1np1b2/q2Qp3/4P3/N1P5/PP3PPP/R3KB1R w KQkq - 1 13", "color": "black", "initialPly": 25, "gameId": "w4HKPKqz", "lines": { "a8d8": { "a3c4": { "d8d6": { "c4a5": { "c6a5": { "b2b4": "win" } } } } } }, "vote": 616, "enabled": true }
{ "first_traded_price": 1349.0, "highest_price": 1394.0, "isin": "IRO1AZAB0001", "last_traded_price": 1393.0, "lowest_price": 1349.0, "trade_volume": 999680.0, "unix_time": 1263686400 }
{"pageProps":{"post":{"title":"光栅化、字体渲染和SDF","date":1640074920000,"slug":"rasterization-fonts-rendering-and-sdf","content":"<h2>光栅化</h2>\n<p>首先简单介绍位图和矢量图的区别:</p>\n<p>位图是使用像素阵列来表示的图像。位图文件通过解码后,可以获得图片上每个像素点对应的颜色。\n在 js 中,位图文件都可以被加载为一个 <code>ImageData</code> 对象,然后就可以对每个像素的颜色进行编辑。\n<code>ImageData</code> 中的数据格式为 <code>Uint8ClampedArray</code>,长度为宽度*高度*4,即每个像素占用 4 个字节来分别保存 rgba 通道的数值。</p>\n<p>例如我们可以创建一个宽高为<code>w*h</code>的 ImageData 对象, 并设置每个像素的红色和绿色值为像素的 x 坐标和 y 坐标的大小。</p>\n<div class=\"remark-highlight\"><pre class=\"language-js\"><code class=\"language-js\"><span class=\"token keyword\">const</span> imageData <span class=\"token operator\">=</span> <span class=\"token keyword\">new</span> <span class=\"token class-name\">ImageData</span><span class=\"token punctuation\">(</span>w<span class=\"token punctuation\">,</span> h<span class=\"token punctuation\">)</span>\n\n<span class=\"token keyword control-flow\">for</span> <span class=\"token punctuation\">(</span><span class=\"token keyword\">let</span> i <span class=\"token operator\">=</span> <span class=\"token number\">0</span><span class=\"token punctuation\">;</span> i <span class=\"token operator\">&#x3C;</span> h<span class=\"token punctuation\">;</span> i<span class=\"token operator\">++</span><span class=\"token punctuation\">)</span> <span class=\"token punctuation\">{</span>\n <span class=\"token keyword control-flow\">for</span> <span class=\"token punctuation\">(</span><span class=\"token keyword\">let</span> j <span class=\"token operator\">=</span> <span class=\"token number\">0</span><span class=\"token punctuation\">;</span> j <span class=\"token operator\">&#x3C;</span> w<span class=\"token punctuation\">;</span> j<span class=\"token operator\">++</span><span class=\"token punctuation\">)</span> <span class=\"token punctuation\">{</span>\n <span class=\"token keyword\">const</span> index <span class=\"token operator\">=</span> j <span class=\"token operator\">*</span> w <span class=\"token operator\">+</span> i\n <span class=\"token keyword\">const</span> uv <span class=\"token operator\">=</span> <span class=\"token punctuation\">[</span><span class=\"token punctuation\">(</span>i <span class=\"token operator\">+</span> <span class=\"token number\">0.5</span><span class=\"token punctuation\">)</span> <span class=\"token operator\">/</span> w<span class=\"token punctuation\">,</span> <span class=\"token punctuation\">(</span>j <span class=\"token operator\">+</span> <span class=\"token number\">0.5</span><span class=\"token punctuation\">)</span> <span class=\"token operator\">/</span> h<span class=\"token punctuation\">]</span>\n imageData<span class=\"token punctuation\">.</span><span class=\"token property-access\">data</span><span class=\"token punctuation\">[</span>index <span class=\"token operator\">*</span> <span class=\"token number\">4</span> <span class=\"token operator\">+</span> <span class=\"token number\">0</span><span class=\"token punctuation\">]</span> <span class=\"token operator\">=</span> uv<span class=\"token punctuation\">[</span><span class=\"token number\">0</span><span class=\"token punctuation\">]</span> <span class=\"token operator\">*</span> <span class=\"token number\">255</span>\n imageData<span class=\"token punctuation\">.</span><span class=\"token property-access\">data</span><span class=\"token punctuation\">[</span>index <span class=\"token operator\">*</span> <span class=\"token number\">4</span> <span class=\"token operator\">+</span> <span class=\"token number\">1</span><span class=\"token punctuation\">]</span> <span class=\"token operator\">=</span> uv<span class=\"token punctuation\">[</span><span class=\"token number\">1</span><span class=\"token punctuation\">]</span> <span class=\"token operator\">*</span> <span class=\"token number\">255</span>\n imageData<span class=\"token punctuation\">.</span><span class=\"token property-access\">data</span><span class=\"token punctuation\">[</span>index <span class=\"token operator\">*</span> <span class=\"token number\">4</span> <span class=\"token operator\">+</span> <span class=\"token number\">2</span><span class=\"token punctuation\">]</span> <span class=\"token operator\">=</span> <span class=\"token number\">0</span>\n imageData<span class=\"token punctuation\">.</span><span class=\"token property-access\">data</span><span class=\"token punctuation\">[</span>index <span class=\"token operator\">*</span> <span class=\"token number\">4</span> <span class=\"token operator\">+</span> <span class=\"token number\">3</span><span class=\"token punctuation\">]</span> <span class=\"token operator\">=</span> <span class=\"token number\">255</span>\n <span class=\"token punctuation\">}</span>\n<span class=\"token punctuation\">}</span>\n</code></pre></div>\n<p>位图文件格式有 bmp、jpeg、png、webp 以及最近的 <a href=\"https://github.com/phoboslab/qoi\">qoi</a> 等。</p>\n<p>矢量图是计算机图形学中用点、线或者多边形等基于数学方程的几何图元表示的图像。矢量图保存的是对于图案内容的抽象描述,而不是具体的每个像素的颜色信息。</p>\n<p>例如下面的 svg 图案声明了一个由三个坐标分别为 <code>(0.1, 0.1)</code>、<code>(0.9, 0.3)</code>、<code>(0.4, 0.9)</code> 的点组成的三角形,并将其填充为 <code>rgba(144,166,179,1)</code> 这个颜色。</p>\n<div class=\"remark-highlight\"><pre class=\"language-jsx\"><code class=\"language-jsx\"><span class=\"token tag\"><span class=\"token tag\"><span class=\"token punctuation\">&#x3C;</span>svg</span> <span class=\"token special-attr\"><span class=\"token attr-name\">style</span><span class=\"token attr-value\"><span class=\"token punctuation attr-equals\">=</span><span class=\"token punctuation\">\"</span><span class=\"token value css language-css\"><span class=\"token property\">width</span><span class=\"token punctuation\">:</span> <span class=\"token number\">256</span><span class=\"token unit\">px</span><span class=\"token punctuation\">;</span> <span class=\"token property\">height</span><span class=\"token punctuation\">:</span> <span class=\"token number\">256</span><span class=\"token unit\">px</span></span><span class=\"token punctuation\">\"</span></span></span> <span class=\"token attr-name\">viewBox</span><span class=\"token attr-value\"><span class=\"token punctuation attr-equals\">=</span><span class=\"token punctuation\">\"</span>0 0 1 1<span class=\"token punctuation\">\"</span></span><span class=\"token punctuation\">></span></span><span class=\"token plain-text\"></span>\n<span class=\"token plain-text\"> </span><span class=\"token tag\"><span class=\"token tag\"><span class=\"token punctuation\">&#x3C;</span>path</span> <span class=\"token attr-name\">d</span><span class=\"token attr-value\"><span class=\"token punctuation attr-equals\">=</span><span class=\"token punctuation\">\"</span>M0.1 0.1L0.9 0.3L0.4 0.9z<span class=\"token punctuation\">\"</span></span> <span class=\"token attr-name\">fill</span><span class=\"token attr-value\"><span class=\"token punctuation attr-equals\">=</span><span class=\"token punctuation\">\"</span>rgba(144,166,179,1)<span class=\"token punctuation\">\"</span></span><span class=\"token punctuation\">></span></span><span class=\"token tag\"><span class=\"token tag\"><span class=\"token punctuation\">&#x3C;/</span>path</span><span class=\"token punctuation\">></span></span><span class=\"token plain-text\"></span>\n<span class=\"token plain-text\"></span><span class=\"token tag\"><span class=\"token tag\"><span class=\"token punctuation\">&#x3C;/</span>svg</span><span class=\"token punctuation\">></span></span>\n</code></pre></div>\n<p>矢量图文件除了 svg 外,还有 <a href=\"https://github.com/google/iconvg\">iconvg</a> 及 <a href=\"https://tinyvg.tech/\">tinyVG</a> 等。</p>\n<p>光栅化(Rasterization)就是将矢量图数据转换为位图数据的过程。</p>\n<p>下图展示了将前面 svg 示例中描述的三角形光栅化到画布上的结果,\n从左到右、从上到下分别是 16*16 分辨率、32*32 分辨率、64*64 分辨率、128*128 分辨率、256*256 分辨率和抗锯齿处理后的 256*256 分辨率。</p>\n<p><img src=\"/img/triangle-rasterization.png\" alt=\"rasterization\"></p>\n<p>最后一张是直接使用 SVG 标签展示的,由浏览器内部进行光栅化和抗锯齿处理。</p>\n<h2>字体文件及渲染</h2>\n<p>字体文件格式主要有 TTF、OTF 和 WOFF/WOFF2</p>\n<p>OTF 为 TTF 的扩展,而 WOFF 是一种包裹格式,主要提供了数据压缩。</p>\n<p>字体文件中数据使用大端序存储(RIFF 为小端序)。</p>\n<p>字体文件既支持位图字形,也支持矢量字形。</p>\n<p>文件内部分为多个 table,每个 table 用一个 tag 标识类型,比如 <code>camp</code> table 用于保存字符编码到字形的映射,<code>glyf</code> table 用于保存具体的矢量字形信息。</p>\n<p>微软的字体文件格式声明文档:<a href=\"https://docs.microsoft.com/en-us/typography/opentype/spec/otff\">The OpenType Font File</a></p>\n<p>字体文件编辑:<a href=\"https://fontforge.org/en-US/\">FontForge</a></p>\n<p>裁剪字体文件、单独编辑某个字形或者用于创建 iconfont(在 0xE000 ~ 0xF8FF 范围内)。</p>\n<p>渲染字体的主要工作就是从字体文件中读取每个文字的字形并将其光栅化,具体实践可以参考 Evan Wallace 的这篇 <a href=\"https://medium.com/@evanwallace/easy-scalable-text-rendering-on-the-gpu-c3f4d782c5ac#.z5mtsrx99\">Easy Scalable Text Rendering on the GPU</a></p>\n<h2>SDF 和字体渲染</h2>\n<p>SDF(signed distance field, 有向距离场), 场中每个坐标对应一个到物体表面的最近距离,如果坐标点在物体内部则距离为负。</p>\n<p>Inigo Quilez 收集的<a href=\"https://iquilezles.org/www/articles/distfunctions2d/distfunctions2d.htm\">2D 距离函数</a></p>\n<p>Valve 在 2007 年的 siggraph 上提出了使用距离场渲染文字的方法:\n<a href=\"https://steamcdn-a.akamaihd.net/apps/valve/2007/SIGGRAPH2007_AlphaTestedMagnification.pdf\">Improved Alpha-Tested Magnification for Vector Textures and Special Effects</a></p>\n<p>此方法预先从高分辨率的字体纹理中生成低分辨率的距离场纹理,然后使用距离场纹理通过 alpha-test 和 smoothstep 渲染字体。\n这种方法在 3d 场景实时渲染中更高效,且轮廓和阴影等效果的实现都很方便。</p>\n<p>利用多通道 sdf 还能实现字体的锐利的角的展示,相关工具: <a href=\"https://github.com/Chlumsky/msdfgen\">msdfgen</a></p>"},"prev":{"slug":"cg","title":"我理解的计算机图形学","date":1576752180000},"next":{"slug":"generate-pixel-font-from-pcf-file","title":"从PCF字体文件生成矢量像素字体","date":1650882180000}},"__N_SSG":true}
{"artist": "Fuckpony", "timestamp": "2011-08-11 03:33:58.392852", "similars": [], "tags": [["electronic", "100"], ["techno", "100"], ["minimal", "100"], ["minimal house", "100"], ["get physical", "100"], ["fuckpony", "100"], ["I never listened to this", "100"]], "track_id": "TRLTBYV128F14AA5F9", "title": "Intro"}
{ "version" : "volume-featured-v1", "stocks" : [ { "name":"한진칼", "id":"180640", "volumeInc":"2.38", "price":"32400", "priceInc":"6.40" }, { "name":"SK가스", "id":"018670", "volumeInc":"2.10", "price":"72700", "priceInc":"1.96" }, { "name":"현대홈쇼핑", "id":"057050", "volumeInc":"1.83", "price":"105500", "priceInc":"1.93" }, { "name":"LG하우시스", "id":"108670", "volumeInc":"1.83", "price":"57400", "priceInc":"2.87" }, { "name":"삼성카드", "id":"029780", "volumeInc":"1.81", "price":"35500", "priceInc":"0.42" }, { "name":"동원F&B", "id":"049770", "volumeInc":"1.66", "price":"279000", "priceInc":"5.28" }, { "name":"부광약품", "id":"003000", "volumeInc":"1.64", "price":"28800", "priceInc":"1.77" }, { "name":"KCC", "id":"002380", "volumeInc":"1.60", "price":"312500", "priceInc":"3.48" }, { "name":"한화", "id":"000880", "volumeInc":"1.60", "price":"32850", "priceInc":"1.55" } ] }
{"Salem": {"Oregon Business Development Department": "Oregon Business Development Department is an agency of the government of the U.S. state of Oregon,also known as Business Oregon, providing support of economic and community development and cultural enhancement through administration of a variety of programs of incentives, financial support, and technical assistance to businesses, nonprofit organizations and community groups, industries, and local and regional governments and districts.\nIt is governed by a nine-member commission, appointed by the governor, which guides department policies and strategies to implement its mission: to create, retain, expand and attract businesses that provide sustainable, living wage jobs for Oregonians through public-private partnerships, leveraged funding and support of economic opportunities for Oregon companies and entrepreneurs.\nIn addition, the Oregon Arts Commission receives administrative support from the agency, and the semi-privatized Oregon Film and Video Office receives direct monetary support."}}
[{"pid":0,"ph":"i","name":"Memory sample","ts":1526413966576000,"args":{"JVM stats":"heap_memory_usage: 84721608\nnon_heap_memory_usage: 144866632\nloaded_class_count: 15839\nthread_count: 24\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 1\n gc_time: 39\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413966756000,"args":{"JVM stats":"heap_memory_usage: 95814024\nnon_heap_memory_usage: 145071536\nloaded_class_count: 15850\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413966937000,"args":{"JVM stats":"heap_memory_usage: 103914904\nnon_heap_memory_usage: 145093384\nloaded_class_count: 15852\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413966960000,"args":{"JVM stats":"heap_memory_usage: 104249464\nnon_heap_memory_usage: 145099080\nloaded_class_count: 15852\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413966979000,"args":{"JVM stats":"heap_memory_usage: 104583960\nnon_heap_memory_usage: 145102168\nloaded_class_count: 15852\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413966991000,"args":{"JVM stats":"heap_memory_usage: 104751176\nnon_heap_memory_usage: 145115992\nloaded_class_count: 15852\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413966999000,"args":{"JVM stats":"heap_memory_usage: 104751176\nnon_heap_memory_usage: 145117616\nloaded_class_count: 15852\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413967002000,"args":{"JVM stats":"heap_memory_usage: 104751176\nnon_heap_memory_usage: 145117648\nloaded_class_count: 15852\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413967007000,"args":{"JVM stats":"heap_memory_usage: 104918392\nnon_heap_memory_usage: 145117648\nloaded_class_count: 15852\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413967009000,"args":{"JVM stats":"heap_memory_usage: 104918392\nnon_heap_memory_usage: 145117648\nloaded_class_count: 15852\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413968629000,"args":{"JVM stats":"heap_memory_usage: 140306272\nnon_heap_memory_usage: 145530872\nloaded_class_count: 15852\nthread_count: 29\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413968636000,"args":{"JVM stats":"heap_memory_usage: 141422392\nnon_heap_memory_usage: 145540024\nloaded_class_count: 15855\nthread_count: 29\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413968730000,"args":{"JVM stats":"heap_memory_usage: 149082528\nnon_heap_memory_usage: 145612400\nloaded_class_count: 15862\nthread_count: 29\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413968735000,"args":{"JVM stats":"heap_memory_usage: 149257968\nnon_heap_memory_usage: 145625840\nloaded_class_count: 15862\nthread_count: 29\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413974798000,"args":{"JVM stats":"heap_memory_usage: 167956496\nnon_heap_memory_usage: 145818200\nloaded_class_count: 15862\nthread_count: 29\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413974799000,"args":{"JVM stats":"heap_memory_usage: 168022048\nnon_heap_memory_usage: 145817752\nloaded_class_count: 15862\nthread_count: 29\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413974895000,"args":{"JVM stats":"heap_memory_usage: 172650808\nnon_heap_memory_usage: 145875240\nloaded_class_count: 15862\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413974930000,"args":{"JVM stats":"heap_memory_usage: 173976144\nnon_heap_memory_usage: 145915472\nloaded_class_count: 15865\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413975052000,"args":{"JVM stats":"heap_memory_usage: 176052904\nnon_heap_memory_usage: 145988888\nloaded_class_count: 15868\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413975082000,"args":{"JVM stats":"heap_memory_usage: 177721056\nnon_heap_memory_usage: 146023712\nloaded_class_count: 15879\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413975088000,"args":{"JVM stats":"heap_memory_usage: 177721056\nnon_heap_memory_usage: 146049000\nloaded_class_count: 15888\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413975092000,"args":{"JVM stats":"heap_memory_usage: 177721056\nnon_heap_memory_usage: 146051360\nloaded_class_count: 15889\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413975093000,"args":{"JVM stats":"heap_memory_usage: 177721056\nnon_heap_memory_usage: 146051360\nloaded_class_count: 15889\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413975317000,"args":{"JVM stats":"heap_memory_usage: 180205336\nnon_heap_memory_usage: 146097920\nloaded_class_count: 15899\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413975320000,"args":{"JVM stats":"heap_memory_usage: 180205336\nnon_heap_memory_usage: 146093248\nloaded_class_count: 15899\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413975404000,"args":{"JVM stats":"heap_memory_usage: 183191232\nnon_heap_memory_usage: 146130344\nloaded_class_count: 15899\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413975405000,"args":{"JVM stats":"heap_memory_usage: 183191232\nnon_heap_memory_usage: 146130344\nloaded_class_count: 15899\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413975409000,"args":{"JVM stats":"heap_memory_usage: 183191232\nnon_heap_memory_usage: 146130344\nloaded_class_count: 15899\nthread_count: 28\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":0,"ph":"i","name":"Memory sample","ts":1526413975431000,"args":{"JVM stats":"heap_memory_usage: 183191232\nnon_heap_memory_usage: 146139936\nloaded_class_count: 15900\nthread_count: 24\ngarbage_collection_stats {\n name: \"PS Scavenge\"\n gc_collections: 0\n gc_time: 0\n}\ngarbage_collection_stats {\n name: \"PS MarkSweep\"\n gc_collections: 0\n gc_time: 0\n}\n"}},{"pid":1,"tid":6,"id":2,"name":"base plugin project configure","args":{"span_id":"2","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n"},"ph":"X","ts":1526413966577000,"dur":7000},{"pid":1,"tid":6,"id":3,"name":"base plugin project base extension creation","args":{"span_id":"3","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n"},"ph":"X","ts":1526413966584000,"dur":7000},{"pid":1,"tid":6,"id":5,"name":"task manager create tasks","args":{"span_id":"5","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n"},"ph":"X","ts":1526413966591000,"dur":2000},{"pid":1,"tid":6,"id":4,"name":"base plugin project tasks creation","args":{"span_id":"4","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n"},"ph":"X","ts":1526413966591000,"dur":2000},{"pid":1,"tid":6,"id":8,"name":"variant manager create variants","args":{"span_id":"8","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n"},"ph":"X","ts":1526413966661000,"dur":9000},{"pid":1,"tid":6,"id":9,"name":"variant manager create tests tasks","args":{"span_id":"9","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n"},"ph":"X","ts":1526413966670000,"dur":1000},{"pid":1,"tid":6,"id":11,"name":"app task manager create merge manifest task","args":{"span_id":"11","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966673000,"dur":1000},{"pid":1,"tid":6,"id":12,"name":"app task manager create generate res values task","args":{"span_id":"12","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966674000,"dur":100},{"pid":1,"tid":6,"id":13,"name":"app task manager create create renderscript task","args":{"span_id":"13","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966674000,"dur":1000},{"pid":1,"tid":6,"id":14,"name":"app task manager create merge resources task","args":{"span_id":"14","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966675000,"dur":100},{"pid":1,"tid":6,"id":15,"name":"app task manager create merge assets task","args":{"span_id":"15","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966675000,"dur":1000},{"pid":1,"tid":6,"id":16,"name":"app task manager create build config task","args":{"span_id":"16","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966676000,"dur":100},{"pid":1,"tid":6,"id":17,"name":"app task manager create process res task","args":{"span_id":"17","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966676000,"dur":4000},{"pid":1,"tid":6,"id":18,"name":"app task manager create aidl task","args":{"span_id":"18","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966680000,"dur":100},{"pid":1,"tid":6,"id":19,"name":"app task manager create shader task","args":{"span_id":"19","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966680000,"dur":100},{"pid":1,"tid":6,"id":20,"name":"app task manager create ndk task","args":{"span_id":"20","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966680000,"dur":1000},{"pid":1,"tid":6,"id":21,"name":"app task manager create external native build task","args":{"span_id":"21","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966681000,"dur":100},{"pid":1,"tid":6,"id":22,"name":"app task manager create merge jnilibs folders task","args":{"span_id":"22","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966681000,"dur":1000},{"pid":1,"tid":6,"id":23,"name":"app task manager create compile task","args":{"span_id":"23","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966682000,"dur":3000},{"pid":1,"tid":6,"id":24,"name":"app task manager create packaging task","args":{"span_id":"24","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966685000,"dur":2000},{"pid":1,"tid":6,"id":25,"name":"app task manager create lint task","args":{"span_id":"25","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966687000,"dur":100},{"pid":1,"tid":6,"id":10,"name":"variant manager create tasks for variant","args":{"span_id":"10","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966671000,"dur":16000},{"pid":1,"tid":6,"id":26,"name":"variant manager create tasks for variant","args":{"span_id":"26","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n"},"ph":"X","ts":1526413966687000,"dur":6000},{"pid":1,"tid":6,"id":28,"name":"app task manager create merge manifest task","args":{"span_id":"28","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 2\nis_debug: false\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966694000,"dur":100},{"pid":1,"tid":6,"id":29,"name":"app task manager create generate res values task","args":{"span_id":"29","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 2\nis_debug: false\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966694000,"dur":100},{"pid":1,"tid":6,"id":30,"name":"app task manager create create renderscript task","args":{"span_id":"30","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 2\nis_debug: false\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966694000,"dur":100},{"pid":1,"tid":6,"id":31,"name":"app task manager create merge resources task","args":{"span_id":"31","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 2\nis_debug: false\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966694000,"dur":100},{"pid":1,"tid":6,"id":32,"name":"app task manager create merge assets task","args":{"span_id":"32","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 2\nis_debug: false\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966694000,"dur":100},{"pid":1,"tid":6,"id":33,"name":"app task manager create build config task","args":{"span_id":"33","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 2\nis_debug: false\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966694000,"dur":100},{"pid":1,"tid":6,"id":34,"name":"app task manager create process res task","args":{"span_id":"34","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 2\nis_debug: false\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966694000,"dur":2000},{"pid":1,"tid":6,"id":35,"name":"app task manager create aidl task","args":{"span_id":"35","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 2\nis_debug: false\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966696000,"dur":1000},{"pid":1,"tid":6,"id":36,"name":"app task manager create shader task","args":{"span_id":"36","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 2\nis_debug: false\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966697000,"dur":100},{"pid":1,"tid":6,"id":37,"name":"app task manager create ndk task","args":{"span_id":"37","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 2\nis_debug: false\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966697000,"dur":100},{"pid":1,"tid":6,"id":38,"name":"app task manager create external native build task","args":{"span_id":"38","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 2\nis_debug: false\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966697000,"dur":100},{"pid":1,"tid":6,"id":39,"name":"app task manager create merge jnilibs folders task","args":{"span_id":"39","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 2\nis_debug: false\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966697000,"dur":1000},{"pid":1,"tid":6,"id":40,"name":"app task manager create compile task","args":{"span_id":"40","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 2\nis_debug: false\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966698000,"dur":2000},{"pid":1,"tid":6,"id":41,"name":"app task manager create packaging task","args":{"span_id":"41","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 2\nis_debug: false\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966700000,"dur":2000},{"pid":1,"tid":6,"id":42,"name":"app task manager create lint task","args":{"span_id":"42","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 2\nis_debug: false\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966702000,"dur":1000},{"pid":1,"tid":6,"id":27,"name":"variant manager create tasks for variant","args":{"span_id":"27","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 2\nis_debug: false\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n"},"ph":"X","ts":1526413966693000,"dur":10000},{"pid":1,"tid":6,"id":43,"name":"variant manager create tasks for variant","args":{"span_id":"43","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n"},"ph":"X","ts":1526413966703000,"dur":5000},{"pid":1,"tid":6,"id":44,"name":"variant manager create tasks for variant","args":{"span_id":"44","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n"},"ph":"X","ts":1526413966708000,"dur":21000},{"pid":1,"tid":6,"id":7,"name":"variant manager create android tasks","args":{"span_id":"7","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n"},"ph":"X","ts":1526413966661000,"dur":69000},{"pid":1,"tid":6,"id":45,"name":"variant manager external native config values","args":{"span_id":"45","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n"},"ph":"X","ts":1526413966731000,"dur":100},{"pid":1,"tid":6,"id":6,"name":"base plugin create android tasks","args":{"span_id":"6","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n"},"ph":"X","ts":1526413966596000,"dur":135000},{"pid":1,"tid":0,"id":46,"name":"task: unknown task type","args":{"span_id":"46","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","task":"type: 0\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413966755000,"dur":100},{"pid":1,"tid":0,"id":47,"name":"task: app pre build","args":{"span_id":"47","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n","task":"type: 92\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413966760000,"dur":176000},{"pid":1,"tid":0,"id":48,"name":"task: aidl compile","args":{"span_id":"48","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n","task":"type: 1\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413966941000,"dur":19000},{"pid":1,"tid":0,"id":49,"name":"task: renderscript compile","args":{"span_id":"49","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n","task":"type: 54\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413966968000,"dur":11000},{"pid":1,"tid":0,"id":50,"name":"task: check manifest","args":{"span_id":"50","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n","task":"type: 8\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413966989000,"dur":2000},{"pid":1,"tid":0,"id":51,"name":"task: generate build config","args":{"span_id":"51","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n","task":"type: 24\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413966994000,"dur":5000},{"pid":1,"tid":0,"id":52,"name":"task: prepare lint jar","args":{"span_id":"52","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","task":"type: 119\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413967000000,"dur":2000},{"pid":1,"tid":0,"id":53,"name":"task: generate res values","args":{"span_id":"53","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n","task":"type: 26\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413967005000,"dur":2000},{"pid":1,"tid":0,"id":54,"name":"task: unknown task type","args":{"span_id":"54","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","task":"type: 0\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413967008000,"dur":1000},{"pid":1,"tid":0,"id":55,"name":"task: merge resources","args":{"span_id":"55","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n","task":"type: 40\ndid_work: true\nskipped: false\nup_to_date: false\nfailed: false\n"},"ph":"X","ts":1526413967016000,"dur":1613000},{"pid":1,"tid":0,"id":56,"name":"task: compatible screens manifest","args":{"span_id":"56","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n","task":"type: 9\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413968631000,"dur":5000},{"pid":1,"tid":0,"id":57,"name":"task: merge manifests","args":{"span_id":"57","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n","task":"type: 39\ndid_work: true\nskipped: false\nup_to_date: false\nfailed: false\n"},"ph":"X","ts":1526413968640000,"dur":90000},{"pid":1,"tid":0,"id":58,"name":"task: splits discovery","args":{"span_id":"58","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n","task":"type: 87\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413968733000,"dur":2000},{"pid":1,"tid":0,"id":59,"name":"task: process android resources","args":{"span_id":"59","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","variant":"id: 1\nis_debug: true\nminify_enabled: false\nuse_multidex: false\nuse_legacy_multidex: false\nvariant_type: APPLICATION\nmin_sdk_version {\n api_level: 15\n}\ntarget_sdk_version {\n api_level: 26\n}\ndex_builder: DX_DEXER\ndex_merger: DX_MERGER\n","task":"type: 51\ndid_work: true\nskipped: false\nup_to_date: false\nfailed: false\n"},"ph":"X","ts":1526413968743000,"dur":6055000},{"pid":1,"tid":0,"id":60,"name":"task: unknown task type","args":{"span_id":"60","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","task":"type: 0\ndid_work: false\nskipped: false\nup_to_date: false\nfailed: false\n"},"ph":"X","ts":1526413974799000,"dur":100},{"pid":1,"tid":0,"id":61,"name":"task: test pre build","args":{"span_id":"61","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","task":"type: 93\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413974804000,"dur":91000},{"pid":1,"tid":0,"id":62,"name":"task: aidl compile","args":{"span_id":"62","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","task":"type: 1\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413974914000,"dur":16000},{"pid":1,"tid":0,"id":63,"name":"task: process test manifest","args":{"span_id":"63","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","task":"type: 53\ndid_work: true\nskipped: false\nup_to_date: false\nfailed: false\n"},"ph":"X","ts":1526413974933000,"dur":119000},{"pid":1,"tid":0,"id":64,"name":"task: renderscript compile","args":{"span_id":"64","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","task":"type: 54\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413975069000,"dur":12000},{"pid":1,"tid":0,"id":65,"name":"task: generate build config","args":{"span_id":"65","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","task":"type: 24\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413975083000,"dur":5000},{"pid":1,"tid":0,"id":66,"name":"task: generate res values","args":{"span_id":"66","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","task":"type: 26\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413975090000,"dur":2000},{"pid":1,"tid":0,"id":67,"name":"task: unknown task type","args":{"span_id":"67","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","task":"type: 0\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413975092000,"dur":100},{"pid":1,"tid":0,"id":68,"name":"task: merge resources","args":{"span_id":"68","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","task":"type: 40\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413975100000,"dur":216000},{"pid":1,"tid":0,"id":69,"name":"task: splits discovery","args":{"span_id":"69","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","task":"type: 87\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413975319000,"dur":1000},{"pid":1,"tid":0,"id":70,"name":"task: process android resources","args":{"span_id":"70","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","task":"type: 51\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413975329000,"dur":75000},{"pid":1,"tid":0,"id":71,"name":"task: unknown task type","args":{"span_id":"71","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","task":"type: 0\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413975404000,"dur":1000},{"pid":1,"tid":0,"id":72,"name":"task: mockable android jar","args":{"span_id":"72","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n","task":"type: 42\ndid_work: false\nskipped: true\nup_to_date: true\nfailed: false\n"},"ph":"X","ts":1526413975408000,"dur":1000},{"pid":1,"tid":6,"id":73,"name":"base plugin build finished","args":{"span_id":"73","project":"id: 1\nandroid_plugin_version: \"3.0.1\"\nandroid_plugin: APPLICATION\nplugin_generation: FIRST\nbuild_tools_version: \"26.0.2\"\ncompile_sdk: \"android-26\"\nsplits {\n}\n"},"ph":"X","ts":1526413975411000,"dur":1000}]
{"comment": "0", "idNoticia": "23303", "tags": [], "url": "http://www.valor.com.br/arquivo/563051/mercados-bovespa-sobe-024-em-dia-de-recuperacao-dolar-declina-033-para-r-1773 ", "autor": " Valor Online", "titulo": "Mercados: Bovespa sobe 0,24% em dia de recuperação; dólar declina 0,33%, para R$ 1,773", "corpo": "SÃO PAULO - A Bolsa de Valores de São Paulo (Bovespa) registra certa volatilidade em um pregão de baixo giro financeiro e reduzido número de negócios devido ao feriado do Dia de Ação de Graças nos Estados Unidos. Por volta das 13 horas, o Ibovespa aumentava 0,24%, para 60.725 pontos, depois de chegar a cair 0,75% no período da manhã. O giro financeiro estava em R$ 821 milhões, cerca de duas vezes menor que o registrado ontem para este período do dia. Os negócios com o dólar mantêm um sustentado porém pouco expressivo movimento de baixa. A falta de referencial externo também reduzir a liquidez da sessão. Há pouco, a moeda era transacionada a R$ 1,773 na venda, com queda de 0,33%. Para o sócio da MH Advisers Marcelo Chakmati, a Bovespa ensaia uma breve recuperação depois das acentuadas quedas da semana. Em dois pregões, o índice perdeu mais de 6%. \" E não dá para dizer que o mercado vá se recuperar rápido. \" Segundo o especialista, as notícias de subprime, o difamado sistema de crédito hipotecário de alto risco norte-americano, vem mostrando que a situação é bastante complicada. O ponto positivo, segundo ele, é que os bancos e instituições financeiras estão apresentando o tamanho das perdas relacionadas. No entanto, isso também confirma que a questão subprime é um problema disseminado, que afeta outras regiões do mundo. Uma indicação clara disso é o prejuízo de bancos na Europa e no Japão. Chakmati comentou que a Bovespa segue volátil e os investidores bastante apreensivos com relação às notícias provenientes de fora do Brasil. \" A tendência está completamente indefinida. \" Segurando o índice em território positivo, a ação PN da Petrobras avançava 0,61%, para R$ 76,32. O papel PNA da Vale ganhava 0,51%, para R$ 48,85. Ainda dentro do índice, destaque para o papel PNB da Eletropaulo, que apresentava valorização de 5,23%, para R$ 135,96. Alta de 1,8% para Sabesp ON, que era negociada a R$ 45,30, e Telesp ON ganhava 1,17%, para R$ 49,20. Na ponta oposta, Transmissão Paulista PN caía 2,34%, para R$ 39,50, e Eletrobrás ON recuava 2,33%, para R$ 25,15. O papel ON da Natural cedia 1,87%, para R$ 17,80. Depois de cair mais de 7% no pregão de ontem, a ação ON do Banco do Brasil (BB) subia 1,92%, para R$ 25,40. Ainda entre os bancos, que registraram acentuadas perdas ontem, o Unibanco ganhava 0,70%, para R$ 24,16. O Itaú PN avançava 0,71%, para R$ 42,15. (Eduardo Campos | Valor Online)", "data": "2007-11-22 13:10:00"}
{ "first_traded_price": 8.6e3, "highest_price": 8858.0, "isin": "IRO3NOLZ0001", "last_traded_price": 8858.0, "lowest_price": 8.6e3, "trade_volume": 748267.0, "unix_time": 1553904000 }
{ "About Us Team Member": "Chi Siamo Membri Team", "Bio": "Bio", "Full Name": "Nome Completo", "Image Link": "Immagine link", "Website": "Sito" }
{"name":"whirl","subject":null,"date":"1912010-014602","paths":{"Pen":{"strokes":[{"x":-1448,"y":-587,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":0,"stroke_id":0},{"x":-1448,"y":-587,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":1,"stroke_id":0},{"x":-1435,"y":-583,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":2,"stroke_id":0},{"x":-1418,"y":-578,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":3,"stroke_id":0},{"x":-1403,"y":-586,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":4,"stroke_id":0},{"x":-1365,"y":-584,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":5,"stroke_id":0},{"x":-1325,"y":-596,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":6,"stroke_id":0},{"x":-1260,"y":-598,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":7,"stroke_id":0},{"x":-1191,"y":-615,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":8,"stroke_id":0},{"x":-1097,"y":-623,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":9,"stroke_id":0},{"x":-991,"y":-640,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":10,"stroke_id":0},{"x":-865,"y":-656,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":11,"stroke_id":0},{"x":-727,"y":-672,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":12,"stroke_id":0},{"x":-575,"y":-684,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":13,"stroke_id":0},{"x":-420,"y":-698,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":14,"stroke_id":0},{"x":-260,"y":-709,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":15,"stroke_id":0},{"x":-107,"y":-715,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":16,"stroke_id":0},{"x":38,"y":-721,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":17,"stroke_id":0},{"x":170,"y":-723,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":18,"stroke_id":0},{"x":280,"y":-722,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":19,"stroke_id":0},{"x":369,"y":-722,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":20,"stroke_id":0},{"x":434,"y":-715,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":21,"stroke_id":0},{"x":476,"y":-709,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":22,"stroke_id":0},{"x":487,"y":-694,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":23,"stroke_id":0},{"x":473,"y":-677,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":24,"stroke_id":0},{"x":431,"y":-652,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":25,"stroke_id":0},{"x":364,"y":-623,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":26,"stroke_id":0},{"x":275,"y":-587,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":27,"stroke_id":0},{"x":165,"y":-543,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":28,"stroke_id":0},{"x":41,"y":-495,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":29,"stroke_id":0},{"x":-98,"y":-442,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":30,"stroke_id":0},{"x":-241,"y":-390,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":31,"stroke_id":0},{"x":-381,"y":-342,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":32,"stroke_id":0},{"x":-510,"y":-296,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":33,"stroke_id":0},{"x":-626,"y":-257,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":34,"stroke_id":0},{"x":-726,"y":-223,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":35,"stroke_id":0},{"x":-805,"y":-200,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":36,"stroke_id":0},{"x":-866,"y":-184,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":37,"stroke_id":0},{"x":-901,"y":-180,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":38,"stroke_id":0},{"x":-912,"y":-183,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":39,"stroke_id":0},{"x":-912,"y":-183,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":40,"stroke_id":0},{"x":-871,"y":-208,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":41,"stroke_id":0},{"x":-825,"y":-229,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":42,"stroke_id":0},{"x":-761,"y":-254,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":43,"stroke_id":0},{"x":-685,"y":-279,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":44,"stroke_id":0},{"x":-596,"y":-305,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":45,"stroke_id":0},{"x":-499,"y":-332,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":46,"stroke_id":0},{"x":-395,"y":-352,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":47,"stroke_id":0},{"x":-287,"y":-370,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":48,"stroke_id":0},{"x":-174,"y":-385,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":49,"stroke_id":0},{"x":-63,"y":-396,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":50,"stroke_id":0},{"x":44,"y":-402,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":51,"stroke_id":0},{"x":139,"y":-406,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":52,"stroke_id":0},{"x":228,"y":-407,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":53,"stroke_id":0},{"x":301,"y":-403,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":54,"stroke_id":0},{"x":360,"y":-400,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":55,"stroke_id":0},{"x":402,"y":-391,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":56,"stroke_id":0},{"x":419,"y":-377,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":57,"stroke_id":0},{"x":413,"y":-358,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":58,"stroke_id":0},{"x":382,"y":-336,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":59,"stroke_id":0},{"x":336,"y":-309,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":60,"stroke_id":0},{"x":263,"y":-277,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":61,"stroke_id":0},{"x":174,"y":-239,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":62,"stroke_id":0},{"x":67,"y":-202,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":63,"stroke_id":0},{"x":-58,"y":-161,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":64,"stroke_id":0},{"x":-189,"y":-121,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":65,"stroke_id":0},{"x":-323,"y":-84,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":66,"stroke_id":0},{"x":-451,"y":-49,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":67,"stroke_id":0},{"x":-571,"y":-19,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":68,"stroke_id":0},{"x":-677,"y":6,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":69,"stroke_id":0},{"x":-766,"y":26,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":70,"stroke_id":0},{"x":-836,"y":40,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":71,"stroke_id":0},{"x":-881,"y":46,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":72,"stroke_id":0},{"x":-901,"y":46,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":73,"stroke_id":0},{"x":-901,"y":46,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":74,"stroke_id":0},{"x":-872,"y":27,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":75,"stroke_id":0},{"x":-824,"y":9,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":76,"stroke_id":0},{"x":-753,"y":-13,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":77,"stroke_id":0},{"x":-667,"y":-37,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":78,"stroke_id":0},{"x":-564,"y":-64,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":79,"stroke_id":0},{"x":-451,"y":-88,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":80,"stroke_id":0},{"x":-330,"y":-113,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":81,"stroke_id":0},{"x":-201,"y":-135,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":82,"stroke_id":0},{"x":-74,"y":-151,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":83,"stroke_id":0},{"x":46,"y":-164,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":84,"stroke_id":0},{"x":151,"y":-172,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":85,"stroke_id":0},{"x":246,"y":-177,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":86,"stroke_id":0},{"x":319,"y":-176,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":87,"stroke_id":0},{"x":373,"y":-172,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":88,"stroke_id":0},{"x":398,"y":-159,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":89,"stroke_id":0},{"x":390,"y":-138,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":90,"stroke_id":0},{"x":348,"y":-107,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":91,"stroke_id":0},{"x":279,"y":-68,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":92,"stroke_id":0},{"x":181,"y":-21,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":93,"stroke_id":0},{"x":57,"y":37,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":94,"stroke_id":0},{"x":-88,"y":99,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":95,"stroke_id":0},{"x":-242,"y":164,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":96,"stroke_id":0},{"x":-400,"y":229,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":97,"stroke_id":0},{"x":-551,"y":289,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":98,"stroke_id":0},{"x":-686,"y":341,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":99,"stroke_id":0},{"x":-802,"y":384,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":100,"stroke_id":0},{"x":-893,"y":417,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":101,"stroke_id":0},{"x":-958,"y":438,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":102,"stroke_id":0},{"x":-989,"y":443,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":103,"stroke_id":0},{"x":-989,"y":443,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":104,"stroke_id":0},{"x":-958,"y":420,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":105,"stroke_id":0},{"x":-902,"y":395,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":106,"stroke_id":0},{"x":-818,"y":364,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":107,"stroke_id":0},{"x":-716,"y":333,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":108,"stroke_id":0},{"x":-593,"y":299,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":109,"stroke_id":0},{"x":-453,"y":268,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":110,"stroke_id":0},{"x":-303,"y":245,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":111,"stroke_id":0},{"x":-152,"y":232,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":112,"stroke_id":0},{"x":-8,"y":227,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":113,"stroke_id":0},{"x":128,"y":232,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":114,"stroke_id":0},{"x":242,"y":245,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":115,"stroke_id":0},{"x":339,"y":264,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":116,"stroke_id":0},{"x":408,"y":297,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":117,"stroke_id":0},{"x":442,"y":338,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":118,"stroke_id":0},{"x":442,"y":382,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":119,"stroke_id":0},{"x":412,"y":438,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":120,"stroke_id":0},{"x":345,"y":497,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":121,"stroke_id":0},{"x":257,"y":559,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":122,"stroke_id":0},{"x":154,"y":621,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":123,"stroke_id":0},{"x":35,"y":680,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":124,"stroke_id":0},{"x":-86,"y":738,"w":null,"z":null,"alpha":null,"beta":null,"gamma":null,"t":125,"stroke_id":0}]}},"device":{"osBrowserInfo":"Fujitsu-Siemens Lenovo X61 Tablet PC","resolutionHeight":null,"resolutionWidth":null,"windowHeight":null,"windowWidth":null,"pixelRatio":null,"mouse":false,"pen":true,"finger":false,"acceleration":false,"webcam":false}}
{"title":"UCL - Celtic v Spartak Moscow 05.12.2012","uid":7895533,"size":1146678733,"categoryP":"video","categoryS":"tv_shows","magnet":"?xt=urn:btih:a6d0b969300e820c3352c143d995319a18c00356&amp;dn=UCL+-+Celtic+v+Spartak+Moscow+05.12.2012&amp;tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&amp;tr=udp%3A%2F%2Fopen.demonii.com%3A1337&amp;tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969&amp;tr=udp%3A%2F%2Fexodus.desync.com%3A6969","seeders":0,"leechers":1,"uploader":"footy","files":2,"time":1354828509,"description":"UCL - Celtic v Spartak Moscow 05.12.2012","torrent":{"xt":"urn:btih:a6d0b969300e820c3352c143d995319a18c00356","amp;dn":"UCL+-+Celtic+v+Spartak+Moscow+05.12.2012","amp;tr":["udp%3A%2F%2Ftracker.openbittorrent.com%3A80","udp%3A%2F%2Fopen.demonii.com%3A1337","udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969","udp%3A%2F%2Fexodus.desync.com%3A6969"],"infoHash":"a6d0b969300e820c3352c143d995319a18c00356","infoHashBuffer":{"type":"Buffer","data":[166,208,185,105,48,14,130,12,51,82,193,67,217,149,49,154,24,192,3,86]},"announce":[],"urlList":[]}}
[{"category":"burglary","location_type":"Force","location":{"latitude":"51.583994","street":{"id":976828,"name":"On or near Owlets Hall Close"},"longitude":"0.232323"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2017-03"},"persistent_id":"e798a72b133c24560d10780c660fa36a6781ffd7e5fc13ad7e558005e1128bd2","id":52911558,"location_subtype":"","month":"2016-11"},{"category":"burglary","location_type":"Force","location":{"latitude":"51.583882","street":{"id":976824,"name":"On or near Prospect Road"},"longitude":"0.234411"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2017-03"},"persistent_id":"b363fe3138255d4e511043eb02a2eef48ce02859e9d27641bd590ee505532e8b","id":52942962,"location_subtype":"","month":"2016-11"},{"category":"burglary","location_type":"Force","location":{"latitude":"51.580887","street":{"id":976812,"name":"On or near Warwick Close"},"longitude":"0.234913"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2017-03"},"persistent_id":"8817d3872a6a1d98c4bce8f9a9fe6a571193e6f829126f6be19cc88e3ccbc9ca","id":52939891,"location_subtype":"","month":"2016-11"},{"category":"burglary","location_type":"Force","location":{"latitude":"51.563050","street":{"id":970385,"name":"On or near Parking Area"},"longitude":"0.233692"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2017-01"},"persistent_id":"0bfd81ee6e291adcee0048704961f6bf92b6af3dbc35882441dead472931d299","id":52908996,"location_subtype":"","month":"2016-11"},{"category":"burglary","location_type":"Force","location":{"latitude":"51.573673","street":{"id":976546,"name":"On or near Maybrick Road"},"longitude":"0.207947"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2017-03"},"persistent_id":"c1e599399d0491f676d368a6975346c926dfb4dff8268f1ccea1084aa4a2187b","id":52927883,"location_subtype":"","month":"2016-11"},{"category":"burglary","location_type":"Force","location":{"latitude":"51.578895","street":{"id":976880,"name":"On or near Banyards"},"longitude":"0.225188"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2017-03"},"persistent_id":"7a28575a37abb6557479bf1adc3981d6321af11177a986622d50e905a638204c","id":52936406,"location_subtype":"","month":"2016-11"},{"category":"other-theft","location_type":"Force","location":{"latitude":"51.578813","street":{"id":976789,"name":"On or near Cornwall Close"},"longitude":"0.240383"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2016-12"},"persistent_id":"f26907b084abd4df020d0f6b7c2685704a4acf8f1c7e46cad4aeffe4a2bd9ddc","id":52941590,"location_subtype":"","month":"2016-11"},{"category":"other-theft","location_type":"Force","location":{"latitude":"51.578473","street":{"id":976790,"name":"On or near Berkshire Way"},"longitude":"0.240756"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2016-11"},"persistent_id":"4f94ad3401f9b02756883f026706465e1bab07c49ecae0346ebbcb1a390e221b","id":52928911,"location_subtype":"","month":"2016-11"},{"category":"other-theft","location_type":"Force","location":{"latitude":"51.569401","street":{"id":976698,"name":"On or near Bourne End"},"longitude":"0.241594"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2017-03"},"persistent_id":"be90a525dfa0fc5dedda428520089e16a8f97f04e6beecf2e0d821dea82a93b8","id":52932334,"location_subtype":"","month":"2016-11"},{"category":"other-theft","location_type":"Force","location":{"latitude":"51.569401","street":{"id":976698,"name":"On or near Bourne End"},"longitude":"0.241594"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2017-03"},"persistent_id":"be90a525dfa0fc5dedda428520089e16a8f97f04e6beecf2e0d821dea82a93b8","id":52932335,"location_subtype":"","month":"2016-11"},{"category":"other-theft","location_type":"Force","location":{"latitude":"51.578813","street":{"id":976789,"name":"On or near Cornwall Close"},"longitude":"0.240383"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2016-11"},"persistent_id":"6ba8c488a7e5210dab2f8f59ebdb82c285ec2bc2da5f81f2b00030b9b32235f3","id":52948582,"location_subtype":"","month":"2016-11"},{"category":"other-theft","location_type":"Force","location":{"latitude":"51.575085","street":{"id":976556,"name":"On or near Hazelmere Gardens"},"longitude":"0.207438"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2017-03"},"persistent_id":"5c92ef767b8fd0d9dcf55741f9d366717b6afe4f3ea46c94e77637932a046834","id":52909078,"location_subtype":"","month":"2016-11"},{"category":"other-theft","location_type":"Force","location":{"latitude":"51.568712","street":{"id":976671,"name":"On or near Butts Green Road"},"longitude":"0.219655"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2016-11"},"persistent_id":"e96be9e7bb52755974f2197077a42fc28b61349ae689a533b63a8312ad02bd97","id":52889095,"location_subtype":"","month":"2016-11"},{"category":"other-theft","location_type":"Force","location":{"latitude":"51.578813","street":{"id":976789,"name":"On or near Cornwall Close"},"longitude":"0.240383"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2016-11"},"persistent_id":"d8c6ffbde1b8c2a3b52df6499c72aeb256264feb388f23b34c19223ebb5ef9af","id":52951082,"location_subtype":"","month":"2016-11"},{"category":"other-theft","location_type":"Force","location":{"latitude":"51.571925","street":{"id":923756,"name":"On or near Ernest Road"},"longitude":"0.229019"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2017-03"},"persistent_id":"3a38e0d4861b10888ecca5abca1a5e369eb300f360845882e3ac52c3192d6451","id":52956820,"location_subtype":"","month":"2016-11"},{"category":"other-theft","location_type":"Force","location":{"latitude":"51.578813","street":{"id":976789,"name":"On or near Cornwall Close"},"longitude":"0.240383"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2016-11"},"persistent_id":"61339a137d0790f98e375714a772b44af8fe063ffe013e2283bc37d04b5ede4e","id":52950549,"location_subtype":"","month":"2016-11"},{"category":"public-order","location_type":"Force","location":{"latitude":"51.583994","street":{"id":976828,"name":"On or near Owlets Hall Close"},"longitude":"0.232323"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2017-03"},"persistent_id":"e17bf0a5fd1139e75cace77e2a4ff32f5f6c4c388b67921d493946becb2cdf29","id":52932739,"location_subtype":"","month":"2016-11"},{"category":"robbery","location_type":"Force","location":{"latitude":"51.575883","street":{"id":976566,"name":"On or near Cavenham Gardens"},"longitude":"0.208502"},"context":"","outcome_status":{"category":"Offender given community sentence","date":"2017-03"},"persistent_id":"cb656c2c42ffb68145af54c9ab4ebb8aab52c5cffa990e852883d1608547cde8","id":52936229,"location_subtype":"","month":"2016-11"},{"category":"shoplifting","location_type":"Force","location":{"latitude":"51.578813","street":{"id":976789,"name":"On or near Cornwall Close"},"longitude":"0.240383"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2016-11"},"persistent_id":"6caf94e092fbf9bbfdec2a78be04a01f9b577d9b96f81cbc5041adcb9943492e","id":52929524,"location_subtype":"","month":"2016-11"},{"category":"shoplifting","location_type":"Force","location":{"latitude":"51.578813","street":{"id":976789,"name":"On or near Cornwall Close"},"longitude":"0.240383"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2016-12"},"persistent_id":"bd9859beb7231eb936eaddb0080e02afeef348451ca4094cc61b6febd4608876","id":52919855,"location_subtype":"","month":"2016-11"},{"category":"shoplifting","location_type":"Force","location":{"latitude":"51.578813","street":{"id":976789,"name":"On or near Cornwall Close"},"longitude":"0.240383"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2016-12"},"persistent_id":"ee14c0beab2e947b1ff9368caa50f0a2ac31e41873acf516458fd0f41863ff67","id":52901676,"location_subtype":"","month":"2016-11"},{"category":"vehicle-crime","location_type":"Force","location":{"latitude":"51.573673","street":{"id":976546,"name":"On or near Maybrick Road"},"longitude":"0.207947"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2017-03"},"persistent_id":"be3c4ea81856305ff0e433a3dbc81d10ea543fd1f5d02a01999ec05bdc12fa54","id":52949296,"location_subtype":"","month":"2016-11"},{"category":"vehicle-crime","location_type":"Force","location":{"latitude":"51.574436","street":{"id":976618,"name":"On or near Hazel Rise"},"longitude":"0.209889"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2017-03"},"persistent_id":"733bc2711634cbe0872259698f4e0cddf9fcafb5dc0038e5f9008d5884d09142","id":52911006,"location_subtype":"","month":"2016-11"},{"category":"vehicle-crime","location_type":"Force","location":{"latitude":"51.568850","street":{"id":976619,"name":"On or near Yevele Way"},"longitude":"0.225232"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2016-12"},"persistent_id":"1c2b8a0877b206b32ede3c82c50a55efff94a8aca848f1c1c7c4527790c5d797","id":52910975,"location_subtype":"","month":"2016-11"},{"category":"vehicle-crime","location_type":"Force","location":{"latitude":"51.577755","street":{"id":976648,"name":"On or near Great Nelmes Chase"},"longitude":"0.232696"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2017-03"},"persistent_id":"823e847b50ee24527682dec9f0d2dc2626d117e79179d5cae9efeda419d159f8","id":52944360,"location_subtype":"","month":"2016-11"},{"category":"vehicle-crime","location_type":"Force","location":{"latitude":"51.571743","street":{"id":976664,"name":"On or near Wykeham Avenue"},"longitude":"0.216801"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2017-03"},"persistent_id":"cc3c47bb7d5ac9e9310a935f52f811ba009de86de40359a9d65626fe49662bc4","id":52950975,"location_subtype":"","month":"2016-11"},{"category":"vehicle-crime","location_type":"Force","location":{"latitude":"51.571274","street":{"id":976672,"name":"On or near Butts Green Road"},"longitude":"0.219231"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2016-12"},"persistent_id":"221ff109357b5759c50d02a26f5b57d825b8db8896c2c4f371f93bd3d23edad3","id":52913984,"location_subtype":"","month":"2016-11"},{"category":"violent-crime","location_type":"Force","location":{"latitude":"51.576578","street":{"id":976659,"name":"On or near Brookside"},"longitude":"0.224570"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2017-05"},"persistent_id":"2ec891773462958dd29ff6eab6d33a7f10d1e765dd84539e6d93c6d4b9b12d5f","id":52945102,"location_subtype":"","month":"2016-11"},{"category":"violent-crime","location_type":"Force","location":{"latitude":"51.573878","street":{"id":976523,"name":"On or near Whitethorn Gardens"},"longitude":"0.213254"},"context":"","outcome_status":{"category":"Offender given conditional discharge","date":"2017-04"},"persistent_id":"ed4684db6cf78616924ffe025ba6e57f8fbe14ee7c2a9db0dd6ba9e86e1ba118","id":52954820,"location_subtype":"","month":"2016-11"},{"category":"violent-crime","location_type":"Force","location":{"latitude":"51.574786","street":{"id":976620,"name":"On or near Woodlands Avenue"},"longitude":"0.222347"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2016-12"},"persistent_id":"f9cf3896a733ed97c770ddf641c7d092b86eeda8018c33e7dbc77657f547c7be","id":52948237,"location_subtype":"","month":"2016-11"},{"category":"violent-crime","location_type":"Force","location":{"latitude":"51.575883","street":{"id":976566,"name":"On or near Cavenham Gardens"},"longitude":"0.208502"},"context":"","outcome_status":{"category":"Offender given a caution","date":"2016-12"},"persistent_id":"f734982b4aebfeac02c4b51a14ca0804c69b95dd7215f13adec0cd7133efdba6","id":52913940,"location_subtype":"","month":"2016-11"},{"category":"violent-crime","location_type":"Force","location":{"latitude":"51.579212","street":{"id":976875,"name":"On or near Oxford Avenue"},"longitude":"0.237400"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2017-01"},"persistent_id":"2d231cd4a3486c0805c2fc3534e2681f93e56282872ee96ff6b11606b0d24305","id":52948497,"location_subtype":"","month":"2016-11"}]
{ "first_traded_price": 4639.0, "highest_price": 4639.0, "isin": "IRO1ASAL0001", "last_traded_price": 4250.0, "lowest_price": 4250.0, "trade_volume": 3607911.0, "unix_time": 1476057600 }
{"parse":{"title":"Category:\u6ee8\u7530\u59d3","pageid":225339,"wikitext":{"*":"{{catnav|\u4eba\u7269|\u6309\u59d3\u6c0f\u5206\u7c7b}}\n{{info|\u6ce8\uff1a\u672c\u5206\u7c7b\u4e0b\u6536\u5f55\u59d3\u4e3a<big>{{Color|Red|{{Ruby|\u6d5c\u7530|\u306f\u307e\u3060|ja}}}}</big>\u3001<big>{{Color|Red|{{Ruby|\u6ff1\u7530|\u306f\u307e\u3060|ja}}}}</big>\u7684\u4eba\u7269\u3002}}\n[[Category:\u6309\u59d3\u6c0f\u5206\u7c7b]]"}}}
{ "id": 974757345, "type": "Feature", "properties": { "addr:full":"1569 Birchwood Dr Mississauga ON L5J 1T5", "addr:housenumber":"1569", "addr:postcode":"l5j 1t5", "addr:street":"Birchwood Dr", "edtf:cessation":"uuuu", "edtf:inception":"uuuu", "geom:area":0.0, "geom:area_square_m":0.0, "geom:bbox":"-79.627822876,43.5273132324,-79.627822876,43.5273132324", "geom:latitude":43.527313, "geom:longitude":-79.627823, "iso:country":"CA", "mz:hierarchy_label":1, "mz:is_current":-1, "sg:address":"1569 Birchwood Dr", "sg:city":"Mississauga", "sg:classifiers":[ { "category":"Wholesale", "subcategory":"Durable Goods & Equipment", "type":"Manufacturing & Wholesale Goods" } ], "sg:owner":"simplegeo", "sg:phone":"+1 905 855 8486", "sg:postcode":"L5J 1T5", "sg:province":"ON", "sg:tags":[ "exporter" ], "src:geom":"simplegeo", "wof:belongsto":[ 85895331, 102191575, 85633041, 101740755, 85682057, 101735893 ], "wof:breaches":[], "wof:concordances":{ "sg:id":"SG_5kPriY1796mF971TC4AGvx_43.527313_-79.627823@1293573121" }, "wof:country":"CA", "wof:created":1472250084, "wof:geomhash":"4a377710df48fca802e3af4c86333f68", "wof:hierarchy":[ { "continent_id":102191575, "country_id":85633041, "locality_id":101740755, "neighbourhood_id":85895331, "region_id":85682057, "venue_id":974757345 }, { "continent_id":102191575, "country_id":85633041, "locality_id":101735893, "neighbourhood_id":85895331, "region_id":85682057, "venue_id":974757345 } ], "wof:id":974757345, "wof:lastmodified":1499439541, "wof:name":"Astermed Inc", "wof:parent_id":85895331, "wof:placetype":"venue", "wof:repo":"whosonfirst-data-venue-ca", "wof:superseded_by":[], "wof:supersedes":[], "wof:tags":[ "exporter" ] }, "bbox": [ -79.627822876, 43.5273132324, -79.627822876, 43.5273132324 ], "geometry": {"coordinates":[-79.627822876,43.5273132324],"type":"Point"} }
{ "first_traded_price": 2010.0, "highest_price": 2154.0, "isin": "IRO1LEAB0001", "last_traded_price": 2139.0, "lowest_price": 2001.0, "trade_volume": 63491.0, "unix_time": 1427500800 }
{"name":"OSKAVIT CAPLET","harga":" Rp. 0. Data hanya sebagai informasi","golongan":"http://medicastore.com/image_banner/obat_bebas.gif","kandungan":"Vitamin A 5000 iu, Vitamin B1 3 mg, Vitamin B2 3 mg, Vitamin B6 2 mg, Vitamin 12 10 mcg, Vitamin C 100 mg, Vitamin D3 400 iu, Nikotinamida 20 mg, Besi 45 mg, Iodin 150 mcg, Seng 500 mcg, Asam Folat 400 mcg","indikasi":"Vitamin & mineral tambahan, untuk memenuhi peningkatan kebutuhan selama hamil, menyusui, anemia, & masa penyembuhan.","kontraindikasi":"","perhatian":"","efeksamping":"","indeksamanwanitahamil":"","kemasan":"Kaplet 6 biji.","dosis":"1 kaplet sehari.","penyajian":"Dikonsumsi bersamaan dengan makanan","pabrik":"Supra Ferbindo.","id":"4905","category_id":"11"}
{"textgrid.poem.61406": {"metadata": {"author": {"name": "Geibel, Emanuel", "birth": "N.A.", "death": "N.A."}, "title": "1.", "genre": "verse", "period": "N.A.", "pub_year": 1833, "urn": "N.A.", "language": ["de:0.99"], "booktitle": "N.A."}, "text": null, "poem": {"stanza.1": {"line.1": {"text": "Bist du der Selbsucht los, so gehorche der ahnenden Seele,", "tokens": ["Bist", "du", "der", "Selb\u00b7sucht", "los", ",", "so", "ge\u00b7hor\u00b7che", "der", "ah\u00b7nen\u00b7den", "See\u00b7le", ","], "token_info": ["word", "word", "word", "word", "word", "punct", "word", "word", "word", "word", "word", "punct"], "pos": ["VAFIN", "PPER", "ART", "NN", "PTKVZ", "$,", "ADV", "ADJA", "ART", "ADJA", "NN", "$,"], "meter": "-+-+-+--+--+--+-", "measure": "iambic.hexa.relaxed"}, "line.2": {"text": "Und das Bezweifeln der Welt st\u00f6re dir nimmer den Weg;", "tokens": ["Und", "das", "Be\u00b7zwei\u00b7feln", "der", "Welt", "st\u00f6\u00b7re", "dir", "nim\u00b7mer", "den", "Weg", ";"], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "ART", "NN", "ART", "NN", "VVFIN", "PPER", "ADV", "ART", "NN", "$."], "meter": "---+--++--+--+", "measure": "iambic.penta.relaxed"}, "line.3": {"text": "Folge getrost. Am schroffesten Hang wallt sicher die Unschuld,", "tokens": ["Fol\u00b7ge", "ge\u00b7trost", ".", "Am", "schrof\u00b7fes\u00b7ten", "Hang", "wallt", "si\u00b7cher", "die", "Un\u00b7schuld", ","], "token_info": ["word", "word", "punct", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["NN", "VVPP", "$.", "APPRART", "ADJA", "NN", "VVFIN", "ADJD", "ART", "NN", "$,"], "meter": "+--+--+-+-+--+-", "measure": "hexameter"}, "line.4": {"text": "Durch die Grube des Leun f\u00fchrt sie beschirmend ein Gott.", "tokens": ["Durch", "die", "Gru\u00b7be", "des", "Leun", "f\u00fchrt", "sie", "be\u00b7schir\u00b7mend", "ein", "Gott", "."], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["APPR", "ART", "NN", "ART", "NN", "VVFIN", "PPER", "VVPP", "ART", "NN", "$."], "meter": "+-+--++--+--+", "measure": "trochaic.hexa.relaxed"}, "line.5": {"text": "Selber das Ungl\u00fcck wandelt sich ihr zur erhebenden Staffel;", "tokens": ["Sel\u00b7ber", "das", "Un\u00b7gl\u00fcck", "wan\u00b7delt", "sich", "ihr", "zur", "er\u00b7he\u00b7ben\u00b7den", "Staf\u00b7fel", ";"], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["ADV", "ART", "NN", "VVFIN", "PRF", "PPOSAT", "APPRART", "ADJA", "NN", "$."], "meter": "+--+-+-+-+-+--+-", "measure": "iambic.septa.invert"}, "line.6": {"text": "Ging doch aus finsterer Haft Joseph im Purpur hervor.", "tokens": ["Ging", "doch", "aus", "fins\u00b7te\u00b7rer", "Haft", "Jo\u00b7se\u00b7ph", "im", "Pur\u00b7pur", "her\u00b7vor", "."], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "ADV", "APPR", "ADJA", "NN", "NE", "APPRART", "NN", "PTKVZ", "$."], "meter": "-+-+--+--+-+--+", "measure": "iambic.hexa.relaxed"}, "line.7": {"text": "Aber f\u00fcrchte die Schuld und mehr noch f\u00fcrchte den Hochmut,", "tokens": ["A\u00b7ber", "f\u00fcrch\u00b7te", "die", "Schuld", "und", "mehr", "noch", "f\u00fcrch\u00b7te", "den", "Hoch\u00b7mut", ","], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "VVFIN", "ART", "NN", "KON", "ADV", "ADV", "VVFIN", "ART", "NN", "$,"], "meter": "--+--+-+-+--+-", "measure": "anapaest.di.plus"}, "line.8": {"text": "Der wie berauschender Wein rasch dir die Sinne verwirrt.", "tokens": ["Der", "wie", "be\u00b7rau\u00b7schen\u00b7der", "Wein", "rasch", "dir", "die", "Sin\u00b7ne", "ver\u00b7wirrt", "."], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["ART", "KOKOM", "ADJA", "NN", "ADJD", "PPER", "ART", "NN", "ADJD", "$."], "meter": "-+-+--+-+-+--+", "measure": "iambic.hexa.relaxed"}, "line.9": {"text": "Auch Alexander erlag, der gewaltige Liebling des Schicksals,", "tokens": ["Auch", "A\u00b7lex\u00b7an\u00b7der", "er\u00b7lag", ",", "der", "ge\u00b7wal\u00b7ti\u00b7ge", "Lieb\u00b7ling", "des", "Schick\u00b7sals", ","], "token_info": ["word", "word", "word", "punct", "word", "word", "word", "word", "word", "punct"], "pos": ["ADV", "NE", "VVFIN", "$,", "ART", "ADJA", "NN", "ART", "NN", "$,"], "meter": "-+-+--+--+--+--+-", "measure": "iambic.hexa.relaxed"}, "line.10": {"text": "Eh' sein Ziel er erreicht, weil er der G\u00f6tter verga\u00df.", "tokens": ["Eh'", "sein", "Ziel", "er", "er\u00b7reicht", ",", "weil", "er", "der", "G\u00f6t\u00b7ter", "ver\u00b7ga\u00df", "."], "token_info": ["word", "word", "word", "word", "word", "punct", "word", "word", "word", "word", "word", "punct"], "pos": ["KOUS", "PPOSAT", "NN", "PPER", "VVPP", "$,", "KOUS", "PPER", "ART", "NN", "VVFIN", "$."], "meter": "--+--+-+-+--+", "measure": "anapaest.di.plus"}}, "stanza.2": {"line.1": {"text": "Bist du der Selbsucht los, so gehorche der ahnenden Seele,", "tokens": ["Bist", "du", "der", "Selb\u00b7sucht", "los", ",", "so", "ge\u00b7hor\u00b7che", "der", "ah\u00b7nen\u00b7den", "See\u00b7le", ","], "token_info": ["word", "word", "word", "word", "word", "punct", "word", "word", "word", "word", "word", "punct"], "pos": ["VAFIN", "PPER", "ART", "NN", "PTKVZ", "$,", "ADV", "ADJA", "ART", "ADJA", "NN", "$,"], "meter": "-+-+-+--+--+--+-", "measure": "iambic.hexa.relaxed"}, "line.2": {"text": "Und das Bezweifeln der Welt st\u00f6re dir nimmer den Weg;", "tokens": ["Und", "das", "Be\u00b7zwei\u00b7feln", "der", "Welt", "st\u00f6\u00b7re", "dir", "nim\u00b7mer", "den", "Weg", ";"], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "ART", "NN", "ART", "NN", "VVFIN", "PPER", "ADV", "ART", "NN", "$."], "meter": "---+--++--+--+", "measure": "iambic.penta.relaxed"}, "line.3": {"text": "Folge getrost. Am schroffesten Hang wallt sicher die Unschuld,", "tokens": ["Fol\u00b7ge", "ge\u00b7trost", ".", "Am", "schrof\u00b7fes\u00b7ten", "Hang", "wallt", "si\u00b7cher", "die", "Un\u00b7schuld", ","], "token_info": ["word", "word", "punct", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["NN", "VVPP", "$.", "APPRART", "ADJA", "NN", "VVFIN", "ADJD", "ART", "NN", "$,"], "meter": "+--+--+-+-+--+-", "measure": "hexameter"}, "line.4": {"text": "Durch die Grube des Leun f\u00fchrt sie beschirmend ein Gott.", "tokens": ["Durch", "die", "Gru\u00b7be", "des", "Leun", "f\u00fchrt", "sie", "be\u00b7schir\u00b7mend", "ein", "Gott", "."], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["APPR", "ART", "NN", "ART", "NN", "VVFIN", "PPER", "VVPP", "ART", "NN", "$."], "meter": "+-+--++--+--+", "measure": "trochaic.hexa.relaxed"}, "line.5": {"text": "Selber das Ungl\u00fcck wandelt sich ihr zur erhebenden Staffel;", "tokens": ["Sel\u00b7ber", "das", "Un\u00b7gl\u00fcck", "wan\u00b7delt", "sich", "ihr", "zur", "er\u00b7he\u00b7ben\u00b7den", "Staf\u00b7fel", ";"], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["ADV", "ART", "NN", "VVFIN", "PRF", "PPOSAT", "APPRART", "ADJA", "NN", "$."], "meter": "+--+-+-+-+-+--+-", "measure": "iambic.septa.invert"}, "line.6": {"text": "Ging doch aus finsterer Haft Joseph im Purpur hervor.", "tokens": ["Ging", "doch", "aus", "fins\u00b7te\u00b7rer", "Haft", "Jo\u00b7se\u00b7ph", "im", "Pur\u00b7pur", "her\u00b7vor", "."], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "ADV", "APPR", "ADJA", "NN", "NE", "APPRART", "NN", "PTKVZ", "$."], "meter": "-+-+--+--+-+--+", "measure": "iambic.hexa.relaxed"}, "line.7": {"text": "Aber f\u00fcrchte die Schuld und mehr noch f\u00fcrchte den Hochmut,", "tokens": ["A\u00b7ber", "f\u00fcrch\u00b7te", "die", "Schuld", "und", "mehr", "noch", "f\u00fcrch\u00b7te", "den", "Hoch\u00b7mut", ","], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "VVFIN", "ART", "NN", "KON", "ADV", "ADV", "VVFIN", "ART", "NN", "$,"], "meter": "--+--+-+-+--+-", "measure": "anapaest.di.plus"}, "line.8": {"text": "Der wie berauschender Wein rasch dir die Sinne verwirrt.", "tokens": ["Der", "wie", "be\u00b7rau\u00b7schen\u00b7der", "Wein", "rasch", "dir", "die", "Sin\u00b7ne", "ver\u00b7wirrt", "."], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["ART", "KOKOM", "ADJA", "NN", "ADJD", "PPER", "ART", "NN", "ADJD", "$."], "meter": "-+-+--+-+-+--+", "measure": "iambic.hexa.relaxed"}, "line.9": {"text": "Auch Alexander erlag, der gewaltige Liebling des Schicksals,", "tokens": ["Auch", "A\u00b7lex\u00b7an\u00b7der", "er\u00b7lag", ",", "der", "ge\u00b7wal\u00b7ti\u00b7ge", "Lieb\u00b7ling", "des", "Schick\u00b7sals", ","], "token_info": ["word", "word", "word", "punct", "word", "word", "word", "word", "word", "punct"], "pos": ["ADV", "NE", "VVFIN", "$,", "ART", "ADJA", "NN", "ART", "NN", "$,"], "meter": "-+-+--+--+--+--+-", "measure": "iambic.hexa.relaxed"}, "line.10": {"text": "Eh' sein Ziel er erreicht, weil er der G\u00f6tter verga\u00df.", "tokens": ["Eh'", "sein", "Ziel", "er", "er\u00b7reicht", ",", "weil", "er", "der", "G\u00f6t\u00b7ter", "ver\u00b7ga\u00df", "."], "token_info": ["word", "word", "word", "word", "word", "punct", "word", "word", "word", "word", "word", "punct"], "pos": ["KOUS", "PPOSAT", "NN", "PPER", "VVPP", "$,", "KOUS", "PPER", "ART", "NN", "VVFIN", "$."], "meter": "--+--+-+-+--+", "measure": "anapaest.di.plus"}}}}}
[ "http://2.bp.blogspot.com/-eGaNsZtBvLM/U1TRCYyzsJI/AAAAAAABPaQ/4vPG0Zl-9n0/s0/000.png", "http://2.bp.blogspot.com/-OMxKVi-5AvI/U1TRDH3poMI/AAAAAAABPaY/8NtDV633_WY/s0/001.png", "http://2.bp.blogspot.com/-hP5WCLm68Xo/U1TRD67TnOI/AAAAAAABPak/BOOQSy7XG7c/s0/002.png", "http://2.bp.blogspot.com/-g_qC3zc0CpY/U1TRFomaZuI/AAAAAAABPas/pqTAFOzGNc8/s0/003.png", "http://2.bp.blogspot.com/-nO-Klg6Gj8w/U1TRGf4aX7I/AAAAAAABPa0/ARZlOhZtT6M/s0/004.png", "http://2.bp.blogspot.com/-5bMwvyvv3NQ/U1TRHP8zN2I/AAAAAAABPa8/fKBVlbrtcJw/s0/005.png", "http://2.bp.blogspot.com/-lUoN77Ig9vU/U1TRH3WPhkI/AAAAAAABPbE/6TIs8aNqJ0Y/s0/006.png", "http://2.bp.blogspot.com/-PUKD0bx9lEI/U1TRIrWdrPI/AAAAAAABPbQ/fjNTLuZ4y3s/s0/007.png", "http://2.bp.blogspot.com/-4R-y2-bOo98/U1TRJewaDkI/AAAAAAABPbY/oOnWLRaYom4/s0/008.png", "http://2.bp.blogspot.com/-J9aRVKpOlkI/U1TRKDDk1OI/AAAAAAABPbg/itekBC41LdM/s0/009.png", "http://2.bp.blogspot.com/-SAYswuK2Ckg/U1TRLOjz1oI/AAAAAAABPbo/8PVWhiqMX3Q/s0/010.png", "http://2.bp.blogspot.com/-sek1U1Mmwho/U1TRLgv2MkI/AAAAAAABPbw/pQdaklhK0Yo/s0/011.png", "http://2.bp.blogspot.com/-R3MOkn7P0V0/U1TRMfyKsFI/AAAAAAABPb4/FWCAThTGJc8/s0/012.png", "http://2.bp.blogspot.com/-841P32hIB6k/U1TRNGM3SGI/AAAAAAABPcA/LOk7hSeheFA/s0/013.png", "http://2.bp.blogspot.com/-j-qQKfLJaHw/U1TRN9WCsvI/AAAAAAABPcI/GG4grdAeuJg/s0/014.png", "http://2.bp.blogspot.com/-Q2ITSq3qdos/U1TROgC_xPI/AAAAAAABPcQ/WIIFPCIhdwU/s0/015.png", "http://2.bp.blogspot.com/-URISMTVDMNQ/U1TRPZzSb6I/AAAAAAABPcY/GUr43AE6NZc/s0/016.png", "http://2.bp.blogspot.com/-3Pa7sqvTILM/U1TRQAeU6qI/AAAAAAABPcg/-tLISg2i-mk/s0/017.jpg" ]
{"org":"akc","dates":[{"$date":{"$numberLong":"1396569600000"}},{"$date":{"$numberLong":"1396656000000"}},{"$date":{"$numberLong":"1396742400000"}}],"urls":["http://www.akc.org//events/search/index_results.cfm?action=plan&event_number=2014668002&cde_comp_group=AG &cde_comp_type=&NEW_END_DATE1=&key_stkhldr_event=119990088&mixed_breed=Y","http://www.akc.org//events/search/index_results.cfm?action=plan&event_number=2014668003&cde_comp_group=AG &cde_comp_type=&NEW_END_DATE1=&key_stkhldr_event=119994719&mixed_breed=Y","http://www.akc.org//events/search/index_results.cfm?action=plan&event_number=2014668004&cde_comp_group=AG &cde_comp_type=&NEW_END_DATE1=&key_stkhldr_event=120008545&mixed_breed=Y"],"club":"Twin Cities Cavalier King Charles Spaniel Club","eventNumbers":["2014668002","2014668003","2014668004"],"status":"Approved","location":"Ham Lake, MN","state":"MN","days":"Apr 04-06 2014 (Fri-Sun)","_id":"1404043AMN7twIitiescavalierkingcharlesPC","longLat":[{"$numberDouble":"-93.203857"},{"$numberDouble":"45.254478"}]}
{"comment": "0", "idNoticia": "1557", "tags": ["BANCO DAYCOVAL", "CHINA", "DÓLAR", "DÓLAR COMERCIAL", "MERCADO FUTURO", "MOEDA", "PETROBRÁS", "SWAP CAMBIAL", "UCRÂNIA"], "url": "http://www.valor.com.br/financas/3456426/dolar-fecha-em-alta-apos-dados-fracos-na-china ", "autor": " Silvia Rosa ", "titulo": "Dólar fecha em alta após dados fracos na China", "corpo": "SÃO PAULO - O dólar hoje voltou a ganhar força frente às principais divisas emergentes diante de dados mais fracos da China e da tensão em relação à crise na Ucrânia. No mercado local, o movimento de alta da moeda americana foi atenuado pela captação da Petrobras por meio de uma emissão de bônus no exterior. O dólar comercial fechou em alta de 0,21% a R$ 2,3530, maior patamar desde 20 de fevereiro. Já o contrato futuro com vencimento em abril avançava 0,42% para R$ 2,366. A moeda americana subia frente às principais divisas emergentes, principalmente de países atrelados a commodities, após os dados fracos da balança comercial da China divulgados na sexta-feira à noite . A China registrou um déficit comercial de US$ 22,98 bilhões em fevereiro, contrariando previsões de um superávit de US$ 11,90 bilhões. A desaceleração na inflação ao consumidor no mês passado, de 2,5% para 2,0%, bem abaixo da meta oficial de 3,5%, também não foi vista com bons olhos por sinalizar uma perda de fôlego na economia. Não à toa, as divisas de mercados ligados a commodities estão entre as mais atingidas. O dólar subi a 0,54% diante do dólar australiano, 0,24% frente ao rand sul-africano e 0,35% em relação ao peso chileno. Para incentivar uma retomada das exportações e trazer maior competitividade para os produtos chineses, o Banco Central da China conduziu o yuan para seu nível mais baixo ante o dólar, em termos percentuais, em mais de um ano e meio nesta segunda-feira. No mercado interno, a notícia de captação de recursos por parte da Petrobras contribuiu para atenuar o movimento de alta do dólar frente ao real. Segundo matéria publicada no Valor PRO, a Petrobras fechou hoje uma emissão de US$ 8,5 bilhões em bônus no exterior. Os papéis foram emitidos em seis tranches com quatro vencimentos de três, seis, dez e 30 anos. A perspectiva de entrada de novos recursos tem contribuído para segurar a alta da moeda americana no mercado local. Novas captações são aguardadas para as próximas semanas. O banco Daycoval iniciou nesta semana uma série de apresentações a investidores para a emissão de US$ 300 milhões em bônus seniores. O Tesouro Nacional também já informou que pretende realizar uma captação em euros até o fim de março. Outro fator comentado hoje no mercado é a mudança do comunicado no Banco Central sobre a rolagem do lote de US$ 10,178 bilhões com vencimento previsto para 1º de abril. Diferente dos últimos anúncios, o BC não divulgou comunicado informando explicitamente sobre as ro lagens e informou na sexta-feira apenas as condições da oferta desta segunda-feira. Nos últimos quatro anúncios de rolagens (referentes aos contratos vincendos em dezembro, janeiro, fevereiro e março), o BC havia divulgado comunicados contendo a expressão “dando início” ao se referir à postergação dos vencimentos, algo lido pelo mercado como uma intenção do BC de realizar operações que poderiam, de acordo com a demanda dos agentes, resultar na rolagem integral dos referidos lotes. A mudança do comunicado levou alguns agentes a interpretar o fato como uma possibilidade do BC não fazer a rolagem integral dos contratos. A autoridade monetária fez a rolagem de todos os 10 mil contratos de swap cambial tradicional ofertados em leilão nesta segunda-feira, em operação que teve giro financeiro de US$ 492,2 milhões. A liquidação da operação está prevista para 1º de abril. Com a rolagem de hoje, resta o equivalente a US$ 9,656 bilhões em swaps a serem renovados. O gerente de derivativos cambiais da CGD Investimentos, Jayro Rezende, não vê uma mudança de estratégia do BC na rolagem dos contratos de swap. “Se a autoridade monetária tivesse deixado de rolar parte dos contratos ou não tivesse feito o anúncio da rolagem com antecedência poderia indicar uma mudança da política de atuação, mas isso ainda não aconteceu”, afirma. Rezende destaca que a rolagem parcial dos contratos poderia aumentar a demanda por hedge no mercado e levar o dólar a um patamar mais alto. “Isso não faz sentido neste momento. Uma rolagem parcial poderia dar mais gás para o dólar e trazer, como consequência, um aumento da inflação que está próxima da margem (da meta de inflação de 6,5%)”, diz. Mais cedo, o BC vendeu todos os quatro mil contratos de swap cambial tradicional ofertados em leilã o hoje, em operação que funcionou como uma injeção de US$ 197,8 milhões no mercado futuro. A colocação ficou restrita ao vencimento 1º de dezembro, e a liquidação da venda está prevista para amanhã, terça-feira, dia 11. Com esse leilão, a posição vendida em dólar do BC via swaps juntos ao mercado atingiu a marca de US$ 84,403 bilhões. (Silvia Rosa | Valor)", "data": "2014-03-10 17:50:00"}
{"name":"Harvest Precision Components","permalink":"harvest-precision-components","crunchbase_url":"http://www.crunchbase.com/company/harvest-precision-components","homepage_url":"","blog_url":"","blog_feed_url":"","twitter_username":"","category_code":"biotech","number_of_employees":null,"founded_year":2002,"founded_month":null,"founded_day":null,"deadpooled_year":null,"deadpooled_month":null,"deadpooled_day":null,"deadpooled_url":null,"tag_list":"upstate-ny","alias_list":null,"email_address":"","phone_number":"","description":"Precision Machining of Hard Materials","created_at":"Tue Aug 17 14:11:42 UTC 2010","updated_at":"Tue Aug 17 17:59:14 UTC 2010","overview":"<p>Harvest uses a proprietary machining process to machine diamond like hard materials to extremely fine precision tolerances (in Angstroms). Surgical tools and other BioMechanical applications are slated for early products. Coarse machining is obtained by EDM machining and Injection molding of shapes, final machining is of an electrochemical nature. Early products will include replacing surgical knives currently made from gem quality diamonds. All processes and materials are protected by patents here and in foreign venues.</p>","image":null,"products":[],"relationships":[],"competitions":[],"providerships":[],"total_money_raised":"$0","funding_rounds":[],"investments":[],"acquisition":null,"acquisitions":[],"offices":[],"milestones":[],"ipo":null,"video_embeds":[],"screenshots":[],"external_links":[]}
{"author":"SAIC_ITSON","questions":[{"type":"quiz","question":"<b>Es un individuo entrenado en el arte y la ciencia de diseñar y construir edificios es un:</b>","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Arquitecto","correct":true},{"answer":"Administrador de Proyectos","correct":false},{"answer":"Ingeniero Civil","correct":false},{"answer":"Proyectista","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/1a499e8f-476c-4021-bf8a-8d96a205edf7","imageMetadata":{"id":"1a499e8f-476c-4021-bf8a-8d96a205edf7","contentType":"image/jpeg","width":626,"height":417,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Estudia los métodos necesarios para representar un terreno con todos los detalles naturales o creados por el hombre","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Cartografía","correct":false},{"answer":"Geología","correct":false},{"answer":"Mecánica de materiales","correct":false},{"answer":"Topografía","correct":true}],"layout":"CLASSIC","resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Cuál es la serie con mayor número de temporadas?</b> ","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Friends","correct":false},{"answer":"<b>Grey’s Anatomy</b>","correct":false},{"answer":"La Ley y el Orden","correct":false},{"answer":"Los Simpson","correct":true}],"layout":"CLASSIC","image":"https://media.kahoot.it/1ab8bef5-2a16-47e8-8d63-32c9a771dba9","imageMetadata":{"id":"1ab8bef5-2a16-47e8-8d63-32c9a771dba9","contentType":"image/jpeg","width":276,"height":183,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>El fraguado del concreto alcanza sus resistencia máxima a los:</b> ","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"4 días","correct":false},{"answer":"7 días","correct":false},{"answer":"28 días","correct":true},{"answer":"17 días","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/1b93434f-5784-4acf-88d3-b040dbdef863","imageMetadata":{"id":"1b93434f-5784-4acf-88d3-b040dbdef863","contentType":"image/jpeg","width":800,"height":400,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>Cuál es el nombre de la siguiente fórmula:</b>","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"<b>Trinomio Cuadrado Perfecto</b>","correct":false},{"answer":"Fórmula General","correct":true},{"answer":"Fórmula Binomial","correct":false},{"answer":"<b>Fórmula de la Pendiente</b>","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/5607c801-6cfd-4235-8f1f-10e00effb6e5","imageMetadata":{"id":"5607c801-6cfd-4235-8f1f-10e00effb6e5","contentType":"image/png","width":403,"height":125,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Quién canta la gata bajo la lluvia?</b>","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"<b>Juan Gabriel</b>","correct":false},{"answer":"Rocío Durcal","correct":true},{"answer":"Alicia Villarreal","correct":false},{"answer":"Ana Gabriel","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/b2c06292-70cd-46b4-ab20-206f383b548e","imageMetadata":{"id":"b2c06292-70cd-46b4-ab20-206f383b548e","contentType":"image/jpeg","width":183,"height":275,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Cuál cultura fue la creadora del ladrillo?</b> ","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"<b>Mesopotámica</b>","correct":true},{"answer":"Egipcia","correct":false},{"answer":"Griega","correct":false},{"answer":"Persa","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/a55d253a-a8da-4345-9412-85f3c8c5da16","imageMetadata":{"id":"a55d253a-a8da-4345-9412-85f3c8c5da16","contentType":"image/jpeg","width":301,"height":168,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿A cuánto equivale el número pi?</b> ","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"3.1614","correct":false},{"answer":"3.1415","correct":false},{"answer":"3.1416","correct":true},{"answer":"4.1416","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/8da59ce9-df27-4ef4-a916-7b0d579ff9e3","imageMetadata":{"id":"8da59ce9-df27-4ef4-a916-7b0d579ff9e3","contentType":"image/png","width":1200,"height":957,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>Organismo encargado de desarrollar estándares, normas y recomendaciones técnicas para el concreto reforzado:</b>","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"AISC","correct":false},{"answer":"ANEIC","correct":false},{"answer":"ASTM","correct":false},{"answer":"ACI","correct":true}],"layout":"CLASSIC","image":"https://media.kahoot.it/ef539bca-7a85-4264-9e39-a1b36011fb5e","imageMetadata":{"id":"ef539bca-7a85-4264-9e39-a1b36011fb5e","contentType":"image/jpeg","width":293,"height":172,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>La pirámide del Sol es la más alta de México:</b> ","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"True","correct":false},{"answer":"False","correct":true}],"layout":"TRUE_FALSE","image":"https://media.kahoot.it/33cb7bb7-33be-4967-a2be-d7b1edc51d51","imageMetadata":{"id":"33cb7bb7-33be-4967-a2be-d7b1edc51d51","contentType":"image/jpeg","width":1280,"height":720,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Cuál es la figura geométrica en la que se basa la estructura de un puente?</b>","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Círculo","correct":false},{"answer":"<b>Cuadrado</b>","correct":false},{"answer":"Triángulo","correct":true},{"answer":"Rectángulo","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/6cb2af3c-cf4f-4fb9-ac4d-d8bcc19522ff","imageMetadata":{"id":"6cb2af3c-cf4f-4fb9-ac4d-d8bcc19522ff","contentType":"image/jpeg","width":1104,"height":622,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Quién es la actriz que interpreta a Mía Colucci en la telenovela “Rebelde”?</b> ","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Dulce María","correct":false},{"answer":"Maite Perroni","correct":false},{"answer":"Anahí Puente","correct":true},{"answer":"Laura Pausini","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/04813df2-4a06-4400-b88c-0a631387382b","imageMetadata":{"id":"04813df2-4a06-4400-b88c-0a631387382b","contentType":"image/png","width":400,"height":146,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Cuánto mide el Burj Khalifa?</b>","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"1020.8 m","correct":false},{"answer":"828.2 m","correct":false},{"answer":"<b>928.8 m</b>","correct":false},{"answer":"<b>829.8 m</b>","correct":true}],"layout":"CLASSIC","image":"https://media.kahoot.it/1cb4d329-34f1-4724-923b-01fd2cfa7354","imageMetadata":{"id":"1cb4d329-34f1-4724-923b-01fd2cfa7354","contentType":"image/jpeg","width":1280,"height":720,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>Clasificación de las rocas según su origen:</b>","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Ígneas","correct":false},{"answer":"Metamórficas","correct":false},{"answer":"Sedimentarias","correct":false},{"answer":"Todas las anteriores","correct":true}],"layout":"CLASSIC","image":"https://media.kahoot.it/6cf99a91-eea7-4343-8632-d6093e513142","imageMetadata":{"id":"6cf99a91-eea7-4343-8632-d6093e513142","contentType":"image/jpeg","width":284,"height":178,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Marsellesa es el nombre del himno nacional de Francia?</b>","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"True","correct":true},{"answer":"False","correct":false}],"layout":"TRUE_FALSE","image":"https://media.kahoot.it/a1708eda-d038-4951-8930-fcdfefdab469","imageMetadata":{"id":"a1708eda-d038-4951-8930-fcdfefdab469","contentType":"image/jpeg","width":310,"height":163,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>Nombre del Jefe de departamento de Ingeniería Civil</b>","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Mtro. Ramón Corral Lugo","correct":false},{"answer":"<b>Mtro. Oscar López Chávez</b>","correct":true},{"answer":"Dr. Luciano Cervantes García","correct":false},{"answer":"<b>Luis Fernando Lopez Escalante.</b>","correct":false}],"layout":"CLASSIC","resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>Densidad del agua a 4°C:</b> ","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"<b>100 N/m3</b>","correct":false},{"answer":"<b>10 gr/cm3</b>","correct":false},{"answer":"<b>1000 Kg/m3</b>","correct":true},{"answer":"<b>1000 kg/cm3</b>","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/0489b7b8-5605-41af-a534-e78133375aa7","imageMetadata":{"id":"0489b7b8-5605-41af-a534-e78133375aa7","contentType":"image/jpeg","width":1280,"height":853,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>Cuál es el resultado de la siguiente integral:</b> <latex>\\int_{ }^{ }x</latex>","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"1","correct":false},{"answer":"<latex>\\frac{x^2}{2}</latex>","correct":false},{"answer":"x<sup>2</sup>","correct":false},{"answer":"SYNTAX ERROR","correct":true}],"layout":"CLASSIC","resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Cuáles</b><b> son los principales constituyentes del cemento?</b>","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"<b>Piedra caliza y arena</b>","correct":false},{"answer":"<b>Yeso y arcilla</b>","correct":false},{"answer":"<b>Piedra caliza y arcilla</b>","correct":true},{"answer":"Ninguna de las anteriores","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/29dc681d-8d36-444f-bedc-db438a264165","imageMetadata":{"id":"29dc681d-8d36-444f-bedc-db438a264165","contentType":"image/jpeg","width":980,"height":617,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Cuál es el nombre de este personaje?</b> ","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Oggie","correct":false},{"answer":"Barrel","correct":true},{"answer":"Lock","correct":false},{"answer":"Shock","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/801d4892-68cd-4956-8109-91357846fdad","imageMetadata":{"id":"801d4892-68cd-4956-8109-91357846fdad","contentType":"image/jpeg","width":720,"height":441,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Es un conjunto de elementos conectados convenientemente, diseñado para soportar las cargas verticales y resistir fuerzas","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Estructura","correct":true},{"answer":"&nbsp;Armadura","correct":false},{"answer":"Columnas","correct":false},{"answer":"Vigas","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/ff28f38e-c1c3-456a-93bf-ff3e629856cc","imageMetadata":{"id":"ff28f38e-c1c3-456a-93bf-ff3e629856cc","contentType":"image/jpeg","width":800,"height":400,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Cuál es la extensión territorial de México?</b> ","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"<b>5,115 Millones Km²</b>","correct":false},{"answer":"<b>3,149 Millones Km²</b>","correct":false},{"answer":"<b>1,546 Millones Km²</b>","correct":false},{"answer":"<b>1,964 Millones Km²</b>","correct":true}],"layout":"CLASSIC","image":"https://media.kahoot.it/e0cd6c34-17d4-4eb5-807d-da7ac5d75436","imageMetadata":{"id":"e0cd6c34-17d4-4eb5-807d-da7ac5d75436","contentType":"image/png","width":961,"height":653,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>Un reglamento de construcción tiene fuerza legal y es administrado por una entidad gubernamental</b>","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"True","correct":true},{"answer":"False","correct":false}],"layout":"TRUE_FALSE","image":"https://media.kahoot.it/7ee81518-6734-4ff1-8f0b-09e4002cfdbf","imageMetadata":{"id":"7ee81518-6734-4ff1-8f0b-09e4002cfdbf","contentType":"image/png","width":866,"height":415,"effects":[],"crop":{"origin":{"x":212,"y":60},"target":{"x":441,"y":294}},"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Cuándo</b><b> terminó la lucha de independencia?</b> ","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"16 de septiembre de 1810","correct":false},{"answer":"<b>27 de septiembre de 1821</b>","correct":true},{"answer":"<b>22 de septiembre de 1827</b>","correct":false},{"answer":"<b>12 de octubre de 1820</b>","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/3524dddd-dc0b-4c59-a41d-13afe7e78ef1","imageMetadata":{"id":"3524dddd-dc0b-4c59-a41d-13afe7e78ef1","contentType":"image/jpeg","width":594,"height":370,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Es uno de los parámetros más importantes en la consolidación de suelos:","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Numero de Reynolds","correct":false},{"answer":"Índice de compresibilidad","correct":true},{"answer":"Densidad de la fase sólida","correct":false},{"answer":"Ninguna de las anteriores","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/cc996fec-037f-4f60-ba1c-1cbd76624b70","imageMetadata":{"id":"cc996fec-037f-4f60-ba1c-1cbd76624b70","contentType":"image/jpeg","width":500,"height":375,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Por qué se produce el hipo?</b> ","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"<b>Irritación nasal</b>","correct":false},{"answer":"<b>Comer picante</b>","correct":false},{"answer":"<b>Irritación del estómago</b>","correct":false},{"answer":"<b>Irritación del diafragma</b>","correct":true}],"layout":"CLASSIC","image":"https://media.kahoot.it/da9844e5-a743-4166-a132-fad5f3498971","imageMetadata":{"id":"da9844e5-a743-4166-a132-fad5f3498971","contentType":"image/jpeg","width":1200,"height":630,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>Es una expresión que involucra el producto de una distancia y una cantidad física</b> ","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Vector","correct":false},{"answer":"<b>Reacción</b>","correct":false},{"answer":"Momento","correct":true},{"answer":"Fuerza Axial","correct":false}],"layout":"CLASSIC","resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿De qué estilo arquitectónico es la Catedral de Notre Dame en París?</b>","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"<b>Contemporáneo</b>","correct":false},{"answer":"<b>Barroco</b>","correct":false},{"answer":"<b>Gótico</b>","correct":true},{"answer":"<b>Clásico</b>","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/9f0dbc72-a2ae-4bfe-953e-d84ef8610a5c","imageMetadata":{"id":"9f0dbc72-a2ae-4bfe-953e-d84ef8610a5c","contentType":"image/jpeg","width":275,"height":183,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Cómo se representan las zonas UTM?</b>","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"<b>Con un número</b>","correct":false},{"answer":"<b>Con una letra</b>","correct":false},{"answer":"<b>Con un símbolo</b>","correct":false},{"answer":"<b>Con un número y una letra</b>","correct":true}],"layout":"CLASSIC","image":"https://media.kahoot.it/bdc21c9a-144e-4961-bc3a-56e8211e85c0","imageMetadata":{"id":"bdc21c9a-144e-4961-bc3a-56e8211e85c0","contentType":"image/jpeg","width":1600,"height":1200,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Una fuerza de tracción también se conoce como:","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Tensión","correct":true},{"answer":"Compresión","correct":false},{"answer":"Torsión","correct":false}],"layout":"CLASSIC","resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Reacción química exotérmica que determina el endurecimiento cuando se mezcla agua y cemento","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Revenimiento","correct":false},{"answer":"Fraguado","correct":true},{"answer":"Colado","correct":false},{"answer":"Compresión","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/1a0c8262-c212-4dfb-a489-8448bd236d27","imageMetadata":{"id":"1a0c8262-c212-4dfb-a489-8448bd236d27","contentType":"image/jpeg","width":300,"height":168,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Quién escribió el himno nacional?</b> ","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"<b>Francisco González Bocanegra</b>","correct":true},{"answer":"<b>Juventino Rosas</b>","correct":false},{"answer":"<b>Jaime Nunó</b>","correct":false},{"answer":"<b>Miguel Hidalgo y Costilla</b>","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/379cfb08-ba46-4fad-9336-f7a385e5fd92","imageMetadata":{"id":"379cfb08-ba46-4fad-9336-f7a385e5fd92","contentType":"image/jpeg","width":690,"height":457,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"En tuberías, si el número de Reynolds es menor de 2000 el flujo es:","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Crítico","correct":false},{"answer":"Detransición","correct":false},{"answer":"Laminar","correct":true},{"answer":"Turbulento","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/1cfd558b-ff7b-4ff3-b3dc-22e30ed55eb9","imageMetadata":{"id":"1cfd558b-ff7b-4ff3-b3dc-22e30ed55eb9","contentType":"image/png","width":499,"height":199,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Es la disciplina que estudia equilibrio de fuerzas en los sistemas físicos en equilibrio:","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Mecánica de Suelos","correct":false},{"answer":"Dinámica","correct":false},{"answer":"Estática","correct":true},{"answer":"Mecánica de Materiales","correct":false}],"layout":"CLASSIC","resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"El punto A y B se encuentran __________","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"A diferente elevación","correct":false},{"answer":"A la misma elevación","correct":true},{"answer":"En el punto más alto","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/94f423d3-7490-43bc-b8d2-afae09cdabf8","imageMetadata":{"id":"94f423d3-7490-43bc-b8d2-afae09cdabf8","contentType":"image/jpeg","width":839,"height":589,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Cuál es el grado de inclinación de la Torre de Pisa?</b>","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"<b>3.97°</b>","correct":true},{"answer":"<b>4.32°</b>","correct":false},{"answer":"<b>10.3°</b>","correct":false},{"answer":"2.70°","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/4a3a1162-a7c0-4ce3-9516-c3fac9c0aa3e","imageMetadata":{"id":"4a3a1162-a7c0-4ce3-9516-c3fac9c0aa3e","contentType":"image/jpeg","width":600,"height":400,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Las columnas son miembros estructurales verticales","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"True","correct":true},{"answer":"False","correct":false}],"layout":"TRUE_FALSE","image":"https://media.kahoot.it/71e83da8-90cf-4d81-b32f-a53654ad4ebb","imageMetadata":{"id":"71e83da8-90cf-4d81-b32f-a53654ad4ebb","contentType":"image/jpeg","width":262,"height":193,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Cuál</b><b> de los siguientes NO es nombre de tipos de concreto?</b>","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"<b>Relleno fluido</b>","correct":false},{"answer":"<b>Concreto Autocompactable</b>","correct":false},{"answer":"<b>Concreto Antibacteriano</b>","correct":false},{"answer":"<b>Ninguno de los anteriores.</b>","correct":true}],"layout":"CLASSIC","image":"https://media.kahoot.it/5cdcf8b2-e2f6-43c3-a18c-9c0084a34e97","imageMetadata":{"id":"5cdcf8b2-e2f6-43c3-a18c-9c0084a34e97","contentType":"image/jpeg","width":800,"height":500,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Cuántos huesos tiene el cuerpo humano?</b> ","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"206","correct":true},{"answer":"106","correct":false},{"answer":"226","correct":false},{"answer":"216","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/5a1cc469-b3e0-4e04-83a3-47eb75140fc4","imageMetadata":{"id":"5a1cc469-b3e0-4e04-83a3-47eb75140fc4","contentType":"image/jpeg","width":1706,"height":960,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"A la parte exterior de un edificio se le conoce como:","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Muro ","correct":false},{"answer":"Pared exterior","correct":false},{"answer":"Fachada","correct":true},{"answer":"Estructura visual","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/fd719907-c6b8-4070-974a-8e3ada5c5693","imageMetadata":{"id":"fd719907-c6b8-4070-974a-8e3ada5c5693","contentType":"image/jpeg","width":2000,"height":3047,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Quién ganó el Superbowl en el año 2015?</b> ","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"<b>Seattle Seahawks</b>","correct":false},{"answer":"<b>Dallas Cowboys</b>","correct":false},{"answer":"<b>Broncos de Denver</b>","correct":false},{"answer":"<b>New England Patriots</b>","correct":true}],"layout":"CLASSIC","image":"https://media.kahoot.it/a01efe2c-30a3-49bc-91bb-936b8b68a786","imageMetadata":{"id":"a01efe2c-30a3-49bc-91bb-936b8b68a786","contentType":"image/jpeg","width":770,"height":514,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Cuál de los siguientes tipos de apoyos puede resistir momento flexionante:","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Rodillo","correct":false},{"answer":"Apoyo empotrado","correct":true},{"answer":"Rotula","correct":false},{"answer":"Ninguno de los anteriores","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/cb295550-b29a-473f-b1f1-6b2083b4f41d","imageMetadata":{"id":"cb295550-b29a-473f-b1f1-6b2083b4f41d","contentType":"image/jpeg","width":302,"height":167,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Quién es el autor de el Don Quijote de la Mancha?</b>","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"<b>Miguel de Cervantes</b>","correct":true},{"answer":"<b>Gabriel García Márquez</b>","correct":false},{"answer":"<b>Antonio Machado</b>","correct":false},{"answer":"<b>William Shakespeare</b>","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/a1cdaea1-9ea2-4cec-9cf0-89d3bdef66d9","imageMetadata":{"id":"a1cdaea1-9ea2-4cec-9cf0-89d3bdef66d9","contentType":"image/jpeg","width":850,"height":410,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>Las fuerzas que actúan sobre una estructura se denominan:</b> ","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"<b>Fuerzas axiales</b>","correct":false},{"answer":"Momentos","correct":false},{"answer":"Peso Propio","correct":false},{"answer":"Cargas","correct":true}],"layout":"CLASSIC","image":"https://media.kahoot.it/18056a76-2c21-494b-91e0-d7f4e40daa91","imageMetadata":{"id":"18056a76-2c21-494b-91e0-d7f4e40daa91","contentType":"image/gif","width":420,"height":245,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Son elementos estructurales cuyas dimensiones en planta son relativamente grandes a comparación de su peralte","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Zapatas","correct":false},{"answer":"Viguetas","correct":false},{"answer":"Losas","correct":true},{"answer":"Trabes","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/6e9f04eb-a3f4-4869-9052-028df4cf45fc","imageMetadata":{"id":"6e9f04eb-a3f4-4869-9052-028df4cf45fc","contentType":"image/jpeg","width":310,"height":162,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Carmen perdió la cadenita","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"True","correct":false},{"answer":"False","correct":true}],"layout":"TRUE_FALSE","image":"https://media.kahoot.it/df4fb9ea-c368-4bbe-965e-fa3b95e7121e","imageMetadata":{"id":"df4fb9ea-c368-4bbe-965e-fa3b95e7121e","contentType":"image/jpeg","width":568,"height":426,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Cuál es el propósito de una presa?</b> ","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Evitar inundaciones","correct":true},{"answer":"Para nadar","correct":false},{"answer":"Crear una barrera entre los animales y el agua","correct":false},{"answer":"Capturar el agua de lluvia","correct":true}],"layout":"CLASSIC","image":"https://media.kahoot.it/1a58ee15-580d-4098-a8f1-c1f281fb861e","imageMetadata":{"id":"1a58ee15-580d-4098-a8f1-c1f281fb861e","contentType":"image/jpeg","width":259,"height":194,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<b>¿Quién es el autor de esta pintura?</b> ","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Pablo Picasso","correct":false},{"answer":"<b>Leonardo da Vinci</b>","correct":false},{"answer":"Salvador Dalí","correct":true},{"answer":"Vincent Van Gogh","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/8cd00f2c-c79f-45b2-b08d-7449c2fe1db5","imageMetadata":{"id":"8cd00f2c-c79f-45b2-b08d-7449c2fe1db5","contentType":"image/jpeg","width":1024,"height":768,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"El hormigón es una mezcla de:","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Cemento,agua y acero","correct":false},{"answer":"Cemento, arena, grava y agua","correct":true},{"answer":"Cemento,arena, grava y acero","correct":false},{"answer":"Cemento y agua","correct":false}],"layout":"CLASSIC","resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Tiene por objeto resistir los esfuerzos producidos por empujes horizontales","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Muro de carga","correct":false},{"answer":"Maro divisorio","correct":false},{"answer":"Muro de madera","correct":false},{"answer":"Muro de contención","correct":true}],"layout":"CLASSIC","image":"https://media.kahoot.it/793cb81a-eb89-4a8a-9023-91a263cef66d","imageMetadata":{"id":"793cb81a-eb89-4a8a-9023-91a263cef66d","contentType":"image/png","width":1406,"height":955,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Rama de la ingeniería que aplica conocimientos de física, química, cálculo y geología para elaborar infraestructuras","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Ingeniería Civil","correct":true},{"answer":"Ingeniería Mecatrónica","correct":false},{"answer":"Ingeniería Química","correct":false},{"answer":"Ingeniería Ambiental","correct":false}],"layout":"CLASSIC","resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"<latex>\\frac{1}{2}+1+\\frac{3}{2}=</latex>","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"2","correct":false},{"answer":"<latex>2\\frac{1}{2}</latex>","correct":false},{"answer":"3","correct":true},{"answer":"<latex>3\\frac{1}{2}</latex>","correct":false}],"layout":"CLASSIC","resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"La prueba realizada a los agregados pétreos en la máquina de los ángeles mide:","time":20000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Resistenciaa la tensión","correct":false},{"answer":"Resistenciaa la compresión","correct":false},{"answer":"Desgaste","correct":true},{"answer":"Ninguna de las anteriores","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/ddf9ca83-7bc1-4d90-8005-4dc3597de2f9","imageMetadata":{"id":"ddf9ca83-7bc1-4d90-8005-4dc3597de2f9","contentType":"image/jpeg","width":800,"height":588,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"El muro de Berlín cayó en el año de 1988","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"True","correct":false},{"answer":"False","correct":true}],"layout":"TRUE_FALSE","image":"https://media.kahoot.it/6feaf10c-65cf-4b5b-a333-dfaf51ff887d","imageMetadata":{"id":"6feaf10c-65cf-4b5b-a333-dfaf51ff887d","contentType":"image/jpeg","width":790,"height":440,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Parte estructural encargada de transmitir las cargas al terreno","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Columna","correct":false},{"answer":"Muro","correct":false},{"answer":"Cimentación","correct":true},{"answer":"Viga","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/7ed6252e-7b24-48e8-95d7-0b339cf25d45","imageMetadata":{"id":"7ed6252e-7b24-48e8-95d7-0b339cf25d45","contentType":"image/jpeg","width":268,"height":188,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"¿Cuáles son los tipos de pavimentos más comunes?","time":10000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Rígidos y Flexibles","correct":true},{"answer":"Rígidos y de Concreto.","correct":false},{"answer":"Flexibles y Sueltos","correct":false},{"answer":"De tierra","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/a5f412dc-1637-4695-a966-b9e4489ed6ba","imageMetadata":{"id":"a5f412dc-1637-4695-a966-b9e4489ed6ba","contentType":"image/jpeg","width":600,"height":333,"effects":[],"resources":""},"resources":"","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0}],"answerMap":[4,4,4,4,4,4,4,4,4,2,4,4,4,4,2,4,4,4,4,4,4,4,2,4,4,4,4,4,4,3,4,4,4,4,3,4,2,4,4,4,4,4,4,4,4,2,4,4,4,4,4,4,4,2,4,4],"uuid":"38af248a-95ee-44aa-8c8f-0cad627fbb66"}
["85b3f986c42c19b5f91dd819465c90bc0dab0249"]
{"Richmond": {"Southhampton Hills, Virginia": "Southhampton Hills is an unincorporated community in Richmond County, in the U.S. state of Virginia."}}
{"artist": "The New Deal", "timestamp": "2011-09-07 09:56:41.220719", "similars": [], "tags": [], "track_id": "TRYAKQQ12903D0F9EF", "title": "Now or Never"}
["4de0d720fe763e792c67135261b346084e8033ad","9416e241a0319531fa10854c9dce3af4e6fe03e3","c117c8c07960d4ea865208b5bfcc92cfaacfab0d","29b7c663d753bf2122fff6ca3d6b5878c07ae082","8304c4f3eef1ddedefaa6c22ffb885d062f275ac","1972affa5b0dd87422b02bfd179577c4f439d458","a44af6b8ce9bb86f461b95ba86e5af39df02b733","d8c3cc838ead542840d3165144e27744503f4455","575547ac2e9b38ff142861dad3f59d1d7059905d","a6da2047cc2525514b3a7e5a8aff19b244c83334","38d24f91bd4d02c397b860ccfb7958f27f1d04eb"]
[ "http://2.bp.blogspot.com/-ZPaGejew23k/Tp6XhfKfyrI/AAAAAAAAASU/P06EpHOg2Ts/s0/000.jpg", "http://2.bp.blogspot.com/-TN0V-7N22Ag/Tp6XjkC4rDI/AAAAAAAAAS8/1yw9eQsSFMg/s0/001.jpg", "http://2.bp.blogspot.com/-eMzUGb5YbaY/Tp6XnX4Hc3I/AAAAAAAAAU4/0zlrkdXBeho/s0/002.jpg", "http://2.bp.blogspot.com/-kHIvidHYYjk/Tp6XrB_tnkI/AAAAAAAAAVw/ZWMbVpRcqKw/s0/003.jpg", "http://2.bp.blogspot.com/-BTCE86OvpHw/Tp6XtWu9iRI/AAAAAAAAAXE/MQq7Cz6ZAVw/s0/004.jpg", "http://2.bp.blogspot.com/-4Br8R6rY1dw/Tp6XwAv8PeI/AAAAAAAAAXc/XBtMHm-TkV4/s0/005.jpg", "http://2.bp.blogspot.com/-6oF74Ks2yOs/Tp6XyB3ncrI/AAAAAAAAAYc/oT3beYTt6Mc/s0/006.jpg", "http://2.bp.blogspot.com/-CAnIUuRbXLE/Tp6XzpoZ2aI/AAAAAAAAAag/iNkkLq_yTzs/s0/007.jpg", "http://2.bp.blogspot.com/-iyUHhGn6ps0/Tp6X5F17iiI/AAAAAAAAAbY/1beRDQ1zqUM/s0/008.jpg", "http://2.bp.blogspot.com/-EuWObsFsw6A/Tp6X7L732aI/AAAAAAAAAco/to3bWQVIqOw/s0/009.jpg", "http://2.bp.blogspot.com/-fp9iQu1XdH4/Tp6X-GnAiiI/AAAAAAAAAdg/QEQl4aaKqKY/s0/010.jpg", "http://2.bp.blogspot.com/-uR7uKEWOmME/Tp6YAIFsiXI/AAAAAAAAAek/Bg6W_na1fcw/s0/011.jpg", "http://2.bp.blogspot.com/-bp4CnA4LP3U/Tp6YCJRmljI/AAAAAAAAAgs/pqbjKnnc48I/s0/012.jpg", "http://2.bp.blogspot.com/-o9nhuxVwk-E/Tp6YGiJUQRI/AAAAAAAAAhs/2rtBM2LpX58/s0/013.jpg", "http://2.bp.blogspot.com/-iWZcyKg2Qhs/Tp6YJSjJooI/AAAAAAAAAis/A5o6D8RgW98/s0/014.jpg", "http://2.bp.blogspot.com/-zAcMrNe0YLc/Tp6YLP_Kz7I/AAAAAAAAAjk/W9TxORgDWOA/s0/015.jpg", "http://2.bp.blogspot.com/-VhtRdhGnK7M/Tp6YNUosC8I/AAAAAAAAAlg/n3Oz7dRv4tQ/s0/016.jpg", "http://2.bp.blogspot.com/-6jiapciR38E/Tp6YTeXIhaI/AAAAAAAAAms/aMTy5lPHUS8/s0/017.jpg", "http://2.bp.blogspot.com/-pXyHm5H7Slg/Tp6YVSnzEkI/AAAAAAAAAn0/ikVBuB78l6k/s0/018.jpg", "http://2.bp.blogspot.com/-jn5RgNe4Cec/Tp6YXgOCZdI/AAAAAAAAAo0/himA_YJmR_M/s0/019.jpg", "http://2.bp.blogspot.com/-0CmLl7CLfhY/Tp6YZigY1OI/AAAAAAAAAqI/-lSH0ycIr_g/s0/020.jpg", "http://2.bp.blogspot.com/-s-Zo1A_dFHo/Tp6YcE1LHkI/AAAAAAAAArE/8pLBs7hxiYk/s0/021.jpg", "http://2.bp.blogspot.com/-8COiPyRcuKs/Tp6YeNXS9kI/AAAAAAAAAro/NDQ-yZQ5H7Q/s0/022.jpg", "http://2.bp.blogspot.com/-kbgLV4L9MAo/Tp6YgnosFSI/AAAAAAAAAsw/aDsThwpaRMY/s0/023.jpg", "http://2.bp.blogspot.com/-R7WKADyuvhI/Tp6YiSIJhhI/AAAAAAAAAto/WHu5DGAe-fo/s0/024.jpg", "http://2.bp.blogspot.com/-Wia7DTwXjnw/Tp6Yl_kAyCI/AAAAAAAAAvQ/8ghgkAOJykQ/s0/025.jpg", "http://2.bp.blogspot.com/-7-TNUgnsafY/Tp6YqZnis4I/AAAAAAAAAwk/xukGfYNCZYs/s0/026.jpg", "http://2.bp.blogspot.com/-tU5yvxV9AdI/Tp6YtSt3RqI/AAAAAAAAAx8/ouQSfeHQ98w/s0/027.jpg", "http://2.bp.blogspot.com/-WrX5tocuj08/Tp6YxtbMPYI/AAAAAAAAAzc/BjTx_6BaYp8/s0/028.jpg", "http://2.bp.blogspot.com/-3IyB_t1vIxw/Tp6Y0BpKoKI/AAAAAAAAA0s/GMq9_4S9blU/s0/029.jpg", "http://2.bp.blogspot.com/-MYaWPIDwtQs/Tp6Y2Wr2aoI/AAAAAAAAA2I/5NDYTyza7UA/s0/030.jpg", "http://2.bp.blogspot.com/--XXNffy29CI/Tp6Y5ZBqDRI/AAAAAAAAA3Y/N71WgeZi7bQ/s0/031.jpg", "http://2.bp.blogspot.com/--KDx1DktVVw/Tp6Y7TTdUpI/AAAAAAAAA4E/9zBOvOjmBbw/s0/032.jpg", "http://2.bp.blogspot.com/-JAfxP6J_wB4/Tp6ZA_beckI/AAAAAAAAA44/BX7WTLGPyIs/s0/033.jpg", "http://2.bp.blogspot.com/-XS1vDOj1aNQ/Tp6ZCkSpMDI/AAAAAAAAA6k/RZZ8-FdBCag/s0/034.jpg", "http://2.bp.blogspot.com/-PEuoWgE7_1A/Tp6ZH7uHOYI/AAAAAAAAA8Q/QQZebC-TzVA/s0/035.jpg", "http://2.bp.blogspot.com/-P9ptdL1K0Ow/Tp6ZMhApxnI/AAAAAAAAA9k/vTgPQ_Mc_6g/s0/036.jpg", "http://2.bp.blogspot.com/-pHu96BLccoI/Tp6ZQvzsv5I/AAAAAAAAA_A/uLcUKJv_060/s0/037.jpg" ]
[ "http://2.bp.blogspot.com/-C7_FlLV294E/WpitYB1RhWI/AAAAAAADtq0/sbap-0sKmMUWBGF18vC8XDZOia7Gvp8CQCHMYCw/s0/000.png", "http://2.bp.blogspot.com/-kAvyEPGuH-4/WpitYckCopI/AAAAAAADtq4/FwQSkde5oa0AxNW5YGVpnPlQPqbEW2K7QCHMYCw/s0/001.png", "http://2.bp.blogspot.com/-Z3882R7agsw/WpitYSnxDMI/AAAAAAADtq8/CgVIP5_0oKY_pQcJAh4ZDC5BHAXP7M0KQCHMYCw/s0/002.png", "http://2.bp.blogspot.com/-5tzFyQZ0B0U/WpitYrTBzWI/AAAAAAADtrA/Bi7PwcA20CoI6TY9KSStyV-Ls9ZO5QdzQCHMYCw/s0/003.png", "http://2.bp.blogspot.com/-2DimFgRbqoE/WpitYrQehUI/AAAAAAADtrE/N_MxkX1-c8gRSxdyK75VQuXnAtWvfbURgCHMYCw/s0/004.png", "http://2.bp.blogspot.com/-8pvAxqATO6o/WpitY6sqaRI/AAAAAAADtrI/HSC5qevCFHM9qtxdI3vzffXp9voUMaRVwCHMYCw/s0/005.png", "http://2.bp.blogspot.com/-IaTHoMaW1j4/WpitY8doXPI/AAAAAAADtrM/kmvnpZ7dFsAJwIOd5kJstfgst1oSP_S2QCHMYCw/s0/006.png", "http://2.bp.blogspot.com/-aPGuHabU6hQ/WpitZI6sG8I/AAAAAAADtrQ/XPAv1xdX3zc-MxxLIJZFPfW8FIEjqqn2gCHMYCw/s0/007.png", "http://2.bp.blogspot.com/-zowv88S1LBY/WpitZBXs8qI/AAAAAAADtrU/q6wKvFWCP0IoOY61Ms-1pvXWVLXvXoxdACHMYCw/s0/008.png", "http://2.bp.blogspot.com/-JMaLy4WKGz0/WpitZbE1bvI/AAAAAAADtrY/suKpBcL46eYeDM7rOpYc3BHu0v1HQp5-wCHMYCw/s0/009.png", "http://2.bp.blogspot.com/-ypWe_KvF0D8/WpitZiLOVvI/AAAAAAADtrc/LKNKaidAj4cvTQ9klLaoLC01vEW8T_pnACHMYCw/s0/010.png", "http://2.bp.blogspot.com/-TPpf5bbA47E/WpitZuIZcLI/AAAAAAADtrg/q5LF3SaRJasBPXDoIH_TxDVDwtVvcZXWwCHMYCw/s0/011.png", "http://2.bp.blogspot.com/-c2psa7wbUcM/WpitaFmWzyI/AAAAAAADtrk/j-bH4aauENwfKGnf41zGXNMXVpUR9REzQCHMYCw/s0/012.png", "http://2.bp.blogspot.com/-lXsb398hFNw/WpitaMbF0GI/AAAAAAADtro/blZFDLLbUj0mrzByTGEPtXWpKwODaC3CQCHMYCw/s0/013.png", "http://2.bp.blogspot.com/-lnL0W5LM2Jk/WpitaeQgn-I/AAAAAAADtrs/6R5Q1n5pM70VZpttbBOPY34ImnBaWqkcwCHMYCw/s0/014.png", "http://2.bp.blogspot.com/-L0lh5JH-3mU/Wpitam302zI/AAAAAAADtrw/AYxcV2HYJqI2fkRCl69RIAXGIKx6HZQMwCHMYCw/s0/015.png", "http://2.bp.blogspot.com/-IXIMVlItoug/Wpitau--KDI/AAAAAAADtr0/bqioFaOuNUslApuB6b_-b9oWrnsbp6eFgCHMYCw/s0/016.png", "http://2.bp.blogspot.com/--zvHihik8P8/WpitawwBTYI/AAAAAAADtr4/MCihm9VrUZU-0aqW4IXXwovmiPu--lf2wCHMYCw/s0/017.png", "http://2.bp.blogspot.com/-P6Dz0VaQPtY/WpitbLL_qEI/AAAAAAADtr8/B6Scy4m77REbm8r89b961ua2ZZsJSq4AwCHMYCw/s0/018.png", "http://2.bp.blogspot.com/-jW62pA9DZBs/WpitbNqUBZI/AAAAAAADtsA/SDrU-88IXCwMYkmG7e6MYqVPZ5-YrvwGACHMYCw/s0/019.png", "http://2.bp.blogspot.com/-8KolELjmtMw/WpitbRIJmSI/AAAAAAADtsE/Wf6i2yI_b-YbQ9KYyk7NnD1p0aTAG5GRQCHMYCw/s0/020.png", "http://2.bp.blogspot.com/-I-YjMJCITRo/WpitbiWjgFI/AAAAAAADtsI/uwX3c7VrbTIos_BH2CEo9PSys9NbXieygCHMYCw/s0/021.png", "http://2.bp.blogspot.com/-NVJw8NVy9g0/Wpitbj4dxhI/AAAAAAADtsM/ksD6_PmFQ3IEicViM20jq_JR7umr2VadACHMYCw/s0/022.png", "http://2.bp.blogspot.com/-VsSr7su6VQ8/Wpitb98qj8I/AAAAAAADtsQ/C53l3-uHpQA1HNmDKToSNyIvDzb_I8gvwCHMYCw/s0/023.png", "http://2.bp.blogspot.com/-llyh8qZX6Hs/WpitcC4ai-I/AAAAAAADtsU/l07uDvNyPWoOB6Z8THkAbfetG1P4Gln1gCHMYCw/s0/024.png", "http://2.bp.blogspot.com/-f9-PES5GxGg/WpitcEg6CKI/AAAAAAADtsY/42mP4xPmljMeSlY0nWiWculXPztFZOgkACHMYCw/s0/025.png", "http://2.bp.blogspot.com/-TZ99F86t4uE/WpitcQU1XgI/AAAAAAADtsg/e-mPZUFaaxwSupEasisGSx42fwJEzsf0ACHMYCw/s0/026.png", "http://2.bp.blogspot.com/-8uiACzM-cQc/Wpitcrj6byI/AAAAAAADtso/RBtgi38Oq00lXGxfz3nNB9xyrWXkt4O9ACHMYCw/s0/027.png", "http://2.bp.blogspot.com/-POkDg-kEH-U/WpitcqFpKGI/AAAAAAADtsw/pQ0-i93yKCEuXhCvS7JZHq3e6HLQmBYvgCHMYCw/s0/028.png", "http://2.bp.blogspot.com/-p86Rh9Wlzbs/WpitdKFs1bI/AAAAAAADts4/gRIOpOwcH3AdMZVDxILKJRQWj6qwPwk_gCHMYCw/s0/029.png", "http://2.bp.blogspot.com/--PuwjfgqFhk/WpitdUzva8I/AAAAAAADttA/o1BFCo3W9lwLgbmSJNHBYEnm9BsnEbucwCHMYCw/s0/030.png", "http://2.bp.blogspot.com/-LO7ueouv9Gc/WpitdtpvHvI/AAAAAAADttI/VkWPvkMGZ5osRXNVmEM86cEqXneye0CzQCHMYCw/s0/031.png", "http://2.bp.blogspot.com/-WkufAuZv9B0/Wpitd3paYZI/AAAAAAADttQ/pLDHk-dXzTUe5vMa17nGpycnTfbHqknzQCHMYCw/s0/032.png", "http://2.bp.blogspot.com/-mxHb5zKo4Zc/WpiteIryoHI/AAAAAAADttY/JflSg3TZ5SgFLDg2AawhRatMQfu_ODLpACHMYCw/s0/033.png", "http://2.bp.blogspot.com/-SP3MebWmFOw/WpiterZUuWI/AAAAAAADttg/jsahIpHQPyIddid6IYlQ0rq6-tvvosb_wCHMYCw/s0/034.png", "http://2.bp.blogspot.com/-ZtvF2WxE5l0/WpitfJooJUI/AAAAAAADtto/An24-OP5E1IK_6gVxBE-czmYGPpax5IMACHMYCw/s0/035.png", "http://2.bp.blogspot.com/-15j8oZj0mgw/WpitfpNg6JI/AAAAAAADttw/jQCYaxILpgctMJObofxx3dxTP51i7oJBACHMYCw/s0/036.png" ]
{"name":"igitego.com","permalink":"igitego-com","crunchbase_url":"http://www.crunchbase.com/company/igitego-com","homepage_url":"http://www.igitego.com","blog_url":"","blog_feed_url":"","twitter_username":"","category_code":"other","number_of_employees":null,"founded_year":2010,"founded_month":12,"founded_day":26,"deadpooled_year":null,"deadpooled_month":null,"deadpooled_day":null,"deadpooled_url":null,"tag_list":"","alias_list":null,"email_address":"igitego@gmail.com","phone_number":"","description":"website of sport news in kinyarwanda","created_at":"Tue Jan 04 18:16:25 UTC 2011","updated_at":"Fri Jan 07 22:46:19 UTC 2011","overview":"<p>igitego.com is a sport news website,writing in kinyarwanda.\nIt was founded by Yan Kwizera in 2010 with the objectif of providing to Rwandans sport news of the globe in their language,Kinyarwanda!</p>","image":{"available_sizes":[[[150,20],"assets/images/resized/0011/6205/116205v2-max-150x150.png"],[[250,34],"assets/images/resized/0011/6205/116205v2-max-250x250.png"],[[450,62],"assets/images/resized/0011/6205/116205v2-max-450x450.png"]],"attribution":null},"products":[],"relationships":[{"is_past":false,"title":"Founde&CEO","person":{"first_name":"Yan","last_name":"Kwizera","permalink":"yan-kwizera","image":null}}],"competitions":[],"providerships":[],"total_money_raised":"$0","funding_rounds":[],"investments":[],"acquisition":null,"acquisitions":[],"offices":[],"milestones":[],"ipo":null,"video_embeds":[],"screenshots":[{"available_sizes":[[[150,20],"assets/images/resized/0011/6204/116204v2-max-150x150.png"],[[250,34],"assets/images/resized/0011/6204/116204v2-max-250x250.png"],[[450,62],"assets/images/resized/0011/6204/116204v2-max-450x450.png"]],"attribution":null}],"external_links":[]}
{ "first_traded_price": 1041.0, "highest_price": 1087.0, "isin": "IRR1GOLG0101", "last_traded_price": 1066.0, "lowest_price": 1041.0, "trade_volume": 15443774.0, "unix_time": 1477699200 }
{ "first_traded_price": 3826.0, "highest_price": 4.0e3, "isin": "IRO1SDAB0001", "last_traded_price": 3901.0, "lowest_price": 3826.0, "trade_volume": 90476.0, "unix_time": 1356220800 }
{"Santa_Ana": {"Villa Park High School": "Villa Park High School (or VPHS) is a 4 year suburban public high school located in the city of Villa Park, California. The school was built in 1964 and is one of four comprehensive high schools in the Orange Unified School District. The campus serves students residing in Villa Park and portions of the cities of Orange and Anaheim."}}
{ "vorgangId": "56311", "VORGANG": { "WAHLPERIODE": "18", "VORGANGSTYP": "Antrag", "TITEL": "Whistleblower Edward Snowden in Deutschland aufnehmen und Schutz vor Auslieferung gewähren", "INITIATIVE": "Fraktion DIE LINKE", "AKTUELLER_STAND": "Erledigt durch Ablauf der Wahlperiode", "SIGNATUR": "", "GESTA_ORDNUNGSNUMMER": "", "WICHTIGE_DRUCKSACHE": { "DRS_HERAUSGEBER": "BT", "DRS_NUMMER": "18/55", "DRS_TYP": "Antrag", "DRS_LINK": "http://dipbt.bundestag.de:80/dip21/btd/18/000/1800055.pdf" }, "EU_DOK_NR": "", "SACHGEBIET": [ "Außenpolitik und internationale Beziehungen", "Innere Sicherheit" ], "SCHLAGWORT": [ "Aufenthaltsrecht", "Snowden, Edward", "Whistleblowing" ], "ABSTRAKT": "Erteilung einer Aufenthaltserlaubnis &bdquo;zur Wahrung politischer Interessen der Bundesrepublik Deutschland&ldquo; sowie Zusicherung der Versagung von Auslieferungsbegehren" }, "VORGANGSABLAUF": { "VORGANGSPOSITION": { "ZUORDNUNG": "BT", "URHEBER": "Antrag, Urheber : Fraktion DIE LINKE ", "FUNDSTELLE": "14.11.2013 - BT-Drucksache 18/55", "FUNDSTELLE_LINK": "http://dipbt.bundestag.de:80/dip21/btd/18/000/1800055.pdf", "PERSOENLICHER_URHEBER": [ { "VORNAME": "Jan", "NACHNAME": "Korte", "FUNKTION": "MdB", "FRAKTION": "DIE LINKE", "AKTIVITAETSART": "Antrag" }, { "PERSON_TITEL": "Dr.", "VORNAME": "Petra", "NACHNAME": "Sitte", "FUNKTION": "MdB", "FRAKTION": "DIE LINKE", "AKTIVITAETSART": "Antrag" } ] } } }
{"name":"SupplyIndia","permalink":"supplyindia","crunchbase_url":"http://www.crunchbase.com/company/supplyindia","homepage_url":"http://supplyindia.in","blog_url":"","blog_feed_url":"","twitter_username":"","category_code":"other","number_of_employees":100,"founded_year":2010,"founded_month":10,"founded_day":9,"deadpooled_year":null,"deadpooled_month":null,"deadpooled_day":null,"deadpooled_url":null,"tag_list":"exporters, b2b, india-listing, supplier-directory","alias_list":null,"email_address":"","phone_number":"","description":"Global B2B directory ","created_at":"Wed Aug 10 09:04:44 UTC 2011","updated_at":"Wed Aug 10 20:59:23 UTC 2011","overview":"<p>SupplyIndia is a leading B2B marketplace offering a platform for global buyers and suppliers to trade.Search products,buyers,suppliers,buying leads,selling leads with free catalog</p>","image":{"available_sizes":[[[150,36],"assets/images/resized/0014/8743/148743v2-max-150x150.jpg"],[[250,61],"assets/images/resized/0014/8743/148743v2-max-250x250.jpg"],[[325,80],"assets/images/resized/0014/8743/148743v2-max-450x450.jpg"]],"attribution":null},"products":[],"relationships":[],"competitions":[],"providerships":[],"total_money_raised":"$0","funding_rounds":[],"investments":[],"acquisition":null,"acquisitions":[],"offices":[],"milestones":[],"ipo":null,"video_embeds":[],"screenshots":[],"external_links":[]}
{ "first_traded_price": 8161.0, "highest_price": 8498.0, "isin": "IRO1PDRO0001", "last_traded_price": 8459.0, "lowest_price": 8161.0, "trade_volume": 4969.0, "unix_time": 1516060800 }
{"title":"שיעורי מטלב","tables":{"0":{"0":{"0":{"type":"header1","text":"MatLab"}},"1":{"0":{"type":"header2","text":"כל התרגילים הם המלצה בלבד...<br>התרגילים הם שאלות לדוגמה, עם פתרון ויהיו בנושאים הקשורים לחשמל"}},"2":{"0":{"type":"link","href":"11/file/matlab_1.pdf","target":"אינטגרל נומרי","text":"תרגיל 1 - חישוב אינטגרל נומרי"}},"3":{"0":{"type":"link","href":"11/file/matlab_2.pdf","target":"טורי פוריה","text":"תרגיל 2 - חישוב טורי פוריה"}},"4":{"0":{"type":"link","href":"11/file/matlab_3.pdf","target":"ציור פונקציות","text":"תרגיל 3 - ציור פונקציות"}},"5":{"0":{"type":"link","href":"11/file/matlab_4.pdf","target":"וקטורים ומטריצות","text":"תרגיל 4 - וקטורים ומטריצות"}},"6":{"0":{"type":"link","href":"11/file/matlab_5.pdf","target":"חישוב טור פוריה מרוכב","text":"תרגיל 5 - מספרים מרוכבים"}},"7":{"0":{"type":"link","href":"11/file/matlab_6.pdf","target":"","text":"תרגיל 6 - פונקציות"}},"8":{"0":{"type":"link","href":"/yeda/308","target":"","text":"תרגיל 7 - גרפי בודה"}},"9":{"0":{"type":"link","href":"11/file/vectarrow.m","target":"להגדיר נקודת התחלה וסוף","text":"סקריפט לציור חצים"}},"10":{"0":{"type":"text","text":""}},"11":{"0":{"type":"link","href":"/yeda/476","target":"","text":"שיעורי המטלב של זוהר"}}},"1":{"0":{"0":{"type":"header2","text":"הרצאות מכלי תוכנה"},"1":{"type":"header2","text":"חומר נוסף"}},"1":{"0":{"type":"link","href":"11/file/lec1.pdf","target":"","text":"הרצאה 1"},"1":{"type":"link","href":"11/file/matlab_quickref.pdf","target":"","text":"ריכוז פקודות"}},"2":{"0":{"type":"link","href":"11/file/lec2.pdf","target":"","text":"הרצאה 2"},"1":{"type":"link","href":"11/file/IntroductionToMatlab.pdf","target":"","text":"מבוא למטלב (עברית)"}},"3":{"0":{"type":"link","href":"11/file/lec3.pdf","target":"","text":"הרצאה 3"},"1":{"type":"link","href":"11/file/Matlab 7.0 Tutorial.pdf","target":"","text":"הדרכת מטלב (אנגלית)"}},"4":{"0":{"type":"link","href":"11/file/lec4.pdf","target":"","text":"הרצאה 4"},"1":{"type":"link","href":"11/file/Matlab Programming.pdf","target":"","text":"תכנות במטלב (אנגלית)"}},"5":{"0":{"type":"link","href":"11/file/lec5.pdf","target":"","text":"הרצאה 5"},"1":{"type":"link","href":"11/file/סיכום שימוש במטלאב לחשמל.rar","target":"","text":"Signals&Systems with Matlab 1"}},"6":{"0":{"type":"text","text":""},"1":{"type":"link","href":"11/file/סיכום מטאלב ב.pdf","target":"","text":"Signals&Systems with Matlab 2"}},"7":{"0":{"type":"text","text":""},"1":{"type":"link","href":"/yeda/494","target":"","text":"מדריך מטלב"}},"8":{"0":{"type":"text","text":""},"1":{"type":"link","href":"/yeda/495","target":"","text":"תרגול גרפים"}}},"2":{"0":{"0":{"type":"header1","text":"סדרת שיעורי מטלב"}},"1":{"0":{"type":"link","href":"11/file/Class01.doc","target":"","text":"שיעור 1 - מבוא ופעולות בסיסיות"}},"2":{"0":{"type":"link","href":"11/file/Class_2vectormat.doc","target":"","text":"שיעור 2 - ווקטורים ומטריצות וגם גרפיקה דו מימדית"}},"3":{"0":{"type":"link","href":"11/file/class_4.pdf","target":"","text":"שיעור 3"}},"4":{"0":{"type":"link","href":"11/file/class_4_new.pdf","target":"","text":"שיעור 4"}},"5":{"0":{"type":"link","href":"11/file/class_4_extra.pdf","target":"","text":"שיעור 4 - תרגול נוסף - המשך לגרפיקה דו מימדית"}},"6":{"0":{"type":"link","href":"11/file/Linear_algebra_class_5.pdf","target":"","text":"שיעור 5 - אלגברה לינארית"}},"7":{"0":{"type":"link","href":"11/file/7_8_9.rar","target":"","text":"שיעור 7 - מערכי תאים, 8,9 - מישדיף"}},"8":{"0":{"type":"link","href":"11/file/10and11.rar","target":"","text":"שיעור 10 - מתמטיקה סימבולית"}},"9":{"0":{"type":"link","href":"11/file/10and11.rar","target":"","text":"שיעור 11 - גרפיקה תלת מימדית"}},"10":{"0":{"type":"link","href":"11/file/additions12.rar","target":"","text":"שיעור 12 - תוספות למיניהן"}},"11":{"0":{"type":"link","href":"11/file/simulink_slides_class13.rar","target":"","text":"שיעור 13 - סימולינק"}}},"3":{"0":{"0":{"type":"header2","text":"לבקשות הערות ושאלות - ilanbe@bgu.ac.il"}}}},"homepage":"","semester":4}
{ "order": "31638" ,"word": "recoil" ,"count": "77" }
{"author":"ThomyPh95","questions":[{"type":"quiz","question":"hijueputa libro","time":20000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"True","correct":false},{"answer":"False","correct":true}],"layout":"TRUE_FALSE","image":"https://media.kahoot.it/f2d099a9-b2b9-4c4c-819f-472cd3a7bd61","imageMetadata":{"id":"f2d099a9-b2b9-4c4c-819f-472cd3a7bd61","contentType":"image/jpeg","width":720,"height":1560,"effects":[]},"video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"jejfjf","time":20000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"True","correct":false},{"answer":"False","correct":true}],"layout":"TRUE_FALSE","image":"https://media.kahoot.it/611af245-0477-47b4-b305-57b27573e09c","imageMetadata":{"id":"611af245-0477-47b4-b305-57b27573e09c","altText":"Mural By Graffiti Artist Kenny Scharf Is Latest Work To Adorn Bowery Mural Wall","contentType":"image/jpeg","origin":"Getty Images","externalRef":"107210866","width":2500,"height":2500,"effects":[],"resources":"Spencer Platt/Getty Images News/Getty Images"},"resources":"Spencer Platt/Getty Images News/Getty Images","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"jdjfj","time":20000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"True","correct":false},{"answer":"False","correct":true}],"layout":"TRUE_FALSE","image":"https://media.kahoot.it/d3236ce1-64f9-4c4e-a743-d53cc025296f","imageMetadata":{"id":"d3236ce1-64f9-4c4e-a743-d53cc025296f","contentType":"image/jpeg","width":590,"height":1280,"effects":[]},"video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"ndkfrk","time":20000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"hdhdh","correct":false},{"answer":"kdkd","correct":true},{"answer":"hffjfj","correct":false},{"answer":"jejf","correct":false}],"layout":"CLASSIC","image":"https://media.kahoot.it/9afb2247-691f-4466-8f98-79b4cc858c0e","imageMetadata":{"id":"9afb2247-691f-4466-8f98-79b4cc858c0e","contentType":"image/jpeg","width":720,"height":1280,"effects":[]},"video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"iwueurific","time":20000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"bdjdjd","correct":false},{"answer":"jejrjg","correct":false},{"answer":"jejej","correct":false},{"answer":"bdjfj","correct":true}],"layout":"CLASSIC","image":"https://media.kahoot.it/fda00c10-2efe-48ea-b74f-5e515320dbcf","imageMetadata":{"id":"fda00c10-2efe-48ea-b74f-5e515320dbcf","contentType":"image/jpeg","width":720,"height":1560,"effects":[]},"video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"jrurjr","time":20000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"True","correct":true},{"answer":"False","correct":false}],"layout":"TRUE_FALSE","video":{"startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0}],"answerMap":[2,2,2,4,4,2],"uuid":"13ee1006-6a81-471a-ae26-565b7d31ca34"}
{ "CHARACTER": "THE_SCRIBE", "NAME": "Rapid Casting", "ARCHETYPE_NAME": "theScribe:RapidCast", "CARD_TYPE": "POWER", "IMG": "TheScribeResources/images/cards/BlankScroll.png", "TAGS": [ "SINGLE" ], "FEATURES": [ "theScribe:BlankScroll", "theScribe:MirrorImage", "theScribe:Escalation" ], "CARD_IDS": [ "theScribe:BlankScroll", "theScribe:WordsOfPower", "theScribe:MirrorImage", "theScribe:Escalation", "theScribe:StaticSeries", "theScribe:CapacitanceScroll", "theScribe:TimeDilation", "theScribe:RecurringRime" ] }
{"uuid": "328a726d-e687-4e23-ad4f-e15f387f296a", "befores": [{"name": "code", "status": "passed", "start": 1559639603316, "stop": 1559639603316}], "start": 1559639603316, "stop": 1559639623058}
{".js":"fc9716ea034f37d4efe5b2b3665e02230acf77c8.js"}
{"body": "Laws & Policies It is the responsibility of visitors to understand and comply with all applicable state, local, and federal firearms laws before entering this park. As of February 22, 2010, a new federal law allows people who can legally possess firearms under applicable federal, state, and local laws. to legally possess firearms in this park. Alabama Firearm Regulations FIREARMS PROHIBITED IN FEDERAL BUILDINGS Firearms are prohibited in federal buildings where federal employees work. This includes visitor centers, park administrative offices, maintenance buildings, and ranger stations. 18 U.S.C. \u00a7 930 \u00a0 2015 Russell Cave Compendium", "url": "https://www.nps.gov/ruca/learn/management/lawsandpolicies.htm", "title": "Russell Cave National Monument: Laws & Policies"}